From 098220c54817b08a0326978852226dc4f95e1b09 Mon Sep 17 00:00:00 2001 From: HUSSAR-mtrela Date: Fri, 25 Aug 2023 14:55:48 -0400 Subject: [PATCH 001/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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 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 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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/183] 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 From 81b0cf1353d6b51682bf7cee82796f5bd3a67028 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Mon, 21 Jul 2025 17:08:42 -0400 Subject: [PATCH 155/183] mdd-update-wc-package (#341) mdd-update-wc-package --- browser/package.json | 2 +- browser/scripts/browser.js | 2 +- browser/src/browser-info.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/radial-label-mode/package.json | 2 +- samples/charts/data-chart/transition-event/package.json | 2 +- samples/charts/data-pie-chart/animation-replay/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 +- 45 files changed, 45 insertions(+), 45 deletions(-) diff --git a/browser/package.json b/browser/package.json index 725e9ff94..1d1468d94 100644 --- a/browser/package.json +++ b/browser/package.json @@ -54,7 +54,7 @@ "igniteui-angular-spreadsheet": "20.0.0", "igniteui-angular-spreadsheet-chart-adapter": "20.0.0", "igniteui-theming": "18.1.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 ab8f36080..3ee29c692 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1119,7 +1119,7 @@ function updateIG(cb) { { 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: "6.1.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" }, diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index 510236ca6..c54858b6f 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -12,5 +12,5 @@ {"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"} +{"ver":"6.1.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 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": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.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 9cc8092c7..d84025e38 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.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 9cc8092c7..d84025e38 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -21,7 +21,7 @@ "igniteui-angular-core": "20.0.0", "igniteui-angular-inputs": "20.0.0", "igniteui-angular-layouts": "20.0.0", - "igniteui-webcomponents": "6.0.0", + "igniteui-webcomponents": "6.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", From 120a553a072730090ec57d1434cca9b86320f40c Mon Sep 17 00:00:00 2001 From: IGvaleries Date: Wed, 23 Jul 2025 10:07:29 -0400 Subject: [PATCH 156/183] update to July 2025 SR beta (#342) * update to july 2025 sr beta * put back version of igniteui-angular --- browser/package.json | 24 +++++++++---------- 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, 971 insertions(+), 971 deletions(-) diff --git a/browser/package.json b/browser/package.json index 1d1468d94..8d78ca665 100644 --- a/browser/package.json +++ b/browser/package.json @@ -41,18 +41,18 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "20.0.0-rc.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-angular": "20.0.0-rc.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-dashboards": "20.0.1-beta.0", + "igniteui-angular-data-grids": "20.0.1-beta.0", + "igniteui-angular-excel": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-beta.0", + "igniteui-angular-spreadsheet": "20.0.1-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "20.0.1-beta.0", "igniteui-theming": "18.1.0", "igniteui-webcomponents": "6.1.0", "immediate": "3.2.3", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index 3ee29c692..ddf2e7d5e 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1106,18 +1106,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", 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" }, + { version: "20.0.1-beta.0", name: "igniteui-angular-core" }, + { version: "20.0.1-beta.0", name: "igniteui-angular-charts" }, + { version: "20.0.1-beta.0", name: "igniteui-angular-excel" }, + { version: "20.0.1-beta.0", name: "igniteui-angular-gauges" }, + { version: "20.0.1-beta.0", name: "igniteui-angular-data-grids" }, + { version: "20.0.1-beta.0", name: "igniteui-angular-inputs" }, + { version: "20.0.1-beta.0", name: "igniteui-angular-layouts" }, + { version: "20.0.1-beta.0", name: "igniteui-angular-maps" }, + { version: "20.0.1-beta.0", name: "igniteui-angular-spreadsheet-chart-adapter" }, + { version: "20.0.1-beta.0", name: "igniteui-angular-spreadsheet" }, + { version: "20.0.1-beta.0", name: "igniteui-angular-datasources" }, + { version: "20.0.1-beta.0", name: "igniteui-angular-dashboards" }, // these IG packages are sometimes updated: { version: "6.1.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 c54858b6f..60171756f 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","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":"20.0.1-beta.0","name":"igniteui-angular-charts"}, +{"ver":"20.0.1-beta.0","name":"igniteui-angular-core"}, +{"ver":"20.0.1-beta.0","name":"igniteui-angular-dashboards"}, +{"ver":"20.0.1-beta.0","name":"igniteui-angular-data-grids"}, +{"ver":"20.0.1-beta.0","name":"igniteui-angular-excel"}, +{"ver":"20.0.1-beta.0","name":"igniteui-angular-gauges"}, +{"ver":"20.0.1-beta.0","name":"igniteui-angular-inputs"}, +{"ver":"20.0.1-beta.0","name":"igniteui-angular-layouts"}, +{"ver":"20.0.1-beta.0","name":"igniteui-angular-maps"}, +{"ver":"20.0.1-beta.0","name":"igniteui-angular-spreadsheet"}, +{"ver":"20.0.1-beta.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, {"ver":"18.1.0","name":"igniteui-theming"}, {"ver":"6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 f3a0de902..33a2be9ef 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-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 86280a7b4..46a458267 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 86280a7b4..46a458267 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 81e1a232c..226d93868 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", - "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", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-dashboards": "20.0.1-beta.0", + "igniteui-angular-data-grids": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 b0ce51490..efdd3aa44 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", - "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", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-dashboards": "20.0.1-beta.0", + "igniteui-angular-data-grids": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 b0ce51490..efdd3aa44 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", - "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", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-dashboards": "20.0.1-beta.0", + "igniteui-angular-data-grids": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-beta.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 b0ce51490..efdd3aa44 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", - "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", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-dashboards": "20.0.1-beta.0", + "igniteui-angular-data-grids": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 b0ce51490..efdd3aa44 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", - "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", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-dashboards": "20.0.1-beta.0", + "igniteui-angular-data-grids": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 b0ce51490..efdd3aa44 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", - "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", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-dashboards": "20.0.1-beta.0", + "igniteui-angular-data-grids": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 93d3b0f52..30aef10d7 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 f3a0de902..33a2be9ef 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-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 f3a0de902..33a2be9ef 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-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 f3a0de902..33a2be9ef 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 f3a0de902..33a2be9ef 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 f3a0de902..33a2be9ef 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 3d14fdf65..780727809 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 8e51329be..9172d0783 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", - "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", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-data-grids": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-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 f3a0de902..33a2be9ef 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-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 f3a0de902..33a2be9ef 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-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 f3a0de902..33a2be9ef 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-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 f3a0de902..33a2be9ef 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-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 f3a0de902..33a2be9ef 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 86280a7b4..46a458267 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 d84025e38..e067dfd1c 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-inputs": "20.0.0", - "igniteui-angular-layouts": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-layouts": "20.0.1-beta.0", "igniteui-webcomponents": "6.1.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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 c5ced7a51..86cf164d3 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 42ca83b92..8079b7264 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", - "igniteui-angular-core": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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 7f1518762..03ad8ce61 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", - "igniteui-angular-excel": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-excel": "20.0.1-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 0f7ae5962..4042cf348 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", - "igniteui-angular-excel": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-excel": "20.0.1-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 0f7ae5962..4042cf348 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", - "igniteui-angular-excel": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-excel": "20.0.1-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 0f7ae5962..4042cf348 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", - "igniteui-angular-excel": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-excel": "20.0.1-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 5e4603c7f..f3fd72d35 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-excel": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-excel": "20.0.1-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 5e4603c7f..f3fd72d35 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-excel": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-excel": "20.0.1-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 7f630dd67..fedf90fa2 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", - "igniteui-angular-excel": "20.0.0", - "igniteui-angular-spreadsheet": "20.0.0", - "igniteui-angular-spreadsheet-chart-adapter": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-excel": "20.0.1-beta.0", + "igniteui-angular-spreadsheet": "20.0.1-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "20.0.1-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 cc3404078..18f5ccd21 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", - "igniteui-angular-excel": "20.0.0", - "igniteui-angular-spreadsheet": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-excel": "20.0.1-beta.0", + "igniteui-angular-spreadsheet": "20.0.1-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 dd1763b61..6f7014be6 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", - "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", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-excel": "20.0.1-beta.0", + "igniteui-angular-spreadsheet": "20.0.1-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "20.0.1-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 dd1763b61..6f7014be6 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", - "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", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-excel": "20.0.1-beta.0", + "igniteui-angular-spreadsheet": "20.0.1-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "20.0.1-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 cc3404078..18f5ccd21 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", - "igniteui-angular-excel": "20.0.0", - "igniteui-angular-spreadsheet": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-excel": "20.0.1-beta.0", + "igniteui-angular-spreadsheet": "20.0.1-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 cc3404078..18f5ccd21 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", - "igniteui-angular-excel": "20.0.0", - "igniteui-angular-spreadsheet": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-excel": "20.0.1-beta.0", + "igniteui-angular-spreadsheet": "20.0.1-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 cc3404078..18f5ccd21 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", - "igniteui-angular-excel": "20.0.0", - "igniteui-angular-spreadsheet": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-excel": "20.0.1-beta.0", + "igniteui-angular-spreadsheet": "20.0.1-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 cc3404078..18f5ccd21 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", - "igniteui-angular-excel": "20.0.0", - "igniteui-angular-spreadsheet": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-excel": "20.0.1-beta.0", + "igniteui-angular-spreadsheet": "20.0.1-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 cc3404078..18f5ccd21 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", - "igniteui-angular-excel": "20.0.0", - "igniteui-angular-spreadsheet": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-excel": "20.0.1-beta.0", + "igniteui-angular-spreadsheet": "20.0.1-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 cc3404078..18f5ccd21 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", - "igniteui-angular-excel": "20.0.0", - "igniteui-angular-spreadsheet": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-excel": "20.0.1-beta.0", + "igniteui-angular-spreadsheet": "20.0.1-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 cc3404078..18f5ccd21 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", - "igniteui-angular-excel": "20.0.0", - "igniteui-angular-spreadsheet": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-excel": "20.0.1-beta.0", + "igniteui-angular-spreadsheet": "20.0.1-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 95ed0609f..8d0565424 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 95ed0609f..8d0565424 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 95ed0609f..8d0565424 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 73a5939a4..11370d431 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", - "igniteui-angular-gauges": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-gauges": "20.0.1-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 3301e85ef..e328ceeb7 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", - "igniteui-angular-inputs": "20.0.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-inputs": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-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 ec8e67254..4df76c62f 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", - "igniteui-angular-core": "20.0.0", - "igniteui-angular-maps": "20.0.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", From 6a1a3b2efff3bac1db380258b5a84bf6d7dcc83d Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 30 Jul 2025 12:16:02 -0400 Subject: [PATCH 157/183] Adding changes from build igniteui-xplat-examples-output+PRs_2025.7.23.1 (#343) Co-authored-by: tfsbuild --- .../charts/category-chart/axis-labels/src/app.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ef6906779..cc426880b 100644 --- a/samples/charts/category-chart/axis-labels/src/app.component.html +++ b/samples/charts/category-chart/axis-labels/src/app.component.html @@ -34,7 +34,7 @@ propertyPath="XAxisLabelTextColor" name="XAxisLabelTextColorEditor" #xAxisLabelTextColorEditor - label="Y Axis Label Color" + label="X Axis Label Color" valueType="EnumValue" shouldOverrideDefaultEditor="true" dropDownNames="red, green" From 9f60c0ae9f9da519130e4bfdab805aee4fff7546 Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Fri, 8 Aug 2025 14:25:56 -0400 Subject: [PATCH 158/183] export-code-gen-fixes (#345) --- .../src/TemperatureAnnotatedData.ts | 96 +- .../src/TemperatureAnnotatedData.ts | 96 +- .../src/TemperatureAnnotatedData.ts | 96 +- .../src/TemperatureAnnotatedData.ts | 96 +- .../src/TemperatureAnnotatedData.ts | 96 +- .../src/TemperatureAnnotatedData.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/OlympicMedalsTopCountries.ts | 48 +- .../axis-overlap/src/HighestGrossingMovies.ts | 42 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../chart-highlight-filter/src/SalesData.ts | 17714 +--------------- .../src/HighestGrossingMovies.ts | 42 +- .../src/TemperatureAverageData.ts | 72 +- .../src/EnergyRenewableConsumption.ts | 50 +- .../src/HighestGrossingMovies.ts | 42 +- .../custom-selection/src/SelectableData.ts | 112 +- .../data-aggregations/src/SalesData.ts | 17714 +--------------- .../data-filter/src/ContinentsBirthRate.ts | 88 +- .../src/HighestGrossingMovies.ts | 42 +- .../data-legend/src/HighestGrossingMovies.ts | 42 +- .../src/HighestGrossingMovies.ts | 42 +- .../src/HighestGrossingMovies.ts | 42 +- .../data-tooltip/src/HighestGrossingMovies.ts | 42 +- .../src/HighestGrossingMovies.ts | 42 +- .../src/TemperatureAnnotatedData.ts | 96 +- .../src/TemperatureAnnotatedData.ts | 96 +- .../src/HighestGrossingMovies.ts | 42 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/EnergyRenewableConsumption.ts | 50 +- .../src/TemperatureAverageData.ts | 72 +- .../src/EnergyRenewableConsumption.ts | 50 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/DashboardGaugeDataSource.ts | 5 +- .../map-dashboard/src/WorldCities.ts | 6060 +----- .../pie-dashboard/src/EnergyGlobalDemand.ts | 35 +- .../src/CountryRenewableCallouts.ts | 84 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/TemperatureAverageDataLongLabels.ts | 72 +- .../src/TemperatureAverageData.ts | 72 +- .../src/HighestGrossingMovies.ts | 42 +- .../src/RoadblocksToSuccess.ts | 50 +- .../src/OnlineShoppingSearches.ts | 72 +- .../src/OnlineShoppingSearches.ts | 72 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/OnlineTrafficHighlightDesktopOnly.ts | 42 +- .../src/OnlineTrafficHighlightTotals.ts | 42 +- .../src/CountryRenewableElectricity.ts | 96 +- .../CountryRenewableElectricityFiltered.ts | 96 +- .../OlympicMedalsTopCountriesWithTotals.ts | 72 +- .../src/AnnotationBandData.ts | 12 +- .../src/StockTesla.ts | 2724 +-- .../src/app.component.html | 2 +- .../src/AnnotationLineData1.ts | 18 +- .../src/AnnotationLineData2.ts | 22 +- .../src/StockTesla.ts | 2724 +-- .../src/app.component.html | 2 +- .../src/AnnotationSliceMultiOverlayData.ts | 5 +- .../src/StockTesla.ts | 2724 +-- .../src/AnnotationLineData1.ts | 18 +- .../src/AnnotationLineData2.ts | 22 +- .../src/AnnotationSliceEarningsBeatData.ts | 18 +- .../src/AnnotationSliceEarningsMissData.ts | 18 +- .../src/AnnotationSliceStockSplitData.ts | 12 +- .../src/AnnotationStripData.ts | 21 +- .../src/StockTesla.ts | 2724 +-- .../src/app.component.html | 2 +- .../src/AnnotationRectData.ts | 20 +- .../src/StockTesla.ts | 2724 +-- .../src/app.component.html | 2 +- .../src/AnnotationSliceEarningsBeatData.ts | 18 +- .../src/AnnotationSliceEarningsMissData.ts | 18 +- .../src/AnnotationSliceStockSplitData.ts | 12 +- .../src/StockTesla.ts | 2724 +-- .../src/app.component.html | 2 +- .../src/AnnotationStripData.ts | 21 +- .../src/StockTesla.ts | 2724 +-- .../src/app.component.html | 2 +- .../OlympicMedalsTopCountriesWithTotals.ts | 72 +- .../OlympicMedalsTopCountriesWithTotals.ts | 72 +- .../OlympicMedalsTopCountriesWithTotals.ts | 72 +- .../src/CountryDemographicAfrican.ts | 432 +- .../src/CountryDemographicEurope.ts | 360 +- .../data-legend/src/app.component.html | 2 +- .../OlympicMedalsTopCountriesWithTotals.ts | 72 +- .../OlympicMedalsTopCountriesWithTotals.ts | 72 +- .../OlympicMedalsTopCountriesWithTotals.ts | 72 +- .../src/CountryDemographicAfrican.ts | 432 +- .../src/CountryDemographicEurope.ts | 360 +- .../financial-price-series/src/Stock2Years.ts | 240 +- .../src/BoatSailingData.ts | 63 +- .../polar-area-chart/src/BoatSailingData.ts | 63 +- .../polar-line-chart/src/BoatSailingData.ts | 63 +- .../src/BoatSailingData.ts | 63 +- .../src/BoatSailingData.ts | 63 +- .../polar-spline-chart/src/BoatSailingData.ts | 63 +- .../src/FootballPlayerStats.ts | 56 +- .../src/FootballPlayerStats.ts | 56 +- .../src/FootballPlayerStats.ts | 56 +- .../src/FootballPlayerStats.ts | 56 +- .../src/FootballPlayerStats.ts | 56 +- .../src/FootballPlayerStats.ts | 56 +- .../src/FootballPlayerStats.ts | 56 +- .../src/RadialProportionalData.ts | 64 +- .../src/EnergyRenewableConsumption.ts | 50 +- .../src/TemperatureRangeData.ts | 108 +- .../src/TemperatureRangeData.ts | 108 +- .../src/WorldStats.ts | 5616 +---- .../src/app.component.html | 2 +- .../src/CountryStatsAfrica.ts | 459 +- .../src/CountryStatsEurope.ts | 369 +- .../src/WorldStats.ts | 5616 +---- .../src/WorldStats.ts | 5616 +---- .../src/app.component.html | 2 +- .../src/HealthDataForFrance.ts | 248 +- .../src/HealthDataForGermany.ts | 240 +- .../src/CountryDemographicAfrican.ts | 432 +- .../src/CountryDemographicEurope.ts | 360 +- .../src/HealthDataForFrance.ts | 248 +- .../src/HealthDataForGermany.ts | 240 +- .../src/EnergyRenewableConsumption.ts | 50 +- .../src/ContinentsBirthRate.ts | 88 +- .../src/EnergyRenewableConsumption.ts | 50 +- .../src/OnlineTrafficByDevice.ts | 56 +- .../src/ContinentsBirthRate.ts | 88 +- .../src/ContinentsBirthRate.ts | 88 +- .../src/ContinentsBirthRate.ts | 88 +- .../src/ContinentsBirthRate.ts | 88 +- .../src/EnergyRenewableConsumption.ts | 50 +- .../src/ContinentsBirthRate.ts | 88 +- .../src/ContinentsBirthRate.ts | 88 +- .../src/ContinentsBirthRate.ts | 88 +- .../src/ContinentsBirthRate.ts | 88 +- .../transition-event/src/CompanyIncomeData.ts | 49 +- .../trendline-layer/.codesandbox/Dockerfile | 1 + .../trendline-layer/.codesandbox/tasks.json | 17 + .../data-chart/trendline-layer/.stackblitzrc | 1 + .../data-chart/trendline-layer/angular.json | 140 + .../data-chart/trendline-layer/package.json | 43 + .../src/CountryRenewableElectricity.ts | 34 + .../trendline-layer/src/app.component.html | 65 + .../trendline-layer/src/app.component.scss | 3 + .../trendline-layer/src/app.component.ts | 64 + .../trendline-layer/src/app.module.ts | 30 + .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 + .../data-chart/trendline-layer/src/index.html | 23 + .../data-chart/trendline-layer/src/main.ts | 15 + .../trendline-layer/src/polyfills.ts | 61 + .../trendline-layer/src/styles.scss | 9 + .../trendline-layer/src/typings.d.ts | 5 + .../trendline-layer/tsconfig.app.json | 10 + .../data-chart/trendline-layer/tsconfig.json | 25 + .../data-chart/trendline-layer/tslint.json | 31 + .../waterfall-chart/src/CompanyIncomeData.ts | 49 +- .../src/EnergyGlobalDemand.ts | 35 +- .../animation/src/EnergyGlobalDemand.ts | 35 +- .../src/OnlineTrafficHighlightDesktopOnly.ts | 42 +- .../src/OnlineTrafficHighlightTotals.ts | 42 +- .../highlighting/src/EnergyGlobalDemand.ts | 35 +- .../legend/src/EnergyGlobalDemand.ts | 35 +- .../data-pie-chart/others/src/DataPieData.ts | 48 +- .../overview/src/EnergyGlobalDemand.ts | 35 +- .../selection/src/EnergyGlobalDemand.ts | 35 +- .../legend/src/EnergyGlobalDemand.ts | 35 +- .../overview/src/CompanyMarketShares.ts | 35 +- .../rings/src/CalendarMonths.ts | 72 +- .../rings/src/CalendarSeasons.ts | 24 +- .../src/app.component.html | 4 +- .../src/app.component.html | 2 +- .../data-legend/src/app.component.html | 2 +- .../format-specifiers/src/app.component.html | 4 +- .../legend/src/EnergyGlobalDemand.ts | 35 +- .../others/src/EnergyGlobalDemand.ts | 35 +- .../overview/src/EnergyGlobalDemand.ts | 35 +- .../styling/src/EnergyGlobalDemand.ts | 35 +- .../display-area/src/SparklineMixedData.ts | 48 +- .../display-column/src/SparklineMixedData.ts | 48 +- .../display-lines/src/SparklineMixedData.ts | 48 +- .../display-winloss/src/SparklineMixedData.ts | 48 +- .../markers/src/SparklineProfitData.ts | 48 +- .../normal-range/src/SparklineMixedData.ts | 48 +- .../trendlines/src/SparklineMixedData.ts | 48 +- .../src/SparklineUnknownData.ts | 60 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryRenewableElectricity.ts | 96 +- .../src/CountryTopUrbanPopData.ts | 60 +- .../src/CountyHierarchicalData.ts | 1776 +- .../layout/src/CountyHierarchicalData.ts | 1776 +- .../overview/src/CountyHierarchicalData.ts | 1776 +- .../styling/src/CountyHierarchicalData.ts | 1776 +- 224 files changed, 8357 insertions(+), 91798 deletions(-) create mode 100644 samples/charts/data-chart/trendline-layer/.codesandbox/Dockerfile create mode 100644 samples/charts/data-chart/trendline-layer/.codesandbox/tasks.json create mode 100644 samples/charts/data-chart/trendline-layer/.stackblitzrc create mode 100644 samples/charts/data-chart/trendline-layer/angular.json create mode 100644 samples/charts/data-chart/trendline-layer/package.json create mode 100644 samples/charts/data-chart/trendline-layer/src/CountryRenewableElectricity.ts create mode 100644 samples/charts/data-chart/trendline-layer/src/app.component.html create mode 100644 samples/charts/data-chart/trendline-layer/src/app.component.scss create mode 100644 samples/charts/data-chart/trendline-layer/src/app.component.ts create mode 100644 samples/charts/data-chart/trendline-layer/src/app.module.ts create mode 100644 samples/charts/data-chart/trendline-layer/src/environments/environment.prod.ts create mode 100644 samples/charts/data-chart/trendline-layer/src/environments/environment.ts create mode 100644 samples/charts/data-chart/trendline-layer/src/index.html create mode 100644 samples/charts/data-chart/trendline-layer/src/main.ts create mode 100644 samples/charts/data-chart/trendline-layer/src/polyfills.ts create mode 100644 samples/charts/data-chart/trendline-layer/src/styles.scss create mode 100644 samples/charts/data-chart/trendline-layer/src/typings.d.ts create mode 100644 samples/charts/data-chart/trendline-layer/tsconfig.app.json create mode 100644 samples/charts/data-chart/trendline-layer/tsconfig.json create mode 100644 samples/charts/data-chart/trendline-layer/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 70539ebf5..a2e9e07dd 100644 --- a/samples/charts/category-chart/annotations-all/src/TemperatureAnnotatedData.ts +++ b/samples/charts/category-chart/annotations-all/src/TemperatureAnnotatedData.ts @@ -15,90 +15,18 @@ export class TemperatureAnnotatedData extends Array { 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 - }), + 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)); } diff --git a/samples/charts/category-chart/axis-range/src/CountryRenewableElectricity.ts b/samples/charts/category-chart/axis-range/src/CountryRenewableElectricity.ts index b32970c46..21a29ab22 100644 --- a/samples/charts/category-chart/axis-range/src/CountryRenewableElectricity.ts +++ b/samples/charts/category-chart/axis-range/src/CountryRenewableElectricity.ts @@ -15,90 +15,18 @@ export class CountryRenewableElectricity extends Array { 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` - }), + 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)); } 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 edced6c9e..d7631f3a9 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 @@ -14,42 +14,12 @@ export class HighestGrossingMovies extends Array { 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 - }), + 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)); } 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 4f63b25f7..12d283772 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 @@ -13,66 +13,18 @@ export class TemperatureAverageData extends Array { 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 - }), + 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/column-chart-styling/src/EnergyRenewableConsumption.ts b/samples/charts/category-chart/column-chart-styling/src/EnergyRenewableConsumption.ts index f742bbef3..2f522ee1b 100644 --- a/samples/charts/category-chart/column-chart-styling/src/EnergyRenewableConsumption.ts +++ b/samples/charts/category-chart/column-chart-styling/src/EnergyRenewableConsumption.ts @@ -17,51 +17,11 @@ export class EnergyRenewableConsumption extends Array { 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 - }), + 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)); } diff --git a/samples/charts/category-chart/custom-selection/src/SelectableData.ts b/samples/charts/category-chart/custom-selection/src/SelectableData.ts index 2424432dd..9f727c7b7 100644 --- a/samples/charts/category-chart/custom-selection/src/SelectableData.ts +++ b/samples/charts/category-chart/custom-selection/src/SelectableData.ts @@ -14,102 +14,22 @@ export class SelectableData extends Array { 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 - }), + 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)); } diff --git a/samples/charts/category-chart/data-aggregations/src/SalesData.ts b/samples/charts/category-chart/data-aggregations/src/SalesData.ts index 5f4ec009f..816d37dbe 100644 --- a/samples/charts/category-chart/data-aggregations/src/SalesData.ts +++ b/samples/charts/category-chart/data-aggregations/src/SalesData.ts @@ -24,16678 +24,1048 @@ export class SalesData extends Array { 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` - }), + 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)); } diff --git a/samples/charts/category-chart/data-filter/src/ContinentsBirthRate.ts b/samples/charts/category-chart/data-filter/src/ContinentsBirthRate.ts index 2e1860ade..7d476a04c 100644 --- a/samples/charts/category-chart/data-filter/src/ContinentsBirthRate.ts +++ b/samples/charts/category-chart/data-filter/src/ContinentsBirthRate.ts @@ -18,86 +18,14 @@ export class ContinentsBirthRate extends Array { 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 - }), + 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)); } 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 edced6c9e..d7631f3a9 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 @@ -14,42 +14,12 @@ export class HighestGrossingMovies extends Array { 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 - }), + 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)); } diff --git a/samples/charts/category-chart/data-legend/src/HighestGrossingMovies.ts b/samples/charts/category-chart/data-legend/src/HighestGrossingMovies.ts index edced6c9e..d7631f3a9 100644 --- a/samples/charts/category-chart/data-legend/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/data-legend/src/HighestGrossingMovies.ts @@ -14,42 +14,12 @@ export class HighestGrossingMovies extends Array { 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 - }), + 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)); } 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 edced6c9e..d7631f3a9 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 @@ -14,42 +14,12 @@ export class HighestGrossingMovies extends Array { 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 - }), + 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)); } 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 edced6c9e..d7631f3a9 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/data-tooltip-positioning/src/HighestGrossingMovies.ts @@ -14,42 +14,12 @@ export class HighestGrossingMovies extends Array { 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 - }), + 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)); } diff --git a/samples/charts/category-chart/data-tooltip/src/HighestGrossingMovies.ts b/samples/charts/category-chart/data-tooltip/src/HighestGrossingMovies.ts index edced6c9e..d7631f3a9 100644 --- a/samples/charts/category-chart/data-tooltip/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/data-tooltip/src/HighestGrossingMovies.ts @@ -14,42 +14,12 @@ export class HighestGrossingMovies extends Array { 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 - }), + 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)); } diff --git a/samples/charts/category-chart/format-specifiers/src/HighestGrossingMovies.ts b/samples/charts/category-chart/format-specifiers/src/HighestGrossingMovies.ts index edced6c9e..d7631f3a9 100644 --- a/samples/charts/category-chart/format-specifiers/src/HighestGrossingMovies.ts +++ b/samples/charts/category-chart/format-specifiers/src/HighestGrossingMovies.ts @@ -14,42 +14,12 @@ export class HighestGrossingMovies extends Array { 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 - }), + 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)); } diff --git a/samples/charts/category-chart/highlighting-behavior/src/TemperatureAnnotatedData.ts b/samples/charts/category-chart/highlighting-behavior/src/TemperatureAnnotatedData.ts index 70539ebf5..a2e9e07dd 100644 --- a/samples/charts/category-chart/highlighting-behavior/src/TemperatureAnnotatedData.ts +++ b/samples/charts/category-chart/highlighting-behavior/src/TemperatureAnnotatedData.ts @@ -15,90 +15,18 @@ export class TemperatureAnnotatedData extends Array { 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 - }), + 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)); } 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 b32970c46..21a29ab22 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 @@ -15,90 +15,18 @@ export class CountryRenewableElectricity extends Array { 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 - }), + 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-multiple-modes/src/EnergyRenewableConsumption.ts b/samples/charts/category-chart/selection-multiple-modes/src/EnergyRenewableConsumption.ts index f742bbef3..2f522ee1b 100644 --- a/samples/charts/category-chart/selection-multiple-modes/src/EnergyRenewableConsumption.ts +++ b/samples/charts/category-chart/selection-multiple-modes/src/EnergyRenewableConsumption.ts @@ -17,51 +17,11 @@ export class EnergyRenewableConsumption extends Array { 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` - }), + 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: `Barcelona` }), + 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: `Naples` }), + 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: `Lisbon` }), + 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/pie-dashboard/src/EnergyGlobalDemand.ts b/samples/charts/dashboard-tile/pie-dashboard/src/EnergyGlobalDemand.ts index 3d2ed388a..a6cd428f8 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/src/EnergyGlobalDemand.ts +++ b/samples/charts/dashboard-tile/pie-dashboard/src/EnergyGlobalDemand.ts @@ -14,36 +14,11 @@ export class EnergyGlobalDemand extends Array { 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%` - }), + 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-chart/annotations-custom/src/CountryRenewableCallouts.ts b/samples/charts/data-chart/annotations-custom/src/CountryRenewableCallouts.ts index a54a47775..59fa8a587 100644 --- a/samples/charts/data-chart/annotations-custom/src/CountryRenewableCallouts.ts +++ b/samples/charts/data-chart/annotations-custom/src/CountryRenewableCallouts.ts @@ -14,78 +14,18 @@ export class CountryRenewableCallouts extends Array { 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 - }), + 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/data-chart/bar-chart-multiple-sources/src/HighestGrossingMovies.ts b/samples/charts/data-chart/bar-chart-multiple-sources/src/HighestGrossingMovies.ts index edced6c9e..d7631f3a9 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 @@ -14,42 +14,12 @@ export class HighestGrossingMovies extends Array { 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 - }), + 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)); } 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 419d12c47..fab2c938d 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/src/RoadblocksToSuccess.ts +++ b/samples/charts/data-chart/bar-chart-overlapping/src/RoadblocksToSuccess.ts @@ -17,51 +17,11 @@ export class RoadblocksToSuccess extends Array { 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` - }), + 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)); } 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 908ea508d..453b1242d 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 @@ -16,70 +16,14 @@ export class OnlineShoppingSearches extends Array { 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` - }), + 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)); } 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 908ea508d..453b1242d 100644 --- a/samples/charts/data-chart/bar-chart-styling/src/OnlineShoppingSearches.ts +++ b/samples/charts/data-chart/bar-chart-styling/src/OnlineShoppingSearches.ts @@ -16,70 +16,14 @@ export class OnlineShoppingSearches extends Array { 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` - }), + 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)); } 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 b32970c46..21a29ab22 100644 --- a/samples/charts/data-chart/callout-layer-styling/src/CountryRenewableElectricity.ts +++ b/samples/charts/data-chart/callout-layer-styling/src/CountryRenewableElectricity.ts @@ -15,90 +15,18 @@ export class CountryRenewableElectricity extends Array { 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` - }), + 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 index 1efe6d6e4..4474d2f82 100644 --- a/samples/charts/data-chart/data-annotation-band-layer/src/StockTesla.ts +++ b/samples/charts/data-chart/data-annotation-band-layer/src/StockTesla.ts @@ -19,2503 +19,233 @@ export class StockTesla extends Array { 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 - }), + 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 index 504124097..6a5a2bcba 100644 --- 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 @@ -86,7 +86,7 @@ { 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` - }), + 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 index 688a44c90..b98406605 100644 --- a/samples/charts/data-chart/data-annotation-line-layer/src/AnnotationLineData2.ts +++ b/samples/charts/data-chart/data-annotation-line-layer/src/AnnotationLineData2.ts @@ -16,24 +16,10 @@ export class AnnotationLineData2 extends Array { 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` - }), + 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 index 1efe6d6e4..4474d2f82 100644 --- a/samples/charts/data-chart/data-annotation-line-layer/src/StockTesla.ts +++ b/samples/charts/data-chart/data-annotation-line-layer/src/StockTesla.ts @@ -19,2503 +19,233 @@ export class StockTesla extends Array { 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 - }), + 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 index 5d1e1af41..df377dad3 100644 --- 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 @@ -74,7 +74,7 @@ { 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 - }), + 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/AnnotationLineData1.ts b/samples/charts/data-chart/data-annotation-multiple-with-stocks/src/AnnotationLineData1.ts index e886d46bb..f9d3d527f 100644 --- 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 @@ -16,22 +16,8 @@ export class AnnotationLineData1 extends Array { 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` - }), + 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 index 688a44c90..b98406605 100644 --- 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 @@ -16,24 +16,10 @@ export class AnnotationLineData2 extends Array { 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` - }), + 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 index 766a09381..4e9456097 100644 --- 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 @@ -13,21 +13,9 @@ export class AnnotationSliceEarningsBeatData extends Array { 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%` - }), + 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 index 1efe6d6e4..4474d2f82 100644 --- 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 @@ -19,2503 +19,233 @@ export class StockTesla extends Array { 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 - }), + 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 index 57d2efac4..03055daae 100644 --- 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 @@ -105,7 +105,7 @@ { 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)` - }), + 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 index 1efe6d6e4..4474d2f82 100644 --- a/samples/charts/data-chart/data-annotation-rect-layer/src/StockTesla.ts +++ b/samples/charts/data-chart/data-annotation-rect-layer/src/StockTesla.ts @@ -19,2503 +19,233 @@ export class StockTesla extends Array { 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 - }), + 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 index 9ca2d92dd..ca44b1365 100644 --- 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 @@ -52,7 +52,7 @@ { 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 - }), + 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 index cabb90536..6959ef550 100644 --- 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 @@ -87,7 +87,7 @@ { 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%` - }), + 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 index 1efe6d6e4..4474d2f82 100644 --- a/samples/charts/data-chart/data-annotation-strip-layer/src/StockTesla.ts +++ b/samples/charts/data-chart/data-annotation-strip-layer/src/StockTesla.ts @@ -19,2503 +19,233 @@ export class StockTesla extends Array { 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 - }), + 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 index 27d81425e..d7f98b848 100644 --- 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 @@ -89,7 +89,7 @@ + includedColumns="birthRate, deathRate">
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 index a203443f0..4fb5b328a 100644 --- 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 @@ -19,72 +19,12 @@ export class OlympicMedalsTopCountriesWithTotals extends Array { 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 - }), + 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)); } 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 a7372e278..890e99bd7 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 @@ -14,60 +14,15 @@ export class BoatSailingData extends Array { 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 - }), + 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)); } 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 a7372e278..890e99bd7 100644 --- a/samples/charts/data-chart/polar-area-chart/src/BoatSailingData.ts +++ b/samples/charts/data-chart/polar-area-chart/src/BoatSailingData.ts @@ -14,60 +14,15 @@ export class BoatSailingData extends Array { 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 - }), + 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)); } 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 a7372e278..890e99bd7 100644 --- a/samples/charts/data-chart/polar-line-chart/src/BoatSailingData.ts +++ b/samples/charts/data-chart/polar-line-chart/src/BoatSailingData.ts @@ -14,60 +14,15 @@ export class BoatSailingData extends Array { 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 - }), + 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)); } 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 a7372e278..890e99bd7 100644 --- a/samples/charts/data-chart/polar-scatter-chart/src/BoatSailingData.ts +++ b/samples/charts/data-chart/polar-scatter-chart/src/BoatSailingData.ts @@ -14,60 +14,15 @@ export class BoatSailingData extends Array { 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 - }), + 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)); } 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 a7372e278..890e99bd7 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 @@ -14,60 +14,15 @@ export class BoatSailingData extends Array { 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 - }), + 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)); } 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 a7372e278..890e99bd7 100644 --- a/samples/charts/data-chart/polar-spline-chart/src/BoatSailingData.ts +++ b/samples/charts/data-chart/polar-spline-chart/src/BoatSailingData.ts @@ -14,60 +14,15 @@ export class BoatSailingData extends Array { 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 - }), + 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)); } 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 76a96e138..4b194589a 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 @@ -14,54 +14,14 @@ export class FootballPlayerStats extends Array { 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 - }), + 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-area-chart/src/FootballPlayerStats.ts b/samples/charts/data-chart/radial-area-chart/src/FootballPlayerStats.ts index 76a96e138..4b194589a 100644 --- a/samples/charts/data-chart/radial-area-chart/src/FootballPlayerStats.ts +++ b/samples/charts/data-chart/radial-area-chart/src/FootballPlayerStats.ts @@ -14,54 +14,14 @@ export class FootballPlayerStats extends Array { 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 - }), + 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/FootballPlayerStats.ts b/samples/charts/data-chart/radial-column-chart-selection/src/FootballPlayerStats.ts index 76a96e138..4b194589a 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/src/FootballPlayerStats.ts +++ b/samples/charts/data-chart/radial-column-chart-selection/src/FootballPlayerStats.ts @@ -14,54 +14,14 @@ export class FootballPlayerStats extends Array { 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 - }), + 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/src/FootballPlayerStats.ts b/samples/charts/data-chart/radial-column-chart/src/FootballPlayerStats.ts index 76a96e138..4b194589a 100644 --- a/samples/charts/data-chart/radial-column-chart/src/FootballPlayerStats.ts +++ b/samples/charts/data-chart/radial-column-chart/src/FootballPlayerStats.ts @@ -14,54 +14,14 @@ export class FootballPlayerStats extends Array { 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 - }), + 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/FootballPlayerStats.ts b/samples/charts/data-chart/radial-label-mode/src/FootballPlayerStats.ts index 76a96e138..4b194589a 100644 --- a/samples/charts/data-chart/radial-label-mode/src/FootballPlayerStats.ts +++ b/samples/charts/data-chart/radial-label-mode/src/FootballPlayerStats.ts @@ -14,54 +14,14 @@ export class FootballPlayerStats extends Array { 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 - }), + 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-line-chart/src/FootballPlayerStats.ts b/samples/charts/data-chart/radial-line-chart/src/FootballPlayerStats.ts index 76a96e138..4b194589a 100644 --- a/samples/charts/data-chart/radial-line-chart/src/FootballPlayerStats.ts +++ b/samples/charts/data-chart/radial-line-chart/src/FootballPlayerStats.ts @@ -14,54 +14,14 @@ export class FootballPlayerStats extends Array { 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 - }), + 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-pie-chart/src/FootballPlayerStats.ts b/samples/charts/data-chart/radial-pie-chart/src/FootballPlayerStats.ts index 76a96e138..4b194589a 100644 --- a/samples/charts/data-chart/radial-pie-chart/src/FootballPlayerStats.ts +++ b/samples/charts/data-chart/radial-pie-chart/src/FootballPlayerStats.ts @@ -14,54 +14,14 @@ export class FootballPlayerStats extends Array { 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 - }), + 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-pie-proportional-category-angle-axis/src/RadialProportionalData.ts b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/RadialProportionalData.ts index db3bd7831..cae5622fc 100644 --- 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 @@ -15,62 +15,14 @@ export class RadialProportionalData extends Array { 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 - }), + 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-proportional-radial-angle-axis/src/EnergyRenewableConsumption.ts b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/EnergyRenewableConsumption.ts index f742bbef3..2f522ee1b 100644 --- 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 @@ -17,51 +17,11 @@ export class EnergyRenewableConsumption extends Array { 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 - }), + 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)); } 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 50c309607..03846d152 100644 --- a/samples/charts/data-chart/range-column-chart/src/TemperatureRangeData.ts +++ b/samples/charts/data-chart/range-column-chart/src/TemperatureRangeData.ts @@ -16,102 +16,18 @@ export class TemperatureRangeData extends Array { 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 - }), + 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)); } 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 42b539d0b..a07901497 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 @@ -31,5388 +31,240 @@ export class WorldStats extends Array { 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 - }), + 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-fill-scale/src/app.component.html b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/app.component.html index 8f7ee8b18..c9cddb213 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 @@ -64,7 +64,7 @@ labelTextMarginLeft="1" layoutMode="Vertical" badgeShape="Hidden" - includedColumns="X, Y, Radius" + includedColumns="x, y, radius" headerRowVisible="false"> 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 34e0a73da..b75b62780 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 @@ -16,414 +16,57 @@ export class CountryStatsAfrica extends Array { 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` - }), + 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-multiple-sources/src/CountryStatsEurope.ts b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/CountryStatsEurope.ts index d0b93024d..bfd3ff6d3 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 @@ -16,334 +16,47 @@ export class CountryStatsEurope extends Array { 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` - }), + 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)); } 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 42b539d0b..a07901497 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 @@ -31,5388 +31,240 @@ export class WorldStats extends Array { 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 - }), + 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/WorldStats.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts index 42b539d0b..a07901497 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 @@ -31,5388 +31,240 @@ export class WorldStats extends Array { 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 - }), + 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 0fdc9400f..dab770046 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 @@ -62,7 +62,7 @@ labelTextMarginLeft="1" layoutMode="Vertical" badgeShape="Hidden" - includedColumns="X, Y, Radius" + includedColumns="x, y, radius" headerRowVisible="false"> 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 42e805128..daee0979a 100644 --- a/samples/charts/data-chart/scatter-line-chart/src/HealthDataForFrance.ts +++ b/samples/charts/data-chart/scatter-line-chart/src/HealthDataForFrance.ts @@ -15,223 +15,37 @@ export class HealthDataForFrance extends Array { 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` - }), + 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)); } 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 e88199fe2..fdb7a30f9 100644 --- a/samples/charts/data-chart/scatter-line-chart/src/HealthDataForGermany.ts +++ b/samples/charts/data-chart/scatter-line-chart/src/HealthDataForGermany.ts @@ -15,216 +15,36 @@ export class HealthDataForGermany extends Array { 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` - }), + 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)); } 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 3b694f90b..f34edee2c 100644 --- a/samples/charts/data-chart/scatter-point-chart/src/CountryDemographicAfrican.ts +++ b/samples/charts/data-chart/scatter-point-chart/src/CountryDemographicAfrican.ts @@ -15,384 +15,60 @@ export class CountryDemographicAfrican extends Array { 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` - }), + 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)); } 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 e88199fe2..fdb7a30f9 100644 --- a/samples/charts/data-chart/scatter-spline-chart/src/HealthDataForGermany.ts +++ b/samples/charts/data-chart/scatter-spline-chart/src/HealthDataForGermany.ts @@ -15,216 +15,36 @@ export class HealthDataForGermany extends Array { 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` - }), + 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)); } diff --git a/samples/charts/data-chart/selection-matcher/src/EnergyRenewableConsumption.ts b/samples/charts/data-chart/selection-matcher/src/EnergyRenewableConsumption.ts index f742bbef3..2f522ee1b 100644 --- a/samples/charts/data-chart/selection-matcher/src/EnergyRenewableConsumption.ts +++ b/samples/charts/data-chart/selection-matcher/src/EnergyRenewableConsumption.ts @@ -17,51 +17,11 @@ export class EnergyRenewableConsumption extends Array { 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 - }), + 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)); } 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 f742bbef3..2f522ee1b 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 @@ -17,51 +17,11 @@ export class EnergyRenewableConsumption extends Array { 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 - }), + 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)); } 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 2e1860ade..7d476a04c 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 @@ -18,86 +18,14 @@ export class ContinentsBirthRate extends Array { 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 - }), + 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)); } 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 2e1860ade..7d476a04c 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 @@ -18,86 +18,14 @@ export class ContinentsBirthRate extends Array { 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 - }), + 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)); } 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 2e1860ade..7d476a04c 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 @@ -18,86 +18,14 @@ export class ContinentsBirthRate extends Array { 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 - }), + 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)); } 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 2e1860ade..7d476a04c 100644 --- a/samples/charts/data-chart/stacked-area-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-area-chart/src/ContinentsBirthRate.ts @@ -18,86 +18,14 @@ export class ContinentsBirthRate extends Array { 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 - }), + 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)); } 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 f742bbef3..2f522ee1b 100644 --- a/samples/charts/data-chart/stacked-bar-chart/src/EnergyRenewableConsumption.ts +++ b/samples/charts/data-chart/stacked-bar-chart/src/EnergyRenewableConsumption.ts @@ -17,51 +17,11 @@ export class EnergyRenewableConsumption extends Array { 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 - }), + 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)); } 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 2e1860ade..7d476a04c 100644 --- a/samples/charts/data-chart/stacked-line-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-line-chart/src/ContinentsBirthRate.ts @@ -18,86 +18,14 @@ export class ContinentsBirthRate extends Array { 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 - }), + 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)); } 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 2e1860ade..7d476a04c 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 @@ -18,86 +18,14 @@ export class ContinentsBirthRate extends Array { 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 - }), + 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)); } 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 2e1860ade..7d476a04c 100644 --- a/samples/charts/data-chart/stacked-spline-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-spline-chart/src/ContinentsBirthRate.ts @@ -18,86 +18,14 @@ export class ContinentsBirthRate extends Array { 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 - }), + 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)); } diff --git a/samples/charts/data-chart/transition-event/src/CompanyIncomeData.ts b/samples/charts/data-chart/transition-event/src/CompanyIncomeData.ts index 352bd2f69..404cd7c8c 100644 --- a/samples/charts/data-chart/transition-event/src/CompanyIncomeData.ts +++ b/samples/charts/data-chart/transition-event/src/CompanyIncomeData.ts @@ -14,48 +14,13 @@ export class CompanyIncomeData extends Array { 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` - }), + 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)); } diff --git a/samples/charts/data-chart/trendline-layer/.codesandbox/Dockerfile b/samples/charts/data-chart/trendline-layer/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/charts/data-chart/trendline-layer/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/charts/data-chart/trendline-layer/.codesandbox/tasks.json b/samples/charts/data-chart/trendline-layer/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/charts/data-chart/trendline-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/trendline-layer/.stackblitzrc b/samples/charts/data-chart/trendline-layer/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/charts/data-chart/trendline-layer/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/charts/data-chart/trendline-layer/angular.json b/samples/charts/data-chart/trendline-layer/angular.json new file mode 100644 index 000000000..ab35c3cc4 --- /dev/null +++ b/samples/charts/data-chart/trendline-layer/angular.json @@ -0,0 +1,140 @@ +{ + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", + "version": 1, + "newProjectRoot": "projects", + "projects": { + "demo": { + "schematics": { + "@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": "." + } + }, + "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/" ] + } + } + } + } + } + }, + "cli": { + "analytics": false + } +} diff --git a/samples/charts/data-chart/trendline-layer/package.json b/samples/charts/data-chart/trendline-layer/package.json new file mode 100644 index 000000000..86cf164d3 --- /dev/null +++ b/samples/charts/data-chart/trendline-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": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.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": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-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": "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", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "tslint": "~6.1.3", + "ts-node": "10.9.1", + "typescript": "5.8.3" + } +} diff --git a/samples/charts/data-chart/trendline-layer/src/CountryRenewableElectricity.ts b/samples/charts/data-chart/trendline-layer/src/CountryRenewableElectricity.ts new file mode 100644 index 000000000..21a29ab22 --- /dev/null +++ b/samples/charts/data-chart/trendline-layer/src/CountryRenewableElectricity.ts @@ -0,0 +1,34 @@ +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/data-chart/trendline-layer/src/app.component.html b/samples/charts/data-chart/trendline-layer/src/app.component.html new file mode 100644 index 000000000..97407b32e --- /dev/null +++ b/samples/charts/data-chart/trendline-layer/src/app.component.html @@ -0,0 +1,65 @@ +
+
+ + +
+
+ + + + + + + + + + + + +
+
diff --git a/samples/charts/data-chart/trendline-layer/src/app.component.scss b/samples/charts/data-chart/trendline-layer/src/app.component.scss new file mode 100644 index 000000000..cbff781da --- /dev/null +++ b/samples/charts/data-chart/trendline-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/trendline-layer/src/app.component.ts b/samples/charts/data-chart/trendline-layer/src/app.component.ts new file mode 100644 index 000000000..957e1215b --- /dev/null +++ b/samples/charts/data-chart/trendline-layer/src/app.component.ts @@ -0,0 +1,64 @@ +import { AfterViewInit, Component, ViewChild, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core'; +import { ComponentRenderer, DataChartCategoryDescriptionModule, DataChartInteractivityDescriptionModule, DataChartAnnotationDescriptionModule, DataChartCategoryTrendLineDescriptionModule, TrendLineLayerDescriptionModule, DataLegendDescriptionModule } from 'igniteui-angular-core'; +import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; +import { IgxDataLegendComponent, IgxDataChartComponent, IgxCategoryXAxisComponent, IgxNumericYAxisComponent, IgxLineSeriesComponent, IgxTrendLineLayerComponent } 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: IgxDataLegendComponent + @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("trendLine1", { static: true } ) + private trendLine1: IgxTrendLineLayerComponent + @ViewChild("trendLine2", { static: true } ) + private trendLine2: IgxTrendLineLayerComponent + 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; + DataChartCategoryDescriptionModule.register(context); + DataChartInteractivityDescriptionModule.register(context); + DataChartAnnotationDescriptionModule.register(context); + DataChartCategoryTrendLineDescriptionModule.register(context); + TrendLineLayerDescriptionModule.register(context); + DataLegendDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public constructor(private _detector: ChangeDetectorRef) + { + } + + public ngAfterViewInit(): void + { + } + +} + diff --git a/samples/charts/data-chart/trendline-layer/src/app.module.ts b/samples/charts/data-chart/trendline-layer/src/app.module.ts new file mode 100644 index 000000000..eca3c46d0 --- /dev/null +++ b/samples/charts/data-chart/trendline-layer/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 { IgxDataChartCategoryModule, IgxDataChartInteractivityModule, IgxDataChartAnnotationModule, IgxDataChartCategoryTrendLineModule, IgxTrendLineLayerModule, IgxDataLegendModule } from 'igniteui-angular-charts'; + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxDataChartCategoryModule, + IgxDataChartInteractivityModule, + IgxDataChartAnnotationModule, + IgxDataChartCategoryTrendLineModule, + IgxTrendLineLayerModule, + IgxDataLegendModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/charts/data-chart/trendline-layer/src/environments/environment.prod.ts b/samples/charts/data-chart/trendline-layer/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/charts/data-chart/trendline-layer/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/charts/data-chart/trendline-layer/src/environments/environment.ts b/samples/charts/data-chart/trendline-layer/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/charts/data-chart/trendline-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/trendline-layer/src/index.html b/samples/charts/data-chart/trendline-layer/src/index.html new file mode 100644 index 000000000..7650dfb64 --- /dev/null +++ b/samples/charts/data-chart/trendline-layer/src/index.html @@ -0,0 +1,23 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + + diff --git a/samples/charts/data-chart/trendline-layer/src/main.ts b/samples/charts/data-chart/trendline-layer/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/charts/data-chart/trendline-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/trendline-layer/src/polyfills.ts b/samples/charts/data-chart/trendline-layer/src/polyfills.ts new file mode 100644 index 000000000..bea4237c0 --- /dev/null +++ b/samples/charts/data-chart/trendline-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/trendline-layer/src/styles.scss b/samples/charts/data-chart/trendline-layer/src/styles.scss new file mode 100644 index 000000000..9b431e92d --- /dev/null +++ b/samples/charts/data-chart/trendline-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/trendline-layer/src/typings.d.ts b/samples/charts/data-chart/trendline-layer/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/charts/data-chart/trendline-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/trendline-layer/tsconfig.app.json b/samples/charts/data-chart/trendline-layer/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/charts/data-chart/trendline-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/trendline-layer/tsconfig.json b/samples/charts/data-chart/trendline-layer/tsconfig.json new file mode 100644 index 000000000..96a384c70 --- /dev/null +++ b/samples/charts/data-chart/trendline-layer/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compileOnSave": false, + "compilerOptions": { + "importHelpers": true, + "module": "esnext", + "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" + ] + } + +} \ No newline at end of file diff --git a/samples/charts/data-chart/trendline-layer/tslint.json b/samples/charts/data-chart/trendline-layer/tslint.json new file mode 100644 index 000000000..777c777d9 --- /dev/null +++ b/samples/charts/data-chart/trendline-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/waterfall-chart/src/CompanyIncomeData.ts b/samples/charts/data-chart/waterfall-chart/src/CompanyIncomeData.ts index 352bd2f69..404cd7c8c 100644 --- a/samples/charts/data-chart/waterfall-chart/src/CompanyIncomeData.ts +++ b/samples/charts/data-chart/waterfall-chart/src/CompanyIncomeData.ts @@ -14,48 +14,13 @@ export class CompanyIncomeData extends Array { 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` - }), + 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)); } diff --git a/samples/charts/data-pie-chart/animation-replay/src/EnergyGlobalDemand.ts b/samples/charts/data-pie-chart/animation-replay/src/EnergyGlobalDemand.ts index 3d2ed388a..a6cd428f8 100644 --- a/samples/charts/data-pie-chart/animation-replay/src/EnergyGlobalDemand.ts +++ b/samples/charts/data-pie-chart/animation-replay/src/EnergyGlobalDemand.ts @@ -14,36 +14,11 @@ export class EnergyGlobalDemand extends Array { 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%` - }), + 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/EnergyGlobalDemand.ts b/samples/charts/data-pie-chart/animation/src/EnergyGlobalDemand.ts index 3d2ed388a..a6cd428f8 100644 --- a/samples/charts/data-pie-chart/animation/src/EnergyGlobalDemand.ts +++ b/samples/charts/data-pie-chart/animation/src/EnergyGlobalDemand.ts @@ -14,36 +14,11 @@ export class EnergyGlobalDemand extends Array { 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%` - }), + 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/highlight-filter/src/OnlineTrafficHighlightDesktopOnly.ts b/samples/charts/data-pie-chart/highlight-filter/src/OnlineTrafficHighlightDesktopOnly.ts index b5787b318..ef1a0263f 100644 --- a/samples/charts/data-pie-chart/highlight-filter/src/OnlineTrafficHighlightDesktopOnly.ts +++ b/samples/charts/data-pie-chart/highlight-filter/src/OnlineTrafficHighlightDesktopOnly.ts @@ -13,41 +13,13 @@ export class OnlineTrafficHighlightDesktopOnly extends Array { 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%` - }), + 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/EnergyGlobalDemand.ts b/samples/charts/data-pie-chart/legend/src/EnergyGlobalDemand.ts index 3d2ed388a..a6cd428f8 100644 --- a/samples/charts/data-pie-chart/legend/src/EnergyGlobalDemand.ts +++ b/samples/charts/data-pie-chart/legend/src/EnergyGlobalDemand.ts @@ -14,36 +14,11 @@ export class EnergyGlobalDemand extends Array { 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%` - }), + 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/DataPieData.ts b/samples/charts/data-pie-chart/others/src/DataPieData.ts index 4bc30e59e..de5e2d76f 100644 --- a/samples/charts/data-pie-chart/others/src/DataPieData.ts +++ b/samples/charts/data-pie-chart/others/src/DataPieData.ts @@ -13,46 +13,14 @@ export class DataPieData extends Array { 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` - }), + 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/overview/src/EnergyGlobalDemand.ts b/samples/charts/data-pie-chart/overview/src/EnergyGlobalDemand.ts index 3d2ed388a..a6cd428f8 100644 --- a/samples/charts/data-pie-chart/overview/src/EnergyGlobalDemand.ts +++ b/samples/charts/data-pie-chart/overview/src/EnergyGlobalDemand.ts @@ -14,36 +14,11 @@ export class EnergyGlobalDemand extends Array { 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%` - }), + 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/EnergyGlobalDemand.ts b/samples/charts/data-pie-chart/selection/src/EnergyGlobalDemand.ts index 3d2ed388a..a6cd428f8 100644 --- a/samples/charts/data-pie-chart/selection/src/EnergyGlobalDemand.ts +++ b/samples/charts/data-pie-chart/selection/src/EnergyGlobalDemand.ts @@ -14,36 +14,11 @@ export class EnergyGlobalDemand extends Array { 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%` - }), + 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/doughnut-chart/legend/src/EnergyGlobalDemand.ts b/samples/charts/doughnut-chart/legend/src/EnergyGlobalDemand.ts index 3d2ed388a..a6cd428f8 100644 --- a/samples/charts/doughnut-chart/legend/src/EnergyGlobalDemand.ts +++ b/samples/charts/doughnut-chart/legend/src/EnergyGlobalDemand.ts @@ -14,36 +14,11 @@ export class EnergyGlobalDemand extends Array { 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%` - }), + 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/doughnut-chart/overview/src/CompanyMarketShares.ts b/samples/charts/doughnut-chart/overview/src/CompanyMarketShares.ts index 67a18c3d9..196320ffb 100644 --- a/samples/charts/doughnut-chart/overview/src/CompanyMarketShares.ts +++ b/samples/charts/doughnut-chart/overview/src/CompanyMarketShares.ts @@ -14,36 +14,11 @@ export class CompanyMarketShares extends Array { 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%` - }), + 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)); } diff --git a/samples/charts/doughnut-chart/rings/src/CalendarMonths.ts b/samples/charts/doughnut-chart/rings/src/CalendarMonths.ts index 5e401ecdb..4747f8da4 100644 --- a/samples/charts/doughnut-chart/rings/src/CalendarMonths.ts +++ b/samples/charts/doughnut-chart/rings/src/CalendarMonths.ts @@ -13,66 +13,18 @@ export class CalendarMonths extends Array { 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` - }), + 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)); } diff --git a/samples/charts/doughnut-chart/rings/src/CalendarSeasons.ts b/samples/charts/doughnut-chart/rings/src/CalendarSeasons.ts index a67d25579..f6dfe4ba3 100644 --- a/samples/charts/doughnut-chart/rings/src/CalendarSeasons.ts +++ b/samples/charts/doughnut-chart/rings/src/CalendarSeasons.ts @@ -13,26 +13,10 @@ export class CalendarSeasons extends Array { 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` - }), + 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)); } 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 15cadf420..a540ba4b4 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 @@ -4,8 +4,8 @@ name="legend" #legend [target]="chart" - includedColumns="Close, Change, Value" - excludedColumns="High, Low, Open, Volume" + includedColumns="close, change, value" + excludedColumns="high, low, open, volume" labelDisplayMode="Hidden" valueFormatMode="Currency" valueFormatCulture="en-GB"> diff --git a/samples/charts/financial-chart/data-legend-styling-props/src/app.component.html b/samples/charts/financial-chart/data-legend-styling-props/src/app.component.html index f39ce24ff..91856a041 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/src/app.component.html +++ b/samples/charts/financial-chart/data-legend-styling-props/src/app.component.html @@ -4,7 +4,7 @@ name="legend" #legend [target]="chart" - includedColumns="Open, Close, High, Low, Change" + includedColumns="open, close, high, low, change" labelTextColor="rgba(74, 74, 74, 1)" unitsText="K" unitsTextColor="rgba(0, 173, 3, 1)" diff --git a/samples/charts/financial-chart/data-legend/src/app.component.html b/samples/charts/financial-chart/data-legend/src/app.component.html index 2a9c0a204..9d315815a 100644 --- a/samples/charts/financial-chart/data-legend/src/app.component.html +++ b/samples/charts/financial-chart/data-legend/src/app.component.html @@ -4,7 +4,7 @@ name="legend" #legend [target]="chart" - includedColumns="Open, Close, High, Low, Change"> + includedColumns="open, close, high, low, change">
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 cf4bc77ec..f96891b2f 100644 --- a/samples/charts/financial-chart/format-specifiers/src/app.component.html +++ b/samples/charts/financial-chart/format-specifiers/src/app.component.html @@ -4,8 +4,8 @@ name="legend" #legend [target]="chart" - includedColumns="Close, Change, Value" - excludedColumns="High, Low, Open, Volume" + includedColumns="close, change, value" + excludedColumns="high, low, open, volume" labelDisplayMode="Hidden" valueFormatString="{0}" [valueFormatSpecifiers]="numberFormatSpecifier1"> diff --git a/samples/charts/pie-chart/legend/src/EnergyGlobalDemand.ts b/samples/charts/pie-chart/legend/src/EnergyGlobalDemand.ts index 3d2ed388a..a6cd428f8 100644 --- a/samples/charts/pie-chart/legend/src/EnergyGlobalDemand.ts +++ b/samples/charts/pie-chart/legend/src/EnergyGlobalDemand.ts @@ -14,36 +14,11 @@ export class EnergyGlobalDemand extends Array { 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%` - }), + 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/pie-chart/others/src/EnergyGlobalDemand.ts b/samples/charts/pie-chart/others/src/EnergyGlobalDemand.ts index 3d2ed388a..a6cd428f8 100644 --- a/samples/charts/pie-chart/others/src/EnergyGlobalDemand.ts +++ b/samples/charts/pie-chart/others/src/EnergyGlobalDemand.ts @@ -14,36 +14,11 @@ export class EnergyGlobalDemand extends Array { 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%` - }), + 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/pie-chart/overview/src/EnergyGlobalDemand.ts b/samples/charts/pie-chart/overview/src/EnergyGlobalDemand.ts index 3d2ed388a..a6cd428f8 100644 --- a/samples/charts/pie-chart/overview/src/EnergyGlobalDemand.ts +++ b/samples/charts/pie-chart/overview/src/EnergyGlobalDemand.ts @@ -14,36 +14,11 @@ export class EnergyGlobalDemand extends Array { 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%` - }), + 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/pie-chart/styling/src/EnergyGlobalDemand.ts b/samples/charts/pie-chart/styling/src/EnergyGlobalDemand.ts index 3d2ed388a..a6cd428f8 100644 --- a/samples/charts/pie-chart/styling/src/EnergyGlobalDemand.ts +++ b/samples/charts/pie-chart/styling/src/EnergyGlobalDemand.ts @@ -14,36 +14,11 @@ export class EnergyGlobalDemand extends Array { 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%` - }), + 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/sparkline/display-area/src/SparklineMixedData.ts b/samples/charts/sparkline/display-area/src/SparklineMixedData.ts index fa5564d4e..95e467313 100644 --- a/samples/charts/sparkline/display-area/src/SparklineMixedData.ts +++ b/samples/charts/sparkline/display-area/src/SparklineMixedData.ts @@ -13,46 +13,14 @@ export class SparklineMixedData extends Array { 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 - }), + 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)); } diff --git a/samples/charts/sparkline/display-column/src/SparklineMixedData.ts b/samples/charts/sparkline/display-column/src/SparklineMixedData.ts index fa5564d4e..95e467313 100644 --- a/samples/charts/sparkline/display-column/src/SparklineMixedData.ts +++ b/samples/charts/sparkline/display-column/src/SparklineMixedData.ts @@ -13,46 +13,14 @@ export class SparklineMixedData extends Array { 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 - }), + 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)); } diff --git a/samples/charts/sparkline/display-lines/src/SparklineMixedData.ts b/samples/charts/sparkline/display-lines/src/SparklineMixedData.ts index fa5564d4e..95e467313 100644 --- a/samples/charts/sparkline/display-lines/src/SparklineMixedData.ts +++ b/samples/charts/sparkline/display-lines/src/SparklineMixedData.ts @@ -13,46 +13,14 @@ export class SparklineMixedData extends Array { 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 - }), + 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)); } diff --git a/samples/charts/sparkline/display-winloss/src/SparklineMixedData.ts b/samples/charts/sparkline/display-winloss/src/SparklineMixedData.ts index fa5564d4e..95e467313 100644 --- a/samples/charts/sparkline/display-winloss/src/SparklineMixedData.ts +++ b/samples/charts/sparkline/display-winloss/src/SparklineMixedData.ts @@ -13,46 +13,14 @@ export class SparklineMixedData extends Array { 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 - }), + 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)); } diff --git a/samples/charts/sparkline/markers/src/SparklineProfitData.ts b/samples/charts/sparkline/markers/src/SparklineProfitData.ts index a9914e6ac..6a24b4f0d 100644 --- a/samples/charts/sparkline/markers/src/SparklineProfitData.ts +++ b/samples/charts/sparkline/markers/src/SparklineProfitData.ts @@ -13,46 +13,14 @@ export class SparklineProfitData extends Array { 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` - }), + 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)); } diff --git a/samples/charts/sparkline/normal-range/src/SparklineMixedData.ts b/samples/charts/sparkline/normal-range/src/SparklineMixedData.ts index fa5564d4e..95e467313 100644 --- a/samples/charts/sparkline/normal-range/src/SparklineMixedData.ts +++ b/samples/charts/sparkline/normal-range/src/SparklineMixedData.ts @@ -13,46 +13,14 @@ export class SparklineMixedData extends Array { 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 - }), + 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)); } diff --git a/samples/charts/sparkline/trendlines/src/SparklineMixedData.ts b/samples/charts/sparkline/trendlines/src/SparklineMixedData.ts index fa5564d4e..95e467313 100644 --- a/samples/charts/sparkline/trendlines/src/SparklineMixedData.ts +++ b/samples/charts/sparkline/trendlines/src/SparklineMixedData.ts @@ -13,46 +13,14 @@ export class SparklineMixedData extends Array { 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 - }), + 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)); } diff --git a/samples/charts/sparkline/unknown-values/src/SparklineUnknownData.ts b/samples/charts/sparkline/unknown-values/src/SparklineUnknownData.ts index b2dd8473d..ae87770ee 100644 --- a/samples/charts/sparkline/unknown-values/src/SparklineUnknownData.ts +++ b/samples/charts/sparkline/unknown-values/src/SparklineUnknownData.ts @@ -13,56 +13,16 @@ export class SparklineUnknownData extends Array { 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 - }), + 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)); } 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 b32970c46..21a29ab22 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 @@ -15,90 +15,18 @@ export class CountryRenewableElectricity extends Array { 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%` - }), + 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)); } diff --git a/samples/charts/tree-map/highlighting/src/CountyHierarchicalData.ts b/samples/charts/tree-map/highlighting/src/CountyHierarchicalData.ts index 5193e116c..1b7efca0d 100644 --- a/samples/charts/tree-map/highlighting/src/CountyHierarchicalData.ts +++ b/samples/charts/tree-map/highlighting/src/CountyHierarchicalData.ts @@ -15,1560 +15,228 @@ export class CountyHierarchicalData extends Array { 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 - }), + 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)); } diff --git a/samples/charts/tree-map/layout/src/CountyHierarchicalData.ts b/samples/charts/tree-map/layout/src/CountyHierarchicalData.ts index 5193e116c..1b7efca0d 100644 --- a/samples/charts/tree-map/layout/src/CountyHierarchicalData.ts +++ b/samples/charts/tree-map/layout/src/CountyHierarchicalData.ts @@ -15,1560 +15,228 @@ export class CountyHierarchicalData extends Array { 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 - }), + 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)); } diff --git a/samples/charts/tree-map/overview/src/CountyHierarchicalData.ts b/samples/charts/tree-map/overview/src/CountyHierarchicalData.ts index 5193e116c..1b7efca0d 100644 --- a/samples/charts/tree-map/overview/src/CountyHierarchicalData.ts +++ b/samples/charts/tree-map/overview/src/CountyHierarchicalData.ts @@ -15,1560 +15,228 @@ export class CountyHierarchicalData extends Array { 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 - }), + 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)); } diff --git a/samples/charts/tree-map/styling/src/CountyHierarchicalData.ts b/samples/charts/tree-map/styling/src/CountyHierarchicalData.ts index 5193e116c..1b7efca0d 100644 --- a/samples/charts/tree-map/styling/src/CountyHierarchicalData.ts +++ b/samples/charts/tree-map/styling/src/CountyHierarchicalData.ts @@ -15,1560 +15,228 @@ export class CountyHierarchicalData extends Array { 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 - }), + 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)); } From 9dcc598c4519924579f2a15ae315c7dd4fdd1081 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Thu, 28 Aug 2025 16:24:51 -0400 Subject: [PATCH 159/183] Adding changes from build igniteui-xplat-examples-output+PRs_2025.8.28.3 (#351) Co-authored-by: tfsbuild --- .../src/WorldStats.ts | 480 +++++++++--------- .../src/WorldStats.ts | 480 +++++++++--------- .../src/WorldStats.ts | 480 +++++++++--------- .../trendline-layer/src/app.component.html | 3 +- 4 files changed, 733 insertions(+), 710 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 a07901497..442f0de33 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 @@ -4,6 +4,7 @@ export class WorldStatsItem { } public code: string; + public short: string; public name: string; public continent: string; public population: number; @@ -11,8 +12,8 @@ export class WorldStatsItem { public economy: string; public region: string; public status: string; - public longitude: number; - public latitude: number; + public x: number; + public y: number; public gdpPerPerson: number; public rank: number; public unemployment: number; @@ -31,240 +32,247 @@ export class WorldStats extends Array { 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 }), + new WorldStatsItem({ code: `CHN`, short: `CN`, name: `China`, continent: `Asia`, population: 1379302771, gdpTotal: 21140000, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 104.18, y: 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`, short: `IN`, name: `India`, continent: `Asia`, population: 1281935911, gdpTotal: 8721000, economy: `Emerging`, region: `Southern Asia`, status: `Country`, x: 78.022, y: 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`, short: `US`, name: `United States`, continent: `North America`, population: 326625791, gdpTotal: 18560000, economy: `Developed`, region: `Northern America`, status: `Country`, x: -101.8, y: 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`, short: `ID`, name: `Indonesia`, continent: `Asia`, population: 260580739, gdpTotal: 3028000, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 102.72, y: -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`, short: `BR`, name: `Brazil`, continent: `South America`, population: 207353391, gdpTotal: 3081000, economy: `Emerging`, region: `South America`, status: `Country`, x: -48.88, y: -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`, short: `PK`, name: `Pakistan`, continent: `Asia`, population: 204924861, gdpTotal: 988200, economy: `Emerging`, region: `Southern Asia`, status: `Country`, x: 67.624, y: 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`, short: `NG`, name: `Nigeria`, continent: `Africa`, population: 190632261, gdpTotal: 1089000, economy: `Emerging`, region: `Western Africa`, status: `Country`, x: 8.657, y: 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`, short: `BD`, name: `Bangladesh`, continent: `Asia`, population: 157826578, gdpTotal: 628400, economy: `Least Developed`, region: `Southern Asia`, status: `Country`, x: 89.935, y: 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`, short: `RU`, name: `Russia`, continent: `Europe`, population: 142257519, gdpTotal: 3745000, economy: `Emerging`, region: `Eastern Europe`, status: `Country`, x: 42.379, y: 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`, short: `JP`, name: `Japan`, continent: `Asia`, population: 126451398, gdpTotal: 4932000, economy: `Developed`, region: `Eastern Asia`, status: `Country`, x: 138.48, y: 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`, short: `MX`, name: `Mexico`, continent: `North America`, population: 124574795, gdpTotal: 2307000, economy: `Emerging`, region: `Central America`, status: `Country`, x: -102.5, y: 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`, short: `ET`, name: `Ethiopia`, continent: `Africa`, population: 105350020, gdpTotal: 174700, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 40.489, y: 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`, short: `PH`, name: `Philippines`, continent: `Asia`, population: 104256076, gdpTotal: 801900, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 121.4, y: 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`, short: `EG`, name: `Egypt`, continent: `Africa`, population: 97041072, gdpTotal: 1105000, economy: `Emerging`, region: `Middle East`, status: `Country`, x: 30.787, y: 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`, short: `VN`, name: `Vietnam`, continent: `Asia`, population: 96160163, gdpTotal: 594900, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 108.46, y: 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`, short: `CD`, name: `Dem. Rep. Congo`, continent: `Africa`, population: 83301151, gdpTotal: 66010, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 21.738, y: -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`, short: `IR`, name: `Iran`, continent: `Asia`, population: 82021564, gdpTotal: 1459000, economy: `Emerging`, region: `Middle East`, status: `Country`, x: 53.664, y: 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`, short: `TR`, name: `Turkey`, continent: `Asia`, population: 80845215, gdpTotal: 1670000, economy: `Emerging`, region: `Middle East`, status: `Country`, x: 35.243, y: 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`, short: `DE`, name: `Germany`, continent: `Europe`, population: 80594017, gdpTotal: 3979000, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 11.43, y: 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`, short: `TH`, name: `Thailand`, continent: `Asia`, population: 68414135, gdpTotal: 1161000, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 100.65, y: 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`, short: `FR`, name: `France`, continent: `Europe`, population: 67106161, gdpTotal: 2699000, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 2.267, y: 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`, short: `GB`, name: `United Kingdom`, continent: `Europe`, population: 64769452, gdpTotal: 2788000, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: -1.233, y: 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`, short: `IT`, name: `Italy`, continent: `Europe`, population: 62137802, gdpTotal: 2221000, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 15.701, y: 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`, short: `MM`, name: `Myanmar`, continent: `Asia`, population: 55123814, gdpTotal: 311100, economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, x: 96.028, y: 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`, short: `ZA`, name: `South Africa`, continent: `Africa`, population: 54841552, gdpTotal: 739100, economy: `Emerging`, region: `Southern Africa`, status: `Country`, x: 22.489, y: -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`, short: `TZ`, name: `Tanzania`, continent: `Africa`, population: 53950935, gdpTotal: 150600, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 34.894, y: -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`, short: `KR`, name: `South Korea`, continent: `Asia`, population: 51181299, gdpTotal: 1929000, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 128.29, y: 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`, short: `ES`, name: `Spain`, continent: `Europe`, population: 48958159, gdpTotal: 1690000, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: -2.892, y: 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`, short: `CO`, name: `Colombia`, continent: `South America`, population: 47698524, gdpTotal: 688000, economy: `Developing`, region: `South America`, status: `Country`, x: -72.95, y: 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`, short: `KE`, name: `Kenya`, continent: `Africa`, population: 47615739, gdpTotal: 152700, economy: `Emerging`, region: `Eastern Africa`, status: `Country`, x: 37.929, y: 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`, short: `AR`, name: `Argentina`, continent: `South America`, population: 44293293, gdpTotal: 879400, economy: `Emerging`, region: `South America`, status: `Country`, x: -64.84, y: -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`, short: `UA`, name: `Ukraine`, continent: `Europe`, population: 44033874, gdpTotal: 352600, economy: `Developing`, region: `Eastern Europe`, status: `Country`, x: 30.86, y: 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`, short: `DZ`, name: `Algeria`, continent: `Africa`, population: 40969443, gdpTotal: 609400, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: 1.642, y: 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`, short: `UG`, name: `Uganda`, continent: `Africa`, population: 39570125, gdpTotal: 84930, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 32.27, y: 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`, short: `IQ`, name: `Iraq`, continent: `Asia`, population: 39192111, gdpTotal: 596700, economy: `Developing`, region: `Middle East`, status: `Country`, x: 43.66, y: 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`, short: `PL`, name: `Poland`, continent: `Europe`, population: 38476269, gdpTotal: 1052000, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 20.073, y: 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`, short: `SD`, name: `Sudan`, continent: `Africa`, population: 37345935, gdpTotal: 176300, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: 30.217, y: 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`, short: `CA`, name: `Canada`, continent: `North America`, population: 35623680, gdpTotal: 1674000, economy: `Developed`, region: `Northern America`, status: `Country`, x: -108, y: 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`, short: `AF`, name: `Afghanistan`, continent: `Asia`, population: 34124811, gdpTotal: 64080, economy: `Least Developed`, region: `Southern Asia`, status: `Country`, x: 66.041, y: 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`, short: `MA`, name: `Morocco`, continent: `Africa`, population: 33986655, gdpTotal: 282800, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: -5.707, y: 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`, short: `MY`, name: `Malaysia`, continent: `Asia`, population: 31381992, gdpTotal: 863000, economy: `Developing`, region: `Eastern Asia`, status: `Country`, x: 101.72, y: 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`, short: `VE`, name: `Venezuela`, continent: `South America`, population: 31304016, gdpTotal: 468600, economy: `Emerging`, region: `South America`, status: `Country`, x: -64.78, y: 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`, short: `PE`, name: `Peru`, continent: `South America`, population: 31036656, gdpTotal: 410400, economy: `Emerging`, region: `South America`, status: `Country`, x: -73.82, y: -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`, short: `UZ`, name: `Uzbekistan`, continent: `Asia`, population: 29748859, gdpTotal: 202300, economy: `Developing`, region: `Central Asia`, status: `Country`, x: 63.288, y: 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`, short: `NP`, name: `Nepal`, continent: `Asia`, population: 29384297, gdpTotal: 71520, economy: `Least Developed`, region: `Southern Asia`, status: `Country`, x: 82.328, y: 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`, short: `AO`, name: `Angola`, continent: `Africa`, population: 29310273, gdpTotal: 189000, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 18.097, y: -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`, short: `SA`, name: `Saudi Arabia`, continent: `Asia`, population: 28571770, gdpTotal: 1731000, economy: `Developed`, region: `Middle East`, status: `Country`, x: 45.129, y: 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`, short: `YE`, name: `Yemen`, continent: `Asia`, population: 28036829, gdpTotal: 73450, economy: `Least Developed`, region: `Middle East`, status: `Country`, x: 48.53, y: 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`, short: `GH`, name: `Ghana`, continent: `Africa`, population: 27499924, gdpTotal: 120800, economy: `Developing`, region: `Western Africa`, status: `Country`, x: -0.893, y: 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`, short: `MZ`, name: `Mozambique`, continent: `Africa`, population: 26573706, gdpTotal: 35010, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 38.075, y: -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`, short: `KP`, name: `North Korea`, continent: `Asia`, population: 25248140, gdpTotal: 40000, economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, x: 127.01, y: 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`, short: `MG`, name: `Madagascar`, continent: `Africa`, population: 25054161, gdpTotal: 36860, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 46.87, y: -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`, short: `CM`, name: `Cameroon`, continent: `Africa`, population: 24994885, gdpTotal: 77240, economy: `Developing`, region: `Middle Africa`, status: `Country`, x: 12.451, y: 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`, short: `CI`, name: `Ivory Coast`, continent: `Africa`, population: 24184810, gdpTotal: 87120, economy: `Developing`, region: `Western Africa`, status: `Country`, x: -5.555, y: 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`, short: `TW`, name: `Taiwan`, continent: `Asia`, population: 23508428, gdpTotal: 1127000, economy: `Developed`, region: `Eastern Asia`, status: `Country`, x: 120.96, y: 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`, short: `AU`, name: `Australia`, continent: `Oceania`, population: 23232413, gdpTotal: 1189000, economy: `Developed`, region: `Australia`, status: `Country`, x: 135.87, y: -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`, short: `LK`, name: `Sri Lanka`, continent: `Asia`, population: 22409381, gdpTotal: 236700, economy: `Developing`, region: `Southern Asia`, status: `Country`, x: 80.792, y: 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`, short: `RO`, name: `Romania`, continent: `Europe`, population: 21529967, gdpTotal: 441000, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 24.974, y: 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`, short: `BF`, name: `Burkina Faso`, continent: `Africa`, population: 20107509, gdpTotal: 32990, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -1.567, y: 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`, short: `NE`, name: `Niger`, continent: `Africa`, population: 19245344, gdpTotal: 20150, economy: `Least Developed`, region: `Northern Africa`, status: `Country`, x: 10.845, y: 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`, short: `MW`, name: `Malawi`, continent: `Africa`, population: 19196246, gdpTotal: 21200, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 34.282, y: -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`, short: `KZ`, name: `Kazakhstan`, continent: `Asia`, population: 18556698, gdpTotal: 460700, economy: `Developing`, region: `Central Asia`, status: `Country`, x: 66.966, y: 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`, short: `SY`, name: `Syria`, continent: `Asia`, population: 18028549, gdpTotal: 50280, economy: `Developing`, region: `Middle East`, status: `Country`, x: 39.062, y: 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`, short: `ML`, name: `Mali`, continent: `Africa`, population: 17885245, gdpTotal: 38090, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -1.496, y: 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`, short: `CL`, name: `Chile`, continent: `South America`, population: 17789267, gdpTotal: 436100, economy: `Emerging`, region: `South America`, status: `Country`, x: -69.11, y: -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`, short: `NL`, name: `Netherlands`, continent: `Europe`, population: 17084719, gdpTotal: 870800, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 6.272, y: 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`, short: `EC`, name: `Ecuador`, continent: `South America`, population: 16290913, gdpTotal: 182400, economy: `Developing`, region: `South America`, status: `Country`, x: -77.98, y: -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`, short: `KH`, name: `Cambodia`, continent: `Asia`, population: 16204486, gdpTotal: 58940, economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, x: 104.96, y: 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`, short: `ZM`, name: `Zambia`, continent: `Africa`, population: 15972000, gdpTotal: 65170, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 26.301, y: -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`, short: `GT`, name: `Guatemala`, continent: `North America`, population: 15460732, gdpTotal: 131800, economy: `Developing`, region: `Central America`, status: `Country`, x: -90.4, y: 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`, short: `SN`, name: `Senegal`, continent: `Africa`, population: 14668522, gdpTotal: 39720, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -14.76, y: 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`, short: `ZW`, name: `Zimbabwe`, continent: `Africa`, population: 13805084, gdpTotal: 28330, economy: `Emerging`, region: `Eastern Africa`, status: `Country`, x: 29.115, y: -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`, short: `SS`, name: `South Sudan`, continent: `Africa`, population: 13026129, gdpTotal: 20880, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 29.708, y: 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`, short: `GN`, name: `Guinea`, continent: `Africa`, population: 12413867, gdpTotal: 16080, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -9.522, y: 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`, short: `TD`, name: `Chad`, continent: `Africa`, population: 12075985, gdpTotal: 30590, economy: `Least Developed`, region: `Northern Africa`, status: `Country`, x: 18.716, y: 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`, short: `RW`, name: `Rwanda`, continent: `Africa`, population: 11901484, gdpTotal: 21970, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 29.867, y: -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`, short: `BE`, name: `Belgium`, continent: `Europe`, population: 11491346, gdpTotal: 508600, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 4.605, y: 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`, short: `BI`, name: `Burundi`, continent: `Africa`, population: 11466756, gdpTotal: 7892, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 29.913, y: -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`, short: `TN`, name: `Tunisia`, continent: `Africa`, population: 11403800, gdpTotal: 130800, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: 9.516, y: 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`, short: `CU`, name: `Cuba`, continent: `North America`, population: 11147407, gdpTotal: 132900, economy: `Emerging`, region: `Central America`, status: `Country`, x: -80.54, y: 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`, short: `BO`, name: `Bolivia`, continent: `South America`, population: 11138234, gdpTotal: 78350, economy: `Emerging`, region: `South America`, status: `Country`, x: -63.57, y: -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`, short: `BJ`, name: `Benin`, continent: `Africa`, population: 11038805, gdpTotal: 24310, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: 2.704, y: 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`, short: `PT`, name: `Portugal`, continent: `Europe`, population: 10839514, gdpTotal: 297100, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: -7.757, y: 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`, short: `GR`, name: `Greece`, continent: `Europe`, population: 10768477, gdpTotal: 290500, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 21.871, y: 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`, short: `DO`, name: `Dominican Republic`, continent: `North America`, population: 10734247, gdpTotal: 161900, economy: `Developing`, region: `Central America`, status: `Country`, x: -70.17, y: 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`, short: `CZ`, name: `Czechia`, continent: `Europe`, population: 10674723, gdpTotal: 350900, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 15.461, y: 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`, short: `HT`, name: `Haiti`, continent: `North America`, population: 10646714, gdpTotal: 19340, economy: `Least Developed`, region: `Central America`, status: `Country`, x: -72.23, y: 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`, short: `JO`, name: `Jordan`, continent: `Asia`, population: 10248069, gdpTotal: 86190, economy: `Developing`, region: `Middle East`, status: `Country`, x: 38.125, y: 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`, short: `AZ`, name: `Azerbaijan`, continent: `Asia`, population: 9961396, gdpTotal: 167900, economy: `Developing`, region: `Middle East`, status: `Country`, x: 48.401, y: 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`, short: `SE`, name: `Sweden`, continent: `Europe`, population: 9960487, gdpTotal: 498100, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 17.594, y: 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`, short: `HU`, name: `Hungary`, continent: `Europe`, population: 9850845, gdpTotal: 267600, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 19.485, y: 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`, short: `BY`, name: `Belarus`, continent: `Europe`, population: 9549747, gdpTotal: 165400, economy: `Developing`, region: `Eastern Europe`, status: `Country`, x: 27.943, y: 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`, short: `HN`, name: `Honduras`, continent: `North America`, population: 9038741, gdpTotal: 43190, economy: `Developing`, region: `Central America`, status: `Country`, x: -86.74, y: 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`, short: `AT`, name: `Austria`, continent: `Europe`, population: 8754413, gdpTotal: 416600, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 14.987, y: 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`, short: `TJ`, name: `Tajikistan`, continent: `Asia`, population: 8468555, gdpTotal: 25810, economy: `Developing`, region: `Central Asia`, status: `Country`, x: 71.234, y: 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`, short: `IL`, name: `Israel`, continent: `Asia`, population: 8299706, gdpTotal: 297000, economy: `Developed`, region: `Middle East`, status: `Country`, x: 34.977, y: 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`, short: `CH`, name: `Switzerland`, continent: `Europe`, population: 8236303, gdpTotal: 496300, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 7.865, y: 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`, short: `TG`, name: `Togo`, continent: `Africa`, population: 7965055, gdpTotal: 11610, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: 1.146, y: 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`, short: `SO`, name: `Somalia`, continent: `Africa`, population: 7531386, gdpTotal: 4719, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 44.134, y: 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`, short: `HK`, name: `Hong Kong`, continent: `Asia`, population: 7191503, gdpTotal: 427400, economy: `Developing`, region: `Eastern Asia`, status: `Dependency`, x: 114.08, y: 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`, short: `LA`, name: `Laos`, continent: `Asia`, population: 7126706, gdpTotal: 40960, economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, x: 102.36, y: 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`, short: `RS`, name: `Serbia`, continent: `Europe`, population: 7111024, gdpTotal: 101800, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 20.908, y: 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`, short: `BG`, name: `Bulgaria`, continent: `Europe`, population: 7101510, gdpTotal: 143100, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 25.465, y: 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`, short: `PY`, name: `Paraguay`, continent: `South America`, population: 6943739, gdpTotal: 64670, economy: `Emerging`, region: `South America`, status: `Country`, x: -58.44, y: -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`, short: `PG`, name: `Papua New Guinea`, continent: `Oceania`, population: 6909701, gdpTotal: 28020, economy: `Developing`, region: `Melanesia`, status: `Country`, x: 143.62, y: -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`, short: `LY`, name: `Libya`, continent: `Africa`, population: 6653210, gdpTotal: 90890, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: 17.23, y: 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`, short: `LB`, name: `Lebanon`, continent: `Asia`, population: 6229794, gdpTotal: 85160, economy: `Developing`, region: `Middle East`, status: `Country`, x: 36.042, y: 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`, short: `SV`, name: `El Salvador`, continent: `North America`, population: 6172011, gdpTotal: 54790, economy: `Developing`, region: `Central America`, status: `Country`, x: -88.91, y: 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`, short: `SL`, name: `Sierra Leone`, continent: `Africa`, population: 6163195, gdpTotal: 10640, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -11.78, y: 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`, short: `AE`, name: `United Arab Emirates`, continent: `Asia`, population: 6072475, gdpTotal: 667200, economy: `Developing`, region: `Middle East`, status: `Country`, x: 54.192, y: 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`, short: `NI`, name: `Nicaragua`, continent: `North America`, population: 6025951, gdpTotal: 33550, economy: `Developing`, region: `Central America`, status: `Country`, x: -85.09, y: 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`, short: `ER`, name: `Eritrea`, continent: `Africa`, population: 5918919, gdpTotal: 9169, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 39.772, y: 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`, short: `SG`, name: `Singapore`, continent: `Asia`, population: 5888926, gdpTotal: 487900, economy: `Developing`, region: `Eastern Asia`, status: `Country`, x: 103.82, y: 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`, short: `KG`, name: `Kyrgyzstan`, continent: `Asia`, population: 5789122, gdpTotal: 21010, economy: `Developing`, region: `Central Asia`, status: `Country`, x: 74.738, y: 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`, short: `CF`, name: `Central African Republic`, continent: `Africa`, population: 5625118, gdpTotal: 3206, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 20.917, y: 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`, short: `DK`, name: `Denmark`, continent: `Europe`, population: 5605948, gdpTotal: 264800, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 9.348, y: 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`, short: `FI`, name: `Finland`, continent: `Europe`, population: 5491218, gdpTotal: 224137, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 25.988, y: 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`, short: `SK`, name: `Slovakia`, continent: `Europe`, population: 5445829, gdpTotal: 168800, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 18.877, y: 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`, short: `TM`, name: `Turkmenistan`, continent: `Asia`, population: 5351277, gdpTotal: 94720, economy: `Developing`, region: `Central Asia`, status: `Country`, x: 59.562, y: 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`, short: `NO`, name: `Norway`, continent: `Europe`, population: 5320045, gdpTotal: 364700, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 9.66, y: 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`, short: `IE`, name: `Ireland`, continent: `Europe`, population: 5011102, gdpTotal: 322000, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: -8.209, y: 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`, short: `CG`, name: `Congo`, continent: `Africa`, population: 4954674, gdpTotal: 30270, economy: `Developing`, region: `Middle Africa`, status: `Country`, x: 16.264, y: -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`, short: `CR`, name: `Costa Rica`, continent: `North America`, population: 4930258, gdpTotal: 79260, economy: `Emerging`, region: `Central America`, status: `Country`, x: -83.91, y: 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`, short: `GE`, name: `Georgia`, continent: `Asia`, population: 4926330, gdpTotal: 37270, economy: `Developing`, region: `Middle East`, status: `Country`, x: 43.257, y: 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`, short: `LR`, name: `Liberia`, continent: `Africa`, population: 4689021, gdpTotal: 3881, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -9.454, y: 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`, short: `PS`, name: `Palestine`, continent: `Asia`, population: 4543126, gdpTotal: 21221, economy: `Developing`, region: `Middle East`, status: `Disputed`, x: 35.347, y: 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`, short: `NZ`, name: `New Zealand`, continent: `Oceania`, population: 4510327, gdpTotal: 174800, economy: `Developed`, region: `Australia`, status: `Country`, x: 169.42, y: -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`, short: `HR`, name: `Croatia`, continent: `Europe`, population: 4292095, gdpTotal: 94240, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 16.847, y: 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`, short: `BA`, name: `Bosnia`, continent: `Europe`, population: 3856181, gdpTotal: 42530, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 17.66, y: 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`, short: `MR`, name: `Mauritania`, continent: `Africa`, population: 3758571, gdpTotal: 16710, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -8.89, y: 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`, short: `PA`, name: `Panama`, continent: `North America`, population: 3753142, gdpTotal: 93120, economy: `Developing`, region: `Central America`, status: `Country`, x: -81.17, y: 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`, short: `XS`, name: `Somaliland`, continent: `Africa`, population: 3500000, gdpTotal: 12250, economy: `Developing`, region: `Eastern Africa`, status: `Indeterminate`, x: 45.798, y: 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`, short: `MD`, name: `Moldova`, continent: `Europe`, population: 3474121, gdpTotal: 18540, economy: `Developing`, region: `Eastern Europe`, status: `Country`, x: 28.552, y: 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`, short: `OM`, name: `Oman`, continent: `Asia`, population: 3424386, gdpTotal: 173100, economy: `Developing`, region: `Middle East`, status: `Country`, x: 57.563, y: 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`, short: `UY`, name: `Uruguay`, continent: `South America`, population: 3360148, gdpTotal: 73250, economy: `Emerging`, region: `South America`, status: `Country`, x: -55.78, y: -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`, short: `PR`, name: `Puerto Rico`, continent: `North America`, population: 3351827, gdpTotal: 131000, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -66.61, y: 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`, short: `MN`, name: `Mongolia`, continent: `Asia`, population: 3068243, gdpTotal: 37000, economy: `Developing`, region: `Eastern Asia`, status: `Country`, x: 103.82, y: 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`, short: `AL`, name: `Albania`, continent: `Europe`, population: 3047987, gdpTotal: 33900, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 19.964, y: 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`, short: `AM`, name: `Armenia`, continent: `Asia`, population: 3045191, gdpTotal: 26300, economy: `Developing`, region: `Middle East`, status: `Country`, x: 44.646, y: 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`, short: `JM`, name: `Jamaica`, continent: `North America`, population: 2990561, gdpTotal: 25390, economy: `Developing`, region: `Central America`, status: `Country`, x: -77.27, y: 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`, short: `KW`, name: `Kuwait`, continent: `Asia`, population: 2875422, gdpTotal: 301100, economy: `Developing`, region: `Middle East`, status: `Country`, x: 47.487, y: 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`, short: `LT`, name: `Lithuania`, continent: `Europe`, population: 2823859, gdpTotal: 85620, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 23.838, y: 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`, short: `NA`, name: `Namibia`, continent: `Africa`, population: 2484780, gdpTotal: 25990, economy: `Developing`, region: `Southern Africa`, status: `Country`, x: 16.944, y: -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`, short: `QA`, name: `Qatar`, continent: `Asia`, population: 2314307, gdpTotal: 334500, economy: `Developing`, region: `Middle East`, status: `Country`, x: 51.182, y: 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`, short: `BW`, name: `Botswana`, continent: `Africa`, population: 2214858, gdpTotal: 35900, economy: `Developing`, region: `Southern Africa`, status: `Country`, x: 24.671, y: -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`, short: `MK`, name: `North Macedonia`, continent: `Europe`, population: 2103721, gdpTotal: 29520, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 21.727, y: 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`, short: `GM`, name: `Gambia`, continent: `Africa`, population: 2051363, gdpTotal: 3387, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -15.32, y: 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`, short: `SI`, name: `Slovenia`, continent: `Europe`, population: 1972126, gdpTotal: 68350, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 14.947, y: 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`, short: `LS`, name: `Lesotho`, continent: `Africa`, population: 1958042, gdpTotal: 6019, economy: `Least Developed`, region: `Southern Africa`, status: `Country`, x: 28.221, y: -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`, short: `LV`, name: `Latvia`, continent: `Europe`, population: 1944643, gdpTotal: 50650, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 26.505, y: 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`, short: `RS`, name: `Kosovo`, continent: `Europe`, population: 1895250, gdpTotal: 18490, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 20.891, y: 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`, short: `GW`, name: `Guinea-Bissau`, continent: `Africa`, population: 1792338, gdpTotal: 2851, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -14.59, y: 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`, short: `GA`, name: `Gabon`, continent: `Africa`, population: 1772255, gdpTotal: 35980, economy: `Developing`, region: `Middle Africa`, status: `Country`, x: 11.592, y: -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`, short: `SZ`, name: `Eswatini`, continent: `Africa`, population: 1467152, gdpTotal: 11060, economy: `Developing`, region: `Southern Africa`, status: `Country`, x: 31.45, y: -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`, short: `BH`, name: `Bahrain`, continent: `Asia`, population: 1410942, gdpTotal: 66370, economy: `Developing`, region: `Middle East`, status: `Country`, x: 50.535, y: 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`, short: `MU`, name: `Mauritius`, continent: `Africa`, population: 1356388, gdpTotal: 25850, economy: `Developing`, region: `Eastern Africa`, status: `Country`, x: 57.555, y: -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`, short: `TL`, name: `Timor-Leste`, continent: `Asia`, population: 1291358, gdpTotal: 4975, economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, x: 125.66, y: -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`, short: `EE`, name: `Estonia`, continent: `Europe`, population: 1251581, gdpTotal: 38700, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 25.441, y: 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`, short: `CY`, name: `Cyprus`, continent: `Asia`, population: 1221549, gdpTotal: 29260, economy: `Developing`, region: `Middle East`, status: `Country`, x: 33.176, y: 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`, short: `TT`, name: `Trinidad and Tobago`, continent: `North America`, population: 1218208, gdpTotal: 43570, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.21, y: 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`, short: `FJ`, name: `Fiji`, continent: `Oceania`, population: 920938, gdpTotal: 8374, economy: `Developing`, region: `Melanesia`, status: `Country`, x: 177.85, y: -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: `REU`, short: `RE`, name: `Reunion`, continent: `Africa`, population: 896175, gdpTotal: 23200, economy: `Developing`, region: `Eastern Africa`, status: `Country`, x: 55.53, y: -21.11, gdpPerPerson: 25888, rank: 162, unemployment: 21, oilProduction: 0, birthRate: 31, medianAge: 49, electricity: 4480875, televisions: 716940, publicDebt: 35, internet: 537705 }), + new WorldStatsItem({ code: `DJI`, short: `DJ`, name: `Djibouti`, continent: `Africa`, population: 865267, gdpTotal: 3345, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 42.587, y: 11.825, gdpPerPerson: 3866, rank: 163, unemployment: 5, oilProduction: 3, birthRate: 17, medianAge: 44, electricity: 91593, televisions: 209004, publicDebt: 43, internet: 476114 }), + new WorldStatsItem({ code: `COM`, short: `KM`, name: `Comoros`, continent: `Africa`, population: 808080, gdpTotal: 1259, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 43.877, y: -11.86, gdpPerPerson: 1558, rank: 164, unemployment: 11, oilProduction: 3, birthRate: 14, medianAge: 46, electricity: 6146, televisions: 495921, publicDebt: 10, internet: 459977 }), + new WorldStatsItem({ code: `GNQ`, short: `GQ`, name: `Equatorial Guinea`, continent: `Africa`, population: 778358, gdpTotal: 31770, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 10.521, y: 1.763, gdpPerPerson: 40817, rank: 165, unemployment: 30, oilProduction: 385500, birthRate: 37, medianAge: 19, electricity: 28, televisions: 4000, publicDebt: 2, internet: 8000 }), + new WorldStatsItem({ code: `BTN`, short: `BT`, name: `Bhutan`, continent: `Asia`, population: 758288, gdpTotal: 6432, economy: `Least Developed`, region: `Southern Asia`, status: `Country`, x: 90.411, y: 27.506, gdpPerPerson: 8482, rank: 166, unemployment: 3, oilProduction: 0, birthRate: 21, medianAge: 24, electricity: 2000, televisions: 11000, publicDebt: 81, internet: 40000 }), + new WorldStatsItem({ code: `GUY`, short: `GY`, name: `Guyana`, continent: `South America`, population: 737718, gdpTotal: 6093, economy: `Developing`, region: `South America`, status: `Country`, x: -58.96, y: 5.607, gdpPerPerson: 8259, rank: 167, unemployment: 2, oilProduction: 3, birthRate: 9, medianAge: 37, electricity: 84988, televisions: 149848, publicDebt: 12, internet: 134377 }), + new WorldStatsItem({ code: `SLB`, short: `SB`, name: `Solomon Islands`, continent: `Oceania`, population: 647581, gdpTotal: 1198, economy: `Least Developed`, region: `Melanesia`, status: `Country`, x: 161.3, y: -9.221, gdpPerPerson: 1850, rank: 168, unemployment: 4, oilProduction: 3, birthRate: 18, medianAge: 30, electricity: 3432, televisions: 177555, publicDebt: 43, internet: 478635 }), + new WorldStatsItem({ code: `MNE`, short: `ME`, name: `Montenegro`, continent: `Europe`, population: 642550, gdpTotal: 10610, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 19.191, y: 42.814, gdpPerPerson: 16512, rank: 169, unemployment: 10, oilProduction: 2, birthRate: 24, medianAge: 46, electricity: 24709, televisions: 126756, publicDebt: 29, internet: 336628 }), + new WorldStatsItem({ code: `ESH`, short: `EH`, name: `Western Sahara`, continent: `Africa`, population: 603253, gdpTotal: 907, economy: `Least Developed`, region: `Northern Africa`, status: `Dependency`, x: -12.89, y: 24.231, gdpPerPerson: 1504, rank: 170, unemployment: 6, oilProduction: 1, birthRate: 23, medianAge: 30, electricity: 11081, televisions: 237857, publicDebt: 30, internet: 306624 }), + new WorldStatsItem({ code: `MAC`, short: `MO`, name: `Macao`, continent: `Asia`, population: 601969, gdpTotal: 63220, economy: `Developing`, region: `Eastern Asia`, status: `Dependency`, x: 113.51, y: 22.221, gdpPerPerson: 105022, rank: 171, unemployment: 10, oilProduction: 2, birthRate: 10, medianAge: 47, electricity: 77896, televisions: 163859, publicDebt: 18, internet: 62728 }), + new WorldStatsItem({ code: `LUX`, short: `LU`, name: `Luxembourg`, continent: `Europe`, population: 594130, gdpTotal: 58740, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 6.109, y: 49.806, gdpPerPerson: 98867, rank: 172, unemployment: 4, oilProduction: 0, birthRate: 12, medianAge: 39, electricity: 3156, televisions: 285000, publicDebt: 6, internet: 345000 }), + new WorldStatsItem({ code: `SUR`, short: `SR`, name: `Suriname`, continent: `South America`, population: 591919, gdpTotal: 8547, economy: `Developing`, region: `South America`, status: `Country`, x: -56.02, y: 4.506, gdpPerPerson: 14439, rank: 173, unemployment: 5, oilProduction: 1, birthRate: 16, medianAge: 44, electricity: 82658, televisions: 69068, publicDebt: 31, internet: 367104 }), + new WorldStatsItem({ code: `CPV`, short: `CV`, name: `Cabo Verde`, continent: `Africa`, population: 560899, gdpTotal: 3583, economy: `Developing`, region: `Western Africa`, status: `Country`, x: -25.16, y: 17.102, gdpPerPerson: 6388, rank: 174, unemployment: 12, oilProduction: 1, birthRate: 12, medianAge: 54, electricity: 60647, televisions: 101289, publicDebt: 34, internet: 40105 }), + new WorldStatsItem({ code: `BRN`, short: `BN`, name: `Brunei`, continent: `Asia`, population: 443593, gdpTotal: 33730, economy: `Developing`, region: `Eastern Asia`, status: `Country`, x: 114.69, y: 4.523, gdpPerPerson: 76038, rank: 175, unemployment: 4, oilProduction: 0, birthRate: 17, medianAge: 32, electricity: 50701, televisions: 235042, publicDebt: 16, internet: 188751 }), + new WorldStatsItem({ code: `MLT`, short: `MT`, name: `Malta`, continent: `Europe`, population: 416338, gdpTotal: 16320, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 14.373, y: 35.948, gdpPerPerson: 39199, rank: 176, unemployment: 7, oilProduction: 4, birthRate: 6, medianAge: 52, electricity: 77444, televisions: 282390, publicDebt: 41, internet: 317612 }), + new WorldStatsItem({ code: `MDV`, short: `MV`, name: `Maldives`, continent: `Asia`, population: 392709, gdpTotal: 5407, economy: `Developing`, region: `Southern Asia`, status: `Country`, x: 73.455, y: 3.739, gdpPerPerson: 13768, rank: 177, unemployment: 13, oilProduction: 4, birthRate: 10, medianAge: 43, electricity: 26004, televisions: 156412, publicDebt: 28, internet: 45331 }), + new WorldStatsItem({ code: `GLP`, short: `GX`, name: `Guadeloupe`, continent: `North America`, population: 378561, gdpTotal: 9462, economy: `Developing`, region: `Central America`, status: `Territory`, x: -61.5, y: 16.25, gdpPerPerson: 24995, rank: 178, unemployment: 43, oilProduction: 0, birthRate: 32, medianAge: 74, electricity: 1892805, televisions: 302849, publicDebt: 50, internet: 227137 }), + new WorldStatsItem({ code: `BLZ`, short: `BZ`, name: `Belize`, continent: `North America`, population: 360346, gdpTotal: 3088, economy: `Developing`, region: `Central America`, status: `Country`, x: -88.51, y: 17.185, gdpPerPerson: 8570, rank: 179, unemployment: 4, oilProduction: 2, birthRate: 7, medianAge: 36, electricity: 57433, televisions: 127478, publicDebt: 36, internet: 223855 }), + new WorldStatsItem({ code: `MTQ`, short: `MQ`, name: `Martinique`, continent: `North America`, population: 349925, gdpTotal: 9082, economy: `Developing`, region: `Central America`, status: `Territory`, x: -61.01, y: 14.65, gdpPerPerson: 25954, rank: 180, unemployment: 23, oilProduction: 0, birthRate: 33, medianAge: 63, electricity: 1749625, televisions: 279940, publicDebt: 59, internet: 209955 }), + new WorldStatsItem({ code: `ISL`, short: `IS`, name: `Iceland`, continent: `Europe`, population: 339747, gdpTotal: 16150, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: -19.01, y: 64.966, gdpPerPerson: 47535, rank: 181, unemployment: 1, oilProduction: 0, birthRate: 14, medianAge: 35, electricity: 8533, televisions: 98000, publicDebt: 28, internet: 202300 }), + new WorldStatsItem({ code: `BHS`, short: `BS`, name: `Bahamas`, continent: `North America`, population: 329988, gdpTotal: 9066, economy: `Developing`, region: `Central America`, status: `Country`, x: -78.01, y: 24.761, gdpPerPerson: 27474, rank: 182, unemployment: 5, oilProduction: 2, birthRate: 17, medianAge: 47, electricity: 38395, televisions: 203588, publicDebt: 6, internet: 91807 }), + new WorldStatsItem({ code: `MYT`, short: `YT`, name: `Mayotte`, continent: `Africa`, population: 320901, gdpTotal: 2932, economy: `Developing`, region: `Central America`, status: `Country`, x: 45.14, y: -12.84, gdpPerPerson: 9137, rank: 183, unemployment: 35, oilProduction: 0, birthRate: 46, medianAge: 50, electricity: 1604505, televisions: 256721, publicDebt: 29, internet: 192541 }), + new WorldStatsItem({ code: `GUF`, short: `GF`, name: `French Guiana`, continent: `South America`, population: 296161, gdpTotal: 4562, economy: `Developed`, region: `South America`, status: `Dependency`, x: -53.13, y: 3.893, gdpPerPerson: 4386, rank: 184, unemployment: 3, oilProduction: 0, birthRate: 15, medianAge: 55, electricity: 73845, televisions: 147489, publicDebt: 35, internet: 209593 }), + new WorldStatsItem({ code: `BRB`, short: `BB`, name: `Barbados`, continent: `North America`, population: 292336, gdpTotal: 4804, economy: `Developing`, region: `Central America`, status: `Country`, x: -59.53, y: 13.19, gdpPerPerson: 16433, rank: 186, unemployment: 8, oilProduction: 3, birthRate: 21, medianAge: 51, electricity: 28728, televisions: 173392, publicDebt: 12, internet: 73593 }), + new WorldStatsItem({ code: `PYF`, short: `PF`, name: `Fr. Polynesia`, continent: `Oceania`, population: 287881, gdpTotal: 5490, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -143.9, y: -14.82, gdpPerPerson: 19070, rank: 187, unemployment: 1, oilProduction: 4, birthRate: 6, medianAge: 45, electricity: 46206, televisions: 43757, publicDebt: 12, internet: 172560 }), + new WorldStatsItem({ code: `VUT`, short: `VU`, name: `Vanuatu`, continent: `Oceania`, population: 282814, gdpTotal: 723, economy: `Least Developed`, region: `Melanesia`, status: `Country`, x: 168.21, y: -16.97, gdpPerPerson: 2556, rank: 188, unemployment: 11, oilProduction: 4, birthRate: 17, medianAge: 39, electricity: 50581, televisions: 187584, publicDebt: 42, internet: 223352 }), + new WorldStatsItem({ code: `NCL`, short: `NC`, name: `New Caledonia`, continent: `Oceania`, population: 279070, gdpTotal: 10770, economy: `Developing`, region: `Melanesia`, status: `Dependency`, x: 165.26, y: -21.09, gdpPerPerson: 38592, rank: 189, unemployment: 10, oilProduction: 3, birthRate: 6, medianAge: 49, electricity: 18361, televisions: 79923, publicDebt: 45, internet: 149003 }), + new WorldStatsItem({ code: `NCP`, short: `XC`, name: `Northern Cyprus`, continent: `Asia`, population: 265100, gdpTotal: 3600, economy: `Developing`, region: `Middle East`, status: `Country`, x: 33.714, y: 35.257, gdpPerPerson: 13580, rank: 190, unemployment: 4, oilProduction: 5, birthRate: 25, medianAge: 51, electricity: 84000, televisions: 135551, publicDebt: 30, internet: 167480 }), + new WorldStatsItem({ code: `STP`, short: `ST`, name: `Sao Tome and Principe`, continent: `Africa`, population: 201025, gdpTotal: 694, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 6.598, y: 0.248, gdpPerPerson: 3452, rank: 191, unemployment: 1, oilProduction: 3, birthRate: 24, medianAge: 30, electricity: 6691, televisions: 65480, publicDebt: 12, internet: 121162 }), + new WorldStatsItem({ code: `WSM`, short: `WS`, name: `Samoa`, continent: `Oceania`, population: 200108, gdpTotal: 1046, economy: `Least Developed`, region: `Polynesia`, status: `Country`, x: -172.1, y: -13.75, gdpPerPerson: 5227, rank: 192, unemployment: 3, oilProduction: 2, birthRate: 7, medianAge: 46, electricity: 50118, televisions: 54930, publicDebt: 42, internet: 84739 }), + new WorldStatsItem({ code: `GUM`, short: `GU`, name: `Guam`, continent: `Oceania`, population: 167358, gdpTotal: 4882, economy: `Developing`, region: `Micronesia`, status: `Dependency`, x: 144.79, y: 13.44, gdpPerPerson: 29171, rank: 193, unemployment: 15, oilProduction: 2, birthRate: 24, medianAge: 42, electricity: 64229, televisions: 43567, publicDebt: 37, internet: 121131 }), + new WorldStatsItem({ code: `LCA`, short: `LC`, name: `Saint Lucia`, continent: `North America`, population: 164994, gdpTotal: 2083, economy: `Developing`, region: `Central America`, status: `Country`, x: -60.98, y: 13.905, gdpPerPerson: 12625, rank: 194, unemployment: 3, oilProduction: 2, birthRate: 14, medianAge: 32, electricity: 75473, televisions: 87743, publicDebt: 7, internet: 64498 }), + new WorldStatsItem({ code: `CUW`, short: `CW`, name: `Curacao`, continent: `North America`, population: 149648, gdpTotal: 3128, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -68.95, y: 12.213, gdpPerPerson: 20902, rank: 195, unemployment: 6, oilProduction: 1, birthRate: 7, medianAge: 35, electricity: 74665, televisions: 89830, publicDebt: 36, internet: 55905 }), + new WorldStatsItem({ code: `ABW`, short: `AW`, name: `Aruba`, continent: `North America`, population: 115120, gdpTotal: 2516, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -69.98, y: 12.519, gdpPerPerson: 21855, rank: 196, unemployment: 7, oilProduction: 2356, birthRate: 13, medianAge: 38, electricity: 770, televisions: 20000, publicDebt: 46, internet: 24000 }), + new WorldStatsItem({ code: `GRD`, short: `GD`, name: `Grenada`, continent: `North America`, population: 111724, gdpTotal: 1511, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.69, y: 12.123, gdpPerPerson: 13524, rank: 197, unemployment: 10, oilProduction: 0, birthRate: 10, medianAge: 50, electricity: 4992, televisions: 58674, publicDebt: 42, internet: 33132 }), + new WorldStatsItem({ code: `KIR`, short: `KI`, name: `Kiribati`, continent: `Oceania`, population: 108145, gdpTotal: 211, economy: `Least Developed`, region: `Micronesia`, status: `Country`, x: -157.333, y: 1.884, gdpPerPerson: 1951, rank: 198, unemployment: 13, oilProduction: 4, birthRate: 9, medianAge: 52, electricity: 37081, televisions: 52395, publicDebt: 40, internet: 36620 }), + new WorldStatsItem({ code: `VIR`, short: `VI`, name: `U.S. Virgin Island`, continent: `North America`, population: 107268, gdpTotal: 3792, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -64.77, y: 17.77, gdpPerPerson: 35351, rank: 199, unemployment: 11, oilProduction: 2, birthRate: 12, medianAge: 38, electricity: 13387, televisions: 77187, publicDebt: 43, internet: 40836 }), + new WorldStatsItem({ code: `TON`, short: `TO`, name: `Tonga`, continent: `Oceania`, population: 106479, gdpTotal: 557, economy: `Developing`, region: `Polynesia`, status: `Country`, x: -173.9, y: -18.62, gdpPerPerson: 5231, rank: 200, unemployment: 4, oilProduction: 4, birthRate: 5, medianAge: 33, electricity: 88735, televisions: 30257, publicDebt: 25, internet: 71756 }), + new WorldStatsItem({ code: `FSM`, short: `FM`, name: `Micronesia`, continent: `Oceania`, population: 104196, gdpTotal: 314, economy: `Developing`, region: `Micronesia`, status: `Country`, x: 150.52, y: 7.435, gdpPerPerson: 3014, rank: 201, unemployment: 9, oilProduction: 5, birthRate: 5, medianAge: 38, electricity: 39068, televisions: 45396, publicDebt: 40, internet: 29169 }), + new WorldStatsItem({ code: `VCT`, short: `VC`, name: `St. Vincent and Grenadines`, continent: `North America`, population: 102089, gdpTotal: 1241, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.17, y: 13.239, gdpPerPerson: 12156, rank: 202, unemployment: 10, oilProduction: 5, birthRate: 7, medianAge: 30, electricity: 39467, televisions: 42804, publicDebt: 9, internet: 66754 }), + new WorldStatsItem({ code: `JEY`, short: `JE`, name: `Jersey`, continent: `Europe`, population: 98840, gdpTotal: 5080, economy: `Developed`, region: `Northern Europe`, status: `Territory`, x: -2.123, y: 49.218, gdpPerPerson: 51396, rank: 203, unemployment: 4, oilProduction: 1, birthRate: 18, medianAge: 30, electricity: 64261, televisions: 52453, publicDebt: 34, internet: 3026 }), + new WorldStatsItem({ code: `ATG`, short: `AG`, name: `Antigua and Barbuda`, continent: `North America`, population: 94731, gdpTotal: 2171, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.79, y: 17.096, gdpPerPerson: 22918, rank: 204, unemployment: 3, oilProduction: 1, birthRate: 5, medianAge: 36, electricity: 35849, televisions: 75384, publicDebt: 32, internet: 6170 }), + new WorldStatsItem({ code: `SYC`, short: `SC`, name: `Seychelles`, continent: `Africa`, population: 93920, gdpTotal: 2608, economy: `Developing`, region: `Eastern Africa`, status: `Country`, x: 55.463, y: -4.672, gdpPerPerson: 27768, rank: 205, unemployment: 2, oilProduction: 0, birthRate: 16, medianAge: 29, electricity: 252, televisions: 11000, publicDebt: 92, internet: 32000 }), + new WorldStatsItem({ code: `IMN`, short: `IM`, name: `Isle of Man`, continent: `Europe`, population: 88815, gdpTotal: 7428, economy: `Developed`, region: `Northern Europe`, status: `Territory`, x: -4.562, y: 54.233, gdpPerPerson: 83635, rank: 206, unemployment: 4, oilProduction: 4, birthRate: 14, medianAge: 36, electricity: 15745, televisions: 25734, publicDebt: 13, internet: 2650 }), + new WorldStatsItem({ code: `AND`, short: `AD`, name: `Andorra`, continent: `Europe`, population: 85702, gdpTotal: 3327, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 1.578, y: 42.539, gdpPerPerson: 38821, rank: 207, unemployment: 11, oilProduction: 3, birthRate: 20, medianAge: 50, electricity: 56209, televisions: 42797, publicDebt: 33, internet: 42006 }), + new WorldStatsItem({ code: `MHL`, short: `MH`, name: `Marshall Islands`, continent: `Oceania`, population: 74539, gdpTotal: 180, economy: `Developing`, region: `Micronesia`, status: `Country`, x: 169.3, y: 8.484, gdpPerPerson: 2415, rank: 208, unemployment: 3, oilProduction: 3, birthRate: 23, medianAge: 42, electricity: 78832, televisions: 15193, publicDebt: 44, internet: 8536 }), + new WorldStatsItem({ code: `DMA`, short: `DM`, name: `Dominica`, continent: `North America`, population: 73897, gdpTotal: 812, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.36, y: 15.43, gdpPerPerson: 10988, rank: 209, unemployment: 6, oilProduction: 1, birthRate: 13, medianAge: 35, electricity: 49809, televisions: 17676, publicDebt: 37, internet: 2616 }), + new WorldStatsItem({ code: `BMU`, short: `BM`, name: `Bermuda`, continent: `North America`, population: 70864, gdpTotal: 5198, economy: `Developed`, region: `Northern America`, status: `Dependency`, x: -64.76, y: 32.323, gdpPerPerson: 73352, rank: 210, unemployment: 15, oilProduction: 1, birthRate: 21, medianAge: 43, electricity: 54728, televisions: 16336, publicDebt: 27, internet: 41606 }), + new WorldStatsItem({ code: `GGY`, short: `GG`, name: `Guernsey`, continent: `Europe`, population: 66502, gdpTotal: 3465, economy: `Developed`, region: `Northern Europe`, status: `Territory`, x: -2.579, y: 49.468, gdpPerPerson: 52104, rank: 211, unemployment: 2, oilProduction: 1, birthRate: 25, medianAge: 33, electricity: 9806, televisions: 24638, publicDebt: 34, internet: 29222 }), + new WorldStatsItem({ code: `CYM`, short: `KY`, name: `Cayman Island`, continent: `North America`, population: 58441, gdpTotal: 2507, economy: `Emerging`, region: `Central America`, status: `Dependency`, x: -81.25, y: 19.343, gdpPerPerson: 42898, rank: 212, unemployment: 12, oilProduction: 3, birthRate: 7, medianAge: 35, electricity: 70206, televisions: 28885, publicDebt: 21, internet: 9332 }), + new WorldStatsItem({ code: `GRL`, short: `GL`, name: `Greenland`, continent: `North America`, population: 57713, gdpTotal: 2173, economy: `Developed`, region: `Northern America`, status: `Dependency`, x: -42.12, y: 69.547, gdpPerPerson: 37652, rank: 213, unemployment: 7, oilProduction: 5, birthRate: 19, medianAge: 42, electricity: 86090, televisions: 43741, publicDebt: 42, internet: 11423 }), + new WorldStatsItem({ code: `KNA`, short: `KN`, name: `St. Kitts and Nevis`, continent: `North America`, population: 52715, gdpTotal: 1427, economy: `Developing`, region: `Central America`, status: `Country`, x: -62.77, y: 17.351, gdpPerPerson: 27070, rank: 214, unemployment: 5, oilProduction: 2, birthRate: 18, medianAge: 40, electricity: 65438, televisions: 17719, publicDebt: 11, internet: 8543 }), + new WorldStatsItem({ code: `TCA`, short: `TC`, name: `Turks and Caicos Island`, continent: `North America`, population: 52570, gdpTotal: 632, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -71.96, y: 21.913, gdpPerPerson: 12022, rank: 215, unemployment: 6, oilProduction: 0, birthRate: 13, medianAge: 42, electricity: 51325, televisions: 13109, publicDebt: 13, internet: 24564 }), + new WorldStatsItem({ code: `MNP`, short: `MP`, name: `N. Mariana Island`, continent: `Oceania`, population: 52263, gdpTotal: 682, economy: `Developing`, region: `Micronesia`, status: `Dependency`, x: 145.49, y: 16.459, gdpPerPerson: 13049, rank: 216, unemployment: 10, oilProduction: 1, birthRate: 9, medianAge: 46, electricity: 87386, televisions: 13049, publicDebt: 20, internet: 5484 }), + new WorldStatsItem({ code: `ASM`, short: `AS`, name: `American Samoa`, continent: `Oceania`, population: 51504, gdpTotal: 711, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -170.6, y: -14.3, gdpPerPerson: 13805, rank: 217, unemployment: 3, oilProduction: 4, birthRate: 13, medianAge: 42, electricity: 65918, televisions: 18802, publicDebt: 23, internet: 14691 }), + new WorldStatsItem({ code: `FRO`, short: `FO`, name: `Faeroe Island`, continent: `Europe`, population: 50730, gdpTotal: 2001, economy: `Developed`, region: `Northern Europe`, status: `Dependency`, x: -6.857, y: 62.178, gdpPerPerson: 39444, rank: 218, unemployment: 15, oilProduction: 2, birthRate: 11, medianAge: 46, electricity: 55029, televisions: 11762, publicDebt: 13, internet: 2412 }), + new WorldStatsItem({ code: `SXM`, short: `SX`, name: `Sint Maarten`, continent: `North America`, population: 42083, gdpTotal: 366, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -63.06, y: 18.044, gdpPerPerson: 8697, rank: 219, unemployment: 14, oilProduction: 4, birthRate: 19, medianAge: 50, electricity: 17166, televisions: 8474, publicDebt: 33, internet: 14309 }), + new WorldStatsItem({ code: `LIE`, short: `LI`, name: `Liechtenstein`, continent: `Europe`, population: 38244, gdpTotal: 4978, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 9.545, y: 47.164, gdpPerPerson: 130164, rank: 220, unemployment: 11, oilProduction: 3, birthRate: 10, medianAge: 55, electricity: 80781, televisions: 23104, publicDebt: 21, internet: 8159 }), + new WorldStatsItem({ code: `VGB`, short: `VG`, name: `British Virgin Island`, continent: `North America`, population: 35015, gdpTotal: 500, economy: `Developed`, region: `Central America`, status: `Dependency`, x: -64.6, y: 18.44, gdpPerPerson: 14280, rank: 221, unemployment: 13, oilProduction: 2, birthRate: 6, medianAge: 51, electricity: 47732, televisions: 17777, publicDebt: 7, internet: 6238 }), + new WorldStatsItem({ code: `SMR`, short: `SM`, name: `San Marino`, continent: `Europe`, population: 33537, gdpTotal: 2023, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 12.456, y: 43.942, gdpPerPerson: 60321, rank: 222, unemployment: 10, oilProduction: 0, birthRate: 15, medianAge: 48, electricity: 21943, televisions: 22355, publicDebt: 34, internet: 23505 }), + new WorldStatsItem({ code: `GIB`, short: `GI`, name: `Gibraltar`, continent: `Europe`, population: 32688, gdpTotal: 2911, economy: `Developing`, region: `Southern Europe`, status: `Territory`, x: -5.35, y: 36.14, gdpPerPerson: 89054, rank: 223, unemployment: 11, oilProduction: 0, birthRate: 38, medianAge: 75, electricity: 163440, televisions: 26150, publicDebt: 39, internet: 19613 }), + new WorldStatsItem({ code: `MAF`, short: `MF`, name: `St. Martin`, continent: `North America`, population: 32125, gdpTotal: 562, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -63.06, y: 18.092, gdpPerPerson: 17494, rank: 224, unemployment: 15, oilProduction: 5, birthRate: 10, medianAge: 34, electricity: 76791, televisions: 17592, publicDebt: 43, internet: 25032 }), + new WorldStatsItem({ code: `BES`, short: `BQ`, name: `Caribbean Netherlands`, continent: `North America`, population: 31980, gdpTotal: 725, economy: `Developing`, region: `Central America`, status: `Territory`, x: -68.27, y: 12.15, gdpPerPerson: 22670, rank: 225, unemployment: 15, oilProduction: 0, birthRate: 46, medianAge: 58, electricity: 159900, televisions: 25584, publicDebt: 20, internet: 19188 }), + new WorldStatsItem({ code: `MCO`, short: `MC`, name: `Monaco`, continent: `Europe`, population: 30645, gdpTotal: 7672, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 7.408, y: 43.751, gdpPerPerson: 250351, rank: 226, unemployment: 15, oilProduction: 5, birthRate: 18, medianAge: 31, electricity: 73517, televisions: 10057, publicDebt: 10, internet: 18394 }), + new WorldStatsItem({ code: `ALA`, short: `AX`, name: `Aland Islands`, continent: `Europe`, population: 27153, gdpTotal: 1563, economy: `Developed`, region: `Northern Europe`, status: `Territory`, x: 20.065, y: 60.209, gdpPerPerson: 57563, rank: 227, unemployment: 14, oilProduction: 3, birthRate: 15, medianAge: 54, electricity: 69394, televisions: 14696, publicDebt: 19, internet: 2736 }), + new WorldStatsItem({ code: `PLW`, short: `PW`, name: `Palau`, continent: `Oceania`, population: 21431, gdpTotal: 276, economy: `Developing`, region: `Micronesia`, status: `Country`, x: 134.63, y: 7.532, gdpPerPerson: 12879, rank: 228, unemployment: 8, oilProduction: 1, birthRate: 7, medianAge: 39, electricity: 88599, televisions: 3019, publicDebt: 8, internet: 17075 }), + new WorldStatsItem({ code: `AIA`, short: `AI`, name: `Anguilla`, continent: `North America`, population: 17087, gdpTotal: 175, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -63.07, y: 18.221, gdpPerPerson: 10242, rank: 229, unemployment: 9, oilProduction: 1, birthRate: 10, medianAge: 49, electricity: 68590, televisions: 10632, publicDebt: 40, internet: 8703 }), + new WorldStatsItem({ code: `WLF`, short: `WF`, name: `Wallis and Futuna`, continent: `Oceania`, population: 15714, gdpTotal: 60, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -177.1, y: -13.77, gdpPerPerson: 3818, rank: 230, unemployment: 15, oilProduction: 0, birthRate: 0, medianAge: 0, electricity: 0, televisions: 0, publicDebt: 6, internet: 900 }), + new WorldStatsItem({ code: `TUV`, short: `TV`, name: `Tuvalu`, continent: `Oceania`, population: 10643, gdpTotal: 63, economy: `Developing`, region: `Polynesia`, status: `Country`, x: 179.2, y: -8.52, gdpPerPerson: 5919, rank: 231, unemployment: 35, oilProduction: 0, birthRate: 36, medianAge: 74, electricity: 53215, televisions: 8514, publicDebt: 52, internet: 6386 }), + new WorldStatsItem({ code: `NRU`, short: `NR`, name: `Nauru`, continent: `Oceania`, population: 9642, gdpTotal: 151, economy: `Developing`, region: `Micronesia`, status: `Country`, x: 166.93, y: -0.52, gdpPerPerson: 15661, rank: 232, unemployment: 5, oilProduction: 3, birthRate: 17, medianAge: 32, electricity: 84092, televisions: 1777, publicDebt: 34, internet: 4585 }), + new WorldStatsItem({ code: `COK`, short: `CK`, name: `Cook Island`, continent: `Oceania`, population: 9290, gdpTotal: 244, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -159.7, y: -21.21, gdpPerPerson: 26265, rank: 233, unemployment: 15, oilProduction: 1, birthRate: 6, medianAge: 45, electricity: 41320, televisions: 3712, publicDebt: 24, internet: 3555 }), + new WorldStatsItem({ code: `SHN`, short: `SH`, name: `Saint Helena`, continent: `Africa`, population: 7828, gdpTotal: 31, economy: `Developing`, region: `Western Africa`, status: `Dependency`, x: -10.03, y: -11.94, gdpPerPerson: 3960, rank: 234, unemployment: 13, oilProduction: 1, birthRate: 17, medianAge: 48, electricity: 84435, televisions: 3812, publicDebt: 15, internet: 5530 }), + new WorldStatsItem({ code: `BLM`, short: `BL`, name: `St. Barthalemy`, continent: `North America`, population: 7184, gdpTotal: 255, economy: `Developed`, region: `Central America`, status: `Dependency`, x: -62.83, y: 17.899, gdpPerPerson: 35496, rank: 235, unemployment: 14, oilProduction: 0, birthRate: 23, medianAge: 46, electricity: 36112, televisions: 4072, publicDebt: 27, internet: 5097 }), + new WorldStatsItem({ code: `SPM`, short: `PM`, name: `St. Pierre`, continent: `North America`, population: 5533, gdpTotal: 215, economy: `Developed`, region: `Northern America`, status: `Territory`, x: -56.26, y: 46.926, gdpPerPerson: 38858, rank: 236, unemployment: 13, oilProduction: 0, birthRate: 13, medianAge: 42, electricity: 61277, televisions: 2067, publicDebt: 18, internet: 2924 }), + new WorldStatsItem({ code: `MSR`, short: `MS`, name: `Montserrat`, continent: `North America`, population: 5292, gdpTotal: 44, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -62.18, y: 16.745, gdpPerPerson: 8314, rank: 237, unemployment: 13, oilProduction: 1, birthRate: 12, medianAge: 50, electricity: 19088, televisions: 1964, publicDebt: 44, internet: 4009 }), + new WorldStatsItem({ code: `IOT`, short: `IO`, name: `British Indian Territory`, continent: `Asia`, population: 4000, gdpTotal: 160, economy: `Developed`, region: `Southern Asia`, status: `Dependency`, x: 72.424, y: -7.328, gdpPerPerson: 40000, rank: 238, unemployment: 13, oilProduction: 0, birthRate: 6, medianAge: 47, electricity: 91829, televisions: 1510, publicDebt: 14, internet: 1656 }), + new WorldStatsItem({ code: `FLK`, short: `FK`, name: `Falkland Island`, continent: `South America`, population: 2931, gdpTotal: 282, economy: `Developed`, region: `South America`, status: `Dependency`, x: -59.46, y: -51.78, gdpPerPerson: 96213, rank: 239, unemployment: 3, oilProduction: 5, birthRate: 9, medianAge: 36, electricity: 68007, televisions: 1489, publicDebt: 22, internet: 1335 }), + new WorldStatsItem({ code: `NFK`, short: `NF`, name: `Norfolk Island`, continent: `Oceania`, population: 2210, gdpTotal: 33, economy: `Developing`, region: `Australia`, status: `Dependency`, x: 167.94, y: -29.05, gdpPerPerson: 14932, rank: 240, unemployment: 1, oilProduction: 0, birthRate: 15, medianAge: 46, electricity: 91943, televisions: 583, publicDebt: 41, internet: 1183 }), + new WorldStatsItem({ code: `NIU`, short: `NU`, name: `Niue`, continent: `Oceania`, population: 1626, gdpTotal: 10, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -169.8, y: -19.05, gdpPerPerson: 6150, rank: 241, unemployment: 15, oilProduction: 4, birthRate: 17, medianAge: 51, electricity: 16785, televisions: 585, publicDebt: 31, internet: 1247 }), + new WorldStatsItem({ code: `VAT`, short: `VT`, name: `Vatican`, continent: `Europe`, population: 771, gdpTotal: 15, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 12.433, y: 41.902, gdpPerPerson: 19450, rank: 242, unemployment: 0, oilProduction: 0, birthRate: 0, medianAge: 55, electricity: 771, televisions: 100, publicDebt: 0, internet: 771 }), ]; 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 a07901497..442f0de33 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 @@ -4,6 +4,7 @@ export class WorldStatsItem { } public code: string; + public short: string; public name: string; public continent: string; public population: number; @@ -11,8 +12,8 @@ export class WorldStatsItem { public economy: string; public region: string; public status: string; - public longitude: number; - public latitude: number; + public x: number; + public y: number; public gdpPerPerson: number; public rank: number; public unemployment: number; @@ -31,240 +32,247 @@ export class WorldStats extends Array { 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 }), + new WorldStatsItem({ code: `CHN`, short: `CN`, name: `China`, continent: `Asia`, population: 1379302771, gdpTotal: 21140000, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 104.18, y: 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`, short: `IN`, name: `India`, continent: `Asia`, population: 1281935911, gdpTotal: 8721000, economy: `Emerging`, region: `Southern Asia`, status: `Country`, x: 78.022, y: 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`, short: `US`, name: `United States`, continent: `North America`, population: 326625791, gdpTotal: 18560000, economy: `Developed`, region: `Northern America`, status: `Country`, x: -101.8, y: 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`, short: `ID`, name: `Indonesia`, continent: `Asia`, population: 260580739, gdpTotal: 3028000, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 102.72, y: -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`, short: `BR`, name: `Brazil`, continent: `South America`, population: 207353391, gdpTotal: 3081000, economy: `Emerging`, region: `South America`, status: `Country`, x: -48.88, y: -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`, short: `PK`, name: `Pakistan`, continent: `Asia`, population: 204924861, gdpTotal: 988200, economy: `Emerging`, region: `Southern Asia`, status: `Country`, x: 67.624, y: 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`, short: `NG`, name: `Nigeria`, continent: `Africa`, population: 190632261, gdpTotal: 1089000, economy: `Emerging`, region: `Western Africa`, status: `Country`, x: 8.657, y: 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`, short: `BD`, name: `Bangladesh`, continent: `Asia`, population: 157826578, gdpTotal: 628400, economy: `Least Developed`, region: `Southern Asia`, status: `Country`, x: 89.935, y: 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`, short: `RU`, name: `Russia`, continent: `Europe`, population: 142257519, gdpTotal: 3745000, economy: `Emerging`, region: `Eastern Europe`, status: `Country`, x: 42.379, y: 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`, short: `JP`, name: `Japan`, continent: `Asia`, population: 126451398, gdpTotal: 4932000, economy: `Developed`, region: `Eastern Asia`, status: `Country`, x: 138.48, y: 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`, short: `MX`, name: `Mexico`, continent: `North America`, population: 124574795, gdpTotal: 2307000, economy: `Emerging`, region: `Central America`, status: `Country`, x: -102.5, y: 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`, short: `ET`, name: `Ethiopia`, continent: `Africa`, population: 105350020, gdpTotal: 174700, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 40.489, y: 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`, short: `PH`, name: `Philippines`, continent: `Asia`, population: 104256076, gdpTotal: 801900, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 121.4, y: 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`, short: `EG`, name: `Egypt`, continent: `Africa`, population: 97041072, gdpTotal: 1105000, economy: `Emerging`, region: `Middle East`, status: `Country`, x: 30.787, y: 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`, short: `VN`, name: `Vietnam`, continent: `Asia`, population: 96160163, gdpTotal: 594900, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 108.46, y: 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`, short: `CD`, name: `Dem. Rep. Congo`, continent: `Africa`, population: 83301151, gdpTotal: 66010, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 21.738, y: -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`, short: `IR`, name: `Iran`, continent: `Asia`, population: 82021564, gdpTotal: 1459000, economy: `Emerging`, region: `Middle East`, status: `Country`, x: 53.664, y: 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`, short: `TR`, name: `Turkey`, continent: `Asia`, population: 80845215, gdpTotal: 1670000, economy: `Emerging`, region: `Middle East`, status: `Country`, x: 35.243, y: 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`, short: `DE`, name: `Germany`, continent: `Europe`, population: 80594017, gdpTotal: 3979000, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 11.43, y: 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`, short: `TH`, name: `Thailand`, continent: `Asia`, population: 68414135, gdpTotal: 1161000, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 100.65, y: 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`, short: `FR`, name: `France`, continent: `Europe`, population: 67106161, gdpTotal: 2699000, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 2.267, y: 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`, short: `GB`, name: `United Kingdom`, continent: `Europe`, population: 64769452, gdpTotal: 2788000, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: -1.233, y: 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`, short: `IT`, name: `Italy`, continent: `Europe`, population: 62137802, gdpTotal: 2221000, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 15.701, y: 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`, short: `MM`, name: `Myanmar`, continent: `Asia`, population: 55123814, gdpTotal: 311100, economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, x: 96.028, y: 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`, short: `ZA`, name: `South Africa`, continent: `Africa`, population: 54841552, gdpTotal: 739100, economy: `Emerging`, region: `Southern Africa`, status: `Country`, x: 22.489, y: -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`, short: `TZ`, name: `Tanzania`, continent: `Africa`, population: 53950935, gdpTotal: 150600, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 34.894, y: -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`, short: `KR`, name: `South Korea`, continent: `Asia`, population: 51181299, gdpTotal: 1929000, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 128.29, y: 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`, short: `ES`, name: `Spain`, continent: `Europe`, population: 48958159, gdpTotal: 1690000, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: -2.892, y: 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`, short: `CO`, name: `Colombia`, continent: `South America`, population: 47698524, gdpTotal: 688000, economy: `Developing`, region: `South America`, status: `Country`, x: -72.95, y: 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`, short: `KE`, name: `Kenya`, continent: `Africa`, population: 47615739, gdpTotal: 152700, economy: `Emerging`, region: `Eastern Africa`, status: `Country`, x: 37.929, y: 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`, short: `AR`, name: `Argentina`, continent: `South America`, population: 44293293, gdpTotal: 879400, economy: `Emerging`, region: `South America`, status: `Country`, x: -64.84, y: -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`, short: `UA`, name: `Ukraine`, continent: `Europe`, population: 44033874, gdpTotal: 352600, economy: `Developing`, region: `Eastern Europe`, status: `Country`, x: 30.86, y: 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`, short: `DZ`, name: `Algeria`, continent: `Africa`, population: 40969443, gdpTotal: 609400, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: 1.642, y: 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`, short: `UG`, name: `Uganda`, continent: `Africa`, population: 39570125, gdpTotal: 84930, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 32.27, y: 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`, short: `IQ`, name: `Iraq`, continent: `Asia`, population: 39192111, gdpTotal: 596700, economy: `Developing`, region: `Middle East`, status: `Country`, x: 43.66, y: 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`, short: `PL`, name: `Poland`, continent: `Europe`, population: 38476269, gdpTotal: 1052000, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 20.073, y: 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`, short: `SD`, name: `Sudan`, continent: `Africa`, population: 37345935, gdpTotal: 176300, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: 30.217, y: 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`, short: `CA`, name: `Canada`, continent: `North America`, population: 35623680, gdpTotal: 1674000, economy: `Developed`, region: `Northern America`, status: `Country`, x: -108, y: 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`, short: `AF`, name: `Afghanistan`, continent: `Asia`, population: 34124811, gdpTotal: 64080, economy: `Least Developed`, region: `Southern Asia`, status: `Country`, x: 66.041, y: 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`, short: `MA`, name: `Morocco`, continent: `Africa`, population: 33986655, gdpTotal: 282800, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: -5.707, y: 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`, short: `MY`, name: `Malaysia`, continent: `Asia`, population: 31381992, gdpTotal: 863000, economy: `Developing`, region: `Eastern Asia`, status: `Country`, x: 101.72, y: 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`, short: `VE`, name: `Venezuela`, continent: `South America`, population: 31304016, gdpTotal: 468600, economy: `Emerging`, region: `South America`, status: `Country`, x: -64.78, y: 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`, short: `PE`, name: `Peru`, continent: `South America`, population: 31036656, gdpTotal: 410400, economy: `Emerging`, region: `South America`, status: `Country`, x: -73.82, y: -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`, short: `UZ`, name: `Uzbekistan`, continent: `Asia`, population: 29748859, gdpTotal: 202300, economy: `Developing`, region: `Central Asia`, status: `Country`, x: 63.288, y: 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`, short: `NP`, name: `Nepal`, continent: `Asia`, population: 29384297, gdpTotal: 71520, economy: `Least Developed`, region: `Southern Asia`, status: `Country`, x: 82.328, y: 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`, short: `AO`, name: `Angola`, continent: `Africa`, population: 29310273, gdpTotal: 189000, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 18.097, y: -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`, short: `SA`, name: `Saudi Arabia`, continent: `Asia`, population: 28571770, gdpTotal: 1731000, economy: `Developed`, region: `Middle East`, status: `Country`, x: 45.129, y: 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`, short: `YE`, name: `Yemen`, continent: `Asia`, population: 28036829, gdpTotal: 73450, economy: `Least Developed`, region: `Middle East`, status: `Country`, x: 48.53, y: 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`, short: `GH`, name: `Ghana`, continent: `Africa`, population: 27499924, gdpTotal: 120800, economy: `Developing`, region: `Western Africa`, status: `Country`, x: -0.893, y: 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`, short: `MZ`, name: `Mozambique`, continent: `Africa`, population: 26573706, gdpTotal: 35010, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 38.075, y: -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`, short: `KP`, name: `North Korea`, continent: `Asia`, population: 25248140, gdpTotal: 40000, economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, x: 127.01, y: 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`, short: `MG`, name: `Madagascar`, continent: `Africa`, population: 25054161, gdpTotal: 36860, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 46.87, y: -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`, short: `CM`, name: `Cameroon`, continent: `Africa`, population: 24994885, gdpTotal: 77240, economy: `Developing`, region: `Middle Africa`, status: `Country`, x: 12.451, y: 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`, short: `CI`, name: `Ivory Coast`, continent: `Africa`, population: 24184810, gdpTotal: 87120, economy: `Developing`, region: `Western Africa`, status: `Country`, x: -5.555, y: 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`, short: `TW`, name: `Taiwan`, continent: `Asia`, population: 23508428, gdpTotal: 1127000, economy: `Developed`, region: `Eastern Asia`, status: `Country`, x: 120.96, y: 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`, short: `AU`, name: `Australia`, continent: `Oceania`, population: 23232413, gdpTotal: 1189000, economy: `Developed`, region: `Australia`, status: `Country`, x: 135.87, y: -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`, short: `LK`, name: `Sri Lanka`, continent: `Asia`, population: 22409381, gdpTotal: 236700, economy: `Developing`, region: `Southern Asia`, status: `Country`, x: 80.792, y: 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`, short: `RO`, name: `Romania`, continent: `Europe`, population: 21529967, gdpTotal: 441000, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 24.974, y: 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`, short: `BF`, name: `Burkina Faso`, continent: `Africa`, population: 20107509, gdpTotal: 32990, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -1.567, y: 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`, short: `NE`, name: `Niger`, continent: `Africa`, population: 19245344, gdpTotal: 20150, economy: `Least Developed`, region: `Northern Africa`, status: `Country`, x: 10.845, y: 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`, short: `MW`, name: `Malawi`, continent: `Africa`, population: 19196246, gdpTotal: 21200, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 34.282, y: -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`, short: `KZ`, name: `Kazakhstan`, continent: `Asia`, population: 18556698, gdpTotal: 460700, economy: `Developing`, region: `Central Asia`, status: `Country`, x: 66.966, y: 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`, short: `SY`, name: `Syria`, continent: `Asia`, population: 18028549, gdpTotal: 50280, economy: `Developing`, region: `Middle East`, status: `Country`, x: 39.062, y: 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`, short: `ML`, name: `Mali`, continent: `Africa`, population: 17885245, gdpTotal: 38090, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -1.496, y: 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`, short: `CL`, name: `Chile`, continent: `South America`, population: 17789267, gdpTotal: 436100, economy: `Emerging`, region: `South America`, status: `Country`, x: -69.11, y: -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`, short: `NL`, name: `Netherlands`, continent: `Europe`, population: 17084719, gdpTotal: 870800, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 6.272, y: 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`, short: `EC`, name: `Ecuador`, continent: `South America`, population: 16290913, gdpTotal: 182400, economy: `Developing`, region: `South America`, status: `Country`, x: -77.98, y: -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`, short: `KH`, name: `Cambodia`, continent: `Asia`, population: 16204486, gdpTotal: 58940, economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, x: 104.96, y: 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`, short: `ZM`, name: `Zambia`, continent: `Africa`, population: 15972000, gdpTotal: 65170, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 26.301, y: -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`, short: `GT`, name: `Guatemala`, continent: `North America`, population: 15460732, gdpTotal: 131800, economy: `Developing`, region: `Central America`, status: `Country`, x: -90.4, y: 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`, short: `SN`, name: `Senegal`, continent: `Africa`, population: 14668522, gdpTotal: 39720, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -14.76, y: 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`, short: `ZW`, name: `Zimbabwe`, continent: `Africa`, population: 13805084, gdpTotal: 28330, economy: `Emerging`, region: `Eastern Africa`, status: `Country`, x: 29.115, y: -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`, short: `SS`, name: `South Sudan`, continent: `Africa`, population: 13026129, gdpTotal: 20880, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 29.708, y: 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`, short: `GN`, name: `Guinea`, continent: `Africa`, population: 12413867, gdpTotal: 16080, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -9.522, y: 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`, short: `TD`, name: `Chad`, continent: `Africa`, population: 12075985, gdpTotal: 30590, economy: `Least Developed`, region: `Northern Africa`, status: `Country`, x: 18.716, y: 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`, short: `RW`, name: `Rwanda`, continent: `Africa`, population: 11901484, gdpTotal: 21970, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 29.867, y: -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`, short: `BE`, name: `Belgium`, continent: `Europe`, population: 11491346, gdpTotal: 508600, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 4.605, y: 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`, short: `BI`, name: `Burundi`, continent: `Africa`, population: 11466756, gdpTotal: 7892, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 29.913, y: -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`, short: `TN`, name: `Tunisia`, continent: `Africa`, population: 11403800, gdpTotal: 130800, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: 9.516, y: 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`, short: `CU`, name: `Cuba`, continent: `North America`, population: 11147407, gdpTotal: 132900, economy: `Emerging`, region: `Central America`, status: `Country`, x: -80.54, y: 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`, short: `BO`, name: `Bolivia`, continent: `South America`, population: 11138234, gdpTotal: 78350, economy: `Emerging`, region: `South America`, status: `Country`, x: -63.57, y: -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`, short: `BJ`, name: `Benin`, continent: `Africa`, population: 11038805, gdpTotal: 24310, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: 2.704, y: 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`, short: `PT`, name: `Portugal`, continent: `Europe`, population: 10839514, gdpTotal: 297100, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: -7.757, y: 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`, short: `GR`, name: `Greece`, continent: `Europe`, population: 10768477, gdpTotal: 290500, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 21.871, y: 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`, short: `DO`, name: `Dominican Republic`, continent: `North America`, population: 10734247, gdpTotal: 161900, economy: `Developing`, region: `Central America`, status: `Country`, x: -70.17, y: 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`, short: `CZ`, name: `Czechia`, continent: `Europe`, population: 10674723, gdpTotal: 350900, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 15.461, y: 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`, short: `HT`, name: `Haiti`, continent: `North America`, population: 10646714, gdpTotal: 19340, economy: `Least Developed`, region: `Central America`, status: `Country`, x: -72.23, y: 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`, short: `JO`, name: `Jordan`, continent: `Asia`, population: 10248069, gdpTotal: 86190, economy: `Developing`, region: `Middle East`, status: `Country`, x: 38.125, y: 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`, short: `AZ`, name: `Azerbaijan`, continent: `Asia`, population: 9961396, gdpTotal: 167900, economy: `Developing`, region: `Middle East`, status: `Country`, x: 48.401, y: 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`, short: `SE`, name: `Sweden`, continent: `Europe`, population: 9960487, gdpTotal: 498100, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 17.594, y: 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`, short: `HU`, name: `Hungary`, continent: `Europe`, population: 9850845, gdpTotal: 267600, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 19.485, y: 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`, short: `BY`, name: `Belarus`, continent: `Europe`, population: 9549747, gdpTotal: 165400, economy: `Developing`, region: `Eastern Europe`, status: `Country`, x: 27.943, y: 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`, short: `HN`, name: `Honduras`, continent: `North America`, population: 9038741, gdpTotal: 43190, economy: `Developing`, region: `Central America`, status: `Country`, x: -86.74, y: 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`, short: `AT`, name: `Austria`, continent: `Europe`, population: 8754413, gdpTotal: 416600, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 14.987, y: 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`, short: `TJ`, name: `Tajikistan`, continent: `Asia`, population: 8468555, gdpTotal: 25810, economy: `Developing`, region: `Central Asia`, status: `Country`, x: 71.234, y: 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`, short: `IL`, name: `Israel`, continent: `Asia`, population: 8299706, gdpTotal: 297000, economy: `Developed`, region: `Middle East`, status: `Country`, x: 34.977, y: 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`, short: `CH`, name: `Switzerland`, continent: `Europe`, population: 8236303, gdpTotal: 496300, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 7.865, y: 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`, short: `TG`, name: `Togo`, continent: `Africa`, population: 7965055, gdpTotal: 11610, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: 1.146, y: 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`, short: `SO`, name: `Somalia`, continent: `Africa`, population: 7531386, gdpTotal: 4719, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 44.134, y: 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`, short: `HK`, name: `Hong Kong`, continent: `Asia`, population: 7191503, gdpTotal: 427400, economy: `Developing`, region: `Eastern Asia`, status: `Dependency`, x: 114.08, y: 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`, short: `LA`, name: `Laos`, continent: `Asia`, population: 7126706, gdpTotal: 40960, economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, x: 102.36, y: 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`, short: `RS`, name: `Serbia`, continent: `Europe`, population: 7111024, gdpTotal: 101800, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 20.908, y: 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`, short: `BG`, name: `Bulgaria`, continent: `Europe`, population: 7101510, gdpTotal: 143100, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 25.465, y: 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`, short: `PY`, name: `Paraguay`, continent: `South America`, population: 6943739, gdpTotal: 64670, economy: `Emerging`, region: `South America`, status: `Country`, x: -58.44, y: -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`, short: `PG`, name: `Papua New Guinea`, continent: `Oceania`, population: 6909701, gdpTotal: 28020, economy: `Developing`, region: `Melanesia`, status: `Country`, x: 143.62, y: -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`, short: `LY`, name: `Libya`, continent: `Africa`, population: 6653210, gdpTotal: 90890, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: 17.23, y: 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`, short: `LB`, name: `Lebanon`, continent: `Asia`, population: 6229794, gdpTotal: 85160, economy: `Developing`, region: `Middle East`, status: `Country`, x: 36.042, y: 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`, short: `SV`, name: `El Salvador`, continent: `North America`, population: 6172011, gdpTotal: 54790, economy: `Developing`, region: `Central America`, status: `Country`, x: -88.91, y: 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`, short: `SL`, name: `Sierra Leone`, continent: `Africa`, population: 6163195, gdpTotal: 10640, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -11.78, y: 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`, short: `AE`, name: `United Arab Emirates`, continent: `Asia`, population: 6072475, gdpTotal: 667200, economy: `Developing`, region: `Middle East`, status: `Country`, x: 54.192, y: 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`, short: `NI`, name: `Nicaragua`, continent: `North America`, population: 6025951, gdpTotal: 33550, economy: `Developing`, region: `Central America`, status: `Country`, x: -85.09, y: 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`, short: `ER`, name: `Eritrea`, continent: `Africa`, population: 5918919, gdpTotal: 9169, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 39.772, y: 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`, short: `SG`, name: `Singapore`, continent: `Asia`, population: 5888926, gdpTotal: 487900, economy: `Developing`, region: `Eastern Asia`, status: `Country`, x: 103.82, y: 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`, short: `KG`, name: `Kyrgyzstan`, continent: `Asia`, population: 5789122, gdpTotal: 21010, economy: `Developing`, region: `Central Asia`, status: `Country`, x: 74.738, y: 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`, short: `CF`, name: `Central African Republic`, continent: `Africa`, population: 5625118, gdpTotal: 3206, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 20.917, y: 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`, short: `DK`, name: `Denmark`, continent: `Europe`, population: 5605948, gdpTotal: 264800, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 9.348, y: 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`, short: `FI`, name: `Finland`, continent: `Europe`, population: 5491218, gdpTotal: 224137, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 25.988, y: 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`, short: `SK`, name: `Slovakia`, continent: `Europe`, population: 5445829, gdpTotal: 168800, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 18.877, y: 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`, short: `TM`, name: `Turkmenistan`, continent: `Asia`, population: 5351277, gdpTotal: 94720, economy: `Developing`, region: `Central Asia`, status: `Country`, x: 59.562, y: 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`, short: `NO`, name: `Norway`, continent: `Europe`, population: 5320045, gdpTotal: 364700, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 9.66, y: 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`, short: `IE`, name: `Ireland`, continent: `Europe`, population: 5011102, gdpTotal: 322000, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: -8.209, y: 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`, short: `CG`, name: `Congo`, continent: `Africa`, population: 4954674, gdpTotal: 30270, economy: `Developing`, region: `Middle Africa`, status: `Country`, x: 16.264, y: -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`, short: `CR`, name: `Costa Rica`, continent: `North America`, population: 4930258, gdpTotal: 79260, economy: `Emerging`, region: `Central America`, status: `Country`, x: -83.91, y: 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`, short: `GE`, name: `Georgia`, continent: `Asia`, population: 4926330, gdpTotal: 37270, economy: `Developing`, region: `Middle East`, status: `Country`, x: 43.257, y: 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`, short: `LR`, name: `Liberia`, continent: `Africa`, population: 4689021, gdpTotal: 3881, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -9.454, y: 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`, short: `PS`, name: `Palestine`, continent: `Asia`, population: 4543126, gdpTotal: 21221, economy: `Developing`, region: `Middle East`, status: `Disputed`, x: 35.347, y: 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`, short: `NZ`, name: `New Zealand`, continent: `Oceania`, population: 4510327, gdpTotal: 174800, economy: `Developed`, region: `Australia`, status: `Country`, x: 169.42, y: -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`, short: `HR`, name: `Croatia`, continent: `Europe`, population: 4292095, gdpTotal: 94240, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 16.847, y: 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`, short: `BA`, name: `Bosnia`, continent: `Europe`, population: 3856181, gdpTotal: 42530, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 17.66, y: 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`, short: `MR`, name: `Mauritania`, continent: `Africa`, population: 3758571, gdpTotal: 16710, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -8.89, y: 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`, short: `PA`, name: `Panama`, continent: `North America`, population: 3753142, gdpTotal: 93120, economy: `Developing`, region: `Central America`, status: `Country`, x: -81.17, y: 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`, short: `XS`, name: `Somaliland`, continent: `Africa`, population: 3500000, gdpTotal: 12250, economy: `Developing`, region: `Eastern Africa`, status: `Indeterminate`, x: 45.798, y: 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`, short: `MD`, name: `Moldova`, continent: `Europe`, population: 3474121, gdpTotal: 18540, economy: `Developing`, region: `Eastern Europe`, status: `Country`, x: 28.552, y: 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`, short: `OM`, name: `Oman`, continent: `Asia`, population: 3424386, gdpTotal: 173100, economy: `Developing`, region: `Middle East`, status: `Country`, x: 57.563, y: 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`, short: `UY`, name: `Uruguay`, continent: `South America`, population: 3360148, gdpTotal: 73250, economy: `Emerging`, region: `South America`, status: `Country`, x: -55.78, y: -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`, short: `PR`, name: `Puerto Rico`, continent: `North America`, population: 3351827, gdpTotal: 131000, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -66.61, y: 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`, short: `MN`, name: `Mongolia`, continent: `Asia`, population: 3068243, gdpTotal: 37000, economy: `Developing`, region: `Eastern Asia`, status: `Country`, x: 103.82, y: 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`, short: `AL`, name: `Albania`, continent: `Europe`, population: 3047987, gdpTotal: 33900, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 19.964, y: 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`, short: `AM`, name: `Armenia`, continent: `Asia`, population: 3045191, gdpTotal: 26300, economy: `Developing`, region: `Middle East`, status: `Country`, x: 44.646, y: 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`, short: `JM`, name: `Jamaica`, continent: `North America`, population: 2990561, gdpTotal: 25390, economy: `Developing`, region: `Central America`, status: `Country`, x: -77.27, y: 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`, short: `KW`, name: `Kuwait`, continent: `Asia`, population: 2875422, gdpTotal: 301100, economy: `Developing`, region: `Middle East`, status: `Country`, x: 47.487, y: 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`, short: `LT`, name: `Lithuania`, continent: `Europe`, population: 2823859, gdpTotal: 85620, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 23.838, y: 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`, short: `NA`, name: `Namibia`, continent: `Africa`, population: 2484780, gdpTotal: 25990, economy: `Developing`, region: `Southern Africa`, status: `Country`, x: 16.944, y: -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`, short: `QA`, name: `Qatar`, continent: `Asia`, population: 2314307, gdpTotal: 334500, economy: `Developing`, region: `Middle East`, status: `Country`, x: 51.182, y: 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`, short: `BW`, name: `Botswana`, continent: `Africa`, population: 2214858, gdpTotal: 35900, economy: `Developing`, region: `Southern Africa`, status: `Country`, x: 24.671, y: -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`, short: `MK`, name: `North Macedonia`, continent: `Europe`, population: 2103721, gdpTotal: 29520, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 21.727, y: 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`, short: `GM`, name: `Gambia`, continent: `Africa`, population: 2051363, gdpTotal: 3387, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -15.32, y: 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`, short: `SI`, name: `Slovenia`, continent: `Europe`, population: 1972126, gdpTotal: 68350, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 14.947, y: 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`, short: `LS`, name: `Lesotho`, continent: `Africa`, population: 1958042, gdpTotal: 6019, economy: `Least Developed`, region: `Southern Africa`, status: `Country`, x: 28.221, y: -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`, short: `LV`, name: `Latvia`, continent: `Europe`, population: 1944643, gdpTotal: 50650, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 26.505, y: 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`, short: `RS`, name: `Kosovo`, continent: `Europe`, population: 1895250, gdpTotal: 18490, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 20.891, y: 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`, short: `GW`, name: `Guinea-Bissau`, continent: `Africa`, population: 1792338, gdpTotal: 2851, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -14.59, y: 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`, short: `GA`, name: `Gabon`, continent: `Africa`, population: 1772255, gdpTotal: 35980, economy: `Developing`, region: `Middle Africa`, status: `Country`, x: 11.592, y: -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`, short: `SZ`, name: `Eswatini`, continent: `Africa`, population: 1467152, gdpTotal: 11060, economy: `Developing`, region: `Southern Africa`, status: `Country`, x: 31.45, y: -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`, short: `BH`, name: `Bahrain`, continent: `Asia`, population: 1410942, gdpTotal: 66370, economy: `Developing`, region: `Middle East`, status: `Country`, x: 50.535, y: 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`, short: `MU`, name: `Mauritius`, continent: `Africa`, population: 1356388, gdpTotal: 25850, economy: `Developing`, region: `Eastern Africa`, status: `Country`, x: 57.555, y: -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`, short: `TL`, name: `Timor-Leste`, continent: `Asia`, population: 1291358, gdpTotal: 4975, economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, x: 125.66, y: -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`, short: `EE`, name: `Estonia`, continent: `Europe`, population: 1251581, gdpTotal: 38700, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 25.441, y: 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`, short: `CY`, name: `Cyprus`, continent: `Asia`, population: 1221549, gdpTotal: 29260, economy: `Developing`, region: `Middle East`, status: `Country`, x: 33.176, y: 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`, short: `TT`, name: `Trinidad and Tobago`, continent: `North America`, population: 1218208, gdpTotal: 43570, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.21, y: 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`, short: `FJ`, name: `Fiji`, continent: `Oceania`, population: 920938, gdpTotal: 8374, economy: `Developing`, region: `Melanesia`, status: `Country`, x: 177.85, y: -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: `REU`, short: `RE`, name: `Reunion`, continent: `Africa`, population: 896175, gdpTotal: 23200, economy: `Developing`, region: `Eastern Africa`, status: `Country`, x: 55.53, y: -21.11, gdpPerPerson: 25888, rank: 162, unemployment: 21, oilProduction: 0, birthRate: 31, medianAge: 49, electricity: 4480875, televisions: 716940, publicDebt: 35, internet: 537705 }), + new WorldStatsItem({ code: `DJI`, short: `DJ`, name: `Djibouti`, continent: `Africa`, population: 865267, gdpTotal: 3345, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 42.587, y: 11.825, gdpPerPerson: 3866, rank: 163, unemployment: 5, oilProduction: 3, birthRate: 17, medianAge: 44, electricity: 91593, televisions: 209004, publicDebt: 43, internet: 476114 }), + new WorldStatsItem({ code: `COM`, short: `KM`, name: `Comoros`, continent: `Africa`, population: 808080, gdpTotal: 1259, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 43.877, y: -11.86, gdpPerPerson: 1558, rank: 164, unemployment: 11, oilProduction: 3, birthRate: 14, medianAge: 46, electricity: 6146, televisions: 495921, publicDebt: 10, internet: 459977 }), + new WorldStatsItem({ code: `GNQ`, short: `GQ`, name: `Equatorial Guinea`, continent: `Africa`, population: 778358, gdpTotal: 31770, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 10.521, y: 1.763, gdpPerPerson: 40817, rank: 165, unemployment: 30, oilProduction: 385500, birthRate: 37, medianAge: 19, electricity: 28, televisions: 4000, publicDebt: 2, internet: 8000 }), + new WorldStatsItem({ code: `BTN`, short: `BT`, name: `Bhutan`, continent: `Asia`, population: 758288, gdpTotal: 6432, economy: `Least Developed`, region: `Southern Asia`, status: `Country`, x: 90.411, y: 27.506, gdpPerPerson: 8482, rank: 166, unemployment: 3, oilProduction: 0, birthRate: 21, medianAge: 24, electricity: 2000, televisions: 11000, publicDebt: 81, internet: 40000 }), + new WorldStatsItem({ code: `GUY`, short: `GY`, name: `Guyana`, continent: `South America`, population: 737718, gdpTotal: 6093, economy: `Developing`, region: `South America`, status: `Country`, x: -58.96, y: 5.607, gdpPerPerson: 8259, rank: 167, unemployment: 2, oilProduction: 3, birthRate: 9, medianAge: 37, electricity: 84988, televisions: 149848, publicDebt: 12, internet: 134377 }), + new WorldStatsItem({ code: `SLB`, short: `SB`, name: `Solomon Islands`, continent: `Oceania`, population: 647581, gdpTotal: 1198, economy: `Least Developed`, region: `Melanesia`, status: `Country`, x: 161.3, y: -9.221, gdpPerPerson: 1850, rank: 168, unemployment: 4, oilProduction: 3, birthRate: 18, medianAge: 30, electricity: 3432, televisions: 177555, publicDebt: 43, internet: 478635 }), + new WorldStatsItem({ code: `MNE`, short: `ME`, name: `Montenegro`, continent: `Europe`, population: 642550, gdpTotal: 10610, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 19.191, y: 42.814, gdpPerPerson: 16512, rank: 169, unemployment: 10, oilProduction: 2, birthRate: 24, medianAge: 46, electricity: 24709, televisions: 126756, publicDebt: 29, internet: 336628 }), + new WorldStatsItem({ code: `ESH`, short: `EH`, name: `Western Sahara`, continent: `Africa`, population: 603253, gdpTotal: 907, economy: `Least Developed`, region: `Northern Africa`, status: `Dependency`, x: -12.89, y: 24.231, gdpPerPerson: 1504, rank: 170, unemployment: 6, oilProduction: 1, birthRate: 23, medianAge: 30, electricity: 11081, televisions: 237857, publicDebt: 30, internet: 306624 }), + new WorldStatsItem({ code: `MAC`, short: `MO`, name: `Macao`, continent: `Asia`, population: 601969, gdpTotal: 63220, economy: `Developing`, region: `Eastern Asia`, status: `Dependency`, x: 113.51, y: 22.221, gdpPerPerson: 105022, rank: 171, unemployment: 10, oilProduction: 2, birthRate: 10, medianAge: 47, electricity: 77896, televisions: 163859, publicDebt: 18, internet: 62728 }), + new WorldStatsItem({ code: `LUX`, short: `LU`, name: `Luxembourg`, continent: `Europe`, population: 594130, gdpTotal: 58740, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 6.109, y: 49.806, gdpPerPerson: 98867, rank: 172, unemployment: 4, oilProduction: 0, birthRate: 12, medianAge: 39, electricity: 3156, televisions: 285000, publicDebt: 6, internet: 345000 }), + new WorldStatsItem({ code: `SUR`, short: `SR`, name: `Suriname`, continent: `South America`, population: 591919, gdpTotal: 8547, economy: `Developing`, region: `South America`, status: `Country`, x: -56.02, y: 4.506, gdpPerPerson: 14439, rank: 173, unemployment: 5, oilProduction: 1, birthRate: 16, medianAge: 44, electricity: 82658, televisions: 69068, publicDebt: 31, internet: 367104 }), + new WorldStatsItem({ code: `CPV`, short: `CV`, name: `Cabo Verde`, continent: `Africa`, population: 560899, gdpTotal: 3583, economy: `Developing`, region: `Western Africa`, status: `Country`, x: -25.16, y: 17.102, gdpPerPerson: 6388, rank: 174, unemployment: 12, oilProduction: 1, birthRate: 12, medianAge: 54, electricity: 60647, televisions: 101289, publicDebt: 34, internet: 40105 }), + new WorldStatsItem({ code: `BRN`, short: `BN`, name: `Brunei`, continent: `Asia`, population: 443593, gdpTotal: 33730, economy: `Developing`, region: `Eastern Asia`, status: `Country`, x: 114.69, y: 4.523, gdpPerPerson: 76038, rank: 175, unemployment: 4, oilProduction: 0, birthRate: 17, medianAge: 32, electricity: 50701, televisions: 235042, publicDebt: 16, internet: 188751 }), + new WorldStatsItem({ code: `MLT`, short: `MT`, name: `Malta`, continent: `Europe`, population: 416338, gdpTotal: 16320, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 14.373, y: 35.948, gdpPerPerson: 39199, rank: 176, unemployment: 7, oilProduction: 4, birthRate: 6, medianAge: 52, electricity: 77444, televisions: 282390, publicDebt: 41, internet: 317612 }), + new WorldStatsItem({ code: `MDV`, short: `MV`, name: `Maldives`, continent: `Asia`, population: 392709, gdpTotal: 5407, economy: `Developing`, region: `Southern Asia`, status: `Country`, x: 73.455, y: 3.739, gdpPerPerson: 13768, rank: 177, unemployment: 13, oilProduction: 4, birthRate: 10, medianAge: 43, electricity: 26004, televisions: 156412, publicDebt: 28, internet: 45331 }), + new WorldStatsItem({ code: `GLP`, short: `GX`, name: `Guadeloupe`, continent: `North America`, population: 378561, gdpTotal: 9462, economy: `Developing`, region: `Central America`, status: `Territory`, x: -61.5, y: 16.25, gdpPerPerson: 24995, rank: 178, unemployment: 43, oilProduction: 0, birthRate: 32, medianAge: 74, electricity: 1892805, televisions: 302849, publicDebt: 50, internet: 227137 }), + new WorldStatsItem({ code: `BLZ`, short: `BZ`, name: `Belize`, continent: `North America`, population: 360346, gdpTotal: 3088, economy: `Developing`, region: `Central America`, status: `Country`, x: -88.51, y: 17.185, gdpPerPerson: 8570, rank: 179, unemployment: 4, oilProduction: 2, birthRate: 7, medianAge: 36, electricity: 57433, televisions: 127478, publicDebt: 36, internet: 223855 }), + new WorldStatsItem({ code: `MTQ`, short: `MQ`, name: `Martinique`, continent: `North America`, population: 349925, gdpTotal: 9082, economy: `Developing`, region: `Central America`, status: `Territory`, x: -61.01, y: 14.65, gdpPerPerson: 25954, rank: 180, unemployment: 23, oilProduction: 0, birthRate: 33, medianAge: 63, electricity: 1749625, televisions: 279940, publicDebt: 59, internet: 209955 }), + new WorldStatsItem({ code: `ISL`, short: `IS`, name: `Iceland`, continent: `Europe`, population: 339747, gdpTotal: 16150, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: -19.01, y: 64.966, gdpPerPerson: 47535, rank: 181, unemployment: 1, oilProduction: 0, birthRate: 14, medianAge: 35, electricity: 8533, televisions: 98000, publicDebt: 28, internet: 202300 }), + new WorldStatsItem({ code: `BHS`, short: `BS`, name: `Bahamas`, continent: `North America`, population: 329988, gdpTotal: 9066, economy: `Developing`, region: `Central America`, status: `Country`, x: -78.01, y: 24.761, gdpPerPerson: 27474, rank: 182, unemployment: 5, oilProduction: 2, birthRate: 17, medianAge: 47, electricity: 38395, televisions: 203588, publicDebt: 6, internet: 91807 }), + new WorldStatsItem({ code: `MYT`, short: `YT`, name: `Mayotte`, continent: `Africa`, population: 320901, gdpTotal: 2932, economy: `Developing`, region: `Central America`, status: `Country`, x: 45.14, y: -12.84, gdpPerPerson: 9137, rank: 183, unemployment: 35, oilProduction: 0, birthRate: 46, medianAge: 50, electricity: 1604505, televisions: 256721, publicDebt: 29, internet: 192541 }), + new WorldStatsItem({ code: `GUF`, short: `GF`, name: `French Guiana`, continent: `South America`, population: 296161, gdpTotal: 4562, economy: `Developed`, region: `South America`, status: `Dependency`, x: -53.13, y: 3.893, gdpPerPerson: 4386, rank: 184, unemployment: 3, oilProduction: 0, birthRate: 15, medianAge: 55, electricity: 73845, televisions: 147489, publicDebt: 35, internet: 209593 }), + new WorldStatsItem({ code: `BRB`, short: `BB`, name: `Barbados`, continent: `North America`, population: 292336, gdpTotal: 4804, economy: `Developing`, region: `Central America`, status: `Country`, x: -59.53, y: 13.19, gdpPerPerson: 16433, rank: 186, unemployment: 8, oilProduction: 3, birthRate: 21, medianAge: 51, electricity: 28728, televisions: 173392, publicDebt: 12, internet: 73593 }), + new WorldStatsItem({ code: `PYF`, short: `PF`, name: `Fr. Polynesia`, continent: `Oceania`, population: 287881, gdpTotal: 5490, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -143.9, y: -14.82, gdpPerPerson: 19070, rank: 187, unemployment: 1, oilProduction: 4, birthRate: 6, medianAge: 45, electricity: 46206, televisions: 43757, publicDebt: 12, internet: 172560 }), + new WorldStatsItem({ code: `VUT`, short: `VU`, name: `Vanuatu`, continent: `Oceania`, population: 282814, gdpTotal: 723, economy: `Least Developed`, region: `Melanesia`, status: `Country`, x: 168.21, y: -16.97, gdpPerPerson: 2556, rank: 188, unemployment: 11, oilProduction: 4, birthRate: 17, medianAge: 39, electricity: 50581, televisions: 187584, publicDebt: 42, internet: 223352 }), + new WorldStatsItem({ code: `NCL`, short: `NC`, name: `New Caledonia`, continent: `Oceania`, population: 279070, gdpTotal: 10770, economy: `Developing`, region: `Melanesia`, status: `Dependency`, x: 165.26, y: -21.09, gdpPerPerson: 38592, rank: 189, unemployment: 10, oilProduction: 3, birthRate: 6, medianAge: 49, electricity: 18361, televisions: 79923, publicDebt: 45, internet: 149003 }), + new WorldStatsItem({ code: `NCP`, short: `XC`, name: `Northern Cyprus`, continent: `Asia`, population: 265100, gdpTotal: 3600, economy: `Developing`, region: `Middle East`, status: `Country`, x: 33.714, y: 35.257, gdpPerPerson: 13580, rank: 190, unemployment: 4, oilProduction: 5, birthRate: 25, medianAge: 51, electricity: 84000, televisions: 135551, publicDebt: 30, internet: 167480 }), + new WorldStatsItem({ code: `STP`, short: `ST`, name: `Sao Tome and Principe`, continent: `Africa`, population: 201025, gdpTotal: 694, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 6.598, y: 0.248, gdpPerPerson: 3452, rank: 191, unemployment: 1, oilProduction: 3, birthRate: 24, medianAge: 30, electricity: 6691, televisions: 65480, publicDebt: 12, internet: 121162 }), + new WorldStatsItem({ code: `WSM`, short: `WS`, name: `Samoa`, continent: `Oceania`, population: 200108, gdpTotal: 1046, economy: `Least Developed`, region: `Polynesia`, status: `Country`, x: -172.1, y: -13.75, gdpPerPerson: 5227, rank: 192, unemployment: 3, oilProduction: 2, birthRate: 7, medianAge: 46, electricity: 50118, televisions: 54930, publicDebt: 42, internet: 84739 }), + new WorldStatsItem({ code: `GUM`, short: `GU`, name: `Guam`, continent: `Oceania`, population: 167358, gdpTotal: 4882, economy: `Developing`, region: `Micronesia`, status: `Dependency`, x: 144.79, y: 13.44, gdpPerPerson: 29171, rank: 193, unemployment: 15, oilProduction: 2, birthRate: 24, medianAge: 42, electricity: 64229, televisions: 43567, publicDebt: 37, internet: 121131 }), + new WorldStatsItem({ code: `LCA`, short: `LC`, name: `Saint Lucia`, continent: `North America`, population: 164994, gdpTotal: 2083, economy: `Developing`, region: `Central America`, status: `Country`, x: -60.98, y: 13.905, gdpPerPerson: 12625, rank: 194, unemployment: 3, oilProduction: 2, birthRate: 14, medianAge: 32, electricity: 75473, televisions: 87743, publicDebt: 7, internet: 64498 }), + new WorldStatsItem({ code: `CUW`, short: `CW`, name: `Curacao`, continent: `North America`, population: 149648, gdpTotal: 3128, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -68.95, y: 12.213, gdpPerPerson: 20902, rank: 195, unemployment: 6, oilProduction: 1, birthRate: 7, medianAge: 35, electricity: 74665, televisions: 89830, publicDebt: 36, internet: 55905 }), + new WorldStatsItem({ code: `ABW`, short: `AW`, name: `Aruba`, continent: `North America`, population: 115120, gdpTotal: 2516, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -69.98, y: 12.519, gdpPerPerson: 21855, rank: 196, unemployment: 7, oilProduction: 2356, birthRate: 13, medianAge: 38, electricity: 770, televisions: 20000, publicDebt: 46, internet: 24000 }), + new WorldStatsItem({ code: `GRD`, short: `GD`, name: `Grenada`, continent: `North America`, population: 111724, gdpTotal: 1511, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.69, y: 12.123, gdpPerPerson: 13524, rank: 197, unemployment: 10, oilProduction: 0, birthRate: 10, medianAge: 50, electricity: 4992, televisions: 58674, publicDebt: 42, internet: 33132 }), + new WorldStatsItem({ code: `KIR`, short: `KI`, name: `Kiribati`, continent: `Oceania`, population: 108145, gdpTotal: 211, economy: `Least Developed`, region: `Micronesia`, status: `Country`, x: -157.333, y: 1.884, gdpPerPerson: 1951, rank: 198, unemployment: 13, oilProduction: 4, birthRate: 9, medianAge: 52, electricity: 37081, televisions: 52395, publicDebt: 40, internet: 36620 }), + new WorldStatsItem({ code: `VIR`, short: `VI`, name: `U.S. Virgin Island`, continent: `North America`, population: 107268, gdpTotal: 3792, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -64.77, y: 17.77, gdpPerPerson: 35351, rank: 199, unemployment: 11, oilProduction: 2, birthRate: 12, medianAge: 38, electricity: 13387, televisions: 77187, publicDebt: 43, internet: 40836 }), + new WorldStatsItem({ code: `TON`, short: `TO`, name: `Tonga`, continent: `Oceania`, population: 106479, gdpTotal: 557, economy: `Developing`, region: `Polynesia`, status: `Country`, x: -173.9, y: -18.62, gdpPerPerson: 5231, rank: 200, unemployment: 4, oilProduction: 4, birthRate: 5, medianAge: 33, electricity: 88735, televisions: 30257, publicDebt: 25, internet: 71756 }), + new WorldStatsItem({ code: `FSM`, short: `FM`, name: `Micronesia`, continent: `Oceania`, population: 104196, gdpTotal: 314, economy: `Developing`, region: `Micronesia`, status: `Country`, x: 150.52, y: 7.435, gdpPerPerson: 3014, rank: 201, unemployment: 9, oilProduction: 5, birthRate: 5, medianAge: 38, electricity: 39068, televisions: 45396, publicDebt: 40, internet: 29169 }), + new WorldStatsItem({ code: `VCT`, short: `VC`, name: `St. Vincent and Grenadines`, continent: `North America`, population: 102089, gdpTotal: 1241, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.17, y: 13.239, gdpPerPerson: 12156, rank: 202, unemployment: 10, oilProduction: 5, birthRate: 7, medianAge: 30, electricity: 39467, televisions: 42804, publicDebt: 9, internet: 66754 }), + new WorldStatsItem({ code: `JEY`, short: `JE`, name: `Jersey`, continent: `Europe`, population: 98840, gdpTotal: 5080, economy: `Developed`, region: `Northern Europe`, status: `Territory`, x: -2.123, y: 49.218, gdpPerPerson: 51396, rank: 203, unemployment: 4, oilProduction: 1, birthRate: 18, medianAge: 30, electricity: 64261, televisions: 52453, publicDebt: 34, internet: 3026 }), + new WorldStatsItem({ code: `ATG`, short: `AG`, name: `Antigua and Barbuda`, continent: `North America`, population: 94731, gdpTotal: 2171, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.79, y: 17.096, gdpPerPerson: 22918, rank: 204, unemployment: 3, oilProduction: 1, birthRate: 5, medianAge: 36, electricity: 35849, televisions: 75384, publicDebt: 32, internet: 6170 }), + new WorldStatsItem({ code: `SYC`, short: `SC`, name: `Seychelles`, continent: `Africa`, population: 93920, gdpTotal: 2608, economy: `Developing`, region: `Eastern Africa`, status: `Country`, x: 55.463, y: -4.672, gdpPerPerson: 27768, rank: 205, unemployment: 2, oilProduction: 0, birthRate: 16, medianAge: 29, electricity: 252, televisions: 11000, publicDebt: 92, internet: 32000 }), + new WorldStatsItem({ code: `IMN`, short: `IM`, name: `Isle of Man`, continent: `Europe`, population: 88815, gdpTotal: 7428, economy: `Developed`, region: `Northern Europe`, status: `Territory`, x: -4.562, y: 54.233, gdpPerPerson: 83635, rank: 206, unemployment: 4, oilProduction: 4, birthRate: 14, medianAge: 36, electricity: 15745, televisions: 25734, publicDebt: 13, internet: 2650 }), + new WorldStatsItem({ code: `AND`, short: `AD`, name: `Andorra`, continent: `Europe`, population: 85702, gdpTotal: 3327, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 1.578, y: 42.539, gdpPerPerson: 38821, rank: 207, unemployment: 11, oilProduction: 3, birthRate: 20, medianAge: 50, electricity: 56209, televisions: 42797, publicDebt: 33, internet: 42006 }), + new WorldStatsItem({ code: `MHL`, short: `MH`, name: `Marshall Islands`, continent: `Oceania`, population: 74539, gdpTotal: 180, economy: `Developing`, region: `Micronesia`, status: `Country`, x: 169.3, y: 8.484, gdpPerPerson: 2415, rank: 208, unemployment: 3, oilProduction: 3, birthRate: 23, medianAge: 42, electricity: 78832, televisions: 15193, publicDebt: 44, internet: 8536 }), + new WorldStatsItem({ code: `DMA`, short: `DM`, name: `Dominica`, continent: `North America`, population: 73897, gdpTotal: 812, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.36, y: 15.43, gdpPerPerson: 10988, rank: 209, unemployment: 6, oilProduction: 1, birthRate: 13, medianAge: 35, electricity: 49809, televisions: 17676, publicDebt: 37, internet: 2616 }), + new WorldStatsItem({ code: `BMU`, short: `BM`, name: `Bermuda`, continent: `North America`, population: 70864, gdpTotal: 5198, economy: `Developed`, region: `Northern America`, status: `Dependency`, x: -64.76, y: 32.323, gdpPerPerson: 73352, rank: 210, unemployment: 15, oilProduction: 1, birthRate: 21, medianAge: 43, electricity: 54728, televisions: 16336, publicDebt: 27, internet: 41606 }), + new WorldStatsItem({ code: `GGY`, short: `GG`, name: `Guernsey`, continent: `Europe`, population: 66502, gdpTotal: 3465, economy: `Developed`, region: `Northern Europe`, status: `Territory`, x: -2.579, y: 49.468, gdpPerPerson: 52104, rank: 211, unemployment: 2, oilProduction: 1, birthRate: 25, medianAge: 33, electricity: 9806, televisions: 24638, publicDebt: 34, internet: 29222 }), + new WorldStatsItem({ code: `CYM`, short: `KY`, name: `Cayman Island`, continent: `North America`, population: 58441, gdpTotal: 2507, economy: `Emerging`, region: `Central America`, status: `Dependency`, x: -81.25, y: 19.343, gdpPerPerson: 42898, rank: 212, unemployment: 12, oilProduction: 3, birthRate: 7, medianAge: 35, electricity: 70206, televisions: 28885, publicDebt: 21, internet: 9332 }), + new WorldStatsItem({ code: `GRL`, short: `GL`, name: `Greenland`, continent: `North America`, population: 57713, gdpTotal: 2173, economy: `Developed`, region: `Northern America`, status: `Dependency`, x: -42.12, y: 69.547, gdpPerPerson: 37652, rank: 213, unemployment: 7, oilProduction: 5, birthRate: 19, medianAge: 42, electricity: 86090, televisions: 43741, publicDebt: 42, internet: 11423 }), + new WorldStatsItem({ code: `KNA`, short: `KN`, name: `St. Kitts and Nevis`, continent: `North America`, population: 52715, gdpTotal: 1427, economy: `Developing`, region: `Central America`, status: `Country`, x: -62.77, y: 17.351, gdpPerPerson: 27070, rank: 214, unemployment: 5, oilProduction: 2, birthRate: 18, medianAge: 40, electricity: 65438, televisions: 17719, publicDebt: 11, internet: 8543 }), + new WorldStatsItem({ code: `TCA`, short: `TC`, name: `Turks and Caicos Island`, continent: `North America`, population: 52570, gdpTotal: 632, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -71.96, y: 21.913, gdpPerPerson: 12022, rank: 215, unemployment: 6, oilProduction: 0, birthRate: 13, medianAge: 42, electricity: 51325, televisions: 13109, publicDebt: 13, internet: 24564 }), + new WorldStatsItem({ code: `MNP`, short: `MP`, name: `N. Mariana Island`, continent: `Oceania`, population: 52263, gdpTotal: 682, economy: `Developing`, region: `Micronesia`, status: `Dependency`, x: 145.49, y: 16.459, gdpPerPerson: 13049, rank: 216, unemployment: 10, oilProduction: 1, birthRate: 9, medianAge: 46, electricity: 87386, televisions: 13049, publicDebt: 20, internet: 5484 }), + new WorldStatsItem({ code: `ASM`, short: `AS`, name: `American Samoa`, continent: `Oceania`, population: 51504, gdpTotal: 711, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -170.6, y: -14.3, gdpPerPerson: 13805, rank: 217, unemployment: 3, oilProduction: 4, birthRate: 13, medianAge: 42, electricity: 65918, televisions: 18802, publicDebt: 23, internet: 14691 }), + new WorldStatsItem({ code: `FRO`, short: `FO`, name: `Faeroe Island`, continent: `Europe`, population: 50730, gdpTotal: 2001, economy: `Developed`, region: `Northern Europe`, status: `Dependency`, x: -6.857, y: 62.178, gdpPerPerson: 39444, rank: 218, unemployment: 15, oilProduction: 2, birthRate: 11, medianAge: 46, electricity: 55029, televisions: 11762, publicDebt: 13, internet: 2412 }), + new WorldStatsItem({ code: `SXM`, short: `SX`, name: `Sint Maarten`, continent: `North America`, population: 42083, gdpTotal: 366, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -63.06, y: 18.044, gdpPerPerson: 8697, rank: 219, unemployment: 14, oilProduction: 4, birthRate: 19, medianAge: 50, electricity: 17166, televisions: 8474, publicDebt: 33, internet: 14309 }), + new WorldStatsItem({ code: `LIE`, short: `LI`, name: `Liechtenstein`, continent: `Europe`, population: 38244, gdpTotal: 4978, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 9.545, y: 47.164, gdpPerPerson: 130164, rank: 220, unemployment: 11, oilProduction: 3, birthRate: 10, medianAge: 55, electricity: 80781, televisions: 23104, publicDebt: 21, internet: 8159 }), + new WorldStatsItem({ code: `VGB`, short: `VG`, name: `British Virgin Island`, continent: `North America`, population: 35015, gdpTotal: 500, economy: `Developed`, region: `Central America`, status: `Dependency`, x: -64.6, y: 18.44, gdpPerPerson: 14280, rank: 221, unemployment: 13, oilProduction: 2, birthRate: 6, medianAge: 51, electricity: 47732, televisions: 17777, publicDebt: 7, internet: 6238 }), + new WorldStatsItem({ code: `SMR`, short: `SM`, name: `San Marino`, continent: `Europe`, population: 33537, gdpTotal: 2023, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 12.456, y: 43.942, gdpPerPerson: 60321, rank: 222, unemployment: 10, oilProduction: 0, birthRate: 15, medianAge: 48, electricity: 21943, televisions: 22355, publicDebt: 34, internet: 23505 }), + new WorldStatsItem({ code: `GIB`, short: `GI`, name: `Gibraltar`, continent: `Europe`, population: 32688, gdpTotal: 2911, economy: `Developing`, region: `Southern Europe`, status: `Territory`, x: -5.35, y: 36.14, gdpPerPerson: 89054, rank: 223, unemployment: 11, oilProduction: 0, birthRate: 38, medianAge: 75, electricity: 163440, televisions: 26150, publicDebt: 39, internet: 19613 }), + new WorldStatsItem({ code: `MAF`, short: `MF`, name: `St. Martin`, continent: `North America`, population: 32125, gdpTotal: 562, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -63.06, y: 18.092, gdpPerPerson: 17494, rank: 224, unemployment: 15, oilProduction: 5, birthRate: 10, medianAge: 34, electricity: 76791, televisions: 17592, publicDebt: 43, internet: 25032 }), + new WorldStatsItem({ code: `BES`, short: `BQ`, name: `Caribbean Netherlands`, continent: `North America`, population: 31980, gdpTotal: 725, economy: `Developing`, region: `Central America`, status: `Territory`, x: -68.27, y: 12.15, gdpPerPerson: 22670, rank: 225, unemployment: 15, oilProduction: 0, birthRate: 46, medianAge: 58, electricity: 159900, televisions: 25584, publicDebt: 20, internet: 19188 }), + new WorldStatsItem({ code: `MCO`, short: `MC`, name: `Monaco`, continent: `Europe`, population: 30645, gdpTotal: 7672, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 7.408, y: 43.751, gdpPerPerson: 250351, rank: 226, unemployment: 15, oilProduction: 5, birthRate: 18, medianAge: 31, electricity: 73517, televisions: 10057, publicDebt: 10, internet: 18394 }), + new WorldStatsItem({ code: `ALA`, short: `AX`, name: `Aland Islands`, continent: `Europe`, population: 27153, gdpTotal: 1563, economy: `Developed`, region: `Northern Europe`, status: `Territory`, x: 20.065, y: 60.209, gdpPerPerson: 57563, rank: 227, unemployment: 14, oilProduction: 3, birthRate: 15, medianAge: 54, electricity: 69394, televisions: 14696, publicDebt: 19, internet: 2736 }), + new WorldStatsItem({ code: `PLW`, short: `PW`, name: `Palau`, continent: `Oceania`, population: 21431, gdpTotal: 276, economy: `Developing`, region: `Micronesia`, status: `Country`, x: 134.63, y: 7.532, gdpPerPerson: 12879, rank: 228, unemployment: 8, oilProduction: 1, birthRate: 7, medianAge: 39, electricity: 88599, televisions: 3019, publicDebt: 8, internet: 17075 }), + new WorldStatsItem({ code: `AIA`, short: `AI`, name: `Anguilla`, continent: `North America`, population: 17087, gdpTotal: 175, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -63.07, y: 18.221, gdpPerPerson: 10242, rank: 229, unemployment: 9, oilProduction: 1, birthRate: 10, medianAge: 49, electricity: 68590, televisions: 10632, publicDebt: 40, internet: 8703 }), + new WorldStatsItem({ code: `WLF`, short: `WF`, name: `Wallis and Futuna`, continent: `Oceania`, population: 15714, gdpTotal: 60, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -177.1, y: -13.77, gdpPerPerson: 3818, rank: 230, unemployment: 15, oilProduction: 0, birthRate: 0, medianAge: 0, electricity: 0, televisions: 0, publicDebt: 6, internet: 900 }), + new WorldStatsItem({ code: `TUV`, short: `TV`, name: `Tuvalu`, continent: `Oceania`, population: 10643, gdpTotal: 63, economy: `Developing`, region: `Polynesia`, status: `Country`, x: 179.2, y: -8.52, gdpPerPerson: 5919, rank: 231, unemployment: 35, oilProduction: 0, birthRate: 36, medianAge: 74, electricity: 53215, televisions: 8514, publicDebt: 52, internet: 6386 }), + new WorldStatsItem({ code: `NRU`, short: `NR`, name: `Nauru`, continent: `Oceania`, population: 9642, gdpTotal: 151, economy: `Developing`, region: `Micronesia`, status: `Country`, x: 166.93, y: -0.52, gdpPerPerson: 15661, rank: 232, unemployment: 5, oilProduction: 3, birthRate: 17, medianAge: 32, electricity: 84092, televisions: 1777, publicDebt: 34, internet: 4585 }), + new WorldStatsItem({ code: `COK`, short: `CK`, name: `Cook Island`, continent: `Oceania`, population: 9290, gdpTotal: 244, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -159.7, y: -21.21, gdpPerPerson: 26265, rank: 233, unemployment: 15, oilProduction: 1, birthRate: 6, medianAge: 45, electricity: 41320, televisions: 3712, publicDebt: 24, internet: 3555 }), + new WorldStatsItem({ code: `SHN`, short: `SH`, name: `Saint Helena`, continent: `Africa`, population: 7828, gdpTotal: 31, economy: `Developing`, region: `Western Africa`, status: `Dependency`, x: -10.03, y: -11.94, gdpPerPerson: 3960, rank: 234, unemployment: 13, oilProduction: 1, birthRate: 17, medianAge: 48, electricity: 84435, televisions: 3812, publicDebt: 15, internet: 5530 }), + new WorldStatsItem({ code: `BLM`, short: `BL`, name: `St. Barthalemy`, continent: `North America`, population: 7184, gdpTotal: 255, economy: `Developed`, region: `Central America`, status: `Dependency`, x: -62.83, y: 17.899, gdpPerPerson: 35496, rank: 235, unemployment: 14, oilProduction: 0, birthRate: 23, medianAge: 46, electricity: 36112, televisions: 4072, publicDebt: 27, internet: 5097 }), + new WorldStatsItem({ code: `SPM`, short: `PM`, name: `St. Pierre`, continent: `North America`, population: 5533, gdpTotal: 215, economy: `Developed`, region: `Northern America`, status: `Territory`, x: -56.26, y: 46.926, gdpPerPerson: 38858, rank: 236, unemployment: 13, oilProduction: 0, birthRate: 13, medianAge: 42, electricity: 61277, televisions: 2067, publicDebt: 18, internet: 2924 }), + new WorldStatsItem({ code: `MSR`, short: `MS`, name: `Montserrat`, continent: `North America`, population: 5292, gdpTotal: 44, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -62.18, y: 16.745, gdpPerPerson: 8314, rank: 237, unemployment: 13, oilProduction: 1, birthRate: 12, medianAge: 50, electricity: 19088, televisions: 1964, publicDebt: 44, internet: 4009 }), + new WorldStatsItem({ code: `IOT`, short: `IO`, name: `British Indian Territory`, continent: `Asia`, population: 4000, gdpTotal: 160, economy: `Developed`, region: `Southern Asia`, status: `Dependency`, x: 72.424, y: -7.328, gdpPerPerson: 40000, rank: 238, unemployment: 13, oilProduction: 0, birthRate: 6, medianAge: 47, electricity: 91829, televisions: 1510, publicDebt: 14, internet: 1656 }), + new WorldStatsItem({ code: `FLK`, short: `FK`, name: `Falkland Island`, continent: `South America`, population: 2931, gdpTotal: 282, economy: `Developed`, region: `South America`, status: `Dependency`, x: -59.46, y: -51.78, gdpPerPerson: 96213, rank: 239, unemployment: 3, oilProduction: 5, birthRate: 9, medianAge: 36, electricity: 68007, televisions: 1489, publicDebt: 22, internet: 1335 }), + new WorldStatsItem({ code: `NFK`, short: `NF`, name: `Norfolk Island`, continent: `Oceania`, population: 2210, gdpTotal: 33, economy: `Developing`, region: `Australia`, status: `Dependency`, x: 167.94, y: -29.05, gdpPerPerson: 14932, rank: 240, unemployment: 1, oilProduction: 0, birthRate: 15, medianAge: 46, electricity: 91943, televisions: 583, publicDebt: 41, internet: 1183 }), + new WorldStatsItem({ code: `NIU`, short: `NU`, name: `Niue`, continent: `Oceania`, population: 1626, gdpTotal: 10, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -169.8, y: -19.05, gdpPerPerson: 6150, rank: 241, unemployment: 15, oilProduction: 4, birthRate: 17, medianAge: 51, electricity: 16785, televisions: 585, publicDebt: 31, internet: 1247 }), + new WorldStatsItem({ code: `VAT`, short: `VT`, name: `Vatican`, continent: `Europe`, population: 771, gdpTotal: 15, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 12.433, y: 41.902, gdpPerPerson: 19450, rank: 242, unemployment: 0, oilProduction: 0, birthRate: 0, medianAge: 55, electricity: 771, televisions: 100, publicDebt: 0, internet: 771 }), ]; super(...newItems.slice(0)); } 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 a07901497..442f0de33 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 @@ -4,6 +4,7 @@ export class WorldStatsItem { } public code: string; + public short: string; public name: string; public continent: string; public population: number; @@ -11,8 +12,8 @@ export class WorldStatsItem { public economy: string; public region: string; public status: string; - public longitude: number; - public latitude: number; + public x: number; + public y: number; public gdpPerPerson: number; public rank: number; public unemployment: number; @@ -31,240 +32,247 @@ export class WorldStats extends Array { 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 }), + new WorldStatsItem({ code: `CHN`, short: `CN`, name: `China`, continent: `Asia`, population: 1379302771, gdpTotal: 21140000, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 104.18, y: 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`, short: `IN`, name: `India`, continent: `Asia`, population: 1281935911, gdpTotal: 8721000, economy: `Emerging`, region: `Southern Asia`, status: `Country`, x: 78.022, y: 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`, short: `US`, name: `United States`, continent: `North America`, population: 326625791, gdpTotal: 18560000, economy: `Developed`, region: `Northern America`, status: `Country`, x: -101.8, y: 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`, short: `ID`, name: `Indonesia`, continent: `Asia`, population: 260580739, gdpTotal: 3028000, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 102.72, y: -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`, short: `BR`, name: `Brazil`, continent: `South America`, population: 207353391, gdpTotal: 3081000, economy: `Emerging`, region: `South America`, status: `Country`, x: -48.88, y: -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`, short: `PK`, name: `Pakistan`, continent: `Asia`, population: 204924861, gdpTotal: 988200, economy: `Emerging`, region: `Southern Asia`, status: `Country`, x: 67.624, y: 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`, short: `NG`, name: `Nigeria`, continent: `Africa`, population: 190632261, gdpTotal: 1089000, economy: `Emerging`, region: `Western Africa`, status: `Country`, x: 8.657, y: 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`, short: `BD`, name: `Bangladesh`, continent: `Asia`, population: 157826578, gdpTotal: 628400, economy: `Least Developed`, region: `Southern Asia`, status: `Country`, x: 89.935, y: 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`, short: `RU`, name: `Russia`, continent: `Europe`, population: 142257519, gdpTotal: 3745000, economy: `Emerging`, region: `Eastern Europe`, status: `Country`, x: 42.379, y: 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`, short: `JP`, name: `Japan`, continent: `Asia`, population: 126451398, gdpTotal: 4932000, economy: `Developed`, region: `Eastern Asia`, status: `Country`, x: 138.48, y: 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`, short: `MX`, name: `Mexico`, continent: `North America`, population: 124574795, gdpTotal: 2307000, economy: `Emerging`, region: `Central America`, status: `Country`, x: -102.5, y: 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`, short: `ET`, name: `Ethiopia`, continent: `Africa`, population: 105350020, gdpTotal: 174700, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 40.489, y: 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`, short: `PH`, name: `Philippines`, continent: `Asia`, population: 104256076, gdpTotal: 801900, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 121.4, y: 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`, short: `EG`, name: `Egypt`, continent: `Africa`, population: 97041072, gdpTotal: 1105000, economy: `Emerging`, region: `Middle East`, status: `Country`, x: 30.787, y: 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`, short: `VN`, name: `Vietnam`, continent: `Asia`, population: 96160163, gdpTotal: 594900, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 108.46, y: 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`, short: `CD`, name: `Dem. Rep. Congo`, continent: `Africa`, population: 83301151, gdpTotal: 66010, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 21.738, y: -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`, short: `IR`, name: `Iran`, continent: `Asia`, population: 82021564, gdpTotal: 1459000, economy: `Emerging`, region: `Middle East`, status: `Country`, x: 53.664, y: 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`, short: `TR`, name: `Turkey`, continent: `Asia`, population: 80845215, gdpTotal: 1670000, economy: `Emerging`, region: `Middle East`, status: `Country`, x: 35.243, y: 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`, short: `DE`, name: `Germany`, continent: `Europe`, population: 80594017, gdpTotal: 3979000, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 11.43, y: 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`, short: `TH`, name: `Thailand`, continent: `Asia`, population: 68414135, gdpTotal: 1161000, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 100.65, y: 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`, short: `FR`, name: `France`, continent: `Europe`, population: 67106161, gdpTotal: 2699000, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 2.267, y: 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`, short: `GB`, name: `United Kingdom`, continent: `Europe`, population: 64769452, gdpTotal: 2788000, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: -1.233, y: 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`, short: `IT`, name: `Italy`, continent: `Europe`, population: 62137802, gdpTotal: 2221000, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 15.701, y: 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`, short: `MM`, name: `Myanmar`, continent: `Asia`, population: 55123814, gdpTotal: 311100, economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, x: 96.028, y: 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`, short: `ZA`, name: `South Africa`, continent: `Africa`, population: 54841552, gdpTotal: 739100, economy: `Emerging`, region: `Southern Africa`, status: `Country`, x: 22.489, y: -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`, short: `TZ`, name: `Tanzania`, continent: `Africa`, population: 53950935, gdpTotal: 150600, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 34.894, y: -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`, short: `KR`, name: `South Korea`, continent: `Asia`, population: 51181299, gdpTotal: 1929000, economy: `Emerging`, region: `Eastern Asia`, status: `Country`, x: 128.29, y: 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`, short: `ES`, name: `Spain`, continent: `Europe`, population: 48958159, gdpTotal: 1690000, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: -2.892, y: 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`, short: `CO`, name: `Colombia`, continent: `South America`, population: 47698524, gdpTotal: 688000, economy: `Developing`, region: `South America`, status: `Country`, x: -72.95, y: 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`, short: `KE`, name: `Kenya`, continent: `Africa`, population: 47615739, gdpTotal: 152700, economy: `Emerging`, region: `Eastern Africa`, status: `Country`, x: 37.929, y: 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`, short: `AR`, name: `Argentina`, continent: `South America`, population: 44293293, gdpTotal: 879400, economy: `Emerging`, region: `South America`, status: `Country`, x: -64.84, y: -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`, short: `UA`, name: `Ukraine`, continent: `Europe`, population: 44033874, gdpTotal: 352600, economy: `Developing`, region: `Eastern Europe`, status: `Country`, x: 30.86, y: 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`, short: `DZ`, name: `Algeria`, continent: `Africa`, population: 40969443, gdpTotal: 609400, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: 1.642, y: 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`, short: `UG`, name: `Uganda`, continent: `Africa`, population: 39570125, gdpTotal: 84930, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 32.27, y: 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`, short: `IQ`, name: `Iraq`, continent: `Asia`, population: 39192111, gdpTotal: 596700, economy: `Developing`, region: `Middle East`, status: `Country`, x: 43.66, y: 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`, short: `PL`, name: `Poland`, continent: `Europe`, population: 38476269, gdpTotal: 1052000, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 20.073, y: 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`, short: `SD`, name: `Sudan`, continent: `Africa`, population: 37345935, gdpTotal: 176300, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: 30.217, y: 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`, short: `CA`, name: `Canada`, continent: `North America`, population: 35623680, gdpTotal: 1674000, economy: `Developed`, region: `Northern America`, status: `Country`, x: -108, y: 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`, short: `AF`, name: `Afghanistan`, continent: `Asia`, population: 34124811, gdpTotal: 64080, economy: `Least Developed`, region: `Southern Asia`, status: `Country`, x: 66.041, y: 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`, short: `MA`, name: `Morocco`, continent: `Africa`, population: 33986655, gdpTotal: 282800, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: -5.707, y: 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`, short: `MY`, name: `Malaysia`, continent: `Asia`, population: 31381992, gdpTotal: 863000, economy: `Developing`, region: `Eastern Asia`, status: `Country`, x: 101.72, y: 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`, short: `VE`, name: `Venezuela`, continent: `South America`, population: 31304016, gdpTotal: 468600, economy: `Emerging`, region: `South America`, status: `Country`, x: -64.78, y: 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`, short: `PE`, name: `Peru`, continent: `South America`, population: 31036656, gdpTotal: 410400, economy: `Emerging`, region: `South America`, status: `Country`, x: -73.82, y: -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`, short: `UZ`, name: `Uzbekistan`, continent: `Asia`, population: 29748859, gdpTotal: 202300, economy: `Developing`, region: `Central Asia`, status: `Country`, x: 63.288, y: 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`, short: `NP`, name: `Nepal`, continent: `Asia`, population: 29384297, gdpTotal: 71520, economy: `Least Developed`, region: `Southern Asia`, status: `Country`, x: 82.328, y: 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`, short: `AO`, name: `Angola`, continent: `Africa`, population: 29310273, gdpTotal: 189000, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 18.097, y: -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`, short: `SA`, name: `Saudi Arabia`, continent: `Asia`, population: 28571770, gdpTotal: 1731000, economy: `Developed`, region: `Middle East`, status: `Country`, x: 45.129, y: 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`, short: `YE`, name: `Yemen`, continent: `Asia`, population: 28036829, gdpTotal: 73450, economy: `Least Developed`, region: `Middle East`, status: `Country`, x: 48.53, y: 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`, short: `GH`, name: `Ghana`, continent: `Africa`, population: 27499924, gdpTotal: 120800, economy: `Developing`, region: `Western Africa`, status: `Country`, x: -0.893, y: 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`, short: `MZ`, name: `Mozambique`, continent: `Africa`, population: 26573706, gdpTotal: 35010, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 38.075, y: -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`, short: `KP`, name: `North Korea`, continent: `Asia`, population: 25248140, gdpTotal: 40000, economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, x: 127.01, y: 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`, short: `MG`, name: `Madagascar`, continent: `Africa`, population: 25054161, gdpTotal: 36860, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 46.87, y: -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`, short: `CM`, name: `Cameroon`, continent: `Africa`, population: 24994885, gdpTotal: 77240, economy: `Developing`, region: `Middle Africa`, status: `Country`, x: 12.451, y: 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`, short: `CI`, name: `Ivory Coast`, continent: `Africa`, population: 24184810, gdpTotal: 87120, economy: `Developing`, region: `Western Africa`, status: `Country`, x: -5.555, y: 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`, short: `TW`, name: `Taiwan`, continent: `Asia`, population: 23508428, gdpTotal: 1127000, economy: `Developed`, region: `Eastern Asia`, status: `Country`, x: 120.96, y: 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`, short: `AU`, name: `Australia`, continent: `Oceania`, population: 23232413, gdpTotal: 1189000, economy: `Developed`, region: `Australia`, status: `Country`, x: 135.87, y: -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`, short: `LK`, name: `Sri Lanka`, continent: `Asia`, population: 22409381, gdpTotal: 236700, economy: `Developing`, region: `Southern Asia`, status: `Country`, x: 80.792, y: 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`, short: `RO`, name: `Romania`, continent: `Europe`, population: 21529967, gdpTotal: 441000, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 24.974, y: 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`, short: `BF`, name: `Burkina Faso`, continent: `Africa`, population: 20107509, gdpTotal: 32990, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -1.567, y: 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`, short: `NE`, name: `Niger`, continent: `Africa`, population: 19245344, gdpTotal: 20150, economy: `Least Developed`, region: `Northern Africa`, status: `Country`, x: 10.845, y: 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`, short: `MW`, name: `Malawi`, continent: `Africa`, population: 19196246, gdpTotal: 21200, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 34.282, y: -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`, short: `KZ`, name: `Kazakhstan`, continent: `Asia`, population: 18556698, gdpTotal: 460700, economy: `Developing`, region: `Central Asia`, status: `Country`, x: 66.966, y: 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`, short: `SY`, name: `Syria`, continent: `Asia`, population: 18028549, gdpTotal: 50280, economy: `Developing`, region: `Middle East`, status: `Country`, x: 39.062, y: 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`, short: `ML`, name: `Mali`, continent: `Africa`, population: 17885245, gdpTotal: 38090, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -1.496, y: 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`, short: `CL`, name: `Chile`, continent: `South America`, population: 17789267, gdpTotal: 436100, economy: `Emerging`, region: `South America`, status: `Country`, x: -69.11, y: -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`, short: `NL`, name: `Netherlands`, continent: `Europe`, population: 17084719, gdpTotal: 870800, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 6.272, y: 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`, short: `EC`, name: `Ecuador`, continent: `South America`, population: 16290913, gdpTotal: 182400, economy: `Developing`, region: `South America`, status: `Country`, x: -77.98, y: -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`, short: `KH`, name: `Cambodia`, continent: `Asia`, population: 16204486, gdpTotal: 58940, economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, x: 104.96, y: 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`, short: `ZM`, name: `Zambia`, continent: `Africa`, population: 15972000, gdpTotal: 65170, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 26.301, y: -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`, short: `GT`, name: `Guatemala`, continent: `North America`, population: 15460732, gdpTotal: 131800, economy: `Developing`, region: `Central America`, status: `Country`, x: -90.4, y: 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`, short: `SN`, name: `Senegal`, continent: `Africa`, population: 14668522, gdpTotal: 39720, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -14.76, y: 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`, short: `ZW`, name: `Zimbabwe`, continent: `Africa`, population: 13805084, gdpTotal: 28330, economy: `Emerging`, region: `Eastern Africa`, status: `Country`, x: 29.115, y: -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`, short: `SS`, name: `South Sudan`, continent: `Africa`, population: 13026129, gdpTotal: 20880, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 29.708, y: 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`, short: `GN`, name: `Guinea`, continent: `Africa`, population: 12413867, gdpTotal: 16080, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -9.522, y: 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`, short: `TD`, name: `Chad`, continent: `Africa`, population: 12075985, gdpTotal: 30590, economy: `Least Developed`, region: `Northern Africa`, status: `Country`, x: 18.716, y: 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`, short: `RW`, name: `Rwanda`, continent: `Africa`, population: 11901484, gdpTotal: 21970, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 29.867, y: -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`, short: `BE`, name: `Belgium`, continent: `Europe`, population: 11491346, gdpTotal: 508600, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 4.605, y: 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`, short: `BI`, name: `Burundi`, continent: `Africa`, population: 11466756, gdpTotal: 7892, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 29.913, y: -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`, short: `TN`, name: `Tunisia`, continent: `Africa`, population: 11403800, gdpTotal: 130800, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: 9.516, y: 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`, short: `CU`, name: `Cuba`, continent: `North America`, population: 11147407, gdpTotal: 132900, economy: `Emerging`, region: `Central America`, status: `Country`, x: -80.54, y: 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`, short: `BO`, name: `Bolivia`, continent: `South America`, population: 11138234, gdpTotal: 78350, economy: `Emerging`, region: `South America`, status: `Country`, x: -63.57, y: -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`, short: `BJ`, name: `Benin`, continent: `Africa`, population: 11038805, gdpTotal: 24310, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: 2.704, y: 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`, short: `PT`, name: `Portugal`, continent: `Europe`, population: 10839514, gdpTotal: 297100, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: -7.757, y: 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`, short: `GR`, name: `Greece`, continent: `Europe`, population: 10768477, gdpTotal: 290500, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 21.871, y: 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`, short: `DO`, name: `Dominican Republic`, continent: `North America`, population: 10734247, gdpTotal: 161900, economy: `Developing`, region: `Central America`, status: `Country`, x: -70.17, y: 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`, short: `CZ`, name: `Czechia`, continent: `Europe`, population: 10674723, gdpTotal: 350900, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 15.461, y: 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`, short: `HT`, name: `Haiti`, continent: `North America`, population: 10646714, gdpTotal: 19340, economy: `Least Developed`, region: `Central America`, status: `Country`, x: -72.23, y: 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`, short: `JO`, name: `Jordan`, continent: `Asia`, population: 10248069, gdpTotal: 86190, economy: `Developing`, region: `Middle East`, status: `Country`, x: 38.125, y: 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`, short: `AZ`, name: `Azerbaijan`, continent: `Asia`, population: 9961396, gdpTotal: 167900, economy: `Developing`, region: `Middle East`, status: `Country`, x: 48.401, y: 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`, short: `SE`, name: `Sweden`, continent: `Europe`, population: 9960487, gdpTotal: 498100, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 17.594, y: 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`, short: `HU`, name: `Hungary`, continent: `Europe`, population: 9850845, gdpTotal: 267600, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 19.485, y: 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`, short: `BY`, name: `Belarus`, continent: `Europe`, population: 9549747, gdpTotal: 165400, economy: `Developing`, region: `Eastern Europe`, status: `Country`, x: 27.943, y: 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`, short: `HN`, name: `Honduras`, continent: `North America`, population: 9038741, gdpTotal: 43190, economy: `Developing`, region: `Central America`, status: `Country`, x: -86.74, y: 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`, short: `AT`, name: `Austria`, continent: `Europe`, population: 8754413, gdpTotal: 416600, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 14.987, y: 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`, short: `TJ`, name: `Tajikistan`, continent: `Asia`, population: 8468555, gdpTotal: 25810, economy: `Developing`, region: `Central Asia`, status: `Country`, x: 71.234, y: 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`, short: `IL`, name: `Israel`, continent: `Asia`, population: 8299706, gdpTotal: 297000, economy: `Developed`, region: `Middle East`, status: `Country`, x: 34.977, y: 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`, short: `CH`, name: `Switzerland`, continent: `Europe`, population: 8236303, gdpTotal: 496300, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 7.865, y: 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`, short: `TG`, name: `Togo`, continent: `Africa`, population: 7965055, gdpTotal: 11610, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: 1.146, y: 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`, short: `SO`, name: `Somalia`, continent: `Africa`, population: 7531386, gdpTotal: 4719, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 44.134, y: 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`, short: `HK`, name: `Hong Kong`, continent: `Asia`, population: 7191503, gdpTotal: 427400, economy: `Developing`, region: `Eastern Asia`, status: `Dependency`, x: 114.08, y: 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`, short: `LA`, name: `Laos`, continent: `Asia`, population: 7126706, gdpTotal: 40960, economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, x: 102.36, y: 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`, short: `RS`, name: `Serbia`, continent: `Europe`, population: 7111024, gdpTotal: 101800, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 20.908, y: 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`, short: `BG`, name: `Bulgaria`, continent: `Europe`, population: 7101510, gdpTotal: 143100, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 25.465, y: 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`, short: `PY`, name: `Paraguay`, continent: `South America`, population: 6943739, gdpTotal: 64670, economy: `Emerging`, region: `South America`, status: `Country`, x: -58.44, y: -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`, short: `PG`, name: `Papua New Guinea`, continent: `Oceania`, population: 6909701, gdpTotal: 28020, economy: `Developing`, region: `Melanesia`, status: `Country`, x: 143.62, y: -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`, short: `LY`, name: `Libya`, continent: `Africa`, population: 6653210, gdpTotal: 90890, economy: `Developing`, region: `Northern Africa`, status: `Country`, x: 17.23, y: 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`, short: `LB`, name: `Lebanon`, continent: `Asia`, population: 6229794, gdpTotal: 85160, economy: `Developing`, region: `Middle East`, status: `Country`, x: 36.042, y: 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`, short: `SV`, name: `El Salvador`, continent: `North America`, population: 6172011, gdpTotal: 54790, economy: `Developing`, region: `Central America`, status: `Country`, x: -88.91, y: 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`, short: `SL`, name: `Sierra Leone`, continent: `Africa`, population: 6163195, gdpTotal: 10640, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -11.78, y: 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`, short: `AE`, name: `United Arab Emirates`, continent: `Asia`, population: 6072475, gdpTotal: 667200, economy: `Developing`, region: `Middle East`, status: `Country`, x: 54.192, y: 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`, short: `NI`, name: `Nicaragua`, continent: `North America`, population: 6025951, gdpTotal: 33550, economy: `Developing`, region: `Central America`, status: `Country`, x: -85.09, y: 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`, short: `ER`, name: `Eritrea`, continent: `Africa`, population: 5918919, gdpTotal: 9169, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 39.772, y: 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`, short: `SG`, name: `Singapore`, continent: `Asia`, population: 5888926, gdpTotal: 487900, economy: `Developing`, region: `Eastern Asia`, status: `Country`, x: 103.82, y: 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`, short: `KG`, name: `Kyrgyzstan`, continent: `Asia`, population: 5789122, gdpTotal: 21010, economy: `Developing`, region: `Central Asia`, status: `Country`, x: 74.738, y: 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`, short: `CF`, name: `Central African Republic`, continent: `Africa`, population: 5625118, gdpTotal: 3206, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 20.917, y: 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`, short: `DK`, name: `Denmark`, continent: `Europe`, population: 5605948, gdpTotal: 264800, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 9.348, y: 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`, short: `FI`, name: `Finland`, continent: `Europe`, population: 5491218, gdpTotal: 224137, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 25.988, y: 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`, short: `SK`, name: `Slovakia`, continent: `Europe`, population: 5445829, gdpTotal: 168800, economy: `Developed`, region: `Eastern Europe`, status: `Country`, x: 18.877, y: 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`, short: `TM`, name: `Turkmenistan`, continent: `Asia`, population: 5351277, gdpTotal: 94720, economy: `Developing`, region: `Central Asia`, status: `Country`, x: 59.562, y: 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`, short: `NO`, name: `Norway`, continent: `Europe`, population: 5320045, gdpTotal: 364700, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 9.66, y: 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`, short: `IE`, name: `Ireland`, continent: `Europe`, population: 5011102, gdpTotal: 322000, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: -8.209, y: 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`, short: `CG`, name: `Congo`, continent: `Africa`, population: 4954674, gdpTotal: 30270, economy: `Developing`, region: `Middle Africa`, status: `Country`, x: 16.264, y: -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`, short: `CR`, name: `Costa Rica`, continent: `North America`, population: 4930258, gdpTotal: 79260, economy: `Emerging`, region: `Central America`, status: `Country`, x: -83.91, y: 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`, short: `GE`, name: `Georgia`, continent: `Asia`, population: 4926330, gdpTotal: 37270, economy: `Developing`, region: `Middle East`, status: `Country`, x: 43.257, y: 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`, short: `LR`, name: `Liberia`, continent: `Africa`, population: 4689021, gdpTotal: 3881, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -9.454, y: 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`, short: `PS`, name: `Palestine`, continent: `Asia`, population: 4543126, gdpTotal: 21221, economy: `Developing`, region: `Middle East`, status: `Disputed`, x: 35.347, y: 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`, short: `NZ`, name: `New Zealand`, continent: `Oceania`, population: 4510327, gdpTotal: 174800, economy: `Developed`, region: `Australia`, status: `Country`, x: 169.42, y: -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`, short: `HR`, name: `Croatia`, continent: `Europe`, population: 4292095, gdpTotal: 94240, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 16.847, y: 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`, short: `BA`, name: `Bosnia`, continent: `Europe`, population: 3856181, gdpTotal: 42530, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 17.66, y: 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`, short: `MR`, name: `Mauritania`, continent: `Africa`, population: 3758571, gdpTotal: 16710, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -8.89, y: 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`, short: `PA`, name: `Panama`, continent: `North America`, population: 3753142, gdpTotal: 93120, economy: `Developing`, region: `Central America`, status: `Country`, x: -81.17, y: 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`, short: `XS`, name: `Somaliland`, continent: `Africa`, population: 3500000, gdpTotal: 12250, economy: `Developing`, region: `Eastern Africa`, status: `Indeterminate`, x: 45.798, y: 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`, short: `MD`, name: `Moldova`, continent: `Europe`, population: 3474121, gdpTotal: 18540, economy: `Developing`, region: `Eastern Europe`, status: `Country`, x: 28.552, y: 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`, short: `OM`, name: `Oman`, continent: `Asia`, population: 3424386, gdpTotal: 173100, economy: `Developing`, region: `Middle East`, status: `Country`, x: 57.563, y: 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`, short: `UY`, name: `Uruguay`, continent: `South America`, population: 3360148, gdpTotal: 73250, economy: `Emerging`, region: `South America`, status: `Country`, x: -55.78, y: -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`, short: `PR`, name: `Puerto Rico`, continent: `North America`, population: 3351827, gdpTotal: 131000, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -66.61, y: 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`, short: `MN`, name: `Mongolia`, continent: `Asia`, population: 3068243, gdpTotal: 37000, economy: `Developing`, region: `Eastern Asia`, status: `Country`, x: 103.82, y: 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`, short: `AL`, name: `Albania`, continent: `Europe`, population: 3047987, gdpTotal: 33900, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 19.964, y: 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`, short: `AM`, name: `Armenia`, continent: `Asia`, population: 3045191, gdpTotal: 26300, economy: `Developing`, region: `Middle East`, status: `Country`, x: 44.646, y: 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`, short: `JM`, name: `Jamaica`, continent: `North America`, population: 2990561, gdpTotal: 25390, economy: `Developing`, region: `Central America`, status: `Country`, x: -77.27, y: 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`, short: `KW`, name: `Kuwait`, continent: `Asia`, population: 2875422, gdpTotal: 301100, economy: `Developing`, region: `Middle East`, status: `Country`, x: 47.487, y: 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`, short: `LT`, name: `Lithuania`, continent: `Europe`, population: 2823859, gdpTotal: 85620, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 23.838, y: 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`, short: `NA`, name: `Namibia`, continent: `Africa`, population: 2484780, gdpTotal: 25990, economy: `Developing`, region: `Southern Africa`, status: `Country`, x: 16.944, y: -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`, short: `QA`, name: `Qatar`, continent: `Asia`, population: 2314307, gdpTotal: 334500, economy: `Developing`, region: `Middle East`, status: `Country`, x: 51.182, y: 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`, short: `BW`, name: `Botswana`, continent: `Africa`, population: 2214858, gdpTotal: 35900, economy: `Developing`, region: `Southern Africa`, status: `Country`, x: 24.671, y: -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`, short: `MK`, name: `North Macedonia`, continent: `Europe`, population: 2103721, gdpTotal: 29520, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 21.727, y: 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`, short: `GM`, name: `Gambia`, continent: `Africa`, population: 2051363, gdpTotal: 3387, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -15.32, y: 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`, short: `SI`, name: `Slovenia`, continent: `Europe`, population: 1972126, gdpTotal: 68350, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 14.947, y: 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`, short: `LS`, name: `Lesotho`, continent: `Africa`, population: 1958042, gdpTotal: 6019, economy: `Least Developed`, region: `Southern Africa`, status: `Country`, x: 28.221, y: -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`, short: `LV`, name: `Latvia`, continent: `Europe`, population: 1944643, gdpTotal: 50650, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 26.505, y: 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`, short: `RS`, name: `Kosovo`, continent: `Europe`, population: 1895250, gdpTotal: 18490, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 20.891, y: 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`, short: `GW`, name: `Guinea-Bissau`, continent: `Africa`, population: 1792338, gdpTotal: 2851, economy: `Least Developed`, region: `Western Africa`, status: `Country`, x: -14.59, y: 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`, short: `GA`, name: `Gabon`, continent: `Africa`, population: 1772255, gdpTotal: 35980, economy: `Developing`, region: `Middle Africa`, status: `Country`, x: 11.592, y: -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`, short: `SZ`, name: `Eswatini`, continent: `Africa`, population: 1467152, gdpTotal: 11060, economy: `Developing`, region: `Southern Africa`, status: `Country`, x: 31.45, y: -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`, short: `BH`, name: `Bahrain`, continent: `Asia`, population: 1410942, gdpTotal: 66370, economy: `Developing`, region: `Middle East`, status: `Country`, x: 50.535, y: 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`, short: `MU`, name: `Mauritius`, continent: `Africa`, population: 1356388, gdpTotal: 25850, economy: `Developing`, region: `Eastern Africa`, status: `Country`, x: 57.555, y: -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`, short: `TL`, name: `Timor-Leste`, continent: `Asia`, population: 1291358, gdpTotal: 4975, economy: `Least Developed`, region: `Eastern Asia`, status: `Country`, x: 125.66, y: -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`, short: `EE`, name: `Estonia`, continent: `Europe`, population: 1251581, gdpTotal: 38700, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: 25.441, y: 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`, short: `CY`, name: `Cyprus`, continent: `Asia`, population: 1221549, gdpTotal: 29260, economy: `Developing`, region: `Middle East`, status: `Country`, x: 33.176, y: 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`, short: `TT`, name: `Trinidad and Tobago`, continent: `North America`, population: 1218208, gdpTotal: 43570, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.21, y: 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`, short: `FJ`, name: `Fiji`, continent: `Oceania`, population: 920938, gdpTotal: 8374, economy: `Developing`, region: `Melanesia`, status: `Country`, x: 177.85, y: -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: `REU`, short: `RE`, name: `Reunion`, continent: `Africa`, population: 896175, gdpTotal: 23200, economy: `Developing`, region: `Eastern Africa`, status: `Country`, x: 55.53, y: -21.11, gdpPerPerson: 25888, rank: 162, unemployment: 21, oilProduction: 0, birthRate: 31, medianAge: 49, electricity: 4480875, televisions: 716940, publicDebt: 35, internet: 537705 }), + new WorldStatsItem({ code: `DJI`, short: `DJ`, name: `Djibouti`, continent: `Africa`, population: 865267, gdpTotal: 3345, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 42.587, y: 11.825, gdpPerPerson: 3866, rank: 163, unemployment: 5, oilProduction: 3, birthRate: 17, medianAge: 44, electricity: 91593, televisions: 209004, publicDebt: 43, internet: 476114 }), + new WorldStatsItem({ code: `COM`, short: `KM`, name: `Comoros`, continent: `Africa`, population: 808080, gdpTotal: 1259, economy: `Least Developed`, region: `Eastern Africa`, status: `Country`, x: 43.877, y: -11.86, gdpPerPerson: 1558, rank: 164, unemployment: 11, oilProduction: 3, birthRate: 14, medianAge: 46, electricity: 6146, televisions: 495921, publicDebt: 10, internet: 459977 }), + new WorldStatsItem({ code: `GNQ`, short: `GQ`, name: `Equatorial Guinea`, continent: `Africa`, population: 778358, gdpTotal: 31770, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 10.521, y: 1.763, gdpPerPerson: 40817, rank: 165, unemployment: 30, oilProduction: 385500, birthRate: 37, medianAge: 19, electricity: 28, televisions: 4000, publicDebt: 2, internet: 8000 }), + new WorldStatsItem({ code: `BTN`, short: `BT`, name: `Bhutan`, continent: `Asia`, population: 758288, gdpTotal: 6432, economy: `Least Developed`, region: `Southern Asia`, status: `Country`, x: 90.411, y: 27.506, gdpPerPerson: 8482, rank: 166, unemployment: 3, oilProduction: 0, birthRate: 21, medianAge: 24, electricity: 2000, televisions: 11000, publicDebt: 81, internet: 40000 }), + new WorldStatsItem({ code: `GUY`, short: `GY`, name: `Guyana`, continent: `South America`, population: 737718, gdpTotal: 6093, economy: `Developing`, region: `South America`, status: `Country`, x: -58.96, y: 5.607, gdpPerPerson: 8259, rank: 167, unemployment: 2, oilProduction: 3, birthRate: 9, medianAge: 37, electricity: 84988, televisions: 149848, publicDebt: 12, internet: 134377 }), + new WorldStatsItem({ code: `SLB`, short: `SB`, name: `Solomon Islands`, continent: `Oceania`, population: 647581, gdpTotal: 1198, economy: `Least Developed`, region: `Melanesia`, status: `Country`, x: 161.3, y: -9.221, gdpPerPerson: 1850, rank: 168, unemployment: 4, oilProduction: 3, birthRate: 18, medianAge: 30, electricity: 3432, televisions: 177555, publicDebt: 43, internet: 478635 }), + new WorldStatsItem({ code: `MNE`, short: `ME`, name: `Montenegro`, continent: `Europe`, population: 642550, gdpTotal: 10610, economy: `Developing`, region: `Southern Europe`, status: `Country`, x: 19.191, y: 42.814, gdpPerPerson: 16512, rank: 169, unemployment: 10, oilProduction: 2, birthRate: 24, medianAge: 46, electricity: 24709, televisions: 126756, publicDebt: 29, internet: 336628 }), + new WorldStatsItem({ code: `ESH`, short: `EH`, name: `Western Sahara`, continent: `Africa`, population: 603253, gdpTotal: 907, economy: `Least Developed`, region: `Northern Africa`, status: `Dependency`, x: -12.89, y: 24.231, gdpPerPerson: 1504, rank: 170, unemployment: 6, oilProduction: 1, birthRate: 23, medianAge: 30, electricity: 11081, televisions: 237857, publicDebt: 30, internet: 306624 }), + new WorldStatsItem({ code: `MAC`, short: `MO`, name: `Macao`, continent: `Asia`, population: 601969, gdpTotal: 63220, economy: `Developing`, region: `Eastern Asia`, status: `Dependency`, x: 113.51, y: 22.221, gdpPerPerson: 105022, rank: 171, unemployment: 10, oilProduction: 2, birthRate: 10, medianAge: 47, electricity: 77896, televisions: 163859, publicDebt: 18, internet: 62728 }), + new WorldStatsItem({ code: `LUX`, short: `LU`, name: `Luxembourg`, continent: `Europe`, population: 594130, gdpTotal: 58740, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 6.109, y: 49.806, gdpPerPerson: 98867, rank: 172, unemployment: 4, oilProduction: 0, birthRate: 12, medianAge: 39, electricity: 3156, televisions: 285000, publicDebt: 6, internet: 345000 }), + new WorldStatsItem({ code: `SUR`, short: `SR`, name: `Suriname`, continent: `South America`, population: 591919, gdpTotal: 8547, economy: `Developing`, region: `South America`, status: `Country`, x: -56.02, y: 4.506, gdpPerPerson: 14439, rank: 173, unemployment: 5, oilProduction: 1, birthRate: 16, medianAge: 44, electricity: 82658, televisions: 69068, publicDebt: 31, internet: 367104 }), + new WorldStatsItem({ code: `CPV`, short: `CV`, name: `Cabo Verde`, continent: `Africa`, population: 560899, gdpTotal: 3583, economy: `Developing`, region: `Western Africa`, status: `Country`, x: -25.16, y: 17.102, gdpPerPerson: 6388, rank: 174, unemployment: 12, oilProduction: 1, birthRate: 12, medianAge: 54, electricity: 60647, televisions: 101289, publicDebt: 34, internet: 40105 }), + new WorldStatsItem({ code: `BRN`, short: `BN`, name: `Brunei`, continent: `Asia`, population: 443593, gdpTotal: 33730, economy: `Developing`, region: `Eastern Asia`, status: `Country`, x: 114.69, y: 4.523, gdpPerPerson: 76038, rank: 175, unemployment: 4, oilProduction: 0, birthRate: 17, medianAge: 32, electricity: 50701, televisions: 235042, publicDebt: 16, internet: 188751 }), + new WorldStatsItem({ code: `MLT`, short: `MT`, name: `Malta`, continent: `Europe`, population: 416338, gdpTotal: 16320, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 14.373, y: 35.948, gdpPerPerson: 39199, rank: 176, unemployment: 7, oilProduction: 4, birthRate: 6, medianAge: 52, electricity: 77444, televisions: 282390, publicDebt: 41, internet: 317612 }), + new WorldStatsItem({ code: `MDV`, short: `MV`, name: `Maldives`, continent: `Asia`, population: 392709, gdpTotal: 5407, economy: `Developing`, region: `Southern Asia`, status: `Country`, x: 73.455, y: 3.739, gdpPerPerson: 13768, rank: 177, unemployment: 13, oilProduction: 4, birthRate: 10, medianAge: 43, electricity: 26004, televisions: 156412, publicDebt: 28, internet: 45331 }), + new WorldStatsItem({ code: `GLP`, short: `GX`, name: `Guadeloupe`, continent: `North America`, population: 378561, gdpTotal: 9462, economy: `Developing`, region: `Central America`, status: `Territory`, x: -61.5, y: 16.25, gdpPerPerson: 24995, rank: 178, unemployment: 43, oilProduction: 0, birthRate: 32, medianAge: 74, electricity: 1892805, televisions: 302849, publicDebt: 50, internet: 227137 }), + new WorldStatsItem({ code: `BLZ`, short: `BZ`, name: `Belize`, continent: `North America`, population: 360346, gdpTotal: 3088, economy: `Developing`, region: `Central America`, status: `Country`, x: -88.51, y: 17.185, gdpPerPerson: 8570, rank: 179, unemployment: 4, oilProduction: 2, birthRate: 7, medianAge: 36, electricity: 57433, televisions: 127478, publicDebt: 36, internet: 223855 }), + new WorldStatsItem({ code: `MTQ`, short: `MQ`, name: `Martinique`, continent: `North America`, population: 349925, gdpTotal: 9082, economy: `Developing`, region: `Central America`, status: `Territory`, x: -61.01, y: 14.65, gdpPerPerson: 25954, rank: 180, unemployment: 23, oilProduction: 0, birthRate: 33, medianAge: 63, electricity: 1749625, televisions: 279940, publicDebt: 59, internet: 209955 }), + new WorldStatsItem({ code: `ISL`, short: `IS`, name: `Iceland`, continent: `Europe`, population: 339747, gdpTotal: 16150, economy: `Developed`, region: `Northern Europe`, status: `Country`, x: -19.01, y: 64.966, gdpPerPerson: 47535, rank: 181, unemployment: 1, oilProduction: 0, birthRate: 14, medianAge: 35, electricity: 8533, televisions: 98000, publicDebt: 28, internet: 202300 }), + new WorldStatsItem({ code: `BHS`, short: `BS`, name: `Bahamas`, continent: `North America`, population: 329988, gdpTotal: 9066, economy: `Developing`, region: `Central America`, status: `Country`, x: -78.01, y: 24.761, gdpPerPerson: 27474, rank: 182, unemployment: 5, oilProduction: 2, birthRate: 17, medianAge: 47, electricity: 38395, televisions: 203588, publicDebt: 6, internet: 91807 }), + new WorldStatsItem({ code: `MYT`, short: `YT`, name: `Mayotte`, continent: `Africa`, population: 320901, gdpTotal: 2932, economy: `Developing`, region: `Central America`, status: `Country`, x: 45.14, y: -12.84, gdpPerPerson: 9137, rank: 183, unemployment: 35, oilProduction: 0, birthRate: 46, medianAge: 50, electricity: 1604505, televisions: 256721, publicDebt: 29, internet: 192541 }), + new WorldStatsItem({ code: `GUF`, short: `GF`, name: `French Guiana`, continent: `South America`, population: 296161, gdpTotal: 4562, economy: `Developed`, region: `South America`, status: `Dependency`, x: -53.13, y: 3.893, gdpPerPerson: 4386, rank: 184, unemployment: 3, oilProduction: 0, birthRate: 15, medianAge: 55, electricity: 73845, televisions: 147489, publicDebt: 35, internet: 209593 }), + new WorldStatsItem({ code: `BRB`, short: `BB`, name: `Barbados`, continent: `North America`, population: 292336, gdpTotal: 4804, economy: `Developing`, region: `Central America`, status: `Country`, x: -59.53, y: 13.19, gdpPerPerson: 16433, rank: 186, unemployment: 8, oilProduction: 3, birthRate: 21, medianAge: 51, electricity: 28728, televisions: 173392, publicDebt: 12, internet: 73593 }), + new WorldStatsItem({ code: `PYF`, short: `PF`, name: `Fr. Polynesia`, continent: `Oceania`, population: 287881, gdpTotal: 5490, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -143.9, y: -14.82, gdpPerPerson: 19070, rank: 187, unemployment: 1, oilProduction: 4, birthRate: 6, medianAge: 45, electricity: 46206, televisions: 43757, publicDebt: 12, internet: 172560 }), + new WorldStatsItem({ code: `VUT`, short: `VU`, name: `Vanuatu`, continent: `Oceania`, population: 282814, gdpTotal: 723, economy: `Least Developed`, region: `Melanesia`, status: `Country`, x: 168.21, y: -16.97, gdpPerPerson: 2556, rank: 188, unemployment: 11, oilProduction: 4, birthRate: 17, medianAge: 39, electricity: 50581, televisions: 187584, publicDebt: 42, internet: 223352 }), + new WorldStatsItem({ code: `NCL`, short: `NC`, name: `New Caledonia`, continent: `Oceania`, population: 279070, gdpTotal: 10770, economy: `Developing`, region: `Melanesia`, status: `Dependency`, x: 165.26, y: -21.09, gdpPerPerson: 38592, rank: 189, unemployment: 10, oilProduction: 3, birthRate: 6, medianAge: 49, electricity: 18361, televisions: 79923, publicDebt: 45, internet: 149003 }), + new WorldStatsItem({ code: `NCP`, short: `XC`, name: `Northern Cyprus`, continent: `Asia`, population: 265100, gdpTotal: 3600, economy: `Developing`, region: `Middle East`, status: `Country`, x: 33.714, y: 35.257, gdpPerPerson: 13580, rank: 190, unemployment: 4, oilProduction: 5, birthRate: 25, medianAge: 51, electricity: 84000, televisions: 135551, publicDebt: 30, internet: 167480 }), + new WorldStatsItem({ code: `STP`, short: `ST`, name: `Sao Tome and Principe`, continent: `Africa`, population: 201025, gdpTotal: 694, economy: `Least Developed`, region: `Middle Africa`, status: `Country`, x: 6.598, y: 0.248, gdpPerPerson: 3452, rank: 191, unemployment: 1, oilProduction: 3, birthRate: 24, medianAge: 30, electricity: 6691, televisions: 65480, publicDebt: 12, internet: 121162 }), + new WorldStatsItem({ code: `WSM`, short: `WS`, name: `Samoa`, continent: `Oceania`, population: 200108, gdpTotal: 1046, economy: `Least Developed`, region: `Polynesia`, status: `Country`, x: -172.1, y: -13.75, gdpPerPerson: 5227, rank: 192, unemployment: 3, oilProduction: 2, birthRate: 7, medianAge: 46, electricity: 50118, televisions: 54930, publicDebt: 42, internet: 84739 }), + new WorldStatsItem({ code: `GUM`, short: `GU`, name: `Guam`, continent: `Oceania`, population: 167358, gdpTotal: 4882, economy: `Developing`, region: `Micronesia`, status: `Dependency`, x: 144.79, y: 13.44, gdpPerPerson: 29171, rank: 193, unemployment: 15, oilProduction: 2, birthRate: 24, medianAge: 42, electricity: 64229, televisions: 43567, publicDebt: 37, internet: 121131 }), + new WorldStatsItem({ code: `LCA`, short: `LC`, name: `Saint Lucia`, continent: `North America`, population: 164994, gdpTotal: 2083, economy: `Developing`, region: `Central America`, status: `Country`, x: -60.98, y: 13.905, gdpPerPerson: 12625, rank: 194, unemployment: 3, oilProduction: 2, birthRate: 14, medianAge: 32, electricity: 75473, televisions: 87743, publicDebt: 7, internet: 64498 }), + new WorldStatsItem({ code: `CUW`, short: `CW`, name: `Curacao`, continent: `North America`, population: 149648, gdpTotal: 3128, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -68.95, y: 12.213, gdpPerPerson: 20902, rank: 195, unemployment: 6, oilProduction: 1, birthRate: 7, medianAge: 35, electricity: 74665, televisions: 89830, publicDebt: 36, internet: 55905 }), + new WorldStatsItem({ code: `ABW`, short: `AW`, name: `Aruba`, continent: `North America`, population: 115120, gdpTotal: 2516, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -69.98, y: 12.519, gdpPerPerson: 21855, rank: 196, unemployment: 7, oilProduction: 2356, birthRate: 13, medianAge: 38, electricity: 770, televisions: 20000, publicDebt: 46, internet: 24000 }), + new WorldStatsItem({ code: `GRD`, short: `GD`, name: `Grenada`, continent: `North America`, population: 111724, gdpTotal: 1511, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.69, y: 12.123, gdpPerPerson: 13524, rank: 197, unemployment: 10, oilProduction: 0, birthRate: 10, medianAge: 50, electricity: 4992, televisions: 58674, publicDebt: 42, internet: 33132 }), + new WorldStatsItem({ code: `KIR`, short: `KI`, name: `Kiribati`, continent: `Oceania`, population: 108145, gdpTotal: 211, economy: `Least Developed`, region: `Micronesia`, status: `Country`, x: -157.333, y: 1.884, gdpPerPerson: 1951, rank: 198, unemployment: 13, oilProduction: 4, birthRate: 9, medianAge: 52, electricity: 37081, televisions: 52395, publicDebt: 40, internet: 36620 }), + new WorldStatsItem({ code: `VIR`, short: `VI`, name: `U.S. Virgin Island`, continent: `North America`, population: 107268, gdpTotal: 3792, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -64.77, y: 17.77, gdpPerPerson: 35351, rank: 199, unemployment: 11, oilProduction: 2, birthRate: 12, medianAge: 38, electricity: 13387, televisions: 77187, publicDebt: 43, internet: 40836 }), + new WorldStatsItem({ code: `TON`, short: `TO`, name: `Tonga`, continent: `Oceania`, population: 106479, gdpTotal: 557, economy: `Developing`, region: `Polynesia`, status: `Country`, x: -173.9, y: -18.62, gdpPerPerson: 5231, rank: 200, unemployment: 4, oilProduction: 4, birthRate: 5, medianAge: 33, electricity: 88735, televisions: 30257, publicDebt: 25, internet: 71756 }), + new WorldStatsItem({ code: `FSM`, short: `FM`, name: `Micronesia`, continent: `Oceania`, population: 104196, gdpTotal: 314, economy: `Developing`, region: `Micronesia`, status: `Country`, x: 150.52, y: 7.435, gdpPerPerson: 3014, rank: 201, unemployment: 9, oilProduction: 5, birthRate: 5, medianAge: 38, electricity: 39068, televisions: 45396, publicDebt: 40, internet: 29169 }), + new WorldStatsItem({ code: `VCT`, short: `VC`, name: `St. Vincent and Grenadines`, continent: `North America`, population: 102089, gdpTotal: 1241, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.17, y: 13.239, gdpPerPerson: 12156, rank: 202, unemployment: 10, oilProduction: 5, birthRate: 7, medianAge: 30, electricity: 39467, televisions: 42804, publicDebt: 9, internet: 66754 }), + new WorldStatsItem({ code: `JEY`, short: `JE`, name: `Jersey`, continent: `Europe`, population: 98840, gdpTotal: 5080, economy: `Developed`, region: `Northern Europe`, status: `Territory`, x: -2.123, y: 49.218, gdpPerPerson: 51396, rank: 203, unemployment: 4, oilProduction: 1, birthRate: 18, medianAge: 30, electricity: 64261, televisions: 52453, publicDebt: 34, internet: 3026 }), + new WorldStatsItem({ code: `ATG`, short: `AG`, name: `Antigua and Barbuda`, continent: `North America`, population: 94731, gdpTotal: 2171, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.79, y: 17.096, gdpPerPerson: 22918, rank: 204, unemployment: 3, oilProduction: 1, birthRate: 5, medianAge: 36, electricity: 35849, televisions: 75384, publicDebt: 32, internet: 6170 }), + new WorldStatsItem({ code: `SYC`, short: `SC`, name: `Seychelles`, continent: `Africa`, population: 93920, gdpTotal: 2608, economy: `Developing`, region: `Eastern Africa`, status: `Country`, x: 55.463, y: -4.672, gdpPerPerson: 27768, rank: 205, unemployment: 2, oilProduction: 0, birthRate: 16, medianAge: 29, electricity: 252, televisions: 11000, publicDebt: 92, internet: 32000 }), + new WorldStatsItem({ code: `IMN`, short: `IM`, name: `Isle of Man`, continent: `Europe`, population: 88815, gdpTotal: 7428, economy: `Developed`, region: `Northern Europe`, status: `Territory`, x: -4.562, y: 54.233, gdpPerPerson: 83635, rank: 206, unemployment: 4, oilProduction: 4, birthRate: 14, medianAge: 36, electricity: 15745, televisions: 25734, publicDebt: 13, internet: 2650 }), + new WorldStatsItem({ code: `AND`, short: `AD`, name: `Andorra`, continent: `Europe`, population: 85702, gdpTotal: 3327, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 1.578, y: 42.539, gdpPerPerson: 38821, rank: 207, unemployment: 11, oilProduction: 3, birthRate: 20, medianAge: 50, electricity: 56209, televisions: 42797, publicDebt: 33, internet: 42006 }), + new WorldStatsItem({ code: `MHL`, short: `MH`, name: `Marshall Islands`, continent: `Oceania`, population: 74539, gdpTotal: 180, economy: `Developing`, region: `Micronesia`, status: `Country`, x: 169.3, y: 8.484, gdpPerPerson: 2415, rank: 208, unemployment: 3, oilProduction: 3, birthRate: 23, medianAge: 42, electricity: 78832, televisions: 15193, publicDebt: 44, internet: 8536 }), + new WorldStatsItem({ code: `DMA`, short: `DM`, name: `Dominica`, continent: `North America`, population: 73897, gdpTotal: 812, economy: `Developing`, region: `Central America`, status: `Country`, x: -61.36, y: 15.43, gdpPerPerson: 10988, rank: 209, unemployment: 6, oilProduction: 1, birthRate: 13, medianAge: 35, electricity: 49809, televisions: 17676, publicDebt: 37, internet: 2616 }), + new WorldStatsItem({ code: `BMU`, short: `BM`, name: `Bermuda`, continent: `North America`, population: 70864, gdpTotal: 5198, economy: `Developed`, region: `Northern America`, status: `Dependency`, x: -64.76, y: 32.323, gdpPerPerson: 73352, rank: 210, unemployment: 15, oilProduction: 1, birthRate: 21, medianAge: 43, electricity: 54728, televisions: 16336, publicDebt: 27, internet: 41606 }), + new WorldStatsItem({ code: `GGY`, short: `GG`, name: `Guernsey`, continent: `Europe`, population: 66502, gdpTotal: 3465, economy: `Developed`, region: `Northern Europe`, status: `Territory`, x: -2.579, y: 49.468, gdpPerPerson: 52104, rank: 211, unemployment: 2, oilProduction: 1, birthRate: 25, medianAge: 33, electricity: 9806, televisions: 24638, publicDebt: 34, internet: 29222 }), + new WorldStatsItem({ code: `CYM`, short: `KY`, name: `Cayman Island`, continent: `North America`, population: 58441, gdpTotal: 2507, economy: `Emerging`, region: `Central America`, status: `Dependency`, x: -81.25, y: 19.343, gdpPerPerson: 42898, rank: 212, unemployment: 12, oilProduction: 3, birthRate: 7, medianAge: 35, electricity: 70206, televisions: 28885, publicDebt: 21, internet: 9332 }), + new WorldStatsItem({ code: `GRL`, short: `GL`, name: `Greenland`, continent: `North America`, population: 57713, gdpTotal: 2173, economy: `Developed`, region: `Northern America`, status: `Dependency`, x: -42.12, y: 69.547, gdpPerPerson: 37652, rank: 213, unemployment: 7, oilProduction: 5, birthRate: 19, medianAge: 42, electricity: 86090, televisions: 43741, publicDebt: 42, internet: 11423 }), + new WorldStatsItem({ code: `KNA`, short: `KN`, name: `St. Kitts and Nevis`, continent: `North America`, population: 52715, gdpTotal: 1427, economy: `Developing`, region: `Central America`, status: `Country`, x: -62.77, y: 17.351, gdpPerPerson: 27070, rank: 214, unemployment: 5, oilProduction: 2, birthRate: 18, medianAge: 40, electricity: 65438, televisions: 17719, publicDebt: 11, internet: 8543 }), + new WorldStatsItem({ code: `TCA`, short: `TC`, name: `Turks and Caicos Island`, continent: `North America`, population: 52570, gdpTotal: 632, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -71.96, y: 21.913, gdpPerPerson: 12022, rank: 215, unemployment: 6, oilProduction: 0, birthRate: 13, medianAge: 42, electricity: 51325, televisions: 13109, publicDebt: 13, internet: 24564 }), + new WorldStatsItem({ code: `MNP`, short: `MP`, name: `N. Mariana Island`, continent: `Oceania`, population: 52263, gdpTotal: 682, economy: `Developing`, region: `Micronesia`, status: `Dependency`, x: 145.49, y: 16.459, gdpPerPerson: 13049, rank: 216, unemployment: 10, oilProduction: 1, birthRate: 9, medianAge: 46, electricity: 87386, televisions: 13049, publicDebt: 20, internet: 5484 }), + new WorldStatsItem({ code: `ASM`, short: `AS`, name: `American Samoa`, continent: `Oceania`, population: 51504, gdpTotal: 711, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -170.6, y: -14.3, gdpPerPerson: 13805, rank: 217, unemployment: 3, oilProduction: 4, birthRate: 13, medianAge: 42, electricity: 65918, televisions: 18802, publicDebt: 23, internet: 14691 }), + new WorldStatsItem({ code: `FRO`, short: `FO`, name: `Faeroe Island`, continent: `Europe`, population: 50730, gdpTotal: 2001, economy: `Developed`, region: `Northern Europe`, status: `Dependency`, x: -6.857, y: 62.178, gdpPerPerson: 39444, rank: 218, unemployment: 15, oilProduction: 2, birthRate: 11, medianAge: 46, electricity: 55029, televisions: 11762, publicDebt: 13, internet: 2412 }), + new WorldStatsItem({ code: `SXM`, short: `SX`, name: `Sint Maarten`, continent: `North America`, population: 42083, gdpTotal: 366, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -63.06, y: 18.044, gdpPerPerson: 8697, rank: 219, unemployment: 14, oilProduction: 4, birthRate: 19, medianAge: 50, electricity: 17166, televisions: 8474, publicDebt: 33, internet: 14309 }), + new WorldStatsItem({ code: `LIE`, short: `LI`, name: `Liechtenstein`, continent: `Europe`, population: 38244, gdpTotal: 4978, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 9.545, y: 47.164, gdpPerPerson: 130164, rank: 220, unemployment: 11, oilProduction: 3, birthRate: 10, medianAge: 55, electricity: 80781, televisions: 23104, publicDebt: 21, internet: 8159 }), + new WorldStatsItem({ code: `VGB`, short: `VG`, name: `British Virgin Island`, continent: `North America`, population: 35015, gdpTotal: 500, economy: `Developed`, region: `Central America`, status: `Dependency`, x: -64.6, y: 18.44, gdpPerPerson: 14280, rank: 221, unemployment: 13, oilProduction: 2, birthRate: 6, medianAge: 51, electricity: 47732, televisions: 17777, publicDebt: 7, internet: 6238 }), + new WorldStatsItem({ code: `SMR`, short: `SM`, name: `San Marino`, continent: `Europe`, population: 33537, gdpTotal: 2023, economy: `Developed`, region: `Southern Europe`, status: `Country`, x: 12.456, y: 43.942, gdpPerPerson: 60321, rank: 222, unemployment: 10, oilProduction: 0, birthRate: 15, medianAge: 48, electricity: 21943, televisions: 22355, publicDebt: 34, internet: 23505 }), + new WorldStatsItem({ code: `GIB`, short: `GI`, name: `Gibraltar`, continent: `Europe`, population: 32688, gdpTotal: 2911, economy: `Developing`, region: `Southern Europe`, status: `Territory`, x: -5.35, y: 36.14, gdpPerPerson: 89054, rank: 223, unemployment: 11, oilProduction: 0, birthRate: 38, medianAge: 75, electricity: 163440, televisions: 26150, publicDebt: 39, internet: 19613 }), + new WorldStatsItem({ code: `MAF`, short: `MF`, name: `St. Martin`, continent: `North America`, population: 32125, gdpTotal: 562, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -63.06, y: 18.092, gdpPerPerson: 17494, rank: 224, unemployment: 15, oilProduction: 5, birthRate: 10, medianAge: 34, electricity: 76791, televisions: 17592, publicDebt: 43, internet: 25032 }), + new WorldStatsItem({ code: `BES`, short: `BQ`, name: `Caribbean Netherlands`, continent: `North America`, population: 31980, gdpTotal: 725, economy: `Developing`, region: `Central America`, status: `Territory`, x: -68.27, y: 12.15, gdpPerPerson: 22670, rank: 225, unemployment: 15, oilProduction: 0, birthRate: 46, medianAge: 58, electricity: 159900, televisions: 25584, publicDebt: 20, internet: 19188 }), + new WorldStatsItem({ code: `MCO`, short: `MC`, name: `Monaco`, continent: `Europe`, population: 30645, gdpTotal: 7672, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 7.408, y: 43.751, gdpPerPerson: 250351, rank: 226, unemployment: 15, oilProduction: 5, birthRate: 18, medianAge: 31, electricity: 73517, televisions: 10057, publicDebt: 10, internet: 18394 }), + new WorldStatsItem({ code: `ALA`, short: `AX`, name: `Aland Islands`, continent: `Europe`, population: 27153, gdpTotal: 1563, economy: `Developed`, region: `Northern Europe`, status: `Territory`, x: 20.065, y: 60.209, gdpPerPerson: 57563, rank: 227, unemployment: 14, oilProduction: 3, birthRate: 15, medianAge: 54, electricity: 69394, televisions: 14696, publicDebt: 19, internet: 2736 }), + new WorldStatsItem({ code: `PLW`, short: `PW`, name: `Palau`, continent: `Oceania`, population: 21431, gdpTotal: 276, economy: `Developing`, region: `Micronesia`, status: `Country`, x: 134.63, y: 7.532, gdpPerPerson: 12879, rank: 228, unemployment: 8, oilProduction: 1, birthRate: 7, medianAge: 39, electricity: 88599, televisions: 3019, publicDebt: 8, internet: 17075 }), + new WorldStatsItem({ code: `AIA`, short: `AI`, name: `Anguilla`, continent: `North America`, population: 17087, gdpTotal: 175, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -63.07, y: 18.221, gdpPerPerson: 10242, rank: 229, unemployment: 9, oilProduction: 1, birthRate: 10, medianAge: 49, electricity: 68590, televisions: 10632, publicDebt: 40, internet: 8703 }), + new WorldStatsItem({ code: `WLF`, short: `WF`, name: `Wallis and Futuna`, continent: `Oceania`, population: 15714, gdpTotal: 60, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -177.1, y: -13.77, gdpPerPerson: 3818, rank: 230, unemployment: 15, oilProduction: 0, birthRate: 0, medianAge: 0, electricity: 0, televisions: 0, publicDebt: 6, internet: 900 }), + new WorldStatsItem({ code: `TUV`, short: `TV`, name: `Tuvalu`, continent: `Oceania`, population: 10643, gdpTotal: 63, economy: `Developing`, region: `Polynesia`, status: `Country`, x: 179.2, y: -8.52, gdpPerPerson: 5919, rank: 231, unemployment: 35, oilProduction: 0, birthRate: 36, medianAge: 74, electricity: 53215, televisions: 8514, publicDebt: 52, internet: 6386 }), + new WorldStatsItem({ code: `NRU`, short: `NR`, name: `Nauru`, continent: `Oceania`, population: 9642, gdpTotal: 151, economy: `Developing`, region: `Micronesia`, status: `Country`, x: 166.93, y: -0.52, gdpPerPerson: 15661, rank: 232, unemployment: 5, oilProduction: 3, birthRate: 17, medianAge: 32, electricity: 84092, televisions: 1777, publicDebt: 34, internet: 4585 }), + new WorldStatsItem({ code: `COK`, short: `CK`, name: `Cook Island`, continent: `Oceania`, population: 9290, gdpTotal: 244, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -159.7, y: -21.21, gdpPerPerson: 26265, rank: 233, unemployment: 15, oilProduction: 1, birthRate: 6, medianAge: 45, electricity: 41320, televisions: 3712, publicDebt: 24, internet: 3555 }), + new WorldStatsItem({ code: `SHN`, short: `SH`, name: `Saint Helena`, continent: `Africa`, population: 7828, gdpTotal: 31, economy: `Developing`, region: `Western Africa`, status: `Dependency`, x: -10.03, y: -11.94, gdpPerPerson: 3960, rank: 234, unemployment: 13, oilProduction: 1, birthRate: 17, medianAge: 48, electricity: 84435, televisions: 3812, publicDebt: 15, internet: 5530 }), + new WorldStatsItem({ code: `BLM`, short: `BL`, name: `St. Barthalemy`, continent: `North America`, population: 7184, gdpTotal: 255, economy: `Developed`, region: `Central America`, status: `Dependency`, x: -62.83, y: 17.899, gdpPerPerson: 35496, rank: 235, unemployment: 14, oilProduction: 0, birthRate: 23, medianAge: 46, electricity: 36112, televisions: 4072, publicDebt: 27, internet: 5097 }), + new WorldStatsItem({ code: `SPM`, short: `PM`, name: `St. Pierre`, continent: `North America`, population: 5533, gdpTotal: 215, economy: `Developed`, region: `Northern America`, status: `Territory`, x: -56.26, y: 46.926, gdpPerPerson: 38858, rank: 236, unemployment: 13, oilProduction: 0, birthRate: 13, medianAge: 42, electricity: 61277, televisions: 2067, publicDebt: 18, internet: 2924 }), + new WorldStatsItem({ code: `MSR`, short: `MS`, name: `Montserrat`, continent: `North America`, population: 5292, gdpTotal: 44, economy: `Developing`, region: `Central America`, status: `Dependency`, x: -62.18, y: 16.745, gdpPerPerson: 8314, rank: 237, unemployment: 13, oilProduction: 1, birthRate: 12, medianAge: 50, electricity: 19088, televisions: 1964, publicDebt: 44, internet: 4009 }), + new WorldStatsItem({ code: `IOT`, short: `IO`, name: `British Indian Territory`, continent: `Asia`, population: 4000, gdpTotal: 160, economy: `Developed`, region: `Southern Asia`, status: `Dependency`, x: 72.424, y: -7.328, gdpPerPerson: 40000, rank: 238, unemployment: 13, oilProduction: 0, birthRate: 6, medianAge: 47, electricity: 91829, televisions: 1510, publicDebt: 14, internet: 1656 }), + new WorldStatsItem({ code: `FLK`, short: `FK`, name: `Falkland Island`, continent: `South America`, population: 2931, gdpTotal: 282, economy: `Developed`, region: `South America`, status: `Dependency`, x: -59.46, y: -51.78, gdpPerPerson: 96213, rank: 239, unemployment: 3, oilProduction: 5, birthRate: 9, medianAge: 36, electricity: 68007, televisions: 1489, publicDebt: 22, internet: 1335 }), + new WorldStatsItem({ code: `NFK`, short: `NF`, name: `Norfolk Island`, continent: `Oceania`, population: 2210, gdpTotal: 33, economy: `Developing`, region: `Australia`, status: `Dependency`, x: 167.94, y: -29.05, gdpPerPerson: 14932, rank: 240, unemployment: 1, oilProduction: 0, birthRate: 15, medianAge: 46, electricity: 91943, televisions: 583, publicDebt: 41, internet: 1183 }), + new WorldStatsItem({ code: `NIU`, short: `NU`, name: `Niue`, continent: `Oceania`, population: 1626, gdpTotal: 10, economy: `Developing`, region: `Polynesia`, status: `Dependency`, x: -169.8, y: -19.05, gdpPerPerson: 6150, rank: 241, unemployment: 15, oilProduction: 4, birthRate: 17, medianAge: 51, electricity: 16785, televisions: 585, publicDebt: 31, internet: 1247 }), + new WorldStatsItem({ code: `VAT`, short: `VT`, name: `Vatican`, continent: `Europe`, population: 771, gdpTotal: 15, economy: `Developed`, region: `Western Europe`, status: `Country`, x: 12.433, y: 41.902, gdpPerPerson: 19450, rank: 242, unemployment: 0, oilProduction: 0, birthRate: 0, medianAge: 55, electricity: 771, televisions: 100, publicDebt: 0, internet: 771 }), ]; super(...newItems.slice(0)); } diff --git a/samples/charts/data-chart/trendline-layer/src/app.component.html b/samples/charts/data-chart/trendline-layer/src/app.component.html index 97407b32e..513bcd4f3 100644 --- a/samples/charts/data-chart/trendline-layer/src/app.component.html +++ b/samples/charts/data-chart/trendline-layer/src/app.component.html @@ -15,8 +15,7 @@ + computedPlotAreaMarginMode="Series"> Date: Thu, 4 Sep 2025 17:35:56 -0400 Subject: [PATCH 160/183] mdd-azure-map mdd-azure-map --- .../.codesandbox/Dockerfile | 1 + .../.codesandbox/tasks.json | 17 +++ .../display-azure-imagery/.stackblitzrc | 1 + .../geo-map/display-azure-imagery/ReadMe.md | 58 +++++++++ .../display-azure-imagery/angular.json | 120 ++++++++++++++++++ .../display-azure-imagery/package.json | 46 +++++++ .../display-azure-imagery/src/MapUtility.ts | 108 ++++++++++++++++ .../src/_app-layout.scss | 84 ++++++++++++ .../display-azure-imagery/src/_variables.scss | 19 +++ .../src/app.component.html | 35 +++++ .../src/app.component.scss | 18 +++ .../src/app.component.ts | 49 +++++++ .../display-azure-imagery/src/app.module.ts | 32 +++++ .../src/environments/environment.prod.ts | 3 + .../src/environments/environment.ts | 16 +++ .../display-azure-imagery/src/index.html | 22 ++++ .../geo-map/display-azure-imagery/src/main.ts | 15 +++ .../display-azure-imagery/src/polyfills.ts | 65 ++++++++++ .../display-azure-imagery/src/styles.scss | 54 ++++++++ .../display-azure-imagery/src/typings.d.ts | 5 + .../display-azure-imagery/tsconfig.app.json | 10 ++ .../display-azure-imagery/tsconfig.json | 27 ++++ 22 files changed, 805 insertions(+) create mode 100644 samples/maps/geo-map/display-azure-imagery/.codesandbox/Dockerfile create mode 100644 samples/maps/geo-map/display-azure-imagery/.codesandbox/tasks.json create mode 100644 samples/maps/geo-map/display-azure-imagery/.stackblitzrc create mode 100644 samples/maps/geo-map/display-azure-imagery/ReadMe.md create mode 100644 samples/maps/geo-map/display-azure-imagery/angular.json create mode 100644 samples/maps/geo-map/display-azure-imagery/package.json create mode 100644 samples/maps/geo-map/display-azure-imagery/src/MapUtility.ts create mode 100644 samples/maps/geo-map/display-azure-imagery/src/_app-layout.scss create mode 100644 samples/maps/geo-map/display-azure-imagery/src/_variables.scss create mode 100644 samples/maps/geo-map/display-azure-imagery/src/app.component.html create mode 100644 samples/maps/geo-map/display-azure-imagery/src/app.component.scss create mode 100644 samples/maps/geo-map/display-azure-imagery/src/app.component.ts create mode 100644 samples/maps/geo-map/display-azure-imagery/src/app.module.ts create mode 100644 samples/maps/geo-map/display-azure-imagery/src/environments/environment.prod.ts create mode 100644 samples/maps/geo-map/display-azure-imagery/src/environments/environment.ts create mode 100644 samples/maps/geo-map/display-azure-imagery/src/index.html create mode 100644 samples/maps/geo-map/display-azure-imagery/src/main.ts create mode 100644 samples/maps/geo-map/display-azure-imagery/src/polyfills.ts create mode 100644 samples/maps/geo-map/display-azure-imagery/src/styles.scss create mode 100644 samples/maps/geo-map/display-azure-imagery/src/typings.d.ts create mode 100644 samples/maps/geo-map/display-azure-imagery/tsconfig.app.json create mode 100644 samples/maps/geo-map/display-azure-imagery/tsconfig.json diff --git a/samples/maps/geo-map/display-azure-imagery/.codesandbox/Dockerfile b/samples/maps/geo-map/display-azure-imagery/.codesandbox/Dockerfile new file mode 100644 index 000000000..adf04bd95 --- /dev/null +++ b/samples/maps/geo-map/display-azure-imagery/.codesandbox/Dockerfile @@ -0,0 +1 @@ +FROM node:18 \ No newline at end of file diff --git a/samples/maps/geo-map/display-azure-imagery/.codesandbox/tasks.json b/samples/maps/geo-map/display-azure-imagery/.codesandbox/tasks.json new file mode 100644 index 000000000..8d92a54cd --- /dev/null +++ b/samples/maps/geo-map/display-azure-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-azure-imagery/.stackblitzrc b/samples/maps/geo-map/display-azure-imagery/.stackblitzrc new file mode 100644 index 000000000..dd44ea00f --- /dev/null +++ b/samples/maps/geo-map/display-azure-imagery/.stackblitzrc @@ -0,0 +1 @@ +{"installDependencies":true, "startCommand":"npm start"} \ No newline at end of file diff --git a/samples/maps/geo-map/display-azure-imagery/ReadMe.md b/samples/maps/geo-map/display-azure-imagery/ReadMe.md new file mode 100644 index 000000000..c7048c3b3 --- /dev/null +++ b/samples/maps/geo-map/display-azure-imagery/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Display Bing 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-bing-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/samples/maps/geo-map/display-azure-imagery/angular.json b/samples/maps/geo-map/display-azure-imagery/angular.json new file mode 100644 index 000000000..0c2c173c9 --- /dev/null +++ b/samples/maps/geo-map/display-azure-imagery/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/maps/geo-map/display-azure-imagery/package.json b/samples/maps/geo-map/display-azure-imagery/package.json new file mode 100644 index 000000000..9b34b9d35 --- /dev/null +++ b/samples/maps/geo-map/display-azure-imagery/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": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.1", + "@angular/core": "20.0.1", + "@angular/forms": "20.0.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": "20.0.13", + "@infragistics/igniteui-angular-charts": "25.1.65", + "@infragistics/igniteui-angular-core": "25.1.65", + "@infragistics/igniteui-angular-maps": "25.1.65", + "intl": "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-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", + "jasmine-spec-reporter": "~4.2.1", + "sass.js": "0.11.1", + "ts-node": "10.9.1", + "tslint": "~6.1.3", + "typescript": "5.8.3" + } +} diff --git a/samples/maps/geo-map/display-azure-imagery/src/MapUtility.ts b/samples/maps/geo-map/display-azure-imagery/src/MapUtility.ts new file mode 100644 index 000000000..ec95ca50a --- /dev/null +++ b/samples/maps/geo-map/display-azure-imagery/src/MapUtility.ts @@ -0,0 +1,108 @@ +import { IgxGeographicMapComponent } from "igniteui-angular-maps"; + +export enum MapRegion { + Caribbean = "Caribbean", + UnitedStates = "United States", + UnitedKingdom = "United Kingdom", + European = "European", + SouthAfrica = "South Africa", + Poland = "Poland", + Australia = "Australia", + Japan = "Japan", + Uruguay = "Uruguay", + Egypt = "Egypt", + Hawaii = "Hawaii" +} + +export class MapUtility { + + public static navigateTo(geoMap: IgxGeographicMapComponent, name: MapRegion) { + + const geoRect = this.getRegions()[name]; + geoMap.zoomToGeographic(geoRect); + } + + public static toPixel(num: number): string { + const s = Math.abs(num).toFixed(0); + return s + " px"; + } + + public static toLng(num: number): string { + num = this.clamp(num, -180, 180); + + let s = Math.abs(num).toFixed(1); + if (num < 100) { + s = " " + s; + } + + if (num > 0) { + return s + "°E"; + } else { + return s + "°W"; + } + } + + public static toLat(num: number): string { + num = this.clamp(num, -90, 90); + + let s = Math.abs(num).toFixed(1); + if (num < 100) { + s = " " + s; + } + + if (num > 0) { + return s + "°N"; + } else { + return s + "°S"; + } + } + + public static clamp(num: number, min: number, max: number): number { + return Math.max(min, Math.min(max, num)); + } + + public static pad(num: number, places?: number): string { + places = places || 20; + let s = num.toFixed(1).toString(); + while (s.length < places) { s = " " + s; } + return s; + } + + public static getBingKey(): string { + return "Avlo7qsH1zZZI0XNpTwZ4XwvUJmCbd-mczMeUXVAW9kYYOKdmBIVRe8aoO02Xctq"; + } + + public static getRegions(): any { + // create regions only once + if (this.regions === undefined) { + this.createRegions(); + } + return this.regions; + } + + private static regions: any; + + private static addRegion(name: string, geoRect: any) { + geoRect.name = name; + geoRect.longitude = geoRect.left + (geoRect.width / 2); + geoRect.latitude = geoRect.top + (geoRect.height / 2); + + this.regions[name] = geoRect; + } + + private static createRegions() { + this.regions = {}; + this.addRegion(MapRegion.Australia, { left: 81.5, top: -52.0, width: 98.0, height: 56.0 }); + this.addRegion(MapRegion.Caribbean, { left: -92.9, top: 5.4, width: 35.1, height: 25.8 }); + this.addRegion(MapRegion.Egypt, { left: 19.3, top: 19.9, width: 19.3, height: 13.4 }); + this.addRegion(MapRegion.European, { left: -36.0, top: 31.0, width: 98.0, height: 38.0 }); + this.addRegion(MapRegion.Japan, { left: 122.7, top: 29.4, width: 27.5, height: 17.0 }); + this.addRegion(MapRegion.Hawaii, { left: -161.2, top: 18.5, width: 6.6, height: 4.8 }); + this.addRegion(MapRegion.Poland, { left: 13.0, top: 48.0, width: 11.0, height: 9.0 }); + this.addRegion(MapRegion.SouthAfrica, { left: 9.0, top: -37.1, width: 26.0, height: 17.8 }); + this.addRegion(MapRegion.UnitedStates, { left: -134.5, top: 16.0, width: 70.0, height: 37.0 }); + this.addRegion(MapRegion.UnitedKingdom, { left: -15.0, top: 49.5, width: 22.5, height: 8.0 }); + this.addRegion(MapRegion.Uruguay, { left: -62.1, top: -35.7, width: 10.6, height: 7.0 }); + } + +} diff --git a/samples/maps/geo-map/display-azure-imagery/src/_app-layout.scss b/samples/maps/geo-map/display-azure-imagery/src/_app-layout.scss new file mode 100644 index 000000000..b5329f55b --- /dev/null +++ b/samples/maps/geo-map/display-azure-imagery/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/samples/maps/geo-map/display-azure-imagery/src/_variables.scss b/samples/maps/geo-map/display-azure-imagery/src/_variables.scss new file mode 100644 index 000000000..cf9f1048b --- /dev/null +++ b/samples/maps/geo-map/display-azure-imagery/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/samples/maps/geo-map/display-azure-imagery/src/app.component.html b/samples/maps/geo-map/display-azure-imagery/src/app.component.html new file mode 100644 index 000000000..9be853954 --- /dev/null +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.html @@ -0,0 +1,35 @@ + + + + +
+ vpn_key +
Azure Map Authentication
+
+
+ +
+ + + + +
+ +
+ + +
+
+ +
+ + + + +
\ No newline at end of file diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.scss b/samples/maps/geo-map/display-azure-imagery/src/app.component.scss new file mode 100644 index 000000000..269aa8c41 --- /dev/null +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.scss @@ -0,0 +1,18 @@ +:host { + display: inline; + padding: 16px; +} + +.keyInForm { + igx-input-group + igx-input-group { + margin-top: 24px; + } +} + +.dialog-container{ + display: flex; + + igx-icon { + margin-right: 8px; + } +} diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.ts b/samples/maps/geo-map/display-azure-imagery/src/app.component.ts new file mode 100644 index 000000000..731a0fc99 --- /dev/null +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.ts @@ -0,0 +1,49 @@ +import { AfterViewInit, Component, ViewChild } from "@angular/core"; +import { AzureMapsImageryStyle } from "igniteui-angular-maps"; +import { IgxAzureMapsMapImagery } from "igniteui-angular-maps"; +import { IgxGeographicMapComponent } from "igniteui-angular-maps"; +import { MapUtility } from "./MapUtility"; +import { IgxDialogComponent } from "igniteui-angular"; + +@Component({ + standalone: false, + selector: "app-root", + styleUrls: ["./app.component.scss"], + templateUrl: "./app.component.html" +}) + +export class AppComponent implements AfterViewInit { + + @ViewChild("map", { static: true }) + public map: IgxGeographicMapComponent; + public map2: IgxGeographicMapComponent; + public apiKey: string; + public form!: IgxDialogComponent; + + public applyApiKey(key: string) { + if (!key) return; + this.apiKey = key; + + const azureImagery = new IgxAzureMapsMapImagery(); + azureImagery.apiKey = key; + azureImagery.imageryStyle = AzureMapsImageryStyle.Imagery; + this.map.backgroundContent = azureImagery; + + const azureImagery2 = new IgxAzureMapsMapImagery(); + azureImagery2.apiKey = key; + azureImagery2.imageryStyle = AzureMapsImageryStyle.Road; + this.map2.backgroundContent = azureImagery2; + } + + constructor() { + } + + public ngAfterViewInit(): void { + setTimeout(() => { + if (this.form) { + this.form.open(); + } + }); + } + +} diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.module.ts b/samples/maps/geo-map/display-azure-imagery/src/app.module.ts new file mode 100644 index 000000000..4417feab4 --- /dev/null +++ b/samples/maps/geo-map/display-azure-imagery/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 { IgxAzureMapsMapImageryModule, IgxGeographicMapModule } from "igniteui-angular-maps"; +import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; +import { IgxDialogModule, IgxIconModule, IgxInputGroupModule } from "igniteui-angular"; + + +@NgModule({ + bootstrap: [AppComponent], + declarations: [ + AppComponent +], + imports: [ + BrowserModule, + BrowserAnimationsModule, + CommonModule, + FormsModule, + IgxGeographicMapModule, + IgxAzureMapsMapImageryModule, + IgxDataChartInteractivityModule, + IgxDialogModule, + IgxInputGroupModule, + IgxIconModule +], + providers: [], + schemas: [] +}) +export class AppModule {} diff --git a/samples/maps/geo-map/display-azure-imagery/src/environments/environment.prod.ts b/samples/maps/geo-map/display-azure-imagery/src/environments/environment.prod.ts new file mode 100644 index 000000000..3612073bc --- /dev/null +++ b/samples/maps/geo-map/display-azure-imagery/src/environments/environment.prod.ts @@ -0,0 +1,3 @@ +export const environment = { + production: true +}; diff --git a/samples/maps/geo-map/display-azure-imagery/src/environments/environment.ts b/samples/maps/geo-map/display-azure-imagery/src/environments/environment.ts new file mode 100644 index 000000000..7b4f817ad --- /dev/null +++ b/samples/maps/geo-map/display-azure-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/samples/maps/geo-map/display-azure-imagery/src/index.html b/samples/maps/geo-map/display-azure-imagery/src/index.html new file mode 100644 index 000000000..67a35017e --- /dev/null +++ b/samples/maps/geo-map/display-azure-imagery/src/index.html @@ -0,0 +1,22 @@ + + + + + + IgniteUI for Angular | Example | infragistics + + + + + + + + + + + + + + + + diff --git a/samples/maps/geo-map/display-azure-imagery/src/main.ts b/samples/maps/geo-map/display-azure-imagery/src/main.ts new file mode 100644 index 000000000..ec9adcd4a --- /dev/null +++ b/samples/maps/geo-map/display-azure-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/samples/maps/geo-map/display-azure-imagery/src/polyfills.ts b/samples/maps/geo-map/display-azure-imagery/src/polyfills.ts new file mode 100644 index 000000000..d583cff9c --- /dev/null +++ b/samples/maps/geo-map/display-azure-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/samples/maps/geo-map/display-azure-imagery/src/styles.scss b/samples/maps/geo-map/display-azure-imagery/src/styles.scss new file mode 100644 index 000000000..0dc0c0019 --- /dev/null +++ b/samples/maps/geo-map/display-azure-imagery/src/styles.scss @@ -0,0 +1,54 @@ +@use 'igniteui-angular/theming' as *; +@use 'variables' as *; +@use 'app-layout'; + + +// Specifies large size for all components to match the previous defaults +// This may not be needed for your project. Please consult https://www.infragistics.com/products/ignite-ui-angular/angular/components/general/update-guide for more details. +:root { + --ig-size: var(--ig-size-large); +} + +/* 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/samples/maps/geo-map/display-azure-imagery/src/typings.d.ts b/samples/maps/geo-map/display-azure-imagery/src/typings.d.ts new file mode 100644 index 000000000..ef5c7bd62 --- /dev/null +++ b/samples/maps/geo-map/display-azure-imagery/src/typings.d.ts @@ -0,0 +1,5 @@ +/* SystemJS module definition */ +declare var module: NodeModule; +interface NodeModule { + id: string; +} diff --git a/samples/maps/geo-map/display-azure-imagery/tsconfig.app.json b/samples/maps/geo-map/display-azure-imagery/tsconfig.app.json new file mode 100644 index 000000000..ff396d4ce --- /dev/null +++ b/samples/maps/geo-map/display-azure-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-azure-imagery/tsconfig.json b/samples/maps/geo-map/display-azure-imagery/tsconfig.json new file mode 100644 index 000000000..22d546ab3 --- /dev/null +++ b/samples/maps/geo-map/display-azure-imagery/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 From 267fb3a879595d136bf5a9723a034e4b2b4e6823 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Fri, 5 Sep 2025 10:11:47 -0400 Subject: [PATCH 161/183] Update app.component.ts --- samples/maps/geo-map/display-azure-imagery/src/app.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.ts b/samples/maps/geo-map/display-azure-imagery/src/app.component.ts index 731a0fc99..118b9daa3 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.component.ts +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.ts @@ -16,6 +16,7 @@ export class AppComponent implements AfterViewInit { @ViewChild("map", { static: true }) public map: IgxGeographicMapComponent; + @ViewChild("map2", { static: true }) public map2: IgxGeographicMapComponent; public apiKey: string; public form!: IgxDialogComponent; From 93f6c0edf5fe4556a671bbd653db6114592ec346 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Wed, 10 Sep 2025 10:27:58 -0400 Subject: [PATCH 162/183] mdd-update-sept-beta mdd-update-sept-beta --- browser/package.json | 4 +- .../data-chart/trendline-layer/ReadMe.md | 58 ++++++++++++++++++ .../maps/geo-map/display-azure-imagery.zip | Bin 0 -> 128763 bytes .../geo-map/display-azure-imagery/ReadMe.md | 8 +-- .../display-azure-imagery/package.json | 8 +-- 5 files changed, 68 insertions(+), 10 deletions(-) create mode 100644 samples/charts/data-chart/trendline-layer/ReadMe.md create mode 100644 samples/maps/geo-map/display-azure-imagery.zip diff --git a/browser/package.json b/browser/package.json index 8d78ca665..a72f55897 100644 --- a/browser/package.json +++ b/browser/package.json @@ -36,7 +36,7 @@ "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "ajv": "8.6.2", - "angular-in-memory-web-api": "0.9.0", + "angular-in-memory-web-api": "^0.20.0", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", @@ -85,7 +85,7 @@ "gulp-flatten": "0.4.0", "jasmine-core": "5.1.1", "jasmine-spec-reporter": "~4.2.1", - "karma": "6.3.7", + "karma": "^6.4.4", "karma-chrome-launcher": "~3.1.0", "karma-cli": "~2.0.0", "karma-coverage-istanbul-reporter": "2.1.1", diff --git a/samples/charts/data-chart/trendline-layer/ReadMe.md b/samples/charts/data-chart/trendline-layer/ReadMe.md new file mode 100644 index 000000000..e4b7de978 --- /dev/null +++ b/samples/charts/data-chart/trendline-layer/ReadMe.md @@ -0,0 +1,58 @@ + + + +This folder contains Angular application with example of Trendline 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/trendline-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/maps/geo-map/display-azure-imagery.zip b/samples/maps/geo-map/display-azure-imagery.zip new file mode 100644 index 0000000000000000000000000000000000000000..8c7136433ba2e9598c2bbf3a4726f2dee1b7acff GIT binary patch literal 128763 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�j!%7twNV=h1Gm7#TY=n@5(KO7pC0R`2SpyuvtZ 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 literal 0 HcmV?d00001 diff --git a/samples/maps/geo-map/display-azure-imagery/ReadMe.md b/samples/maps/geo-map/display-azure-imagery/ReadMe.md index c7048c3b3..1b83fb80b 100644 --- a/samples/maps/geo-map/display-azure-imagery/ReadMe.md +++ b/samples/maps/geo-map/display-azure-imagery/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains Angular application with example of Display Bing Imagery feature using [GeoMap](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started.html) component. +This folder contains Angular application with example of Display Azure Imagery feature using [GeoMap](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 Display Bing Imagery fe 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/maps/geo-map/display-bing-imagery +cd ../samples/maps/geo-map/display-azure-imagery ``` diff --git a/samples/maps/geo-map/display-azure-imagery/package.json b/samples/maps/geo-map/display-azure-imagery/package.json index 9b34b9d35..d7bce0225 100644 --- a/samples/maps/geo-map/display-azure-imagery/package.json +++ b/samples/maps/geo-map/display-azure-imagery/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "20.0.13", - "@infragistics/igniteui-angular-charts": "25.1.65", - "@infragistics/igniteui-angular-core": "25.1.65", - "@infragistics/igniteui-angular-maps": "25.1.65", + "igniteui-angular": "20.0.0-rc.0", + "igniteui-angular-charts": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-maps": "20.0.1-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", From 163b23d3e81d7d6987a6a772223150c1e67db44e Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Wed, 10 Sep 2025 10:32:03 -0400 Subject: [PATCH 163/183] Update package.json --- browser/package.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/browser/package.json b/browser/package.json index a72f55897..67d3ca914 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-dashboards": "20.0.1-beta.0", - "igniteui-angular-data-grids": "20.0.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-angular-maps": "20.0.1-beta.0", - "igniteui-angular-spreadsheet": "20.0.1-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.0", + "igniteui-angular-core": "20.0.2-beta.0", + "igniteui-angular-dashboards": "20.0.2-beta.0", + "igniteui-angular-data-grids": "20.0.2-beta.0", + "igniteui-angular-excel": "20.0.2-beta.0", + "igniteui-angular-gauges": "20.0.2-beta.0", + "igniteui-angular-inputs": "20.0.2-beta.0", + "igniteui-angular-layouts": "20.0.2-beta.0", + "igniteui-angular-maps": "20.0.2-beta.0", + "igniteui-angular-spreadsheet": "20.0.2-beta.0", + "igniteui-angular-spreadsheet-chart-adapter": "20.0.2-beta.0", "igniteui-theming": "18.1.0", "igniteui-webcomponents": "6.1.0", "immediate": "3.2.3", From ea7cb6075e10684687da75b3a0e0b243670b0f48 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Wed, 10 Sep 2025 10:32:33 -0400 Subject: [PATCH 164/183] Update browser-info.json --- browser/src/browser-info.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index 60171756f..25834213b 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.1-beta.0","name":"igniteui-angular-charts"}, -{"ver":"20.0.1-beta.0","name":"igniteui-angular-core"}, -{"ver":"20.0.1-beta.0","name":"igniteui-angular-dashboards"}, -{"ver":"20.0.1-beta.0","name":"igniteui-angular-data-grids"}, -{"ver":"20.0.1-beta.0","name":"igniteui-angular-excel"}, -{"ver":"20.0.1-beta.0","name":"igniteui-angular-gauges"}, -{"ver":"20.0.1-beta.0","name":"igniteui-angular-inputs"}, -{"ver":"20.0.1-beta.0","name":"igniteui-angular-layouts"}, -{"ver":"20.0.1-beta.0","name":"igniteui-angular-maps"}, -{"ver":"20.0.1-beta.0","name":"igniteui-angular-spreadsheet"}, -{"ver":"20.0.1-beta.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"20.0.2-beta.0","name":"igniteui-angular-charts"}, +{"ver":"20.0.2-beta.0","name":"igniteui-angular-core"}, +{"ver":"20.0.2-beta.0","name":"igniteui-angular-dashboards"}, +{"ver":"20.0.2-beta.0","name":"igniteui-angular-data-grids"}, +{"ver":"20.0.2-beta.0","name":"igniteui-angular-excel"}, +{"ver":"20.0.2-beta.0","name":"igniteui-angular-gauges"}, +{"ver":"20.0.2-beta.0","name":"igniteui-angular-inputs"}, +{"ver":"20.0.2-beta.0","name":"igniteui-angular-layouts"}, +{"ver":"20.0.2-beta.0","name":"igniteui-angular-maps"}, +{"ver":"20.0.2-beta.0","name":"igniteui-angular-spreadsheet"}, +{"ver":"20.0.2-beta.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, {"ver":"18.1.0","name":"igniteui-theming"}, {"ver":"6.1.0","name":"igniteui-webcomponents"} ] \ No newline at end of file From 986072b4dd413fabc59ab32b53a6061a04d9ca96 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Wed, 10 Sep 2025 11:50:08 -0400 Subject: [PATCH 165/183] update update --- .../display-azure-imagery/package.json | 6 +- .../src/_app-layout.scss | 84 ------------------- .../display-azure-imagery/src/_variables.scss | 19 ----- .../src/app.component.html | 6 +- .../display-azure-imagery/src/styles.scss | 17 +++- 5 files changed, 22 insertions(+), 110 deletions(-) delete mode 100644 samples/maps/geo-map/display-azure-imagery/src/_app-layout.scss delete mode 100644 samples/maps/geo-map/display-azure-imagery/src/_variables.scss diff --git a/samples/maps/geo-map/display-azure-imagery/package.json b/samples/maps/geo-map/display-azure-imagery/package.json index d7bce0225..44fd9a185 100644 --- a/samples/maps/geo-map/display-azure-imagery/package.json +++ b/samples/maps/geo-map/display-azure-imagery/package.json @@ -19,9 +19,9 @@ "core-js": "3.21.0", "hammerjs": "2.0.8", "igniteui-angular": "20.0.0-rc.0", - "igniteui-angular-charts": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-maps": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.0", + "igniteui-angular-core": "20.0.2-beta.0", + "igniteui-angular-maps": "20.0.2-beta.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-azure-imagery/src/_app-layout.scss b/samples/maps/geo-map/display-azure-imagery/src/_app-layout.scss deleted file mode 100644 index b5329f55b..000000000 --- a/samples/maps/geo-map/display-azure-imagery/src/_app-layout.scss +++ /dev/null @@ -1,84 +0,0 @@ -.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/samples/maps/geo-map/display-azure-imagery/src/_variables.scss b/samples/maps/geo-map/display-azure-imagery/src/_variables.scss deleted file mode 100644 index cf9f1048b..000000000 --- a/samples/maps/geo-map/display-azure-imagery/src/_variables.scss +++ /dev/null @@ -1,19 +0,0 @@ -@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/samples/maps/geo-map/display-azure-imagery/src/app.component.html b/samples/maps/geo-map/display-azure-imagery/src/app.component.html index 9be853954..d4459e325 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.component.html +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.html @@ -1,5 +1,7 @@ - - +
+ +
+
diff --git a/samples/maps/geo-map/display-azure-imagery/src/styles.scss b/samples/maps/geo-map/display-azure-imagery/src/styles.scss index 0dc0c0019..5fe513cfa 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/styles.scss +++ b/samples/maps/geo-map/display-azure-imagery/src/styles.scss @@ -1,7 +1,20 @@ @use 'igniteui-angular/theming' as *; -@use 'variables' as *; -@use 'app-layout'; +$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); // Specifies large size for all components to match the previous defaults // This may not be needed for your project. Please consult https://www.infragistics.com/products/ignite-ui-angular/angular/components/general/update-guide for more details. From 36fe0cd5cb6833bee4415492a5d974229bc707be Mon Sep 17 00:00:00 2001 From: Borislav Traykov Date: Sat, 20 Sep 2025 04:19:07 +0300 Subject: [PATCH 166/183] Avoid the need for legacy peer deps (#354) * bump angular-in-memory-web-api Not sure where exactly it's being used, but it's what causing the legacy-peer-deps cruch * bye, bye legacy-peer-deps * remove --legacy-peer-deps from the README --- README.md | 10 +++++----- azure-pipelines/build-pipeline.yml | 2 +- browser/package.json | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 75467b4e4..04616c171 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ git clone https://github.com/IgniteUI/igniteui-angular-examples.git ``` ./samples/charts/category-chart/axis-options/ ``` -- type `npm install --legacy-peer-deps` command in terminal window +- type `npm install` command in terminal window - type `npm run start` command in terminal window @@ -86,7 +86,7 @@ C:\GitHub\igniteui-angular-examples\ - select **View** - **Terminal** menu item -- type `npm install --legacy-peer-deps` command in terminal window +- type `npm install` 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 @@ -125,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 --legacy-peer-deps` command in terminal window +- type `npm install` command in terminal window - type `npm run start` command in terminal window @@ -183,6 +183,6 @@ NOTE Do NOT find replace version of packages in package.json files. - open terminal window - run `cd browser` command - run the `gulp updateIG` command -- run `npm install --legacy-peer-deps` command +- run `npm install` command - 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 +- 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. diff --git a/azure-pipelines/build-pipeline.yml b/azure-pipelines/build-pipeline.yml index 9eee5605a..0694f1154 100644 --- a/azure-pipelines/build-pipeline.yml +++ b/azure-pipelines/build-pipeline.yml @@ -41,7 +41,7 @@ jobs: inputs: command: 'custom' workingDir: '$(Build.SourcesDirectory)\browser' - customCommand: 'install --legacy-peer-deps' + customCommand: 'install' - task: PowerShell@2 displayName: 'Apply very special configuration' diff --git a/browser/package.json b/browser/package.json index 8d78ca665..ca2400098 100644 --- a/browser/package.json +++ b/browser/package.json @@ -36,7 +36,7 @@ "@types/file-saver": "2.0.5", "@types/hammerjs": "2.0.40", "ajv": "8.6.2", - "angular-in-memory-web-api": "0.9.0", + "angular-in-memory-web-api": "0.20.0", "classlist.js": "1.1.20150312", "core-js": "3.21.0", "file-saver": "2.0.5", From 5b5f8bebe235a1e4408a10b6d0576dd619aa83fa Mon Sep 17 00:00:00 2001 From: Borislav Traykov Date: Sat, 20 Sep 2025 04:20:42 +0300 Subject: [PATCH 167/183] Add optional - turned on by default - post-build cleanup (#154) --- azure-pipelines/build-pipeline.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/azure-pipelines/build-pipeline.yml b/azure-pipelines/build-pipeline.yml index 0694f1154..1f5d5119d 100644 --- a/azure-pipelines/build-pipeline.yml +++ b/azure-pipelines/build-pipeline.yml @@ -2,7 +2,6 @@ trigger: branches: include: - 'vnext' - - 'btraykov-azure-pipeline' - 'master' # This pipeline is meant to run on changes pushed to the vnext branch only. @@ -16,6 +15,10 @@ parameters: displayName: 'Get verbose output from steps - where configurable' type: boolean default: false +- name: shouldCleanPostExectuion + displayName: 'Clean all pipeline dirs after the pipeline finishes?' + type: boolean + default: true pool: name: BuildAgentOnPrem @@ -76,3 +79,6 @@ jobs: # 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) + + - ${{ if eq(parameters.shouldCleanPostExectuion, true) }}: + - task: PostBuildCleanup@4 From a240cfb8b2c701160eff706bec06dd465e07cb54 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Mon, 22 Sep 2025 10:41:27 -0400 Subject: [PATCH 168/183] update update --- samples/maps/geo-map/display-azure-imagery.zip | Bin 128763 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 samples/maps/geo-map/display-azure-imagery.zip diff --git a/samples/maps/geo-map/display-azure-imagery.zip b/samples/maps/geo-map/display-azure-imagery.zip deleted file mode 100644 index 8c7136433ba2e9598c2bbf3a4726f2dee1b7acff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 128763 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�j!%7twNV=h1Gm7#TY=n@5(KO7pC0R`2SpyuvtZ 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 From 1efc8b26c7a837a5359e059280d484651f55c1c9 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Mon, 22 Sep 2025 14:31:41 -0400 Subject: [PATCH 169/183] mdd-20.0.2-beta.3 (#353) * 20.0.2-beta.0 20.0.2-beta.0 * mdd-update mdd-update * mdd-update mdd-update * mdd-update-versions mdd-update-versions * mdd-update mdd-update * Update app.component.html * Update app.component.html --- browser/.browserslistrc | 10 ++--- browser/package.json | 28 ++++++------- browser/scripts/browser.js | 30 +++++++------- browser/src/assets/azure_road.png | Bin 0 -> 295578 bytes browser/src/assets/azure_satellite.png | Bin 0 -> 922581 bytes browser/src/assets/samples/shared.json | 2 +- browser/src/browser-info.json | 28 ++++++------- browser/src/styles.scss | 22 +++++++++++ .../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 ++++---- .../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 | 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-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 | 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 ++--- .../data-chart/trendline-layer/package.json | 4 +- .../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 | 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 | 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 +-- .../display-azure-imagery/package.json | 8 ++-- .../src/app.component.html | 21 ++++++---- .../src/app.component.scss | 8 ++++ .../src/app.component.ts | 37 ++++++++++++------ .../display-azure-imagery/src/app.module.ts | 4 +- .../src/assets/azure_road.png | Bin 0 -> 295578 bytes .../src/assets/azure_satellite.png | Bin 0 -> 922581 bytes .../display-azure-imagery/src/styles.scss | 2 + .../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 +-- 389 files changed, 1114 insertions(+), 1068 deletions(-) create mode 100644 browser/src/assets/azure_road.png create mode 100644 browser/src/assets/azure_satellite.png create mode 100644 samples/maps/geo-map/display-azure-imagery/src/assets/azure_road.png create mode 100644 samples/maps/geo-map/display-azure-imagery/src/assets/azure_satellite.png diff --git a/browser/.browserslistrc b/browser/.browserslistrc index f7f41b132..278dd87ed 100644 --- a/browser/.browserslistrc +++ b/browser/.browserslistrc @@ -5,9 +5,7 @@ # You can see what browsers were selected by your queries by running: # npx browserslist -Firefox ESR -not > 0.5% -not last 2 versions -not dead -not IE 9-11 -Safari >=15 +last 2 Chrome versions +last 2 Firefox versions +last 2 Edge versions +Safari >= 16 diff --git a/browser/package.json b/browser/package.json index ca2400098..e947862e0 100644 --- a/browser/package.json +++ b/browser/package.json @@ -41,20 +41,20 @@ "core-js": "3.21.0", "file-saver": "2.0.5", "hammerjs": "2.0.8", - "igniteui-angular": "20.0.0-rc.0", - "igniteui-angular-charts": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-dashboards": "20.0.1-beta.0", - "igniteui-angular-data-grids": "20.0.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-angular-maps": "20.0.1-beta.0", - "igniteui-angular-spreadsheet": "20.0.1-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "20.0.1-beta.0", - "igniteui-theming": "18.1.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular": "20.1.0-rc.2", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-dashboards": "20.0.2-beta.3", + "igniteui-angular-data-grids": "20.0.2-beta.3", + "igniteui-angular-excel": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-spreadsheet": "20.0.2-beta.3", + "igniteui-angular-spreadsheet-chart-adapter": "20.0.2-beta.3", + "igniteui-theming": "20.0.0", + "igniteui-webcomponents": "6.3.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 ddf2e7d5e..c034ff594 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1106,22 +1106,22 @@ function updateIG(cb) { // { version: "14.1.0", name: "igniteui-angular-charts" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { version: "20.0.1-beta.0", name: "igniteui-angular-core" }, - { version: "20.0.1-beta.0", name: "igniteui-angular-charts" }, - { version: "20.0.1-beta.0", name: "igniteui-angular-excel" }, - { version: "20.0.1-beta.0", name: "igniteui-angular-gauges" }, - { version: "20.0.1-beta.0", name: "igniteui-angular-data-grids" }, - { version: "20.0.1-beta.0", name: "igniteui-angular-inputs" }, - { version: "20.0.1-beta.0", name: "igniteui-angular-layouts" }, - { version: "20.0.1-beta.0", name: "igniteui-angular-maps" }, - { version: "20.0.1-beta.0", name: "igniteui-angular-spreadsheet-chart-adapter" }, - { version: "20.0.1-beta.0", name: "igniteui-angular-spreadsheet" }, - { version: "20.0.1-beta.0", name: "igniteui-angular-datasources" }, - { version: "20.0.1-beta.0", name: "igniteui-angular-dashboards" }, + { version: "20.0.2-beta.3", name: "igniteui-angular-core" }, + { version: "20.0.2-beta.3", name: "igniteui-angular-charts" }, + { version: "20.0.2-beta.3", name: "igniteui-angular-excel" }, + { version: "20.0.2-beta.3", name: "igniteui-angular-gauges" }, + { version: "20.0.2-beta.3", name: "igniteui-angular-data-grids" }, + { version: "20.0.2-beta.3", name: "igniteui-angular-inputs" }, + { version: "20.0.2-beta.3", name: "igniteui-angular-layouts" }, + { version: "20.0.2-beta.3", name: "igniteui-angular-maps" }, + { version: "20.0.2-beta.3", name: "igniteui-angular-spreadsheet-chart-adapter" }, + { version: "20.0.2-beta.3", name: "igniteui-angular-spreadsheet" }, + { version: "20.0.2-beta.3", name: "igniteui-angular-datasources" }, + { version: "20.0.2-beta.3", name: "igniteui-angular-dashboards" }, // these IG packages are sometimes updated: - { version: "6.1.0" , name: "igniteui-webcomponents" }, - { version: "18.1.0", name: "igniteui-theming" }, - { version: "20.0.0-rc.0", name: "igniteui-angular" }, + { version: "6.3.1" , name: "igniteui-webcomponents" }, + { version: "20.0.0", name: "igniteui-theming" }, + { version: "20.1.0-rc.2", name: "igniteui-angular" }, { version: "20.0.1", name: "@angular/animations" }, { version: "20.0.1", name: "@angular/common" }, { version: "20.0.1", name: "@angular/compiler" }, diff --git a/browser/src/assets/azure_road.png b/browser/src/assets/azure_road.png new file mode 100644 index 0000000000000000000000000000000000000000..8c349123368a614fe122cd5ee8d67fd02266b045 GIT binary patch literal 295578 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%0ASg_( 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 -9KBk+0@zuRG`ka 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 oPL_AMM>rhg9 zAI*PGNCtg=ccPi%=MS@k7*|+WANBQ|oV_DdQ+oq=spXJzCJJgDhOJO&yT*+NcCuPG z56(j)&eRAah;tpq^wf#)9DH0l!GYD;&8@?dhyIdmZr8Tgt7ZEiRhw_N!8qg>URX9L z!jeVFk-6Q*GL;3zzwDu%GM`K8HYG9Tj50j>77tNRKj!@^b8W$h@yN!*#Mc-2p3p=6 zNB&E9r_%^_a!`9{lS3I<#7$_{(*atX#Kr=`A?qvT9>X-jQINS=@p}p$F7GCWb*Mwe zja?1JLMKB3`6m*VU^e2`kYgnm=}2UTf*?s25-F7;ohSE!G3Iro6s;`_b1wt7Rh4sM z)D_~-c{@j_*l|&|6$w}eel|95J{~Dyd$3t+)x(Pi;!1GYg20sLXlFleauRQXZc7<3 zhm)1e!FQ#WNbuw0l?vF!Od|JMh^T ze2AQB=lJeb_ZPoytdRxe9o@9gOXaI~$9{&tK7v{SQL3ti)8XJ<(;;Kd3Uo+?ZHBm9q0e%6+c#_+zkMId2Jk74Zn!@7=*7xN8aOd(JkZ4w=U7dsW6( zlnCV-+BQ*Aj;Vyps_m?jNNIQ9%yUNM60brA$@1Il#m*s=%+^_(pGKYz^`ATl^HyTG zkYuZ#ctr%h#0>a;rIZvu0(Y+vwQfg=ROCr5CPnQ8a1>JghAXglZAl%8VW0H_JFP#Ov*LlD1-ZLFd)!!_ zBs4bFUBc8VBfk{2q#)Z$cR)&T2hADAb2u=O_UQ3WHGQrbWkV@_nkTBe>3}XbCxd$X zIf4M9+e?4yXc`1F5U8q&S5t~s27!gGt`}x77~%T21}hzs8(#nW`T$Mj7D^)tnRZDMRCHZg=eo5A3ALSQH$;F9cSkzgkqKQ(AgNX9q*unMG zH0eDUl3=M2eC3`ETRJgj`YL$51l<#ev;ZLdFjs(z@iSel8&*;ZG0g zz$+H?wB~n>_E_k5Wq;kTnRU88AC{i=;5k~iF8R}nB(;$Nxw}xZf_myX{nlHy=J%t4 z5sZ_4tE*~I84SzzzVmLp{FWGeXR7}`VA`v(=%|mfk8sW({5RVM$;e(T2 z7No@(oqD1sEXXT=6CtC#zih{yCC7Y)3tLI7os{*=8|wIx-fYW`b1L-T!tUwA)oxp& zz5Gqjr1I9^n~sL|w$gWm2YwqZ1_5)Zho^BNTjE%u-*`b%Q2p(y3Fh8=>;PvBsdwh_ zfW0M67fX!_ww@dmF?79K{l$zDjNK=pGpI?<0%>Zq7=UYg*YwVo#qI4k&@PZcD`z}m zE3wZS)qpj#F!o_xw9JlVuXkc05ez)y=%(u2sml>~7tJNzcuEe#_%3PxPu5-hXogSdx^S!=XkV8>7v616KseTK_8K`k0kchFMn>oDNg&Y4$oQXx_M1j>26Ke-^9!xb_wc`d z{o3ibo#dx-agTh>rG7M&b8;zaR~x4AI4*X}64b?7Q!9oChxO2YfWdGd3G;S2=D(Pn zt+?6yQ2`a^@6qYIxTxD%)me)anDdynK@ng}H{P1oPH?vi40(RK6^vb>yYuM#)%26w zigiWRst5YVPmAOVCs<~0(O$!*`Tq>Oh zdn~ngN0rIW5-^3hJg9}|Pruc*$LuR88`8y*9y#Cqv8R3CWPV?$roi&2(+Bsf??2lf zli!XL;6aZ_cW0;iCe~_V5-+0MwZ3c0QwZjI=Tn--a0T`rn{zAjwuh|(x24r?Zlpx9G7Ev-T}LNNr|Z-Njw9mBJD&K zU9{{(0%6f&u;A;a!FqVlTDXX^%YN0}RF`t=aq98)Gm8F?D3}`MW`ZN21)|q7!SLf3 zCwfKo&?wRzbJl22vC(M4KB<3w3ypBdsVbehoMUq`_kgk3i}ErQjG*iwCL9D&97y0v zNo;oP;B}>;ac&Y$AId;K(7nU5ihZEbpnum#7*Bn~zfjeR_FO@nGZ$IBig8xzZveKz z+e9fcN-yKGOSdz1J)?~L66^XVHkJynh5CSfNfx;gOd8IE4{>JOFGIp=(doAlbXYp6 zOa)S~Nvg)v6)lDexe>}*y333k7GZpE;Wm;^+g`q5Vc0I9qNmMLsnAZt2 zh(@8V##beggjhdaMFE3Vn_)r??p0@yf2DxC7_MQMnrA92wF;M8Y@{AV3vd1o4;r&e zB`k|db~dF=P~$Nh_7T`xJ9_SOjbBFKN~^kD{YKQLq<#$~$x6z9wHY`$IfaX=ZPUBY zHvHSdrwtD*YHR%WEVX{~Y}DXnS~JVpOR%sQwSNCCsw6JMT(2r&ewMeqdZ=vdcq+I+ z@d-RiVF9829uxLE5L5}p4=Ao`d}SW$4&L_H>Y~sjKBn@sjCxATrW;4(kUn z{&8#W-rwG2wPo17UWVmhJPT);xGMRRUDQ7j8WDl#d%9(D-;?zaE^=360NM$BI_k@+*Vle!uRga zUNrrPaB_N5 z-jkEae(2i40f>fw>OYI1MOd2Pd1+Ra50?YMUF}4}NCrg{{Z^lmB!f>KNd~?hnj#Nz z@$t0bToz3%-WmIt<05<6n>XU!j}=D_mbl#!J4ZjeyqZud9H7r%*ZfBHq!G=TPVT9&FM)S2n>;Ya0Kn+g+5L_4j1ki|!8 zemut;8C436|H^^*5rcYqhemwVB^~M{z{?UUV}2R&lA; z_7gHfg1K-SXO=9-{@9Od1u0|ql5a%~L84T=Dv!FBv_|>^)$4n=!Oal{oXjUSi3!M?Zhr z0)-oK7zoaTL27A@&($Fx2sahf5VzfKRa~F>JtX-&_9S)74m1tQFSmNjYbWOACX7R9 zWsR#9lCdSn$LfJi=3f?a=3O(6k`>Y{aeK;9<)Km9=B4Dz9T95I3yv}yJA=i=P%rPw zY6vi!0K)?SJI#1V(^?xM0Zx2T(zg4`3A_y0ADkBYt)xnIif zdy&-t$6!gqCFyL3=;`kJxOBs(<+T`TJ=J9e$z-xIe%g*Sf({o!a3yiS_+!<<&^G9z z0hi{)h50gICeC|XOZq<-`~3ndsNP-qO|(0jDpM@0S3z1QNXc^W9PqOAYX5e@k7)d) z>&=E_B}Yb5hp(=<|NSDnlJ2O$Bm8wAJ4!rEPHh`9yKZ}EBB7I7QUEv2qK7FY=9yXz zxG-m)Px6=uq~+j)1|H5}sFIcLew`YEKaQNEo7=*j)PKlb9LRT-E;A@ya@1(^^#Htt z>Zrb*;K~$Np7V^&&0_@5nE`tRCjf-p98kU$* zJ#g@t3YrO$a8sBKS#VF#WzTKl>vz^`%O`*9tv{WwO(uVtEov1Tm#EGZ9g;J)@ljDv zlTKR-J6uBxUrK8S%vYfnDGI%&^Pwf>pDamHo{Y=RwyhI6kdYOs_DcMrf!56=j_L!R z5yFB=lAc(5ihA)oF9%RLBk(T9OIUkEddwBIzx`pSELu!$hIpQBga5`5v)$dywRw=D@if4f+!MHqFAhD0I< zBA4Ql*%>?b?zmQUa?qi_DA5UGP-k+~l&^TsP_l}f$%;-J(5{mBQpd*8+!8$uD}+01 zgvg9(vg#VsvCK>uc$%HU&*}?YCvk(QVR0V4?LpvdJl`Ln$)0u6KWG7-sF(k8dBAZ) zR7mYuBx@1~mn&a>YHw(}`&Z_bx4|hzngcNsHh3o2`HX4URN&B2Yt*!E-CxIWG1Kkt z8Rlsy=j^22UCj*A1t#`yJotGMj%eW(($tpbw{{`01j0Zxh4bY6VAd!dr>9s`^ZfSl zAU{Ve`SvxXjIv13liuqPEJXUd$kz71R~+%ufyOIYfT71ODIP}z98LihtpEb&BZm8u zbsH~wTP;p&BQ^a!sJD<-C;Z2tA4@%f(hlP0Kyz4~0ISu1d`i7z_UT&Jt*I05You$92zwVb6MI>ANc!%S_f-fX6YV8=2IkKlQ*YxBcY#rR^yN$3G0rL+ zhDQ_y4;}v*7Er#{xaPc-$M|Y!;K*UVCG>atn?rszem;I3U-vPVN9Mj+EeAmf^Um61 z^o@@wk#x7?K?Vvkl35MgFTc6dJA2>NfBBW0qY%Dk&pZ7O%J-?IC19?&5k^XFI@p*~ zDo{t$W!GRLoW-4?0M#KI7off^s9~DiMKrk#mEs3t`0 zxf=Hhd(kE1xwey)P9PyVONmB$zmzXoJ2fU&~1v{iEg#&_k`+whHeS_C|g znaG2_E{sd)r^**kPg%`uhK!!JslZF)?R&k3g|O#B2LPM$R>a!+{{}Y>UsGr3}CzgM)l|RuUj&%PU_n$yvyV1_+`Y!C8;z zEK17J98%6cPUuuf22XnV+X9b_hr4Ge9!ydqQqaTmZ`wwx3fL+M6j zIBe{B*I$|J->%)w_)V?Zht!n02OGDez)l_f28|POq{AEENQ&)EyL>|lf)%~c;T)E* z;{Uw^2r9$mO&Kzdf$zDqqM6)S=>AwLwk{est1*;{16%C`6emOg20=8SVi1yqh0aGO zQ7nrHI{5i169prrEd=k3W*Na1@n1qlIf|LX+{@~UB0-%d^la`OEy~t~7J2KvfzP8~TK2I;5Q{9}>K2es>rPTL=>v z^C+r@H?MAA28V>uFZxKs2x~QLqw279Cl?a+QZ~{z){K})6m{aGq+7JL+!^93>80qJ zJVnW*5qrPxtlw8!(RIF8S2u1|Q(x^qtGwJBL6uzOIjHAXRFA0FCBpF%!R;kdW*uB0 z+zvKwAYhbI*Um}c;Lw?^9(MmupsrVSihjVwj?xwC$ZO7losR--*|1GZ3% z(nIF7AWM~-ODsu!GMzzClU-n4Z1XFDSFlv0bk=5|nhqHuj5y5{Vy|lz8HA9kRG6n7 zfWiYKtNi!|B^S9c=sL1Rz&RDQi;m;@;-N;eSq5r7!3v!=Z#FB-IwY^083F#CAb7Gc z>mLm+9dAe5RZrHVosK#ZA$GZ!IvzIU62~cLB4xGdCta)f1uo|RM#?>h!}PPW$3nI^ zA)mDqPx|*~fw#G8Y1?*YeTwUfvrXMS`aF{CzfS3!DH{Q=TTJ$s^RK_&D!rG%(!J06 zBwPHz(=>xu1dNNlX1$g<9QX{ua5H#x^r-LQ#|T$rk?+lNwpS#-B0mnCf7+XPb}r<5 zF5!hvmsPTLYiFPxO>*3rF+`g6+PbAAU~$_=Zg(D6^{^X;fomd`=ahIE`4hnpEVtwLj{WK z0xG?VaYpb`J`-U1I%(lHg*TRmt$*E!f7!=~w&&Gwr4vbZw9p$%N9;NsI`%P|8A5P* zsab}FdC1c5KY@2DcPCl#JeO%d@uGfp@75m__$9jk6VCM=U4Lyi9ar4ky4zo0HeEG) zy7ycxy;$*i5?Xou8$9jRe|i*MA4@f-6jmk{VJ4Wtl{Jc@(B9=Fi;ddJvLDBR>2bN9 z-*8xU;AV3~X$Mpva4srF+p|Wir%@Dhz_@XfSDUrWw@M8jx9mPKrsfnq6I(tmbx4S! z4Sg%%@L`%zad0rgLQv#g;jldK;9EFt^!M}$L|EjvFCCT%fYu7whztOa#)D0&fs%s2 z7{MR0i>N#Mv!F*?a*;#@$5D_Wtj{<%hvzwAY5)MYeR_JYmS~CZj{6Gv`|M0#vO-)!zbOrN#}DLbSMfMALBEp#5Zioh%lqyPdqvS;9M}XP zeA)1OT6v^(P2tWmQ;hh(pIv{}=cK3b{#3JV-S^kJ$Wv0=_S1b@+lKwq{=e(laBzycFA+DP(`P9N zBG`ebOe~c_Q*2=2dHl<~%<-=2%}yO*o=xZ1y;VAop&dujV_PxO$QU+cV`n(&;-W!V zP2PipnQT9`TDtmg(M2y^_N_&Aa`7(D!gsAlDhQ9~ZPXLXg_!sg!xw6r#}?mpo0jkl zDoFbb1*xE2Yw%%#?d+$eU-z%gBV?Z5ArVtKEdJO2uA@>*^EsQ2uA@qxM0FlMboLoI zjySmpnsG&2lAbhGCM!eRpk~5ZPJZsg$G%TkbMBX3;9V(pU^jD_zG z=qF`+cXzAY_nv#|t0cZHC#cxLMf=#CKhO;QSV-`NZyt8X8HhdZYfhmTVz3ohcGc~^ zxZ+OoT4{MU)_*|c%p$%;?!#>6EUU9#)`Lz&O6%pVSsZB;u_pwg>R#b7Sdyzw1O8u)j-3`8-$DI4&Kz~7r?OIXvXazy zawGguyz~;Ww9ow>owhWHGGt#mS0@R-CNI0vDvZ5x8S<)GyF7|+B*40zspqMuAI9yC z$A@p0swIAF_*UBUJpM{1y?{wlU4@Upvnsd9DYjq_JC|p}rQ23;WBoim{w4qx$3>~k zpF++#+$|deC#fVfL1!4#>ejD-lcFH~mqDswCj0$u>?}pN!fzKr`Uq~qnwN|bcm*a# z6GE&>wr>3Di(fSfJoUx}+8WE~Wx)nnI?rk%EeZhaY=vpV>4Krlxvq<~>#_}yu$&@I z{-rH`9pdWPZjxbVSbR)8k&SM6^ZSj^P8A|VE2+4=AeaPp5D~$5^>)ahPxEOo)fi&- zwRWhOqm&tZe>%9w*=wmb&x&E<1Lb2M^PH_47*nVbc4803;V?@7GZ(I@*w)*W&@iIo z%iza9-{muBcjiWOcBo3p>AxP8F-v8FOOGBIy$tV$<>`9Q1WmX8lplXEt zxv&9?tTxaNl#QV^`#pg^9NnmhZlu7;(xL}PO>N=>e|=dff@C@(Si)wo5ozXr`Tg8E zY;uPpg~h~_B*=7afZN(&td=cFQ!_!`UrjDY!Xp(V;1>so1lZ6*B#EWTka!gRXL1Ix zavYfv*gIr9J^ZVgIT+fL$FgoDNeuYjVvbKa*II5>Dv`Ze3tJoMW_`>B|%Ru&t2gJ(UgSb$_!T#WtL)nBtWC2^v#q3k&S5 zw8+z>AJF{ga(qG&*M6gsiZR8kG~OKI{85{9gZ}F5pCZ}_Jn_2dGZGrkeDA6hx(h*< zodoA5C!dq8!t`{upN&4!i@dldgI1}%xXIYL7$8pA-WM4+jODFPxPkIPHjtv|NY`dh z$`&`gx`36Xq-5(!{Ey$2Y+T+|#_H_Q$EJ|qGI}K!5Zu+zh`&BGH4C*?dBPdpJdsYt zag9HB4ArI{l?=!c57ea`QpR|iYPgSnUB!VOE4!FUNd$ZUOiL45XWVPFsF|PS5nAFH z!+1gA-(~qPXVYM>KWW<_Ar+s;l`SRPefl3@U>U5Ze_$FNeFLbndM&hyCc-xdc)s`X zS*nEGjrChcN>kQ#8ax-7_48_*#U2@NwoN_XI1EvJHY{_{XujaNOU=eRDnUBU`A(@r zj91PW_SWJD?PHS2gW9%P7^Syc8pg8s#CxYJDqnqVDVRo1kh}9B)N2g2f@fL2XZGEo zZ&SVvN#ukj`MBGQt1FPG*f>8A5F89sM4aKeWP`%IS*le7@Yp|+)DnVop3FofRCX6> zaOoj<-`)Ms%2EUZ6HT@V@CfNp#P0M^!$32sCZ$jJ)9vviIWRSdtY7*LFCDhD7u3EF z+k1%4kT6@)oT!ECR_ zb;~oK=6k=~w&n`Qhe(qVSM&5jh?=4~UG9(V>>W4S87ckR3$uJAVi{{M5(NjZ4<<){ zHaF7^a^*n9ST6ED7jE!)T5&yW z?>D%#gn_k>)Ox$e^0*F?co&C4_7&woCJ8S%r2ajuOa_5@{5jnoe%A_8t)O2m(cYlV ztY#Tol2bM{n2sIs`jIom17AP6d;?2p`3WJ01tx=@MdvZOKhP$^YkK~>wFQgbkPhb? z&Ey87oG6Dw)6>}HipR~B-3oEd%95`~@i%*_S?4_`IctGWardk?sFSLgYx*b%)&se< z(pHQ#{@G)ATpqXOFONe_6kAp*^;Wpfy*X3;+@d*YDuIjLtqB9J7HV~{u%>w4 z&gRzleOl;EwXx?1BfUY(m$6i#&$^&;jFtP=rFh+8<1l2Z{KZ~T35B>6!BLJ_oH+|~ z2Xx#dBH75`@%2wZyeK1IRtdwnOI^=1a+j}a1LuN<%wPVGqOlGz=Ip zq+zslcSr~*jpXP?LYg5Xq+^tnQi8N}x02Fbj_&x*_b2#soO7P%x$o=ZF@IZY!aXrG z?Zq85i%shz_2r$E>aT!9FrV(?KkD0m6P>yy0(dND($TxiE>YNN++K^w`t`&6`1#5( z?Retlt!Uv$L2?;TmCy!sLNFjxv$lCu})uj3@#CU|F2&PUZR-lj>xAiuAU~WYI z;wRX>R!|g-Jx*EI?O~Hd+E47427?95ko1oXQB(e3Vh}jCZ{Pc&Y2DW={t7JL8&15o(w_b%%qYSqg3YxrppMyQ7|rygGy;Kj0&x7FzVWY zHcBpuV=59HOMuksqgq!^iA@GE@x|O{vr%z7x(ji|kaF0wtH`F6kQ`)0gH;J~dSNLZ zN3B*Cvq)PBc##8eUpNV6X-((pF$BZA<6U8f>wGE6nqA|GG|pC9*h@ z>Tcpvq|E8zjX;WS{Mb2(#|RihW%sl2MJ`0kxGGH^Cch|z1mys8T(lm`8b9jF6k+r^8?eq~XIBo? zMtpOm?l<>T?$d#eg=2vnSX77VZqzLUwgBt8z4P^TvKBBgtW>YW8I?wRXqO`Q>B3cv-q;D&d+1 zv@EzDf0;m@I6Dt84{ZrlrtZIKbB*x?r3d~ZU@?g)y7>*yqp%b;41E+mz-SPpD`ozb zy_p^-@ujC*1p}f%O1zsvo}EK?cGAyqs`WU?a8j4|fL=_;rYyIk($&hzr^u;nbxpsF z-Ps1QoBKt1)C`B!`x0JVUEOb4JR&TfZbj;y0mmgsMXrneF~=mUyUVeS{2BKKm9thR z<#}5%N=fQ~hJZh0zb%2bBZci7#$#^lw2Wq6(CW|bhwAs&u5GmMlrA{5*H6O|V> zHg{-({Q4`Pn+R{Rx72Akn7#IxkdP3Vma?PbfR(QAiSEw;zgIYJjXuoKNmE7k-XaJO zuTK1%*ijb%*b;dZOsI-^q37q+Ag&TiToBF76N5}|KOlS?=Wiik0cmOt>^vC+puWTk zq8m#sK8Kg$`)=_I^0axhXFzaV>T%QR6;EDGu+iDp7mL%aHx{sme?Yfi5wVSDC{{pv zW6^xiAH0%P-_^0d*G971J`MOp;?>B-%ulDTo`+C!{!QMuHrVuaov&p0*&f{Q(zpd+ zHGy`Xv30BeO*XLYfdMcVpcDvzVpzv<BF^ExOG;h0GDO1l5M9G~=l{ zlr@N0T1!{h0!s*B2)^D-)`E&k+I4(yYH6`+17H*PqJReTDSdbtHA-Qz~+bcH=8$CsJPO+GwaQ$D1xio zjcZSHLFyC|8cI?!wG&|QbYyKGLY}w-?&{8Ux%*SNk9Dm z#nO{he@r&zER<9N!Hq?N;G|fxwmv?Dl>pu-i_RPGL;tfQ#$(;RP1V_}lRGfIRqEAj zZ)sxb%G01;h`o60&fbbf4#xZ$i?fQPiXlV)#$8JWT;N`!s(;#!iOzQionW^OKd)4~ zkBFU5A@$@moHFoy5OWu6-(O7+bs~j6qM8KagE3!nO!X37H{)vuGPDXM==e(W!?`ym z__8Qz8Qz>PrKx0f)5&*#=5I(tdXU8kce~8G`*dsp5cl`A;Mn-HGtzAXIF0zeEtkX} zBgXH3hRW3kth))}*Ao*yr*CQ1e5S>S?-q|>1hGgYF2=!@JL__~j;sL%W}cp(aw88u zwkcV!U}t$T>Qi#&&eWPoiai+ro2X{I7cFuCs*XTCWSs2pXfc*w;) z0p@Zl*6bk&F<)aXSY;XjTa5wW>bi1ZI;^g%;)4>t575kf@)=5M7AGAxJ0n4e0nb4=~e8IuMiU6FKTt$fg>yy z_9~87arIWO^mn&RnGY6cZ#VD61)Xu`8rqY4HH(+&bfTmg`|La6EIuwSV7+*MPWFje z*Rp~n>Qz12#Rh3n}j6>!<&{IPyOWiOm^4=}ZsU4>fwp7e44*b_!mtd_|}467WNP8on^(?qiv zqa%7ggChBTKhRfEMD_k%fWQCB*Qb}(DbA4?ZH1qVwEEQ{^@0?Y*TeCXB4nihliNO< z`m8cWs*dqr^u_O~(G67G5`cnJg}J=a1^{y#jM$RTc!PxyMK6oFeu;JJrVEZvwARSxZaVt&JmpW z%87WtYcrp2s8XINjqxPw!mnA0yLv;$O0>$}XRmIpJWb^+7`MftAvw`Nr%DW^tku5z zPf2?y8AQBbYFQOi?`wVWKyUNQf2{>ezF)vZE8Et(Hy)G&>-aX0!bC!q%H;Du8}`L0 zUKcDL`x2MDW@zinrKiEhzMLnqC;%=14DB9;XSi3ve&V{>=dP4@gcAh-eOohoG1 z0I}$2M+af5P7=%baQ3L}uxrSj>2iC}uuDfjJPk6AahbVQpQBG#s?ZZaedo@gb=6DO zHHadi9TJH8 z^Ny&EjxGgxe+9XXFp| zbN{)#;MzO~yrG*UyGQNy>!q_>X{!JU8tLkr?x$4;-HMW@G6wbEDI^_MGPPi0rD@9X_0%PB#E;2sv36V#mh|35Q6hQQ-kJIbAp zrOx~Rd8FiDtUczov;a~C$(EzsipJU2;0MLkzcSEX(KTF75Ve~*qXl57j#??jeUeLb zd(36r?r01`u_{~#(2E!9!43xPq+IyfL_vkqHAB)-I=7oI=`88?%IM8!ZTEd~$4qE6 zQm9_N8uxu%M;m`Vi_JcPIhp%@_aq+5^T~xK;%mv7Ak&MIv1p(54N<%*P*Fw3+z;?x zX0(P{>{<1Skc5O&gpaeJ*Ysrla}9xs`YG1TQLbEz+~i{H{8uIZf(4Urd*0OTIaIg+$ z){yVEBBAme!;Y;!sCEGjTGm23F=;5t<=6k4JUGsUY656mK(C;)ohZ08F?lKZz^H9X zO3iFlBra(|ab%kw!!VhnSwME4q?9Reaa4U5h{i^+{MYu~;yhNMwdonQ^c z{P*<5R0)9Aa9)>cg}kBY(nzqk_N9?dyin~I@oB8{LI#+nfOje${Or2*e; zR-264FBhZOR7pBoS$8&OV#nV3iYs+{Oue(CHpI*p z(`mBy;KyS-ViG6eOB?fF%*;zV)}EN?@AeqpWa&o}S5$>m&t2csZn8PGL^dxE$_t)@ zYTg^#>MJN3l*C(UnE?agyQbyDqKx-7;EYlJSpKc8;WrQp*5xbT6^}svooOxU)#-6_ zn5SSVM4&#b0JSU5^ksOIF{h{hOgsmGzMS37D$*(KnPmy>rmc6I=e z>`DBe6M$7|8E;wF&J??P6NejoKF_XiplD6DI2sA7pVPssnikyJilfZVrLS8#+FhV1 zdHpJ#2$zfz?>HQq3aZ!r%lk3=N-*K(P$};uG5C@co<=Tb;SuzZ39v7-?^=9{93m!j zTe2L3A1XT5Zuhz6z#yXE=dGk1|7szkCiHX=@fn)3RhI^u{buaom?}?GEAAn`k2sNI z`NiS8y3A?TrIO}`-`$z8^;MGfM z5jY4q-e-Z5ZM|^4v({{alef@aiA^;{oMl~AQ;?BI#{6xZlOH@xMJ z&dgO*T%0hukoPXK9lx_!&Y}C}MxcBi@%~(1Whl_RX5M-3$R~=^LfVt*+6RDfobB1= zx%=J3ANZiOqw^eSOY6h+pGuf9wfdT_)~*~}K8r-$$e4>uTzCeYwgP9&fr4nH+s12v zK|#-x@dhK#ZxCn>zV?%PS_g{f|ET+uvKCDN831nk&5{UJmEYwd^>Crh^&vLF(~?!- zZQcDNbmj56OJa+(lOAK`k3QqL=To3gc|gT{vz_I7GrD7OdX&YbcyKN9bh~m2@MfNJ z0H=6=;QbnAHr@Ah1J+XZ{=nP8{`*OW2R`Y?J*}pnKZ_uCVAAROTCkSILcm&;IM+SN zQ_;Mr8A~yU8mi8)GGB5W;_uM>E%qHL>9Wv6QRxk@r++S6(KH*2gQ{+KQ^qC3_WIt> z;NuhN=7*>At2LZRj14ym{cB1uWz|2VYwT6Ub0tE)ihOx_zAE~Q`ifp3qVkg##V|^eVBniuaL6k6+9!7Djz-C# z?sL@ndvt=k_w^AzYR@*?tb9?0%UZAf_=Rn5eVL8Oa2!p#os8Z6{Dv%b3R1DKy*0wU z!i=U~rlh&V%}kk*FTg$3$X45W37+dz##pWujZv~1Way@rz18DJ1|X#>cEvclJ~#tA z)drfci@7Cq5lW>Jb;bbEfzKwFh-Ly>NvE=rUY=P%)XDhi|ILehlf}rf`QLn3%NwoC z!yZE)*uLT%0P{wP!ythEJW<7|&wNcvSs(6&#q>>p&drq z9>cs{r`p`%U4$#ErK;7c)RZ!#)fzbdj@x;qFqMoe(?4;>&CgH9fMQc2QdfIc$azs! zf|Ts=6Bm!6iV7kUr1zIVo{;qz$aBitG!tRG|71xk){qsj(6CjQC}rJlw661aN&0xW zw~KL{0>;-(yCY3f&6P@`W}rvKl{3cXfuy(AlwUqvg~X7`>>Omq62BQL*tvuta=j=W-n)kOTZ z-Ij_bn`Y0yX%M^0kB;mYdb3URdIS=pG6jtQpIVU7WHxki-5B#8gbG0Gdy@1Q)|CbF z#-lf)I|-bG2@m(V7Y0@-CUr9yH{^Lwe3P1`CCyGx|6q(;Wb0C3cTZ@i>V7h0Vxqfc z(r1I}TW!@xIg(I(+gqojM@dHgHcrJga$#^XRMg+4FE#Et+o23R?({HJ@=#o?FPD$n)^7yyN|bz@O`dKGaKxvBo8jqTB5kaQ}ygBLO_$wV+5jm~ zcRNWDk{14b?!ftC>CQH>j+vojx$+r+>->F}+41n_JJoF{04`a%I6O#eJ}S#HR39ka z6c~}ydv6u?QgfVc*(3c;*F=;YKXV>ya^C&cL zy^amkj+SR~zXp%-@Z11YlRmAG%f#zJt&kzD;Cm}`iIBd1`$0>?q#X{Ok4q?@fd5Nz z+S}JEzIUvh@w5Z7cJnj04yo5K%#LT1_v_uh@NC)%{bkteN*LoCZIN5Jquh4I- zt4dM5^zx1g-F)$yGkwdG-jd4+kpGXPtS{B-R?y&}Sox0_tl5HuFc9wqC~eF@`n@%Z`|=29GM?2q5h-B5{By;NPG z>49wxni#A~pOqLDdWiLa@=?5-e` z`i%UpyD4K$ObAd7*CcR+fOF$ed5@S{8g_(fN|?gPZ#au8MkpJ19=Q_nA1CkCU*2t4 zF-_G{zU;uw+~ft<6;g4nGP@gqNj)Cwo)Y43fMY0^t->{^3y$UU$5~Zgu3qRy>lG+t zh4Fd{N1tO@c-{olxzG-rkvJB7Gp&dFK5TP;?+7B5U#VNUbA?pkj7w9IoW=Ewxd`JUGIJ~{u3&`?kfcN6=aNU zva`P_PZ`CYD<;`R*2WKg9o zlW@XMqvX#g887xWU|qS7hJ5aRd>eRnfjrRTrSsIJ-MloIW@<=h9 zy9SmZkqI9m9Xy+i{6EUGK)cUCl(|s$lO~$+r!G_W)Npo{y#Tx8K_M{-FX$D$6&b8( z!UQy%a}dM))fS__9~ao#?QB)x#`4?LwQpVCazAJ%+h)4w3gl6aY>Vb5OsG2O3R>XKsLDWAq;OPFzUnibMeMLn|;bY29mrSr3QAD3q9gVdIO z8_n`9M3yXuyC3?Xr6$oB5%;ScZ_@6H4ZExez;RGkwr5u69e(|`Z5W>k67A9XDsTXx zla{EsXo;ia{t|(!4VoGv!rf3eg?!9$T^_CO8^io8_g&C1rA6?l_nTx}jF}goPL$W`J$<9A5j`TC)wMZN{RkhhaJ;b0G89xqR`5H()z>f%~Jux9wU~bGSvLqD1 zdrp{z*|3Oj#{NgIOZEvcdYwW5Jz1J-@D(5zbe$LCzH9D;*D9-)sv@-6EpEj(p2W}o ztTkZCtR)w1@=f}Qu{YrJ06tGrw6iE()AKuh<|R zlGwTS?d@j>>e(v;6}jgWeP%r4K&^CW5u6^MN?!{vg-+LifA4Oywd-HPCDTBj~3lzfy!F`B);vFtOD6<+G@~-^qDN9z57#5SQtVK^n%u$CS@f zIa%~Pe^QF1=seb*LKrCj5e9C0eroR+#Lj>pwnd0$_sE46>Qn7>mWrZlNL|bB_>DN_ z>XA7RU7iAe5mrNO?9ys7U6!45qy9iVs@9v!n0ez-qJB{ogdK`Iu23}Z zVOO9Qgyve)P>Ncd2>l%&j^BCgdyMcjU(2?vpYWCh?uUFrFdf#h{(s@r_bUj}|cjquOkVwASY$Pq9+~>CU`60jEYxD^rpx zGuM1i4>V4Q0mq_k6}V*OUoKA6yN3X%AL;Y!e93&-uBirYK#R`&Wh|Q%UXsEwz|M*r0B7n4&z1A=u0^08~^ap;G}N4*pMQW6F}H)kxG!7gn& z5L+{2jycf(kLm?YXxVp_o6m&pQ$1zEWwrxj2xXFOMT4Z>y)HB*wlHDV zpIKj{AF$=!en|VglR0chDd((lIrfn(uo9ruUMuuTixRjmzA0=)W9O_@S6MEUB+4ZJixnDI-c!qM5IA6Q$c3 zRmdOaFeRUriK+j=WDnt-4~0+Y#KW0eg`ve%eYwq!AYvh2e=a1yH(pbsJX&;XqRp#AswVhtsy;BBxJ-DQmDZ=NoZf3KCZfbhJYkcMWvO@WBiM3b*cY4 z#Hu4}oC4XFY2yamPv{uH<%M2pvB7<^>t$KETa>4q3|EvPOPmdGp+-Xm+y?i55ZdVl zfTCJyWH#}W@P>J}pobT~Ut3E!P$XINvFX@9f0%gZtd(X5+=y$xA51vV0=hW>-%VC5 zk#+Rkxkb)#c=AKv))w}#P4CHvS9ik#&A^=UAqDX-qb~flf19ULe?jTNOL-R)XY2HgZRYzvh z0uA|D@k=kQObW<$1#eTrS8d{>?yzJ#QHNZ_7B&o7EcZcB_-i}=iATb9m&%$(*jVk* z&6lTBi(}vxqMBjnEAn}VBW^4HgZU%@9pM4~U31~LfaYhODFRvF2jXHM+P5DcL+33A zx6UZ>5x;3b#1@Nytoamg*apajE443(c#HS z;%?sR6;#H!9k>_(9BqvrhbC8-U3p>CFK5D37pv=@h*?wS5Wq8VKjvB7MYH)= zqUPmpgB=U$uAnzE%_t{SUXJ&VR-jnTJb`^&q`MbpqDdhRbp4qZ2U91J1nz`Kdv z+K>L-N&(L8W0J&;ad3z~?Gw==6KYELJo&}|vx4FzDF^brGW8>`M%{lb@e^!mA5}Oa z+pX$?ffhc{SvCb6Kf~Sr!y+r~YmFTbVJpEWqASx_tzzVtTL7(KkzLk*MUN zpG1sJZm{JsqX_09TAC;CCDb=;Z(G>EOLM=ISRz;gaahtmu0Dv+1tYBVqeT7u{}BRe zB77~95|mVl)nnV@#;2geN{<&yL>$I4XiQH5Wm&2;g&w!9F>qjHYc0Of{u!sR$LroEjS#c$0cgyJVt zYzFJ>fK$^wHPHB{txBs^d>Klx{I;VT;{ZPeq^Bn%8ctFm`&_qH={4>%V%#fbDmk^k$~vW925wUnwYAY z_~#Pp@jU7O@2=P8w^)b&#BU^v_Ot7%i;J0j1`W#0>-vehzQT&#%g-$b#5o@hp;+0| z*x7o`S&GdRp~GVFa?rcT<}_wH==ND`VIivn39d8yTb>#Ssip~8FaJ(FOA?>FO8hKV z{G74&JLdUBEWyESD`w&b)vzu{J=FYcfGERQC;A?Nm4&t_OVCQekL~l#h}ufvE|+yc z_Ti>s|x+0D6y*U?&5Pz^mKl!O413r)~5S#wiIN;|JiCw2*F)at*> zVe`D`dYfOrn;l;WD&kbf-{93wWmSP(GETPwX^j*crn7Ke{W_egqH5k8Q)5y=hqNRc z3{|e?Z=^r`NNbjk=KlcJac(vWK6*zCMR7l5zm9sPP4L&NA8(@sk?C7S#<9Z0ElU&! z++KQd(Vsmq6R$69yO)+E@0REfKJ{~$fT!N__I=)J@(qt1eE~1TF`-%pHd^HLFcLkK zV+|^X86j8zsbFldsV)R1O7)cJg<6tiy;NFD;l#MJ9p@c*FivCjW0G|NYnZ9gF8p|I zHVX@RdObV5Qjt%byJ}K6)*hUtcos1%(iRIt07uuPx z(=%^t2GTU+I4u=~_~cpFue|+Rul#;#-xe#A+n;7u;br>zkf^OH1U9J|cou z8<+m0x4{W7YyoBvXrw#^A`stDyyyM~>GkDCh! z4zx=?+qG7z*?QmJQ%b2H-d2Bo2vs<~a$0$aLveqLF34#iPsB$k>UCTqxk*7hT4A+R z{dU_xj1nwX#qx#t6h2*HDt70KCfGrnI(lcnE7sh-p8?-@&ULKY_TsXuPN;FSGz@gf zAt&-KDhZ?lT=)T0*O|iL-XL~GA?uiFLzc#B85ZS-E?+G)&18+i{h#aW>(R;67(pGF zFKo}U=Ud-(gsd+85pfc36dVO!ZTxwZpcpnye72;svIIFAc@8KsxmZexjtRa5(alKfHVu#Cm=g~PIrW1WM51gF$;<1c!v~jDl zi?Qe4nKt}*MB~L!1m~Tl6nks}x?z(3*C~Cnf$XzQh0fDm<=+FcpTzoKVM&>r!Gdo#}Wxi6g4q~0C)4;>hv$0 zetnYwVstcP{7t?t5Zg7KIiLgg`nMGvnT(B(@7}@ZE15@0PWi2*0OO?{sK&O=nJV&G zwtD>sw8&58jRftE^h(CI_tVlh?5%+(+258tLOfVstUL5LiLz^wczfY;_Q{LRyv&@L zs((&MNaNz-Qaz(hSdESIfZb2-byab{_sNO??0S-vRca0^dCVXESK%Hv z9O%nydk&p8s;}9l4AQ5&fYTnFa4?C6x)it zW1tU5?^m4h-|6+K0mo@eWML{B5C2)5ZEf-AibV{3N^<3}XS^xb!XaH#5@IC{%~JsY5?;HpPze0xj*l;kOi7p>`54SH*UWF-=eXUM?<(r+K+DB06>2;AZr%>dl zu0xSNuuA@Wls?g}ejR%su%VKAw@3oEIZQQbiIHt!-)hH%T?rnJ71U7J6*TJcMbELR z@;q|Z#vGeMFU|+zLtq^9s_7zTAs$MyFVljo!~6&kYXXTN;;%RlQWc<%gJ2_rgV;(H z21GL{Mz9w0_Z0;U1oU%e>?x8}ax%pBi-xU+Ih&+jOF&X6=%@LRTAdRWGjv(hcDF)%-GI$I)MbsH?-MnFJXAZ_V0@%X|2=`Q+ z6Z&5j48-F;0Yk~vL+5{DDy!XuJivD!C`JKoIRKmOhb7+Q=j5g)VV%#sX|aei-3x?a z3;JvCQx2S|@gaMCvKX9wD8E>g5=mkw{I^+u`~0*g_rq`1yfn7&@<*!J-+B3ojk7V(f67s*~*?Bg(&m&vYr+C5$uCbz)MG%4I{@NOeLqbu(b&^~gBMBUMW0m+R*4 z-m^DIJX{!$6lC6UY3a7}lLr1htzRO5XMj#6!E-<-TYi%b<|Fxw|8U+0oIjQv_dL{;@NG{X6E0{3IX>krdT|M zT+)o_V5&V6rv1gqHN_gQy=HB2!6vn>sLn?XMxXhV+af1l4iFxeShY~c4$kB>HdQz=pbD7 z#JjElH??0Yu)tn2%KxkwAR5WgjujA%k?UCXCI@6W=TaQeW-`*SGb>APG z-CuZa&Xcu%{`|>EP)%DU%NiuMd}Z6)zf$_{g5g6}*m)U?1Zzw;RQV(6$nKW3@yGsO zKQdN>!@gxeK-Q1W3%RZq7AF-JPmvuDN0fng+p*soui4R@+}pRhRG2ws63*T)E26$JhL#Hn-nR<8Fi8l)z;o^BN%5SG zaAepnc56*MORoH3f{iy}LTq}zOpKxD-|DHh0op!1jHn&?n#HZr(!F4asA0UcOJP=H z&7e_Q%a3_ka=2nLOeF8q2YV;X#Zf^*S;^g#sNL77of<~j_{Ip=j7L8MOj1B)Rdn!@ znv_I76cC$5;y0tiRu@r=nGK}A)iLqffwxj*pL<27H$J_gl+W(dnYob|4_``q?}=8E zK)P1S$@=zBIfRc5=`8l`+c#gI3j$ZVFO+s5W6q_bfp_P>gUD4we+Wkp^)R0cd+j9M zkjT$dp~9~0&uGo67jMI$C^UY@!w#QftutE z+Ww>h6cG5gX-l%lu7?NzS%_iT;zM7vRz~Ku~0!8`x z8hLnKzz?#-T~Pn#k1l28m1pQ2qN#?;5$k5N@2kGJc#v&mV-YDNF&-V`xJv4zOk6!T zlP2m1I_wMNKnRSYC&|)FP_8UVS)A;-oW=BvI8eKLa2fWlD;dzUtqU_w^{CH;1xkFe zu2CO6i&%0Q{nNrl|1V41nlv-gCk-?S)JZn(Ur!&^1WR1EMdq?72B>RGz!OFk6a$82 z-SHB%JIl*K1Pc7g+^kHgjEv}9S`>{aS5yblGJe$N*4KiGHem5jrFcVfVZAtRWeEjz$ zB=7`Jqhcs?=VyGg@oy-32?ts#xli`ZObIc{$?4v~65& zM*{BKWwWK@+Y9p9HzI%(`Su&Tnm{}P{$WML5;y-nP}5&@0gUd2f3W-eOW&GH*|kHF z2k0dxz_*O;A|IUZY@XQL^S8!u_k$ecfjGyjbgJ*xv^^?pr1MbsAP;U{lnn0^jJa>F zqA+&DKp}&M*?H2Wd_xB@MF{^Ma+T>bd*#c+OkiVNZ8CbZ`UhYPAe}EIT3YiD#4hi0 z&^g9xR*rz5YH2ynn5JR8TtD=DJ?kYJ^-fWkQ@ku!Kk&X*^qaYw^}L7#hs`5Fg8{Dud}nk^pq#CQKvVhBS2C9)DY3?RqF;6|^${0G!^ zG9p^3W@iIVd^Dybpd=or&CAIp*uZP$b_pm|o^j9kH7rVoT-rUw@U-8@PCgT(;L4KG z&nbPCn_n9yz0Ra?2u=JfMgep0ws=mp^3{ZOLJDpaPm3 z3K=l5n_KnmOJ_?r7pPcN6AdLo78^Ehx8W;+kE|g8*nRy?#|;1|ZA3Oxv+5GzS?NQ? z5u45b)g_}9ps#Diy@=Y_QrW@n!a2P@^J%=gNCb(dKs0=%5WA7`LQczS7mJui2j@ec zsqGzK`ZfBd&t0z%9G31o`x)jQF-dfdo9M4ZgMx~?|GLD_X*nD(6ZdB#M^uudVY|xH z(Kkr>vLpz3_+>enjTed=Mw`S2TYaD{Oern%IlO9lHzS2^UtH-orSth>1mp29nL4?G zN~ZOpx8)m~9F|x?9cJ6hI=@f4T^@0T(NJLomXR7Q_3bx+P$lJifk^&?FgB=tJ2F^H zMiZtgOM*=BqixjM#k+21^q+>^FG+| z-fGS2<=8rgi=0ow^K-p#bkQL{D-+yv5g=wbD|JHnZPgFmufo6$(U#UU(^hTq-zSeb z!ox<>{UtbTxBGrZj)*(+r=x1j&vD-KO$A_>wiD(m##(Mzl}zHJrQ;TrmIfBSP-5k+ z(F@7D9FUBkxm#c@a}29u#g&ljig}H(>(*QJYnMgrs=fd%Qr}d5xbA>8vx zIip3q%UAsWS_w}wiJvt*xMVx%s_yH_Pn88wZcn=?C1@cA-?gyZn1Jl_^ zFfdj?#wShs+!%i5uwe;kbSc5IiF&(oek=B+c}&T?sG+RP67!TQ_GQo3nRI7tU14!t zDQ`@1{gM7KDzwDG&9F~vu|e<$SyXdF)GuPx^QS+?8Lnp% zg`BD?+Bu$xQltf~r40vt+{>D&*ml=R9QuE#6Z*_*HgHw%s0{WH51h15rn%B=WwL>L zX`-+mCvYGdieLsLMb@qCaEpKU zK(C!*1Luppy9?k*iS$^wk~|o_<=qKDsnnfo_oQz}!)OUH5Q4+9Vca4Wblk&R#5M*o z+&YT7mBplP1?DAsFGeDV`Sc%v#H>t0Ts34~VVk^(a%Fo9ZTO774;qWrq4%;N)aBfPF zh7553U^vebl@eDZTh)g)kjp+ny^9=1dguAr`-d4X>#gb$`nSK%cbnO=9XnApEV8o5 zX0{wlE9P}*0m>wsj-xK#m_u=z$!UwSQ%TXqRpY1q? zx+kuRYS5uJ#1Pj=nLv6Unr!l7QJu0nr$(X03q#(ks;@*A=Gl4%mTa{BwR!J%8Q$x{ z89(z{)w}sLZf{@af<`k&DGt4bL_{2C4l=W{#AgmP(ksbKhQn5b>6}HTgjv2SqdN^z z-!tT6g zFJLqIcp000ERNX{0s2^Q^g?*?r87w+08)410EXlN?PWwCF?)rT)Z;Y(fY{VC?C(dj z%fYc;gD&TBF@!ulzv*8Yr||u$G3_1_GVaY~$tY`aETdpb@ecsOEc~`vKzX;eG_N0g zZ(rZuevxQlP{1(eOxbh3-b_G4H44k52!{yX?~4a`gUoADQ?UWE1*}D=SrxR;qXO`PvMcu zYo0-(>e>}KWwAMik>gPD2U5rP1(Mjhmld`56w z$w2?Jt<9#zyl%yL&tz}cz(z5N6=F+XQHW96&jqB~K+!FDGC{wMxpL06?I+e2?#&wd z8!@BnbXQr9^_(_8CJ9czeG4odnAhaOl!pDl|3x#Z zuXuF@2}ZsL$TN_yob1_61*l2z|1&lxs7Kc)nlIx#=r{)w&LUWu_ILv#Rr4;uho9rJ zx!K9~1&#L|&~yT>tZXWJL$z2$23jQY*4DX6cT=J@RWV)HYEwopF_a~IUK`klUnuiA z>!$tCRpvMa`Wi9e#@wRQ9{OpF2+jc3yAKB4E}jl~+XQikmbnn(eOl_Na8VFDId| zyeW?87Rwt&C&^Z;1TPoHPXED9vZ9f?@1;MK5>ye!}?T<;auUCFVr5ibF=rtaCFKT~HJ%Dib z8j2yDqwu?Al49g!G!4Th;Z7nna6={g;=$9fh9hgIXGCHv3q;g1Nk9M=s##QMjw0+$ zZ>Nmy=8f-xaR$zS6&)3FZO%6a+9`M}0TVJ=Oq)(pRD^3jg#Xo;rZRKFDTOPyi>Lc| zKT^*lI9Szq8@%;Dj?OYF%C2q0Qj(HGgES1?Ftjv7gS3EjN(|kdLk}U+Eg*ullF}ue zK6H0?`rYrhmTURPKd{ExdtcXi9tUuhE^~5dX)^CzC6JGrPUV+;+G7Y9{C3ldE^SXS zkuuN{YJOBJ2{P0SOOz>|1lM#q-oNdSarvaQ(pqM&rVzQKAe*rhx%sMMb81HhGbA z^6N2z=srD+hwe~B#MOQY7ttl;MjI*+RXG@bns&y^d~`GE);Bq+-1cK4^VPF1h0a=~ zlD;m~dR}$diqMC$G*(SD&nC@xC_sqll%?j!SaFO}sBS(RHuN_E&=793i8dvm(POj?L}qzbux_e9kd6W1T}xnO4qR- z`ougZ_&!p}F%)iB8e43D*o0W%*Pz&vr;MI%CY!gd!%v{`+n={! zjGvyNEu{9dg|vRN&*9k|A-P(f4FDAg148mUx}msGV4O>CYfG9YA9>sL8XUvh=JOIy zKOXifVX%SyJ4Dj779&WtXKmrssHrt8$aThZz^{H2;6nrF*Fg(|y1cVLnH<~m(Nj*} z6NW9F8rI246QID@#&lY|+$Q}9^YoNo9Nu_Ndb!)}BK=;-!C$9S7>M4~)tcAg_+xCd zjhWNts@Sr5b@S-=i2nH9RVtol{E;`Fj~HNP1eX0ziB0=H=NrT<-}nzqM*P|t#u@ZR z$m0x|HXW!Ij&I`U2;__8qA%hty=fEm<(1RFf`!*UCH2(R+yZ^MsLAt(QNjG+7eE-? zIuQs`|GWPeF%oCl@o?cC@VqUI(~hwO{5+pJw(_4Z|3%u4e>D5P`?4PT?97erKs(?v zkEb1(H*WZrb3%b1x4j&cg>fi8`$>JdDd6S)vw+jUVzWK~htmhjOrGqyXuByV@O-m7 z>7{kEA-W&e6`VJa-H5f5)**F_hagw=_mc4vzlx)~ro6&`tH=J(V*|Y5=AbL5(Gk+m zPg?_08{2W811`>4jE!^9LrDmleydx54TV3t!YHGd#BI=6|XDoV)JAZ`9 zq*xuD7eGprI=PR8+!dhnIv0+qL9<@3iJlVO^SH7&Z>}@=ArHjni@*_|?7u%Zo#senS}}OF2zw%qd^Z3&SuTa z?*5PO7H>;@`vKS)H{b8~0NDRS>MrovWTB!_`K%Tx7_f&%tbN*KhR$lNj%Hp8h9fvs z$iEX+J4l%|lzR}iXs%mHNI0#o=Jj(&OP$l*&w$G!bkNP2RI=<7HAtvxNd8n3+Dd#3 zzJ4>W?~QJ7S29G$;~DD@I9{3z3L42)rB3uUjk^ow?5INhJsXTJhHU=_uNZc2Eq3g? z7$X~*Jdgh?-uG9Ub}HN;VgZKlFut(nTp_aw8U~bjCT$o09y}?loc8h&Rq(Mj;&3{0|_^tpEg3vqj_m!3OaJd4G zM8XZmKGZZbEl@A?k4@(r;}IRgMF_Ks{Qa*%H-d7ih<-hi4XgDW+cT8o39V+};guJC zjk3vu^^srA&O!Pk^^AjTO8uee1&3{i!GtGg_9$~q2;2VKGJAY9ii!VFSKJE@x{wf* zESSn86o_8?J6!q@az$PWf||-gQBkeSi zZPkd@2<{_t^!+<#m;#k8rLBVWZrqLNlEz+S1$41w{I#`k%x~1>{)W8(M%|GzR3bjH$-X-Qyfg+G%Nz%Y zEyP?AXvYzxNCzIcE)0>^15dGe)-L-k#a z+sMA1nrtj4jx=DGk=7MNVIjKe9hqD)AIK{tC~9badrWMPfE&molI5ZX!3~K+ZqT%I zZB(96MUW!FaR;4B-K%W=jS9hd?F0w;zo)>+o^(7PoAK@_46t-*kM3NV(8Ab5!NGS2 zOqae;3Li`^5cLKlz~e|v(h!jpDX!cB6T|-f*meoNrtG-i5d;_s<_#Pf*g-((e?#MC ze_RAWJoN1XZxr`|=VcUOVLZq;O}0WOMc^NE3JZH1u%s_e;+FWTo2CWa_vtSge{}cu zm!JOxjV~Pp+0z@#5e;17P6b3w(YFcymsg~kIqp7pNSRTO{9WSOdBmb=ZQ}^RI2=

2lz;%&@J}Q&At&EAbt+ zX$Fp7Tn)KtgQ!WA*O5e-Z4^F_H;zqsA0E`7cBiUn`6|vRF5t@@J3x$YX=P<%MiBaG zVmQT?57_JU+YyL_U^3UpY-_+gJpMdCqjWy*2xcGW3Anc5aW8IyH2swSa72x%)V`b9e-YXnCZmGmTb~WWQ+RBHh4s%Iv zpO>Q?{qg+s@t1w6?Oni+Z2Q%=#E=4uh5qT?&()QD;%&08&o8phD?N7044=5lRoOVx zeJN+29tv%#@A6UT3qvKIBz^G|Zu; zG@qfBsxZawmdvpBg(YWJo-!w2x^wGt`rPh!KzYCHJq#ep{gSd9Tg4HDzZP^qt^<_CkxBX0?{0se}IQhJ?SEyD-{LZGO^vEz9M zNJIuH&L>RGV!My^nvY%pWmVQ)(p?>E`S#W6qgz*ee!rYWIgnLJR%zSa8o*Avl-kJ$ z@PYuWFfBWq@}`v&>Hraw+IV`30f)k<_Oe2&Q%Z(@5xAgFdblz;eLx4oi;zSBAJxBI zZ(D%#*peRMxCexL!BaZ&>KQQuJ3Lp$AAvrs$+Rc1P2s!Bn0yF-^M?ng7uLJ~7nsNo z7)!Qp9UbLtyA9bX0yGfWRZrk<^L~`g>yZHG0cD{0iOyHWmMN`7DGGe>xMr6Y=H@G+{nP&!|mHl(yCo-}vQ*MRy#vOp#<=KJ- z?AeBbDOj`@ri_wpy-L_@KM7IB#}38iaEy{aq`*AVbb(YE>&SM>yVUHc=;N#vTx8)S z`2;-*Sq3(Nu(rkxS!}QXP(li?&**v+Zz@_8xJFpKc4v?!5A=V_oHUi+3lk0;LIp;Y z+^t)ek;6bkEb^<21dKCw_C2e;DL$p#B<^0VoDsOSlT%J0Njqg-y|iBox}HufIS%M1 zi*?JN`W%=FxIDo=3%?1P^yX&8$7458zkmJtv0%&)u_3YU-h11CasI-yFYKc+e_Qlw zDGtkPRoH-A+>EHVD>FIAt6-2H03g2lnNoWSO(n~*vFkhh5~A>*v(S;(l)N`&ijhdl zj9NS*T>$m-SVQUgu}+lFjk8hblrHSfFkAp z%OJ{M^YY=EvdS|v|0Om5*`hU-B#3I)r&Lq4+yBeNb`VZ38*x|_OK6B{>%~(sr1vpS zB9)+)FUeKxnA{0Sg>M4!MK`}DMioIVE9>t0x8HL(R1jioUs(S zy5!sCcT_r?fSgxtVJu|^f<5*EJ;3~Y4!`QCHkxP;W zhWAx~a|zO>6~rcHK4|@y^;yT784a8J#Z+?eN8FncC4|*gcrlFx%t&)AQ7Mi*GtK#| z0Y&`NO~B(#6ac+hy~th-l3o@{)9nf{h1D6k-XDeCTS%|oGTIM&H4li`wS*pb?ChN6 zJp%35M?tkkn48zw-}^qK;bpvxvc{R#*V}?7({;W-0V@WDqZpkV3oo1UU*U|F+NC8Y zU+=(i=lbH)4=e5d;od0YdHL=zShqtXL}}H(w-}~Bza+7gY76H}5)l=(Xh>vauQhe| z?<{l{OGD7(;Isw!4k^-z+tz}IwBP8tzWfKyY68CI9jj|-AY#Fho&?_BAJ#?J$Oo7? zW`tZz2~{&2qG7a9ORB`|Y{!G=ygrMr03pj?nM7zFkr+O)oi#EYgA>;cPKs6*m6bAu z`z>@n-dM4L?Y?HMi{{h@yJRTy{ix}mN*h3*+s-O85h~ot$*i!HFKk<{5423Yv2OCC zO5QJ3G~%W!i=1+SXmT1CYAyAwb8@+cv||!_TJtz!@78A7B_Frmt0yI))POP1Jx)G?t%`x~OiL9E1tan%{VPH$R;m)&Qe85v5UoCZtS#c=hMXYLp_z zLVK|e-{+{+_KuDD{NTRehw*>u|89ft{#^jg!(f1^@E!HZh}MZ7L3idy{ioA9F&CeO z&?AxoN4m_weo!REkrS!h?v-lxABO3CW$!MHkC*M77`*|f?dzSgeB^Vn`)uv=xq(^f z;>#VEZCI;xe_+wOxU1YxM2II4S+*sH zZpzWiG=T&qLfH(35@az;RE8%QFmTX^u8lLlo~l$lR8FC8vWN{*&bAIm=$iOK}cDtd_|Bo;hFmh6$3eXx)I^XYvSS!+13JK&WIE+ zH(*_=t<@6gbjp)WqM6G9kKVSIn>QbW@83L{peXzNG!g;P&lrqi0h#>Eb#!h(C}^|y z;l#Q6ugg5R_p>;k_C!2G(uD-{NJPZ+?BJe1k%ZW5Z$W(N!qq>ao|D@&=e&4aa_h>9 z75dc^{1w29Tmg-C0wUVcmAEyP`D+0+wUn<^G~BTa)M;9`U=A4YtFh(SO)n^^BF6B} z0G!%t)35UZ%Io)O2+P~OuLFtz0SpZoyDG-P8F|+tzi|zP?cUu*2#oAK<|#Q6{0UxYiJxSOLwh6n%ZKv?$_$SejLT=CK)|)qcPhC!YMN zM7X}q3{^$MkR>o;ASqMM7(8}ZcP`egx>RIK$l{a7hh=8q)}|Jq$OX$~v!FHdbY4r# zshiCwIhHnNR6Eu7_!KCyf}HUM|J&S#3k>=E{OIl;$cc%lxAIla`z%P1Vlad=7e*qHvF*_3tRH8lLtiA>U6_Ekd;p{R zd(w2(Uf!-wW%T{)mRCf`9^Wtzt_(`*{$KatVDxtq0v>u;rqd#P!vIs3N&3|9=25}U z&{x_}w--ie_8rsL6wZ{N@{=CUcs`|oAN9&<8soEII`hz$ljy!1KHR_udL9K!<0W;= z79aUCZnG7NNG^j;jNtz#qpJsDF;@TLSmLvL&bLYj9*5z#<^i#b4tOf92l09cBcaCB zAY**bAWuBr1sWd)zh-r1^XMU2|_-%`> z{e4y+AP;~OsF-2Hv7=H~W!5NaPDb@H=-P9yZa4GaaWEhfD8GHPxmSzZKbcx0@=P19 zEQcYtz%&)c&%&599sFKi8(H2nL`htM0Lz7-E3-hrmOk=QLY~~+O_XIsz^h8j;Ws#1 zD^ICw0&ne&y-|UuDxqkWJw5STN2YZFQ5pZF3-i;iB|Wwr8SSRATBGm4RZj|)UYWg! zvFKDxC>y|UOnASk;Ik6#^G@uwDuJmJl3M-6vDBtd)h2e|sb^A-)ppHe-ttYno$z|& z31CefTRO@Py}=S;C;R;G;Cv(y5)%c#mvP_PqBeAqh*K(3>Eu zTJX=G;)P%f)h(XdC1zMwvMy72JwTr*Qlk2{O$E>^-fwM(T~}`|AIsv$C7=APmyr5* zKYll9OOw(c#drfmPaQ+A;)`utkI9_kuQBz3gwx5PS-picwgp`*(S=2*y8`MbGHFaB zvu9U!{3VD@t$}8`HU6*j5~K$r@`{l42$te>W?uTYbhElzR;q}Ipd+CBWtgI=!^B+v z+Q=~+tiEStU-E%~!zx~ABWYK_ClrsB7=dM#I$YsOySmts`rfA|tRO-f&F(X=SsH`N zn$;J#Iwg_3uYbO!83O6^x{YZK$!(VWXP}_T9}k^SPHQJll{jo!W$f63+5@=;3Bn?QY! z)Q?>kO^_zfo}^9U6j0zzmO~xW$f6?Pi*Ri)cJ*?T$=jalBUe0!Q2EtvX}+}v9WT_o zWEHrwE@L|?X0`N-jV#v0gR(KQD z`$@Xd)HWi(YOY4HtIdSh{T#r_tOgvOt+@s9bzpGDDfs|y>AP=?puaLbCL@6&hT20O zH5F`Hw-QErRT=zn4(3?KAJkC&tbECn>7E5X<)uVVOmrzHrGJ|6V1KSJZ@y@4={0Xh1l-d7{V4aC8}^aMXn&h z75zN1^3N}b#HL*b?VKC+C5NKDJQb$fw^R9_axDzxPK%bVRHN)%>PcYj@U9}*hROkT zG3EY4sK7{t4T9rWVb2Y9%G^bs>76eT4Fq>Xh_GrT5Di~ZhLXZ>Ur3ow2UCJk9a>LC zB=6xg;&=J``2j#;$e6Do`T~NKXj%5Y(<1dw{`O~uc$g5`q2rz^Yz&&ood34t+-rN~ zIQO3tJ!zbgv+!WxR_LT(mHf=t522ZUySTN~bL)yKt5@`Qv4xJJH`x@MZ)An1jwk`M z=FiU70g?6dQbXl5GOZ0=?JIB7wNb1>{+a8%Q5)I$xQ)i!#HK^JKYSy-qFS*UU->BF z`&lC|DVz`?J_L7OR0DGTROK|`XNDC0>w|zYo zeLLq^$H6rEKC8Ca8(HjntiHxkT|@ngF8>@JrB|!b+@Y3$Xc?n6YXUXX`mulL#*Hk? zjF8+r?s1^DT2?_>F(28l2SRfkT;thjv-PkzUU_oYwUwTB|oj zm2qfu;TFe41Ju$RxQewpV>j&9f3Ow5V$|d*Ym44={kF#3(=7~J#@JU&J3`%t@N1fU zX!mA+N;OfauA^d_w+u=>wR~Q3>1$yevhCPLy16V3$)^~;(U`RUMFKGoM%bNi1LW(% zJm=fdfDT4LDA>}qiB@{q`R_6KF|G}~|0vxSi0k%G`s!o_{v2j0S6f6yv>cO71fuv9HFRX|@`3`&y6= zUmy4ln8_0cHXwW3wIojZiAM$f_|znbE5F=OB@Co2J2ywOg^gF2ek`B-YV}`xc*tmR z4omx0n57E@9@l(4dnetXh~6vN@#|y3*5|Bk2k9IPUmyf2goa&9BbYDFKGXYxM})Pl{As^|oIFuGX=E{ztEZ z`7yp6A?ihWn~wkOqlE5T-u!V_yPSD&?t~YL_pM_~HMVl_TeADfuQZo{PSux$h%!>z zjBRu6H)Tr~%)fJeQ5dlNRoiF1-JMdl*bMD*dr#7Gt z19?r=wO$1r?)_Q?qR^a}GifTKF9sH#+{1HPRwYK{$Tz^Vy>FW-ZX3(eBImN%wPL1yRzAJbP2b+S6lYrBnlSK%JyuNuU^dRf4m$8{$AwnSmS=V;J%l78UKeDe61f0)XpS4r=uQe zk66k{A86g&_IRQk83W2IucyI%<`1hiEA$nW`&Ffac`-oT}-{@z3Qv<7-g zGhnU}ddmL!u=8J5z^%coxout2zIUk=mwq&t9e7I(XiJf%%}S(3$&!Hd@2SvC z>zixSUhL0tfGKs%*DGik2tM1XW zl|vYnPD$y=JRVB1=iYA@b;8^Hi-N`J#qHv4ym))FCNHY#5yS|-I9U{ zE!8Ncj2*Zu1wFKwwt3e0Wdo3>1k6MdF3?rZEsmvz)J^7sX4*!dX$F&Fmex)Y@E{Fu zPAqelK_&(`Ishi{<~yS@lq2tAlSg|CO>KIjDYe_p;A47$TpRY~A3OU4g^0jPapS{8 z^R&ZU>mq@rnK#+T8I>HYZme|+W`#QGOp+K;m{tZ=84V=oO14a^v|9v<-x%t|ElJZn zt;OR7%!B(e96l9gKnb*GJWMnP)DVmlU#!&ljrwV&_bTms`GxW3N6<^&XO)pT{V1MT zonoXL;j0rsV|>x;BDCvV<-cn8= zu1+>DhZfBWaysYaKoUias8Y&Uud7Ln@`%rw52;{jA^J0(?0t?PUBg1nrPWnznQI_o zAob8UbUuV+!76NB&gIZI;VtJ!*i#E;LYke9F43ZUm5rEWrF$c#f&I-L`EZ)(d^P5) zxnUZZsYtOX2*7LD0suxB85Cu5S(H6UGZiv9F&#N~ZMR)7Um}}!8s&_?)I#9qX_z*( zazjr{^CgCU}vcHAc!d9>X%=hdc z6M@=Cl?$T}C3RQk^tFZ5gdqK)Q@BTqdm_Zcym7K%TdcuJrTuh* z>=XAaLR^LQGJdm|VYsa~kzsK(quRMEE=jutwFPk9gJ`P2L&IyI+0wCz1<#UF%`__< zTM24#oaUz*1bZfs_$s_i66UhXDhz8*|DHP1EjAaSF5SFQ7ODEoJ9}di5=VB>WJ%f^ zo8@fQ>GDcVDkg~}&lQ&*h@IOTwUN&L;_&cKnAFiFX08YW{3WN=tAxAo>3U0&IQV^4 z_vTNaN7DK?a!3e^o`r57lS(9Qf#_ZngW#m@E0}&veTReO3;u8}5GwUT{ho^AE$66c z$OteKnP}SD3I>U^INrXVK_#VT+9wVT%~Xm#wVqG%=o$3Vcfb9yb8`}Ez6Wd*k$T^* z13luMD+7e_IJ6nUFY@fD6OtGwQY9phh=R!z?m^=@g(S z+`5b5(|}s^;C~8x=t#$1bY|b=;#LYl(a}N?W+d0F^`TR zJpXCMJX!a(W$|W@4o(@56%*27k?s^E=STdj2>ubFGZr1-LTYxJH`HthwDsCrf2|+Z z1fv^GU!ybwmA9p(i^J8YjLzrln)^`~sa^ff2VwxdIN`})X&~-{*dho6k zIQ4&nn>=IP-m|N|gO{h&MW|Qn#`{Ba9OAh0pI-%EudEYi4kmAt%Nrs}i#q-`3O+t3 zHm&gDSR8r=G;H~JGD?m~!*nSFL#*fM@ZGo!N<^TLufOfdN@>NJWW&;u<#_oB=CD+! zU#m2+CJWT2pw7qcT1j0MQJr$sD+gemo3>zv&I@J(%JAW3ztQLC-15w*l7ctOqQ!E_ zFe*-F_#hBoN$kmDqyM0+BF=Exy~(5xj@SDMvpSN;3^cXgie5DWrehGK|kH=aL=Rc}eu^?6T9)wfa+;GwU{HVLG&w zMRu0-@)=4W8-a_J{Y}&CdnF-}{DSmR)yV?2P*+#iT#1#)!JO|=Ime+Lhnw}#t@cIl4~UQ}8oibXStvy#eqx0h z*33VhWV`$f^5!(&e1}K=5ZYwFa4L7jJMO;Y&f2d;FG?64)hi%btW>4)3UhdIXM)^a zUDLaVR*j0X#c@SeD!!;Iv`0+(0WimFStZ>DzPnNS#JMV=PH3-yYJERQHe6SdrOS8I z#xlac9?3k#sxl=fE<2r8=5(h1GchIOlzJdcISa7{_-F`O;)`9eJe3^K%1-gRb$lRV zVm;trw!~rZWJ}_eGrLI36%Xp-dPYNK5Vp<-)?Y)otFykbl#3YxP-vKu^Q!kzR+gJ7 zVpo1GQH50J=T^~%7%Y5IUD6T*-o6QDyRSE7I(vaw)B|1y&N-;I#J9?x7j7=DK}1BL z3Hk_sXrge!!d!zIrA*RS_;M5@A^5|p3aLb_uZAU)%n zN=sIrUQ}6`eB{?J-4?njcaqvc`W44f(H@jm+WW^O4!u%&$Gce2+7Qu8;4|<^&%A*y zu@p%M7_+IHjj_edu>lH@DNkyLi_|xl7W}LrJlVaY;X9tt41N##D{Dp8my!y`S_-v1 zYhzPmvj#df?WV&0f+(lto|ta0 zGe#dwE6Iq2IU4>;e|WJ7_BpZVdoYz5rh9d6YSsNEK1Q(?MN=cbEti@%g)Z?;Ap2|z zjBNkEjHZgxYs&cIZAPzxk``W^;_|FF49*@uO(6*|MmYzU$dFHIIt)5I*~F+xs?00H zTVM<7?r27zkK3W2PIFSRR2L_j1jiO%g)1%0`meuTSeqxQ>_$C_7kW)J5Sl%Kef1_* zvJG*Ng};pka)?h3o7PDi*ja||ik0LMK$znz!_JoaG zqR5Eb&LtXv)Aj)I zS2F;pZT?VEjXDT3IYoPIjqy}KP%0+ey5=zTp=_mH0s(2T!UVdJ zUUk|;qMSyL@8!r|PX6T)JJx?JQV`n&fvZzD-M;V*49Cd0WE<8^S|TV0@wUG`HV&Z= zn1>?mG`7Lul`1^lWFBY+R~c!8h=Gp_RN(7Z74;-i;~aqaiIsD_pZ(gUFG{gDkJ*K1 z0*jsrsa0_@DZ_i-JK*u*P3v+V1bTO#6s-E*WoSARC_NL|=&H{jl{YUY7ek9g5&^s* zAVLzaYK|va*Hbg~o!eA^#(ejjqCQ7i@hYj<0qB)Lhm9ZDT!HH%IAVdunLq;Uw@s^c z`(MH@5q0>nx8^t*st{Gp`8?IXXg3VV5Z?^u-pFrc_XtXgho_R}?M_S#pc`nvpgj=K2#sIFw4jp&;M%vhKo)G0Rv(4FqM0lNIt zMNM#D_BZc<>uces>(wVXa1sI9-D?0Xa$*<$P{{bAupz~buOld(Bg4mb7{+KaRhwNc z?Gy3q_}p0B=HtbcrHnF$S{bkPy!*u*chr~+FC%ejN@vd zY;-k^)u{UzbeE4d$K!5skc=cWRkGqp*_^8otW4#4>k3@g1+Y$Kg#VBk)*}^fUp{sy zvWInAK|!L}V{mXxj*GNDxOeK0SoGXmqJW8d9ZNFuto8}ZFayK+TL?S+UpE0UD0ZQM zH8GI{aBzivCS`{&SVog9h4dG;l{$HS624uiwQbAoW1B=wrpk^W^n?))Gjn!L^_VTKm_TQu<6U3qtlG{gD5q01$1~ix5+OgE$ zDBvcu8N-nfaXafN*YE1@J<#DyhKv{?V@+F;XlOX5O?Z7eSP$q>HM3|ZKp+S7TDc+q zP>l_0n3d87^n;AE?DtaXl#+e(BLgvCZ*^#*B^BDQh8jn&N2C5IU~Q%-Zm7TY%g&aH z^Yi~u)E*5RPe(bMvvA;Tt)vj$@p);W-|4dJ`V5ay; zx#na%3LDEDqcQZdDWn`b8`nM!#%^wIVUt;9)%FLX{UdM}KM z|24R-;4epUJ@V`^g{sxyNIWFNUl>kL&xz5{LFqa-d2IsrifQ(qk8N&wpI9{*IYv|k zjS4ET|F0)Nf0P};XibK$HAekf99{{A7*Vh1lvdw@t zq6tcQ0&A_Poh*Y+)qp_X7;PsSxzdI?bncaw>V0%*L~f&1MfqD>dx|y<%7Z{^IBi`H zCZQH#Hw+}dw`~E<>g^u-e#_S!pV(rL%tk9P)?x~$j6trSw5b2mJ7j(`I!%>OH0TZx zAOL5|BJeFtg?A_zfm<#B2kxWzK_-h@8TBFf;GgZk)=y3n>%hDK-0t5wH^?pA5k)th zW)0tjc0!chgoZ|xAozB)IE}+d85&kPQaZPcb`5hbWW2+xebMIM9ws6=xM1XrX7Za=N%NhlbR_%)VZ6Au1uOWgfe zQ#pDJp$cJ!TWJr!4=6V{_7b~UB*`gq5lhr(*UEb@`r9_G{39zv$2U^|m$3p3m&)|) z&W_o5g|yi9AZhlP5`+-cQ-nY-8kse4B;^EnSFTvlSHj>Q) zw$U{14Q!!$fNvH$<`M45l)@kboh)I%scy+3fn6v|oOZYtm7e`S5&a%aM$h9e)R&CL()AaJ>A!E|FjquX? zl$fo2Q51azt7J(oghq*e9G#n6#B^+MI)?Z6P1`MKJHD0L1la3nhFHa#{TXD(jJ~N4yf<>lL$@F8Pey^q;}sIoaNhOc9NiHGBku( zrOX3+$*tmFypw-QK8ckwU?uk|?C;Cd^q(tbDF7~)T^5yLKH_W~_NaZQd5bigUj}DK z7v$e&Ye5TPArp3J2R?(HWhi18cS_pVx6P47S)?NoyspTLT?BoslJ7kJjpYAB`~Q-) zizzU1JoE8cn7A(X7-h+<_za_~yY5a$yi(Rd#arg)JPRT&xm;CgLEhDVc@ZOJH70`c z(FE(SJ1L(B5#C?5ul~h7^?SJK5%l@@@6208>E9Xiyg}k^ErTdiaT3bev#kHp%Ia-u zGYw#+Sk4}+xb6PuHD=yGq9X&cL<#tA?{HRB_930s`ir(M`GBH(WnHpA=6YeQXI#Jy z56;o8SjANID}S=y&y!-c4F_p7|o+&#PAspY90_{&n?zY*0oe}Qwu@1sW2$z%)s90ooGt%c&v(v ze)`z^yqhWj4PuUwIC=Y)&ofrPnIb;S$n5sy=abjRF*}7#8o}U+zZ3~x3dQ6}1B>m8 zJ;xSky=Jd}zv9o_-w)EQ0MVJ8_guzR9Yh(NP{jXfI%sBNXXo$k>3L>(TSzQV_}9FU z(8-YOQ}dg-Zxjk>a{J<0f9P2g%&Ay?iizSa5Z`ou*HxSyJz&+CiVw^>qkI!LZbsig zO{W*2k1FhYS;v)Kr5g#Et?Tj=!B#OeKsk@zPG?C=hkC^zNr$bi87^c~VOOt+oqVNd z>

|v)^TY_0ACVgFa+d;7uhW3(vi|l18y4ZP3?*Qwy%ClVa=h{J<3S*c?o0#QOB` zt>%YRj#-twmfi&OKm{I|;z_A8lYnmMu?;H$(Y!uQ+k(HQVXB4B>&4N7rTs51ehg~K zZ3UX+ISa(dn~g%zBykD&4E^>pQusp7s?1lk1*f7jo(XYroEdRwdf%8xM#JW)pG$EH3`kLp8;kSaMc07kVJeh3OKXiIO0{`#Q@Fi9DwNZbkf{E~8M3ycITG~`O zo10Q&FaFNIr{H^+V1Y=a<%#Y{f*t|0cEj}z1j!rqCsF=vBL08C7yiTbPu73O+$TS_ zOzd)zhC}vVyIq9cu>$A#&j7Y9YoYK-tUzJfs1TV-Wls}X>@;v`#Gf4lmpSk-va&nS zk{PHow9w+0)!@Bw$=*>FGUdo9cdT4z`@SCV+dNoq(F@`!Av~SYk;KYWay7_6tFwiA z%4{Vc{BLc zcV1|^UDnSESdsF?26>K#yCA1L>M7*y)GwTs!b78trF42L{s|h+vY0wHd>O`?iJc97 zdjf`uYm~B~Vh(o94NwDeRq2L<&0YKGo4IVJj>|saKidwI#npn;5?utQG83v)As2Sr z{T4BN$$|3B3NE78g(%_+p%0$`ydao4}FByXsrP9oMYBD4AllmnbnklQE;#Gh-+ z2?tT9(6VfkHc@FUCTD)O{I@ZBxC?dXn`v6PYeUl}PL38}RCUQ?+V7PyE}-Jp9oB~|YhWu-|Q3T84Vbx>=88mQ@44YX9{ zQKlDqjM#kCQ)REVb{FCg0;hS*4$xoywrTJ8Ym9OyT511hG!wk9f}u(E#=(YF!fWS# zDd*!4*^16Cyg*eYV*AI5tS$*e%r33jWST*Zg8|CVif{$FX?(0LaS;HOWj@IP2zL_d zstV;!q?n9exh`9pjnyb(oJ)Dh_yq~CzaNvO&;f66-mO#=nC<`3#{cO%8|GSiqkzXa97N53;bXF7H5nOTK1Ek%LMo-#I}B zOT$jDi|H?n&08yK4FxB#$f7Xu9!ZY(CN+>uq<9O_LO{tM5|(Y`CyPFh*BZ?!nRm~e z5-@igB>YAJgx=w6#Ne1I(u-^U}J=^GW57>=6rDa|_ zY<8KvMv3P%za-QozZpR4+54%_X4Y=B_HYn}#{2h>h)_&?GXgjRs@ZtaeB!o| zNl8foLvvJ_J&zhuSqg8IKQiaFg)FM;=vgB5HY}^4#OEUJ;}i03E$T#X_BDvk$+u7{%;fWxPnPaAN~jW^HxKPla)F158=%pFDZ+)md~+* ze;~MfEhH;qReIP}dhDvxF=h6QUbd-hr4jVwhH{ul{YF)Kj-Q%Z-MLZ;ld*M2$h_V+ zGIMy<+9i{ccp7%?kdU@gCu0nCw*CBVQ?CHx`jlavvq={t>Xx_-Pm?7v_wxu$sw`_n zXouh-eVxX{Ozvjfg=wW5aAg>9>Mv9Y4RS6M>ctVmi?)_hbL1T>uiRD~t^&se-SE!T$X4K(6i-ZBAz8&ZHXc zJ($X^K&F9Q^Yx=yA4h3@SeZA0GHP5Jeb90%<^T%Qa(0=Fi9T7>+pn7hUkWSSOoYp` z;iLph9N!y(6DiGrYxG1HHsk9(jiV{(JT77W}V4Ap5dq)F7NpF`#N&s6AY;jL%?|^vLL5@0Q(=q0I$-7n6tnyN&9Q7Cg_AHIeu6Hmj;!BnOA+0kD#Km_4x z`Ln@{N(t&%BahkS);s!W3|2D=f7Ko(Qw3x=y<*<(yCSR&98C2T;UkEMofeFeWq?fw z1M>Fm4!gkA30nQPKxv>4fX zte|K3?zrh%s&Kx=F9TV2=R03#>+slrQow_$T2VDZj;Icssuk(q$iD~lyUu64e<&|c z+%JSq^OjW99vNLm0KFO?iD@WIN9xN0FC9EZvx$enqy!<#{j3Z#9>4jpDp}5=@h3Qy z7T~h>J`=9yg z?lAu!mCI^-^d(Y1NfF)Ua=3(j*9 zF7tvG7!c|to_@1m#@!h4ZG;$AjrYDe_e>AyT8Kjk>Fi&%3*`Uf=qjVy=-MsrPJlph z4OU2TD-hhh1&X^Dmlk(-cLIeLC=SJnJH?Bm*Q>oFjZ{oN zx7`fCgo+Z91Lr*A$~jE_6sP5jXIt= zWcpt9r+TVTDsu@*)B~B0juMPx55w_0a!_dRMr3Q1`UfWE{BDaUN{J#Gv~8cDe%B}v z@k3DixE_u?t9~vADYhqblCxI;_Nm^LNfC!>qX8_+DAtRbRrb93)*)EM-5-L5)x}yQ z?>z`pv*Jm$3{$QQc9!*KuFV|*^!q?$PEp_c5uuKNd5>))k%(g}Y|f|am{EI+xgMW^ zePCWEqhSWlT&L)jcJH`39K*6y*qE(@$m?L|ewDSiVD9aA8Vrum+|;ropr5jVYJRkC zF`yq^sI2Fg)0^`D0h*Yb5PzjC@Owe6s(P!T!}s>B7hncO&93XIudwG;i5rbkGB|px zp01pqp|seBLbEQ4nzCb`gJO#T@f?XOf~*de{1$6$?hNSi4@l@JGm5+4eLX&XhOpvW z0$Glz?41Tb)w$B;C!JTfyhUk8u^=h|J>cB~HM2T~GtJGtVLn1cvF;u%ZbnJOD62&` z*Jx?HNT>u%daV&-3Q)GG_2n*Y0DEA11)oE{`LEv+8XrJQ8im12wP{@n$k9}WxN*wX zHf_Y^r31iHY1JmF_p!z&d>EZ_i6Op>bP>F5sX!fE1Zr@rFM^VVr%scq}!FOSSRlfmz6kXH@$i^;9%|Ee!v_IYNCoj%=iuQXtw* zLJ{%s8fhF?e%QRFGVxP#wc96J8AW>*%uvUC(yKXqGxIAv##Mw_e__FYJBXKrjR#_uLaJjjE1tU(C?d&&H%&m=>{NU54w#vleCOV zpjq3Rtsv9oz=Y;551lyE7l@#(CScVCVOs<7*dQOe4meMuohll2n>DjJ3%e{P4vxsy zp-#xLoum>9Ns?Yz9sTFFWHW6;Z6MSah&8E}am?^75W4eKhJmjXzx?qyTe_cq{fO^M zOefRqHi^Q_QopcBxt&XL?GVnvb(Ye3XaBVJ3PdeFZL^5?@4E|o!K_Ji$DsLiTQ)tt6QJ4$Y|8^l`eG@5)`)YPhYCUKjMt4 zJ1=R(6?QsY2-f7~Uq`D(pE45+-|sF9rMvk}cV~8bpYOQ4zvvNZnCJf~x~w@%^XobJ!%#NF*A8vIAaq+%oN1L ze9@Q^OI96b#livIA3-&WNZos5>*k42Fiu>oF-sDi+c~4(`xxjC-pC!~^#LB5*ewhi zg$acoYkgkagVywGHwm00eQi|JE)N|B6g4`AUWBZ(4xAZKjkvpkR0CxST7#-CCp#&b zQp{rn^6FYXw+u2FukW;(DGEnAuK(Th>1M&x4gT51f2hhA;70}mS!OF)B8L8|kLh}q zbM_qR_Nh8y<$APSilM0l#lhq6z)F(jyO719%~Rj!|NK5+DNDDdi^@hxf_=3b28A@4 zlD!9DNhv!re*X3U^TE)B6-AtOJ;;v*bV15t`Gk=#c3G*zCiLe z25EGbs8^nAsp@b+W%S*~1Yx$)XGfT~qpTmcr+Sv}z|eVKiXuB^GCtzWb|Tpoj|%H_ zZFf3kH2cZe9Od1JH*_G-Ho2;>Y!spYtz4={lx?oFFd>nM53H#XZj$PTH#n1oS$8WB zg$_@U&szXnsV+hx->5<8!6UVo*R6MRfCL7jjB5NL+*bE5(j*7PwoDLXk9JwpKT)E_ zHO81^C4C*6W>8o z^WRC0K4=iY(PaCrooqCR-xCz*M|@}H9OJ~-PN0x@Xw^YhJZog!W@E&Oit z;4(sH9_!F=ZdY^#F$jwmprC7N;DkG7hA80pysnP^m3!4L@^0L2wiMZg^|n_?bdQ%lx;|)_?WvB_NZITanNHS1(&%kMQyL zBJd2w3y+15Zspp)-Xdm=0Tncp3B;;pq?+DRslz|{LjHi61hd(D6fsqEJ6VoYJq=_| z_MS+H`vsT<2x{onmsgz7bM$oC!`tWJr|8ndPlL7+7)SIf(^F&boKRSkm;FVlTNX+% z7#yGeeTgcss{PMNLjZdl^?B;xACiwG>kh}LkPC^AseBS6kSsW>l3==r$oN->^WEJx zzbvH31)J?={JpDXcMj*Ug?k;h&#ub?jeK3cY-}$Aswdm7baymaWyV+|#P(;mpSWrA zxLLgeN)^k%t?NweOy96D4un10c$=P>s$D8SKn!YIw`J5j zu0jIBr$}2Ha-03o(zoi{Xi(*$cZEZ^SfeVyYQ_4+MrEOD4s(7!L-(y6)Y8gYon5Lx zsx3UWiks&$F67`Cq3?yiO|nLlMf#9K z4hjn!Uzj~9!+hSJio^TmwT(T#JkUZxBWh}(5n7%dUUN}(2q0l+qm2c;<^Vx6S3*T= z(8~ypgOiDS50DOgwlj-eivv!y4yV_qm*_tc5kNWpf#>Dp6BHAJ-R}R42EaEmGLiN# z*F+Ip)VKJ*1SxNtTYj5<6PAueru$|oi7I4{qnI>F^X+kh_5^BcT1P96aU{kh5tWBl zpxV6f^Bh>GnmZQFewWwUu#FFvB7urN$ah`;<1^~;jcauZ>>Javf0*&Rgo>YU>%Q>N z*piMUs;2TQGwxn{rUs7ekSfrovNFYPMdJUuy~7W9vcBsLxTSG%bHffq6~XGo#FcW} zf`=l{?+N*2(x@fmAYulHcb>Scyna<6MyV(&4lP!CR$jjiXm%*D3anyFs)hKxkF9|4OipLpF`4=iIc`vzkm^$ zyXc1LYgeG&dWeo55WiRghQ<;qU#R_a@m$7w|s2-;(LO+La%& z`@f9E{wG&{q{ZQUV#2LA?hyWG`h%ioVUt)yID$@QbyFpTujsrjojjG_{JvUMH^q%Tn7qi^#A?GNGn;Yg8AJ-pD!3CHmJAL_>(0Tw6vWDnmU-;*+h< zq|F_+rPvST7Lvq(GRLx-5@46QPzIqa3Lwu$jAKx` z`UWe|llqTI?Qdk{ccQ&_rpwA^5lJoK#O`wQx1rs5+cl+`j8!!I?8e$9TsF)*DcE~q zZ%&ybX6;Z>`rX7_x8TvF*8t9Ksba6)sR3rW~@a7rVP8xlnE>x=`lQ5 z#cynrzBdefsVB?>Pv1Ut^lr!p4S*TSvxk2thX-9E{_^^DcQIOhc4!>Hx)-i`^+oqA z-~6vF{P=^O&ccbOE(e9+X^lALWD^U}tiW6t8N&2UJ)J3+<)e45tnb|&wZJbL0JtFk zu@?8fDIT738~(}`#|DOK#V;Jctz9xKq!9-0r{`m=WF*d_b#=bamPKPcJuLA+;PbjP z^$*6PBa3&=>e(-b%v(JK25Sib zzrQCk5^awe$zul#jJW9nxU@?#TM@XUn;jTViz}D5}?KDaAWi(`V!> ztTZdG)0>z$Lo;fwj(8wIx);U{FdxG^ydH?6{IJY?GKBV*lQC2w@{$nUMa zJwhP#$Cu`xN3tms7*Zb*Zi6Fud^Ou$DV%S-e~^`#=xa@W;)Yi=qygosoh;q znJ{_NN^h%(GgUQ6wMW~RO@G_1mr|z=$L%c=&+?T~8x4#J^-LSeXBzapOm3azV>0cm zlVKsWWn_(oC72+L$?Q6dZfs0$p1cGuwIPSIO1x<;AM8WnzaxaIdfyxo8T-DlrmLW$ zl2+MRreMoO8zSx^JDr}oh*H%Uyk!l0JGtHOib!h~&^)N-|6uO>bQi>Z)sN*dgAtK* zILccKr(~G@MTbghJ~Xzzl{5S&H`aOV-J~J|9X$^gm$7KCQ@w-^m^Up9)+gvXra%vr zKdo#$u00}l+-(Zf7&w@?hch-|E7RsP3nr@%fnUXZMglI15Fku>zwRA)2LmOg&}el3 z;X@I61loU#tS7u&mEF}Byr5cMh3$6NW?_e3M#x{FE4=+@Qb5h)R`!`$c}-PuciwMn zdACn7UTkVXV^t>)Th~{dP~pqNR#yz|?DHO#;Uq?lxnO7KvHnw3OO`aM6|oEwri7^(n@ z$@(kyo$aEgY?wh>{$pe4p=+HW|%`b*&!(#3pd`c z=cK*dFxvx^c5lz16)VIrOsJ~-)NscLxd<+U>L95+=4f_wXU-T}L@(m)?d{Qr{y>7^ z6z$-L8X*z2vZnq=uTw!X$+qUIVzDU$?aLlMPAvNF*ist1H4pFR&cT%xD!d4>k-B7| zkMOD=JroREzu=HU895lXV1B@JAjG?(%ZkR6GrW60BsH;)4VB4r&X$ z(MnR>T8l2awVbG0gX@MZ>yNEGBA+}N8wvnlgOQ2GaR~&3;OH`$5LxD91&%a$VPxeP z;y2ds42dSEQ6<8SoMQWprQcGsro0+F%h?tS$j`|-JKNAxVOFfVrJybU9TLPyo{NyN zXfWo!VYL84p#Ra-?N7$_tKWIpIvNIoBf+OR2;2N}hQx|XUYr9ig`3R_ctqV088fCW zt`l;V6@>L?No`QeT~^T+OfP*~D4IWX?yn(ckUilWfujM~4P-a3@PTcBMBlv80M4O^ zkej3Ek}rCMzxRNsm%ed-xqJ40^RxdscDvsrsUmdspp{gX{Yomrf6oQfXQr2qAlMlT z)#V_KgqmieQ6|VW_$8RnZ~ko(q)do}k>~bJ6(8RDeicSk*RA@XTRpccYp{0fy>NPd z)@7yvni3r#&dtdkgr_<+fZmdm*^cd?59WhPQ;Af|h=CxOY_!Ac?C1gi)NA|H#NAWcom1p6aC&}nuKRVJJ4?(rK`tp(v;cnJ30@*ftm5y2OoVhs451Cc z-yiye4^!0j!L|NY4$i6p+e7iREw10g9fuvq-YLm+58=tJ&3yhoguR{aOY#%v-A}-m zMu?=d?hV8$Cj40+bm`lsY>g+&PlGk>Hhyo#^Gg6DXSep*wJ=(1+VgH^mGlwGvWM7S zs4vno`CB<*UkIYucLI!3A@u6`zO+#I|F-&#J#bSA(cM}L>U^J``C07-7CBd1Q#$+<%B}*1&@lW!bRrW9o zGYrO_2!y=5j!U>b4+Y!ltsLbI3$UY{%6ZZ=aK{t3#=jU3&R`nO1E#Z`Wt|`bQCT^8 zQf>MoLpHt;XF9s>Fj$Y>y$v|uOrn&;HK&`R7l9QqtCUu24Vv_Q1j$2>j_1mOemnTw z1muK47T~(2{Y4wBq|u$7n{!W$d?j>0xrjh-M{HrfwWI3)oy3NlggT9p32S6hm~K=z zZ=~+XpawcXAGEweU^^$;8kOf@pG1zEqp{5@lkjfBl($3^5{axqYmr#CA?oZv=vR9dz>RN}8HLDTX*!Tii(cRMWcHy>goH?ySuV!Fc| z?%O6MjvSNM0nM5Fm~*K`@P!1dYcXG4c3L`H;rXRCf8k zpKBSq_8!s?zVku&v-}U;MugsI`8{JZ0aO(cI)&zF#Gr=)dTWrqg-Lo@8YSbg``?dX zdWS`DoG2HjiU4^bNBC5+<5xJMmAuE*_Ocy}DsDJ2E7$JH5L*BjW0h_O^H3+uI>X+9 zlmx4yFy$`Mu6$dHT$&JHIqH1~lv_SeWKz-oVx4agF?tAmGLM!*Tjb#M&E^Dw5oAd> z^p;dGp^W$@0{Ou-Fzx(0xl*DY`6q~OUdIr#EGZ04AgQ{{n$MV!wt+lMr{P0pZbS+r zg|HOxPiXntb-W_hX3bVK#P`;VoueFwO&FYp(BJrXlyVrSZJX`SzqQ`Cbm*o;X&xh1%=jM`J!_B z?R2ar9+b>hux3NjH9egM8A>3@8?v96_7gb2WwWI9Aq-!0+_5UkVS1V+%oA>&+AEAU zjM4gt5{k?7=E~L&AYvbuC_$0wvLYF-8;@SzchIbjobKKofRq7-Zt9iRu6v7k0D5iN zanmRqtXD$kF6IIk+u9oF=!9hw4cJPEPrh||`*3l&K$!0#3-2n7sWTxIB;1fQ6&$eA zcMFKt<}TKE1!fz~sygaZYZhpZYcA~;M|4O|S^S|@bGReX+N~v#PU`eW{ISTs7?JWE z@fhw8?g#2RB>Xv4<-{rSm?i0}36#|0Yd^}aP7+d}(K zps+NLXi!*3G4~X2t>l)>StIfHs!Kc{g=QB;Y529+C59t!{2)X7ZF6g@aBnE)K1-!= zq$B-cf`4D^SWB5LE3;jYpom&dbt)0F8e`A)cNHzn)|0>aCejQRjYf6Q%unFr1!pDd z8Qz|!)qv*^8de#i&(4JYSn^5vK0FQ3U!m9TWeguG(Ar}74q7FQEP%NxPz~*5mm80M zlIm9Dy6R3RlJW%y12q0b{vG9KsChO#GTo-34AD5?neXJ}^Lfo$@v$&YZ>auLKT!D| zU;-|*blv5b(@6!oI}O-_wAr!>x3Sf^F<6W2KY0h;|A`nLQ!&ZZm$C;45QjPYzdACy zwbt*HnfSwi-Wz20C>_I5n06rt`^F4W_TR=l#*dgXszFg>R&f=h?4I%=B5RYq3kAgA z6nxi{iF!R83q8V3OBVAlD^FM%n{7jr!s^S}0J34k9!oLupHDiS%$F__SbPEUeT&Ee zv)Z(`ygDZEQ_A9;E04@8(lL6@Mz@DfrRVik2Hs-IV*y=C0R4ijI!Ih$#&4}@kanbK zg|!H|gSc+S2P>sqV&v0PNy=YjefWNert&*57FL<6q_gl zLdx-Zu0NwVob%~*wjb)?!svLF$!}~dlk`FeWO_aYFTe}SbKMv;Eoik#Nqwxi-8q5k zo{is9Mx>KGS1jbAHqL^vfNl{H|Bb^*|K^`ySe8KUUicQ+YIZGpMCw>~Pf_30nQt z;E_6|`1Mc3lc8dQ&YdlVvmoW!St-L3G? z;ow+~{f)1$+PLZau=}FBFXP5OD=9$t=hE}>Uz~jo7lV#xrh>}O|7QI}30ih8?I+Cpx9)Eq_uW2TE$yCN6(L}V zipn4$>Z4llo3`0Hw|px4fjP^0iIb%%pX_XrB_l1p)OZ9*Lj^D$F|Ecn4Z7v33@-;zNM2CT0G}5gIeMxf;zu71m`D3M= z?UQ5+4?6wsn(e2^u?!obp#5@n9F_0Kb0P8L^3Ek;U37>e1*`laMi6B2Do?o8wJCv- z)POMg#uF?DFr}o7F-V7FXp3M`Uk?0)R^FOZWJpJc=MMibC$OY$ z4Q=`xft*(h%vnz%>*n>8wr|1Gg;dP#&u4_jozH<0&xn{3N&g!s<{LU{=!b!+8cNMh zoqqMZwj{pAD$42h0r>>Y+Q|@-^N`_3Igy7W0w_))HGH?^Go{=D2g8#lVY0A%VP4nv z(qkaUsB^9P^!@oY9cxFY1kbz3yPpPOo=YEmdH;j zjn@~3!yT=VqWITeo^`XP)0#(#SMcJgR;s+DWwUQ!0z*X!3L==bi%;c~_CpEUw^PaK zGuS*&{Vsfx+j~@dDE2d(c`#s?zGm!uiTx$z)}A~xwIsD&C1Li9A1N4a{ERb;-kzhL zjvCzqF9+kZPK}bwV*S|>N^*cQ@s1&7jX67f`tpk+#57koH$BUwWJ^qyAr(-LYH9U)`|LzgNP`%?FDCZ_%vu^DgPpyRk%GC*re^ua~ZIy&aLXyA=x z4l-MQVuN7mE>bh$7EgfW4x6nzOFO!bL#h;~au_2?ugau8mZU;H6A%{E z^fQoQV1lK;h=c};7TIvAuvJ(aAh_B4nBe_*Ewa3_ zQk;TnU#n}KGi&~ZRMyi-knR*JkaQjdg%mX(E?!JC>MzfS3` z$U-NL22;RT@yYK7V@fMynsbn)m`YgLzEHsfDl4tgvYI5OYxEG!IefuEAdL?s@9YWt zcxL6Cxb+dUrgZ<3$RzekhX(N&vAG}irz|FK5sS1gvTur$1zNGfL{q?_$c3|6qv)PLVydZtdm;j6`fKmo< z+pM4Dr}dMM@Sl!6L>>Gf8voahQ+t*;-px?)lX&@WubSBM0^Ju_pRY4go9TK*Kg-?b z1x3y^-dy?-Z-`8^5N%=@9>MqJwH)K8GHL_179VCO9KSWw0MYfE6THDKjo@#C<+nhW z>W0+GAAdLy>w@B{(B}$YjswgoY z6!4TkZ|>je6X4x0dui?aNLO$bw{~9r@44V5JP>1cfp}ao^=E0aS7`HC!s7B6hc+0@gqoY zZ_x!OUPKUG8Gxedw1M47W8u1hWGd!^nskHVL+Ol`oKzBL7n1%;h~FdBJPHR zzejCwkng)$p?b!=*zLa8L|n$dOET5O*LSu!i91k~i&GjiWq!6je!ZgV552)hSB^Ja zq}|ImU)renb?V~v8ki|DJGO#V;CDeZPxc0!M}Z{e$RSY z9SvtC`!Ii6Gi=~yvrUMcR2(&+*%U+Lx6|ul#vUC{x>zNDrdkFO{IGjpvCT}NDiTlZ z_qmZ#Ul9vB4kdR#az!Q7j%JNEF}9HVu_5&4{;B2cU2!@0;~#z4h@)%~JNpOd`?Fja zt@cMuu}Ze@Y?S7Vv940*e};XO^B)-aSrpkv-$_F2Ds)qs4w9GufcL&uBDniu+epf= zY0fmzDf1Dl5amqOjp+}3^3bV|+?4eeAI_ySem@``foMsfRdQ>kA;GE-8&hH0Wd@-R z3XIC&JW{~nIuR)__N-J+&j3{C*A1Z ze|1nf`y4$pF#H%l@@bNOqUHIvko4zFhoR$Zi=}`YbIiO>T&b-(h>3KRq>?j{C@wA! zf2hB>tjZ1~BdOp4o&Pxki~Pr^$nyj4(*&)|y_X0xrV(A#QZhpP=AML2Qw?EvMP3O7 ziw$%X>js%w6%|T6&IcMKPb>4Bv2v>Xjf2W(W5*G4{ar_H*fi^QQkKSwVmyi8wnKeU zS@~PTFSmy4eS3opRC087bNRmr+?{QZuF5gvO&FN~L3{tO>9DHBed33&0er_0U_zn$ zA8N<~!L-mG#Y51WAk87iDA2y`zg#(IYT0^P#B6Y55F%|@ zv~z({H<3)=#a(cqB&S#>riJQ+5h^foq$_#$hv5_bTTHj4TXBrLaS!D~WA|}f!oL!a z!8*3>iAcb2ZV`eXBN>>KY3&DZ{rr3HFN!`!^!P4nT3uL56D?4ikTI*Q$GN9se%|~1 zf@lOqnSm2?)&H7g)$f_~@E=9n7~Z(g!<=HFQ)Lk6J86XHy>;I}Hv{AbO~FRFJ_4H- z*MNwa6;z|&zHzg5Ar&$9mGhrs->$!GL~flAl~+T^#u0ldk1E`H`keE3hY&P|ce144 z8_}6HLTZ;dYV~V%Exx6gT;?KrMI-Q5RTpd>TnJsjgQrL@4+boqR9)|meD)u?{35IE zA{#VY18D!;y9;YjsR!#h;xLPERKFZlpK-m;cJ`>fK3VU{5f)}&GVT*Gs_K&$f2Q8b zEzT>*4hW!L8obp|d(~ASOG!Cg3b^~ZOI{ApxR{Qcdw zKz=sOYk<5w&2E0|n!w9Vj_=gvU4i(`@YfLYT%tm0)3(ZYqFOJ`+dyKU15f^LIE(h6CbU**2=EaT1dXQbzUr1_rm&onOEWO(j&4U&JrM3k!I^J; znRr78w**bVGI?5;l)DxUr{Ha9;K$@i)@_-vaw8Kk)d|f_^Y8n}85jK1+#@YF*TGE> zWe|NWe}>tCbH^p^kkmjW70wLwxQ4zt5Bv{0YBrs`ktm542| zyAta+w)%II#r4JR)BjH6;4Fyk#seOMj(i++!GZtos$T7U-@1T^=8D@?ifYNG3_~XHH=ww9U!(09V5|LeYzq|WqnX0(vyq`C* zbn+!-@a;)bqbIF)E@WZi5rk}P2F6DJlgh?MVa6(-LHr9mR@N^r6xHQ0EB+n${v1sX z7Mr7x-Wd7l5w_wqc#`tRn6t;tiJrx+l33~xv- z54GTdc)Ra6`j@LoV)^8IMDmQQyQ<34uK{14K9ehI2o$>Q+cCjhr{*y?SuEEp7*+e1`L zhiIwXzVXG5kHZXkJUF}uC@hnTDzSWMSm*4=G6^J{csR0|;P~=E+;gHV)~*+LlhSiP zF7*L*BvW>)B$1laYQ|9_MT&yvz(CX-2s5-&ZlFd_8t*2yF8BTpZ-$qiOR?Sio@fB< zdv``ihmtD8ii--rF3fy`vlUqSV-il2>fNf?nlWiST4536RnI#l_SEWNZ}fr zcYUykDMisAJb)H|Yo+ZLJRs@4@b?&?e;}ijWAO0%jn96sa%+z#pVtKf?)(~7sOOMm zeiYSX>;*;!j`b5&j1g&pooy0o!UjBlb-|myUqo))A#zovXSROTJvJqnq)G@4wUfet z*GBeK{AKITL?|I;qcZ)AI2zVlu}ktY{JFEIta`qAk+k{s&c2UZatX;$fR-uj+79q9 z$GCvc|8WI`&G;wSQr3P~yfa033hiO5BxOp4GYWj_4@JoQGqMf+eh@CIv#Xn?nAp@L zNsa6Ik3z-BT;r`v?eFk8R9|lHCfP<^hI-uiGV0H3tLrZ(2m-?3b4ZL!up2}8k6vzE z@N(o-!h(?z0(0+=(=9z`> z!r*Y2y%o+wQt3XOw89*g`*SFe=@}{hcs_9k1SB)P98LI#x3vK{lq&o^?2w3S%{Mxu zdaclo^bAVJ95!Fz8$Ms~ieTLFd+=o&`Xvm^iC31NW<@w6*vO*1+RL&&fBJs&c<^hb zC)tolw ze0hc}%gDyp53=TwkV~uIMvVGPLZRDt4)alRL`4}0 zcehRwJ>C&5ae5Vf;tw2Qa@a4zBuh+Lwa5)bOXxcKTIaxJ1yWd4<^!qu5?m}FNS~9X zIomiP?R+^S9jqM;MM(Pu{siav2u2U9iUW(RyB`##hGR3(GjpV)#z%Y&9j3bvJzU{4 z>U;pPvQoAYzh7Qi&**%?>U_BVw7fc9%uW25MvnCSi{vx;s1y?;iD{*5a76Okln;Q; zdHybM?OyC@2mck*sN;@uqFTKFv+qkz^J+&Zo{%zIp+^{q2MF201TKy;r>||vssK$9 z$Ggat5FJ)4pdL(-%if4ptbe0;&G}uv_8Uk{^WyHH!gwR#Rp6B(;9^U>=i}!9neR$Y z++Pw3p8Ab9odSARq!M2D1747yPG5J_YQ&Wzc|tYEp7=OdlX30r>6H3Z7e)NvpDNI<~oFpfJ(hVS57P&MUZq{c^s8i75QE6L1tuxWI4^it%QATj8#b0qc zZ`EGOJu@bfGO&GbA3MXys>QoE+=CPFn*N^IN(fMH^h$qo`iA)$&9TS&Gc(hQ0x=W< zbECHXMu;r(kX4$8K=1chUPrrIdAMQNBk1kUx&Jn6I0+WYhcz007$w_x&b|2@fk@-T z-2N)K$-C`b+YNGM)alW`s0%NWg9T$#3r{2}<9#xaTvA#-rh0iGGv3;31!$D2a_(Y9`E&1l;PdxL1K`|NQv3)pz>es2a_amw zAfj8PMkf9{16~<&Ylobzn>PQTRm;F<-(3;FQ6se4=@$WMu2 ztG`J&_eQtp1&%4**%ZgDv_3KGyvielzX$AUyU7Xy$g()swYpqvpr{F^6o5nvj^Dg+ z;#|8#H}NiZEARsfvmeG;Q1Cm;T4^WycK>VE_pe87kPEE29bL{3y8O891&NkuI!VQ# zXr<&}&of|P-cZGz)qk>y6f?W&5Hz?gmq+M`LFi#bE5qHQPOhmPi3qsYWb{n4MFEm` z4fpK5gcQRBhqiWPepuAH9H?bLunFQC17>kwAxxoZ#{UOz%B5G%rz?s4XBAfo`C-V- zVlop7YUcVV6Ex=PF*i_?j6!&vjv()Kg)?it_2U%H^Q2XBeMu}lpGuSlDbaqJ<~A~j z0&ptFl*2M9c>~!16E~-+Tg;ToLV@aDDPc$q#uU7K&RL5wVbN+xDW?68NhNHpAkmt9 zd9UU>*`xv@;?dh3^59)QPlm=%7t1}6!aqDkln7ahldug8Y<1dy0dS#!+AsNI4~8+X3wicq5{qWtv`MQh8=rqa(6{? zI@;d%7q}g_E2mokn)r#2%6e+t-(va8Y0`<@5*OS|T zs~qtsy7#Y}*f1OmO*WNB+*3+bPV^=k;cZJqCT@kW&}+M}=U&9JEucVnV{=o#Fc8h~ zw9rGfBTL#?A6b#9WV=W^a1PPZ63`NmXPa)=3_4~xWnK3@?fem6AH*Qxp5fv$b=G!V9tWnx0>hXOfaQ>A?a0)8EMR` z*779F9S->#ef}YykXHEM#xh|J9b2fKtxk< z258*%qEeSchhcUeQ}S-ivFrLAHw>}3u5P8|JwTT<836gNKZYj(oqD2 z+Lq?GR($wB;x!`@x<1D8`E26#J|N_^_w~GBYqZ)w&e-ps9mgDBKqDzZl1zLl4sVNF z;Wqk=mAz$=#&pqbqn2s`<11l5A5>wt;FO@0kDC)rd=&DYbykB5KXs{|z7uAA1 z3`9HGSO*yvnnYVgk43iZEVBjJGk%`4X^#SCIr*wH*UR7_)RqNJRv z<@8?kq@oPA{k8G=Wak;(%&dEhZnqOj0%TSnhbDFd!(-q#tx4BetcX#1T1OY}JAHi- z@4deMpH+ElV}rUlap5C-`F?3CHy$zGBQiBLUUS=0LCCwF7riMFYSrepmVUAVKlCxP zsN)-?-tDt8@fXaOJGEDw)78~==RL?Xo!=*2H?S1a&=So_7K85mS zdRep}JSK#<-i)Y}YMd`m6aVwOb`Aor!W^~t{nz!ocmEkbQ@(D!9=^r}+;hE>J?$5~ zkW-)Bp3z}ctDHdPd#-tBkm!~a2jY#Bsl@zNQt(WoeG~rJSY*NdQkni7eO-H|_J6(g zr$HDGrk_jh9P1k>NHdK~>L_ym{u8i&D~h&t$SPva2%6TfAdaj%ixP^toTx)OB6d8s zId3rX27ZO>IZ66+*$?=BX=mtgY1%dZv-=cRmiCm)C77^wKgeQy*(~PA)v=WFRsB43 z{PSah_t^s~)W({Qm#1rE15ZGJ#@XvD@-FjVJ`Le5-lD^=vB=N9d2Y>}Yg=1`Z`>VY zO!tcT(u9UX@Z||H=v-C^q`rRRomUuh8NZYik=D$GsWBH;3Y>HYH+Uv_Jk)2{)~-!Q#@R~b%-Qrm=I*RWop7ANBdJx_Rd*Hr$GUtG(hzz=DSXv+jl_EB~KT{ zy6!GqbovzxG%IstH2Zso^_vAfK8pB0U(bUF2?sPW3s!eyN#I>ID}waI0m?r~4q69* zicinB-q~xueDQ$zjB2CJg9EHE@9?U5KqY{Pi=T$n0NsW4{%~{=ZnQps<3CUZ-cF@{?}WyReaWg<$C{fiw@*GPYrN0WgtBAWI}Uw{3$C0F-?jKb zf;h#436HkB#KAm|4bHK33Z1Dx)6gLS607)gI8*6=saaDr{Ye6;Z=;ITDef4mzM)|= zNnxip>*E!=GE7JjG~`v`b-p@-+%9Le-e#E zW5}JvZI4Vqp9S%}y}i3$OcM+s9^F2FuQz=w$3fqX z+M;U$T)GZUu$N0#0tSXlZ@J#q=vD7~yUdklCYr(WXQrW}b#BvoAXI=91YSgeO=2#F zw?=oHsM#{eKY341Pihw{U3`3^w)P{N-b9vjMDhdeJlF66c#&UR%a@MFDZ55lBxk|A z#3f2PX-ZX=K540yrecjsd_2XHex7b?u57d!!Ja*wjEo75d8NLRT3x3}e7t7~a<5b5 z)ajZmM1sW4(7LAP_C=F=Ta)_GX)6h=%y7a;tm6$7+^}Oi+!T5&WCMqf00b;pzf?2c zdN@d4p-M~KCBNt~tJPiq>misQ4}L(L5!`eaK4+Hb8O(Vjt+AQ=X>0VKCTKqLc)Sir zWtKLYqvKL}+Iqn`-SQ0SyoP_!u0`7F9iOd!p zUqbOLzS-gQJN;tQvV&D_YjWKC5sTO)Gtn8|qBnAa8jF3zDYyTbJCG(QYLFZll_mEn{RG!m5n775cs8z zC72iAfFn!=#i4rt_@o6m=b!E-UU0nd@s)kcg4EO3p?LLn`LJjL4BX%BKfh5ar`zr~ zfVC~-t)^&sLg_zyiCkb5NzcA5zQ`{IdC=92aukc_BNg(Xk@4E{TW`cIPsiXFc79An z@eIF4(Wr~7L+sz%DAg!j2+g5=hnQDvQ2yTad@6fomt*TX;l1;v!Q1A&kJ|stVfJpE1$KxR(FiNYD<+p|MVLBcKusyA5H7M9718nsI@mPs zH9~`eb>A|wQ4)lkabiBRnzR9PIJ1!QKS7|{6$e0)U!(UK2<(sO#r(Y1A)}Ml+|kij zZ#@qvgQRuRuMlFNL>c2c%H|#Cy*N0wQFAYWPwoHwJokA6Sdl9J0X(Pgop*%R{MN}v zV1fW3BF0omZWfvnW^yIgBiRr40)pZqXc#W9FJ0h*Qj;lWMRfX&mLLSQ7jx%M0pkRbk& zLepzOTHt#@Uj8NMc_UQ(aoBi$?RlefkjwvEDK;gd5%ubiSI{Kmc6UNfjIJAw7>m&~ zN#3A*DR$eBWQmcFR}B_+2UwlYOPygET=`oUW)W-8D{K8Z0-u47jF{WgH8aXDHpTzP z(OE`C*>+KwZlqJXQ-<#Dk!}zWhEC~{mhNteA*H)}=nfSSkPZnc>H41cTZ@1EfHiSH z_t|IfYisBti_R})-pzPR$QlCw?HZ)VXwWFWY8^#BzexOV2%)Q|Z^$O%&126L8S8mP z6yX=Nhx1>W2N5B#4gQf7>aTq^z0W=`K}$P!boX}@`Nlh=(E^gsLiv}!K0S*jUN813 z!)1>goV{*ErpR@(x%25JOjiy--xcag8Sa7{e>+KqIqhZzqBJ=|B<33KKG7(^K9=B-(Ko_AqSp|4ipKW zhYss)!D2yy0HlW>qsojE$Z%f*3wPc$g8At?}l4yH=j~A3BeXVmyFLd z{s$md(f0;E5}$1Z1uu}Rs(uER4q-cgkQ{h{b9&D$#286wBqRZ`+jU@Lia5 zsyCRWXoS`Ky=yv`NpHlLd(vXO?!d2-eD%|&&||K40U zI3VQoZ<>O6=7R>u0x1kqYO^LF>$92=ctz`H(BZ|A!xIgPP-dl}T5vn_4S8O$4@=r; zasXoL7e1FddDzRcz~UU{G@(W z%tliTo;9gX7%<5|>z9Szkow6Oe__e~Obs|}YTt2XpHKTruhNEvK`WL^^TvKO3v+U} zgznnyUe1Q!(*a*`-)Q|h(;{aocXAq9k;KLl_bB&&P%7q1cAM;Qf}q78_R%bmGKDAG zs+87nRz?-5cX9Y?fm8z*^V0?i7jQ!7E)D9RCF?ULlmjjuK!wIA6aIU4W@hStxveN~ zI`9|_t-zz3yWTZ-ao6g;k9gzsStgH*hcG5D=9|2!c~?)c7BM;*9nacts)mg=Qf5>} zBB`1XT*@Sb9Qpq~-?g=^%g*F%2>WCh4jOxmKVumup#8DO4%NpPvtED|e0kfiO+nXk zj*TuX`e`ihM?MF0{_Ect0N8kCovlET061I}v1Ai#osvm})kceryYt%rnoFgCopg1_ zJW;rI*DO8{fizdx%9J49nozq#l95Wr8llTINQ>#9(H9jlm4o2AT6VY-xf{yq4Ax(S zhF|rhba!_JN1}jF&llvCLfW^+U>!BId02e4U%>-0Ya@YZ?XhplHKrbU)?Bn5+xlzGKwJ- zQ;La61|RqcdEEK9<1hftTRQ2(dS zpd_sV%DGZ~HbhY#G2pX|wJmm0`oPv!R9)`_dE_&dsxF|0K-pN8K;Haoy8x{7!F=d& zsJj>FqO$f8@4;;E?S%d^F@*F<{uf4CE^u*g8-=|f32L(J*}3t59Cg15`4l)Qe15tc z98{MsV@T+8^+2@7x3%^1W^oya<(oH|LYh|0yc=N7ZL%h*vQASRp`h8{%sY=YQ`@VO zk^wGH*&3+de$U9LzC%)x0J5}+cek$>iGcYrXAgg8_aamB(c$TCRB{*)>JotzG>%m@ z;g(M*`qSpg$sLV)KJ)w@)CpVEi10 zk5@oAo#67>+17g0sde|Q3B{4qSEFZH8BJPlvJ@G@4`JSDqlEV)Z;lvBFAVAs9)yFK0F#XSlUA28^Mn+m?=zIq=|k?~?%qFriY_R43k-zk1Hews*wh)=eQ{mUBqMarSV;k6L962 zO8zveMkgAB0YPSZNn^4wdt2Hi@KNy6xub51m}5jE%Zj+SSUMmmP<_gOc?_ETb1=n*w@4ekjj(3zpfW7hhsj<(CmV0Hiey zRnP^}pZOsT#H-0^_z}s`_{h0v#X8_3YE(B_f`g0aXTa6;Wr!oueMXfaqSr=jcUhVI z0bUx{T0!I!*g=K9s0!D)q9r3VI$3@X%8`sdn-)&VD&*3D($C-Nq(1knAH8zQ7O#UF zz#TD8(2YV?%+mTdVhdH`bQJRCKPAB(u>LEFAK**)J`cAOnU=!m_1(~CLP--^$=0c1 zfJkk7ksb?TupZ!H4b5Z>ze8d5!deW*5u|RAqy&jP_%(@EeS^8ZYi$Ib*}${RUS%mn z2Igp_A;-`~x;Gyq0tXH9Iu2ij*2nSBDGKHDH_TZ0?~x6;()N1@LOm2Pf1Rlk;8B_4 z%Ica}G#SD=(0BTGSr}O>V%-&K1!Q1+Gyqkx97w#O019A$WMMUc4uYo^lW&4!Q3lO6 zw20-}5ZnLE8s{X$|Mp=!UFC+h+-sqX6BvWvxd8pR{T7nD8%wN!+VBJD`G7oS@EfvU^=XD zOjJv&z&m{o?eM!kQH&i%iQNOTaB91Az7|Y!?RNc#er_RRs7dP*U}T)2HSuUHXSv6p<(pV16A9tcN98HNvdc9%utSHvf?{HR&1OCp!`7c z#o+z2leRWhPd#y!bqGNI7*`c)p-iFkM=hjqGt5vbRDxHYSJoNCFN@A&_F7wRG3Kxz zQes@j9n6lB_($pQQV;2#j(Ka&5JrRBIDtWev=0jlIlacyj?$pJ!IkStN|OAt`Ajy0 zhjjCHo1&0KZbgi27YmpMa3771uPR+B(uQG9rA1rcz2cF%<>`Xt1eSk>GSCc`t1kLueI9|vta5Kshz^3 zN9U^quq&g9R?;ejq-vBVNyF0?N}OAN!IKovr3Hfshhy#D*v1pr>3_2pZ78J8^Pu|Z zCD1~u!=5~zK&NNk6sNHT^6qA6M^BXSTNL`r_)=9FHq8^Gl9zDz@GROLaQlY4o(?>K zXjC5eZqT>>gU``9fPLHqXbC?W6*h2!c>t6$@mPL)*_MOSxza^J+8Dd!Ll)IHg4mHeq%35Tf{ z0V4gc{j!j^7zTDmaMSB2&lh1`!2Zc8vhS&?Z*Uf{^1wTRI)dBIHg@WQ0PEE~*9*#- zg#Qp9vRke^i-Pj#PF_+y`mIk~_aAuWF>Od2_c-RkMJ~a&`xXpzC3rS@lqV8VM?rP~ zf{egbASr8T2|_vSBItd({N!?VAwDs(!rD0p|0st-c*X@5rhicq;WSbG^2XkQ@1JpB=h2)zmpL2f#98+US;xP@@jZ+zK|xV3BW-Q1}-HQ9R>iR{h@bsdh{)m5fhA0^Q620 z6IY>_B$+{`5uNPk1i~1cL73TQs6w1DgfBRzo_N`L3E-FM`&>LB=+*`c$-ox3S-()U zQ8+@pdBB%r9b8M+`3^jpm`axd>{0y-+fUcypb{kPt%pYBD!+t9?P4?|@FZ(_7JEcq^rEXqT0uXboTCKyz zfa*z%RYa>3AlsZpHXXPdF7U|P5$ol7D{-UuX_}He`KAn~&3UgI9&%zpIHLPXxFe8H z8VhYp`>Bhi%zJJ%pn30$sAUGO{3EE;(Lx$@xgSHp?)x4huD|nQc_StUglPwLO^PbP z^I2w)O|dh6$;aoImI4kD+g0KnrO_{RTyx*C-^v#f$VGLl!-sRUfgq0vat0P=yk3qy z%jm4C>FdS`;zLo|tJ^*z3(m8m9u~7_iji4#6OBnS!kF^SE;b}`a$O#-ms^K428v=?qt+ z{Or~&h2@3~&#Ghp_aBEG2u~5AGb2>OolXedrsG&7nsMmc;9Ltm@0zx(S!Ayr%f5Y$ zxcfxBo>(gfOb9C_QJYjCf`u-pR1Z!rp2A&Npcp@TV&42_XN zRE&WJ-Wl%6D}>2C{25V}IR}qJRKt&lO7rwTPP4MK>rXS z+fRAOT?Xd`b*NpBGfj&V4aH8|hZMhi17fvT=_WZZc@#B?T>?XA_#haBma$Z2zp4Y% zR`BKL%_tCiA09Z@U zgIO}t>S!oMyTp*xnF8CHJ1Wz@z!3RViw+h|Vw3@#3XIqVYeE_D6t8|Pa&a#9wfAB9u&+?hzinhN&V7-Eb3^59`F|z4~l0Y$C#8tldnP^ zGxsG=Hz}~N!LiA9#$*)N@OcXJSAnesz|8FYi^R5}MU<5;?fg$xlBVq+IH$`VjNi|( zSb?FJc~mL0{+%T@S@xmats*qNUO{z>OBsz^SuHhh@XV%>^<7;RZ zolFb`#n$bJ)Xb4TfjuVz3%(UgNj50f7I%l-;*s>>n_xL&ll$zCT2faG7r3zK)+k z+EzEW{?Y@QbG>B#rZIzxWtN#^;QrQ(OTzsCJ=j>IG?wBiitsB^Pc(c~OmnF68}0;+ z^LnPQMWN;tNp|s_hH#p+3Wc=}mfQ47f#e2X zdO;d$qPE~dxXY)VycGc~qoGu#?(dS6YW z3FZfY&cSj@&S=f8;201alwD4lqFSrz(Su6qe%;^h!0=r(U=yE3|MqlsI>|GeS)Qt3 z3MKT&PUO-q;oSZ$v?F#qI#_#N1T?F-Y+D>~>jF z3{>$RPr!n%7;Q5^Yni4pW`Jjwwm=g(2DxO-s3Z#*a%PmZO_r3DvdW_UtI;SD#5)6J zRGM%}QniTjzm?_U%M%vCrNVc`asprS=;KLFV%-EnMHSgt(6!P4{UU}DJh#{%2Ijx6 zD)^*nc*wL45!E}IGu%o=rgp?32dKA%3tlp5yRte!mj#I_O-CU5$%MVMk>UFvQ?4Z= za;7fWI0%b1>_(q}i^ECl2iuF#?vDGY$Vk*b&Tp|`!Htd2HHzuy==rY>4E=Z zthUg0!J{k%)62C^AKL8(A@jhFLchJcTj(mmqNFg6pwAC@6TQQdiG_6?2C{}eM~;6E zDIp+UyA_W}{++?ZYfzgJ_Vqo~u|__d*H@Jr<64b&c8FJ7kDgOriUi@I2%gkT(5vcFvsFgX?8 z#?jOMDbYdq7lr4R0|*P9Wt4GR0KNwxC2LUd!86gfHE|dOd!=Ay2tP}&?%;7N6h$@U z9tQyJI0v(f(6cp23%h*{96H=W6TcjX0o+(Ar4@uBAW%SOI&3n5yC5+!7F!2g~RTJ`LmP(dDZK$<; zfho)g%_Hz)u+87YTWb`P5 zhuJ4$zM*Br5Qx*U<7YyY3FWUYBtVeGdNR ApPpla;l=<)q>SMrjOY<+q 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

jhUwE>-v{?!UN~=Ix(Sbv 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

+&t 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

b2HJ7jtdgXAx(0#t9m40A0#+# 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 z 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 iJF^-*hB0Z|{{I2*Asq&`f|KI_0000\r\n\r\n\r\n\r\n \r\n Angular Demos\r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n"},{"hasRelativeAssetsUrls":false,"path":"src/polyfills.ts","content":"/**\r\n * This file includes polyfills needed by Angular and is loaded before the app.\r\n * You can add your own extra polyfills to this file.\r\n *\r\n * This file is divided into 2 sections:\r\n * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.\r\n * 2. Application imports. Files imported after ZoneJS that should be loaded before your main\r\n * file.\r\n *\r\n * The current setup is for so-called \"evergreen\" browsers; the last versions of browsers that\r\n * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),\r\n * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.\r\n *\r\n * Learn more in https://angular.io/guide/browser-support\r\n */\r\n\r\n/***************************************************************************************************\r\n* BROWSER POLYFILLS\r\n*/\r\n\r\nimport \"core-js/es7/object\";\r\n\r\n/** IE10 and IE11 requires the following for NgClass support on SVG elements */\r\nimport \"classlist.js\"; // Run `npm install --save classlist.js`.\r\n\r\n/** IE10 and IE11 requires the following for the Reflect API. */\r\nimport \"core-js/es6/reflect\";\r\n\r\n/* Evergreen browsers require these. */\r\n// Used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove.\r\nimport \"core-js/es7/reflect\";\r\n\r\n/*\r\n * Required to support Web Animations `@angular/platform-browser/animations`.\r\n * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation\r\n */\r\nimport \"web-animations-js\"; // Run `npm install --save web-animations-js`.\r\n\r\n/***************************************************************************************************\r\n * Zone JS is required by Angular itself.\r\n */\r\nimport \"hammerjs/hammer\";\r\nimport \"zone.js/dist/zone\"; // Included with Angular CLI.\r\n\r\n/***************************************************************************************************\r\n * @angular/animations polyfill\r\n */\r\nif (!Element.prototype.matches) {\r\n Element.prototype.matches = (Element.prototype as any).msMatchesSelector;\r\n}\r\n\r\n/***************************************************************************************************\r\n * APPLICATION IMPORTS\r\n */\r\n\r\n/**\r\n * Date, currency, decimal and percent pipes.\r\n * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10\r\n */\r\n// import \"intl\"; // Run `npm install --save intl`.\r\n// import \"intl/locale-data/jsonp/de\";\r\n/**\r\n * Need to import at least one locale-data with intl.\r\n */\r\n// import \"intl/locale-data/jsonp/en\";\r\n"},{"hasRelativeAssetsUrls":false,"path":"src/styles.scss","content":"// CSS Reset, comment out if not required or using a different module\r\n// @import '~minireset.css/minireset';\r\n\r\n// NOTE moved to index.component.scss file\r\n// @import '~igniteui-angular/lib/core/styles/themes/index';\r\n// @include igx-core();\r\n// @include igx-theme($default-palette);\r\n\r\n// @include igx-typography();\r\n// @include igx-theme(\r\n// $palette: $light-material-palette,\r\n// $schema: $light-material-schema,\r\n// $exclude: (\r\n// 'bullet-graph',\r\n// 'linear-gauge',\r\n// 'radial-gauge',\r\n// 'category-chart',\r\n// 'data-chart',\r\n// 'doughnut-chart',\r\n// 'financial-chart',\r\n// 'funnel-chart',\r\n// 'geo-map',\r\n// 'pie-chart',\r\n// 'shape-chart',\r\n// 'sparkline',\r\n// )\r\n// );\r\n\r\n// $green-palette: igx-palette($primary: #09f,$secondary: #72da67, $surface: #333);\r\n\r\n\r\n\r\n/* autoprefixer grid: on */\r\nhtml,\r\nbody {\r\n height: 100%;\r\n width: 100%;\r\n overflow: hidden;\r\n margin: 0;\r\n box-sizing: border-box;\r\n}\r\n\r\n.sample-wrapper {\r\n // width: inherit;\r\n width: 100%;\r\n position: relative;\r\n height: 100%;\r\n margin: 0 auto;\r\n background: transparent;\r\n}\r\n\r\n.sample-content {\r\n display: flex;\r\n flex-grow: 1;\r\n flex-flow: row wrap;\r\n justify-content: flex-start;\r\n padding: 0;\r\n -webkit-animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;\r\n -moz-animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;\r\n animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;\r\n}\r\n\r\n.sample-column {\r\n display: flex;\r\n flex-flow: column nowrap;\r\n flex: 1 0 25%;\r\n align-content: flex-start;\r\n margin: 16px;\r\n min-width: 280px;\r\n}\r\n\r\n.sample-title {\r\n color: #0375be;\r\n margin-bottom: 12px;\r\n margin-top: 12px;\r\n}\r\n\r\n.sample-title .light {\r\n font-weight: 400;\r\n}\r\n\r\n.sample-description {\r\n font-size: 14px;\r\n font-weight: normal;\r\n color: #717171;\r\n}\r\n\r\n@-webkit-keyframes color-change-2x {\r\n 0% {\r\n background: #fdf8f0;\r\n }\r\n 100% {\r\n background: #f6e7ec;\r\n }\r\n}\r\n\r\n@keyframes color-change-2x {\r\n 0% {\r\n background: #fdf8f0;\r\n }\r\n 100% {\r\n background: #f6e7ec;\r\n }\r\n}\r\n\r\n@-webkit-keyframes fade-in {\r\n 0% {\r\n opacity: 0;\r\n }\r\n 100% {\r\n opacity: 1;\r\n }\r\n}\r\n\r\n@keyframes fade-in {\r\n 0% {\r\n opacity: 0;\r\n }\r\n 100% {\r\n opacity: 1;\r\n }\r\n}\r\n\r\n.headerAlignStyle {\r\n text-align: right !important;\r\n}\r\n\r\n// $green-palette: igx-palette($primary: #09f,$secondary: #72da67, $surface: #333);\r\n\r\n// .fin-dark-theme {\r\n// @include igx-dark-theme($green-palette);\r\n// background: #333;\r\n\r\n// ::-moz-placeholder {\r\n// opacity: 1;\r\n// }\r\n// }\r\n\r\n// .dark-theme {\r\n// background: #333;\r\n// color: #fff;\r\n// @include igx-dark-theme($green-palette);\r\n// }\r\n\r\n// added to fix SB layout:\r\n.nav-bar {\r\n background: #09f;\r\n padding: 0.5rem;\r\n display: flex;\r\n flex-direction: row;\r\n}\r\n\r\n.nav-bar > div {\r\n // background: #c300ff;\r\n display: flex;\r\n flex-direction: row;\r\n}\r\n\r\n.nav-bar > nav {\r\n // background: #ff0000;\r\n display: flex;\r\n flex-direction: row;\r\n}\r\n\r\n.igx-navbar__left {\r\n // background: rgb(255, 136, 0);\r\n display: flex;\r\n flex-direction: row;\r\n}\r\n\r\n.igx-navbar__left > igx-icon {\r\n align-self: center;\r\n padding-right: 1rem;\r\n}\r\n\r\n.igx-navbar__left > h1 {\r\n margin-block-start: 0.3em;\r\n margin-block-end: 0.3em;\r\n}\r\n\r\n.nav-sidebar {\r\n // max-height: 500px;\r\n // height: 500px;\r\n overflow-y: auto;\r\n overflow-x: hidden;\r\n}\r\n\r\n\r\n// .sample {\r\n// box-sizing: border-box;\r\n// }\r\n\r\n.nav-bar-title {\r\n font-weight: 600;\r\n font-size: 1.25rem;\r\n letter-spacing: 0.009375rem;\r\n text-transform: none;\r\n line-height: 1.5rem;\r\n margin-top: 0;\r\n margin-bottom: 0;\r\n margin-bottom: 0;\r\n}\r\n\r\n.igx-input-group__bundle {\r\n display: flex;\r\n flex-direction: row;\r\n}\r\n\r\n.nav-search-box {\r\n padding: 1rem;\r\n max-width: 260px;\r\n display: flex;\r\n flex-direction: row;\r\n}\r\n\r\n.nav-search-box > * {\r\n display: flex;\r\n flex-direction: row;\r\n padding-left: 1rem;\r\n}\r\n"},{"hasRelativeAssetsUrls":false,"path":"angular.json","content":"{\n \"$schema\": \"./node_modules/@angular/cli/lib/config/schema.json\",\n \"version\": 1,\n \"newProjectRoot\": \"projects\",\n \"projects\": {\n \"demo\": {\n \"root\": \"\",\n \"sourceRoot\": \"src\",\n \"projectType\": \"application\",\n \"architect\": {\n \"build\": {\n \"builder\": \"@angular-devkit/build-angular:browser\",\n \"options\": {\n \"outputPath\": \"dist/demo\",\n \"index\": \"src/index.html\",\n \"main\": \"src/main.ts\",\n \"polyfills\": \"src/polyfills.ts\",\n \"tsConfig\": \"src/tsconfig.app.json\",\n \"assets\": [\n \"src/favicon.ico\",\n \"src/assets\"\n ],\n \"styles\": [\n \"src/styles.scss\"\n ],\n \"scripts\": []\n },\n \"configurations\": {\n \"production\": {\n \"fileReplacements\": [\n {\n \"replace\": \"src/environments/environment.ts\",\n \"with\": \"src/environments/environment.prod.ts\"\n }\n ],\n \"optimization\": true,\n \"outputHashing\": \"all\",\n \"sourceMap\": false,\n \"extractCss\": true,\n \"namedChunks\": false,\n \"aot\": true,\n \"extractLicenses\": true,\n \"vendorChunk\": false,\n \"buildOptimizer\": true\n }\n }\n },\n \"serve\": {\n \"builder\": \"@angular-devkit/build-angular:dev-server\",\n \"options\": {\n \"browserTarget\": \"demo:build\"\n },\n \"configurations\": {\n \"production\": {\n \"browserTarget\": \"demo:build:production\"\n }\n }\n },\n \"extract-i18n\": {\n \"builder\": \"@angular-devkit/build-angular:extract-i18n\",\n \"options\": {\n \"browserTarget\": \"demo:build\"\n }\n },\n \"test\": {\n \"builder\": \"@angular-devkit/build-angular:karma\",\n \"options\": {\n \"main\": \"src/test.ts\",\n \"polyfills\": \"src/polyfills.ts\",\n \"tsConfig\": \"src/tsconfig.spec.json\",\n \"karmaConfig\": \"src/karma.conf.js\",\n \"styles\": [\n \"styles.css\"\n ],\n \"scripts\": [],\n \"assets\": [\n \"src/favicon.ico\",\n \"src/assets\"\n ]\n }\n },\n \"lint\": {\n \"builder\": \"@angular-devkit/build-angular:tslint\",\n \"options\": {\n \"tsConfig\": [\n \"src/tsconfig.app.json\",\n \"src/tsconfig.spec.json\"\n ],\n \"exclude\": [\n \"**/node_modules/**\"\n ]\n }\n }\n }\n }\n },\n \"schematics\": {\n \"@schematics/angular:component\": {\n \"prefix\": \"app\",\n \"styleext\": \"scss\"\n },\n \"@schematics/angular:directive\": {\n \"prefix\": \"app\"\n }\n },\n \"defaultProject\": \"demo\"\n}\n"},{"hasRelativeAssetsUrls":false,"path":"src/main.ts","content":"import './polyfills';\n\nimport { enableProdMode } from '@angular/core';\nimport { platformBrowserDynamic } from '@angular/platform-browser-dynamic';\n\nimport { AppModule } from './app/app.module';\n\nplatformBrowserDynamic().bootstrapModule(AppModule).then(ref => {\n // Ensure Angular destroys itself on hot reloads.\n if (window['ngRef']) {\n window['ngRef'].destroy();\n }\n window['ngRef'] = ref;\n\n // Otherwise, log the boot error\n}).catch(err => console.error(err));\n"},{"hasRelativeAssetsUrls":false,"path":"src/app/app.component.scss","content":""},{"hasRelativeAssetsUrls":false,"path":"src/app/app.component.ts","content":"import { Component } from \"@angular/core\";\n\n@Component({\n selector: \"app-root\",\n styleUrls: [\"./app.component.scss\"],\n templateUrl: \"./app.component.html\"\n})\nexport class AppComponent {}"}],"devDependencies":{"@angular-devkit/build-angular":"0.1000.8","@angular/cli":"10.0.8","@angular/compiler-cli":"10.0.14","@angular/language-service":"10.0.14","@types/node":"12.11.1","codelyzer":"6.0.0","jasmine-core":"3.5.0","jasmine-spec-reporter":"5.0.0","node-sass":"4.11.0","sass.js":"0.10.13","ts-node":"7.0.1","tslint":"6.1.0","typescript":"3.9.7"}} \ No newline at end of file +{"files":[{"hasRelativeAssetsUrls":false,"path":"src/index.html","content":"\r\n\r\n\r\n\r\n \r\n Angular Demos\r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n"},{"hasRelativeAssetsUrls":false,"path":"src/polyfills.ts","content":"/**\r\n * This file includes polyfills needed by Angular and is loaded before the app.\r\n * You can add your own extra polyfills to this file.\r\n *\r\n * This file is divided into 2 sections:\r\n * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.\r\n * 2. Application imports. Files imported after ZoneJS that should be loaded before your main\r\n * file.\r\n *\r\n * The current setup is for so-called \"evergreen\" browsers; the last versions of browsers that\r\n * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),\r\n * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.\r\n *\r\n * Learn more in https://angular.io/guide/browser-support\r\n */\r\n\r\n/***************************************************************************************************\r\n* BROWSER POLYFILLS\r\n*/\r\n\r\nimport \"core-js/es7/object\";\r\n\r\n/** IE10 and IE11 requires the following for NgClass support on SVG elements */\r\nimport \"classlist.js\"; // Run `npm install --save classlist.js`.\r\n\r\n/** IE10 and IE11 requires the following for the Reflect API. */\r\nimport \"core-js/es6/reflect\";\r\n\r\n/* Evergreen browsers require these. */\r\n// Used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove.\r\nimport \"core-js/es7/reflect\";\r\n\r\n/*\r\n * Required to support Web Animations `@angular/platform-browser/animations`.\r\n * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation\r\n */\r\nimport \"web-animations-js\"; // Run `npm install --save web-animations-js`.\r\n\r\n/***************************************************************************************************\r\n * Zone JS is required by Angular itself.\r\n */\r\nimport \"hammerjs/hammer\";\r\nimport \"zone.js/dist/zone\"; // Included with Angular CLI.\r\n\r\n/***************************************************************************************************\r\n * @angular/animations polyfill\r\n */\r\nif (!Element.prototype.matches) {\r\n Element.prototype.matches = (Element.prototype as any).msMatchesSelector;\r\n}\r\n\r\n/***************************************************************************************************\r\n * APPLICATION IMPORTS\r\n */\r\n\r\n/**\r\n * Date, currency, decimal and percent pipes.\r\n * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10\r\n */\r\n// import \"intl\"; // Run `npm install --save intl`.\r\n// import \"intl/locale-data/jsonp/de\";\r\n/**\r\n * Need to import at least one locale-data with intl.\r\n */\r\n// import \"intl/locale-data/jsonp/en\";\r\n"},{"hasRelativeAssetsUrls":false,"path":"src/styles.scss","content":"// CSS Reset, comment out if not required or using a different module\r\n// @import '~minireset.css/minireset';\r\n\r\n// NOTE moved to index.component.scss file\r\n// @import '~igniteui-angular/lib/core/styles/themes/index';\r\n// @include igx-core();\r\n// @include igx-theme($default-palette);\r\n\r\n// @include igx-typography();\r\n// @include igx-theme(\r\n// $palette: $light-material-palette,\r\n// $schema: $light-material-schema,\r\n// $exclude: (\r\n// 'bullet-graph',\r\n// 'linear-gauge',\r\n// 'radial-gauge',\r\n// 'category-chart',\r\n// 'data-chart',\r\n// 'doughnut-chart',\r\n// 'financial-chart',\r\n// 'funnel-chart',\r\n// 'geo-map',\r\n// 'pie-chart',\r\n// 'shape-chart',\r\n// 'sparkline',\r\n// )\r\n// );\r\n\r\n// $green-palette: igx-palette($primary: #09f,$secondary: #72da67, $surface: #333);\r\n\r\n\r\n\r\n/* autoprefixer grid: on */\r\nhtml,\r\nbody {\r\n height: 100%;\r\n width: 100%;\r\n overflow: hidden;\r\n margin: 0;\r\n box-sizing: border-box;\r\n}\r\n\r\n.sample-wrapper {\r\n // width: inherit;\r\n width: 100%;\r\n position: relative;\r\n height: 100%;\r\n margin: 0 auto;\r\n background: transparent;\r\n}\r\n\r\n.sample-content {\r\n display: flex;\r\n flex-grow: 1;\r\n flex-flow: row wrap;\r\n justify-content: flex-start;\r\n padding: 0;\r\n -webkit-animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;\r\n -moz-animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;\r\n animation: fade-in .3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;\r\n}\r\n\r\n.sample-column {\r\n display: flex;\r\n flex-flow: column nowrap;\r\n flex: 1 0 25%;\r\n align-content: flex-start;\r\n margin: 16px;\r\n min-width: 280px;\r\n}\r\n\r\n.sample-title {\r\n color: #0375be;\r\n margin-bottom: 12px;\r\n margin-top: 12px;\r\n}\r\n\r\n.sample-title .light {\r\n font-weight: 400;\r\n}\r\n\r\n.sample-description {\r\n font-size: 14px;\r\n font-weight: normal;\r\n color: #717171;\r\n}\r\n\r\n@-webkit-keyframes color-change-2x {\r\n 0% {\r\n background: #fdf8f0;\r\n }\r\n 100% {\r\n background: #f6e7ec;\r\n }\r\n}\r\n\r\n@keyframes color-change-2x {\r\n 0% {\r\n background: #fdf8f0;\r\n }\r\n 100% {\r\n background: #f6e7ec;\r\n }\r\n}\r\n\r\n@-webkit-keyframes fade-in {\r\n 0% {\r\n opacity: 0;\r\n }\r\n 100% {\r\n opacity: 1;\r\n }\r\n}\r\n\r\n@keyframes fade-in {\r\n 0% {\r\n opacity: 0;\r\n }\r\n 100% {\r\n opacity: 1;\r\n }\r\n}\r\n\r\n.headerAlignStyle {\r\n text-align: right !important;\r\n}\r\n\r\n// $green-palette: igx-palette($primary: #09f,$secondary: #72da67, $surface: #333);\r\n\r\n// .fin-dark-theme {\r\n// @include igx-dark-theme($green-palette);\r\n// background: #333;\r\n\r\n// ::-moz-placeholder {\r\n// opacity: 1;\r\n// }\r\n// }\r\n\r\n// .dark-theme {\r\n// background: #333;\r\n// color: #fff;\r\n// @include igx-dark-theme($green-palette);\r\n// }\r\n\r\n// added to fix SB layout:\r\n.nav-bar {\r\n background: #09f;\r\n padding: 0.5rem;\r\n display: flex;\r\n flex-direction: row;\r\n}\r\n\r\n.nav-bar > div {\r\n // background: #c300ff;\r\n display: flex;\r\n flex-direction: row;\r\n}\r\n\r\n.nav-bar > nav {\r\n // background: #ff0000;\r\n display: flex;\r\n flex-direction: row;\r\n}\r\n\r\n.igx-navbar__left {\r\n // background: rgb(255, 136, 0);\r\n display: flex;\r\n flex-direction: row;\r\n}\r\n\r\n.igx-navbar__left > igx-icon {\r\n align-self: center;\r\n padding-right: 1rem;\r\n}\r\n\r\n.igx-navbar__left > h1 {\r\n margin-block-start: 0.3em;\r\n margin-block-end: 0.3em;\r\n}\r\n\r\n.nav-sidebar {\r\n // max-height: 500px;\r\n // height: 500px;\r\n overflow-y: auto;\r\n overflow-x: hidden;\r\n}\r\n\r\n\r\n// .sample {\r\n// box-sizing: border-box;\r\n// }\r\n\r\n.nav-bar-title {\r\n font-weight: 600;\r\n font-size: 1.25rem;\r\n letter-spacing: 0.009375rem;\r\n text-transform: none;\r\n line-height: 1.5rem;\r\n margin-top: 0;\r\n margin-bottom: 0;\r\n margin-bottom: 0;\r\n}\r\n\r\n.igx-input-group__bundle {\r\n display: flex;\r\n flex-direction: row;\r\n}\r\n\r\n.nav-search-box {\r\n padding: 1rem;\r\n max-width: 260px;\r\n display: flex;\r\n flex-direction: row;\r\n}\r\n\r\n.nav-search-box > * {\r\n display: flex;\r\n flex-direction: row;\r\n padding-left: 1rem;\r\n}\r\n"},{"hasRelativeAssetsUrls":false,"path":"angular.json","content":"{\n \"$schema\": \"./node_modules/@angular/cli/lib/config/schema.json\",\n \"version\": 1,\n \"newProjectRoot\": \"projects\",\n \"projects\": {\n \"demo\": {\n \"root\": \"\",\n \"sourceRoot\": \"src\",\n \"projectType\": \"application\",\n \"architect\": {\n \"build\": {\n \"builder\": \"@angular-devkit/build-angular:browser\",\n \"options\": {\n \"outputPath\": \"dist/demo\",\n \"index\": \"src/index.html\",\n \"main\": \"src/main.ts\",\n \"polyfills\": \"src/polyfills.ts\",\n \"tsConfig\": \"src/tsconfig.app.json\",\n \"assets\": [\n \"src/favicon.ico\",\n \"src/assets\"\n ],\n \"styles\": [\n \"src/styles.scss\"\n ],\n \"scripts\": []\n },\n \"configurations\": {\n \"production\": {\n \"fileReplacements\": [\n {\n \"replace\": \"src/environments/environment.ts\",\n \"with\": \"src/environments/environment.prod.ts\"\n }\n ],\n \"optimization\": true,\n \"outputHashing\": \"all\",\n \"sourceMap\": false,\n \"extractCss\": true,\n \"namedChunks\": false,\n \"aot\": true,\n \"extractLicenses\": true,\n \"vendorChunk\": false,\n \"buildOptimizer\": true\n }\n }\n },\n \"serve\": {\n \"builder\": \"@angular-devkit/build-angular:dev-server\",\n \"options\": {\n \"browserTarget\": \"demo:build\"\n },\n \"configurations\": {\n \"production\": {\n \"browserTarget\": \"demo:build:production\"\n }\n }\n },\n \"extract-i18n\": {\n \"builder\": \"@angular-devkit/build-angular:extract-i18n\",\n \"options\": {\n \"browserTarget\": \"demo:build\"\n }\n },\n \"test\": {\n \"builder\": \"@angular-devkit/build-angular:karma\",\n \"options\": {\n \"main\": \"src/test.ts\",\n \"polyfills\": \"src/polyfills.ts\",\n \"tsConfig\": \"src/tsconfig.spec.json\",\n \"karmaConfig\": \"src/karma.conf.js\",\n \"styles\": [\n \"styles.css\"\n ],\n \"scripts\": [],\n \"assets\": [\n \"src/favicon.ico\",\n \"src/assets\"\n ]\n }\n },\n \"lint\": {\n \"builder\": \"@angular-devkit/build-angular:tslint\",\n \"options\": {\n \"tsConfig\": [\n \"src/tsconfig.app.json\",\n \"src/tsconfig.spec.json\"\n ],\n \"exclude\": [\n \"**/node_modules/**\"\n ]\n }\n }\n }\n }\n },\n \"schematics\": {\n \"@schematics/angular:component\": {\n \"prefix\": \"app\",\n \"styleext\": \"scss\"\n },\n \"@schematics/angular:directive\": {\n \"prefix\": \"app\"\n }\n },\n \"defaultProject\": \"demo\"\n}\n"},{"hasRelativeAssetsUrls":false,"path":"src/main.ts","content":"import './polyfills';\n\nimport { enableProdMode } from '@angular/core';\nimport { platformBrowserDynamic } from '@angular/platform-browser-dynamic';\n\nimport { AppModule } from './app/app.module';\n\nplatformBrowserDynamic().bootstrapModule(AppModule).then(ref => {\n // Ensure Angular destroys itself on hot reloads.\n if (window['ngRef']) {\n window['ngRef'].destroy();\n }\n window['ngRef'] = ref;\n\n // Otherwise, log the boot error\n}).catch(err => console.error(err));\n"},{"hasRelativeAssetsUrls":false,"path":"src/app/app.component.scss","content":""},{"hasRelativeAssetsUrls":false,"path":"src/app/app.component.ts","content":"import { Component } from \"@angular/core\";\n\n@Component({\n selector: \"app-root\",\n styleUrls: [\"./app.component.scss\"],\n templateUrl: \"./app.component.html\"\n})\nexport class AppComponent {}"}],"devDependencies":{"@angular-devkit/build-angular":"0.1000.8","@angular/cli":"10.0.8","@angular/compiler-cli":"10.0.14","@angular/language-service":"10.0.14","@types/node":"12.11.1","codelyzer":"6.0.0","jasmine-core":"3.5.0","jasmine-spec-reporter":"5.0.0","node-sass":"4.11.0","sass.js":"0.10.13","ts-node":"7.0.1","tslint":"6.3.1","typescript":"3.9.7"}} \ No newline at end of file diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index 25834213b..d7feda579 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.2-beta.0","name":"igniteui-angular-charts"}, -{"ver":"20.0.2-beta.0","name":"igniteui-angular-core"}, -{"ver":"20.0.2-beta.0","name":"igniteui-angular-dashboards"}, -{"ver":"20.0.2-beta.0","name":"igniteui-angular-data-grids"}, -{"ver":"20.0.2-beta.0","name":"igniteui-angular-excel"}, -{"ver":"20.0.2-beta.0","name":"igniteui-angular-gauges"}, -{"ver":"20.0.2-beta.0","name":"igniteui-angular-inputs"}, -{"ver":"20.0.2-beta.0","name":"igniteui-angular-layouts"}, -{"ver":"20.0.2-beta.0","name":"igniteui-angular-maps"}, -{"ver":"20.0.2-beta.0","name":"igniteui-angular-spreadsheet"}, -{"ver":"20.0.2-beta.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, -{"ver":"18.1.0","name":"igniteui-theming"}, -{"ver":"6.1.0","name":"igniteui-webcomponents"} +{"ver":"20.1.0-rc.2","name":"igniteui-angular"}, +{"ver":"20.0.2-beta.3","name":"igniteui-angular-charts"}, +{"ver":"20.0.2-beta.3","name":"igniteui-angular-core"}, +{"ver":"20.0.2-beta.3","name":"igniteui-angular-dashboards"}, +{"ver":"20.0.2-beta.3","name":"igniteui-angular-data-grids"}, +{"ver":"20.0.2-beta.3","name":"igniteui-angular-excel"}, +{"ver":"20.0.2-beta.3","name":"igniteui-angular-gauges"}, +{"ver":"20.0.2-beta.3","name":"igniteui-angular-inputs"}, +{"ver":"20.0.2-beta.3","name":"igniteui-angular-layouts"}, +{"ver":"20.0.2-beta.3","name":"igniteui-angular-maps"}, +{"ver":"20.0.2-beta.3","name":"igniteui-angular-spreadsheet"}, +{"ver":"20.0.2-beta.3","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"20.0.0","name":"igniteui-theming"}, +{"ver":"6.3.1","name":"igniteui-webcomponents"} ] \ No newline at end of file diff --git a/browser/src/styles.scss b/browser/src/styles.scss index 6d470442c..46acfe184 100644 --- a/browser/src/styles.scss +++ b/browser/src/styles.scss @@ -20,6 +20,28 @@ 'sparkline', )); +.keyInForm { + igx-input-group + igx-input-group { + margin-top: 24px; + } +} + +.dialog-container{ + display: flex; + + igx-icon { + margin-right: 8px; + } +} + +.hidden { + display: none; +} + +.show { + display: inline; +} + // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import 'igniteui-angular/lib/core/styles/themes/index'; // @include igx-core(); diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 33a2be9ef..c7d63d8c8 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", "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 46a458267..81ffd0983 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": "20.0.0-rc.0", - "igniteui-angular-charts": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular": "20.1.0-rc.2", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 46a458267..81ffd0983 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": "20.0.0-rc.0", - "igniteui-angular-charts": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular": "20.1.0-rc.2", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 226d93868..2f13b5d62 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-dashboards": "20.0.1-beta.0", - "igniteui-angular-data-grids": "20.0.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-angular-maps": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-dashboards": "20.0.2-beta.3", + "igniteui-angular-data-grids": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-maps": "20.0.2-beta.3", "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 efdd3aa44..af7e24d54 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-dashboards": "20.0.1-beta.0", - "igniteui-angular-data-grids": "20.0.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-angular-maps": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-dashboards": "20.0.2-beta.3", + "igniteui-angular-data-grids": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-maps": "20.0.2-beta.3", "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 efdd3aa44..af7e24d54 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-dashboards": "20.0.1-beta.0", - "igniteui-angular-data-grids": "20.0.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-angular-maps": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-dashboards": "20.0.2-beta.3", + "igniteui-angular-data-grids": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-maps": "20.0.2-beta.3", "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 efdd3aa44..af7e24d54 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-dashboards": "20.0.1-beta.0", - "igniteui-angular-data-grids": "20.0.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-angular-maps": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-dashboards": "20.0.2-beta.3", + "igniteui-angular-data-grids": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-maps": "20.0.2-beta.3", "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 efdd3aa44..af7e24d54 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-dashboards": "20.0.1-beta.0", - "igniteui-angular-data-grids": "20.0.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-angular-maps": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-dashboards": "20.0.2-beta.3", + "igniteui-angular-data-grids": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-maps": "20.0.2-beta.3", "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 efdd3aa44..af7e24d54 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-dashboards": "20.0.1-beta.0", - "igniteui-angular-data-grids": "20.0.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-angular-maps": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-dashboards": "20.0.2-beta.3", + "igniteui-angular-data-grids": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-maps": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 30aef10d7..858546dee 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 33a2be9ef..c7d63d8c8 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", "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 33a2be9ef..c7d63d8c8 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", "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 33a2be9ef..c7d63d8c8 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/charts/data-chart/trendline-layer/package.json b/samples/charts/data-chart/trendline-layer/package.json index 86cf164d3..997b64b11 100644 --- a/samples/charts/data-chart/trendline-layer/package.json +++ b/samples/charts/data-chart/trendline-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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 33a2be9ef..c7d63d8c8 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 33a2be9ef..c7d63d8c8 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 780727809..c3dfca8bf 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": "20.0.0-rc.0", - "igniteui-angular-charts": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-theming": "18.1.0", + "igniteui-angular": "20.1.0-rc.2", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-theming": "20.0.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 9172d0783..5c1875733 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-data-grids": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-data-grids": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", "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 33a2be9ef..c7d63d8c8 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", "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 33a2be9ef..c7d63d8c8 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", "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 33a2be9ef..c7d63d8c8 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", "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 33a2be9ef..c7d63d8c8 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", "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 33a2be9ef..c7d63d8c8 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 46a458267..81ffd0983 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": "20.0.0-rc.0", - "igniteui-angular-charts": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular": "20.1.0-rc.2", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.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 e067dfd1c..1123ccf63 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": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", - "igniteui-angular-layouts": "20.0.1-beta.0", - "igniteui-webcomponents": "6.1.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-webcomponents": "6.3.1", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 86cf164d3..997b64b11 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 8079b7264..b06c464f4 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", "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 03ad8ce61..2fcae5972 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": "20.0.0-rc.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", + "igniteui-angular": "20.1.0-rc.2", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-excel": "20.0.2-beta.3", "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 4042cf348..28f3a91c1 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.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-excel": "20.0.2-beta.3", "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 4042cf348..28f3a91c1 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.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-excel": "20.0.2-beta.3", "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 4042cf348..28f3a91c1 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.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-excel": "20.0.2-beta.3", "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 f3fd72d35..cf68e0027 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": "20.0.0-rc.0", - "igniteui-angular-charts": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", + "igniteui-angular": "20.1.0-rc.2", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-excel": "20.0.2-beta.3", "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 f3fd72d35..cf68e0027 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": "20.0.0-rc.0", - "igniteui-angular-charts": "20.0.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", + "igniteui-angular": "20.1.0-rc.2", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-excel": "20.0.2-beta.3", "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 fedf90fa2..acc6dea65 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.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", - "igniteui-angular-spreadsheet": "20.0.1-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-excel": "20.0.2-beta.3", + "igniteui-angular-spreadsheet": "20.0.2-beta.3", + "igniteui-angular-spreadsheet-chart-adapter": "20.0.2-beta.3", "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 18f5ccd21..7cee78202 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.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", - "igniteui-angular-spreadsheet": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-excel": "20.0.2-beta.3", + "igniteui-angular-spreadsheet": "20.0.2-beta.3", "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 6f7014be6..f7e12763e 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", - "igniteui-angular-spreadsheet": "20.0.1-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-excel": "20.0.2-beta.3", + "igniteui-angular-spreadsheet": "20.0.2-beta.3", + "igniteui-angular-spreadsheet-chart-adapter": "20.0.2-beta.3", "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 6f7014be6..f7e12763e 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", - "igniteui-angular-spreadsheet": "20.0.1-beta.0", - "igniteui-angular-spreadsheet-chart-adapter": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-excel": "20.0.2-beta.3", + "igniteui-angular-spreadsheet": "20.0.2-beta.3", + "igniteui-angular-spreadsheet-chart-adapter": "20.0.2-beta.3", "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 18f5ccd21..7cee78202 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.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", - "igniteui-angular-spreadsheet": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-excel": "20.0.2-beta.3", + "igniteui-angular-spreadsheet": "20.0.2-beta.3", "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 18f5ccd21..7cee78202 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.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", - "igniteui-angular-spreadsheet": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-excel": "20.0.2-beta.3", + "igniteui-angular-spreadsheet": "20.0.2-beta.3", "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 18f5ccd21..7cee78202 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.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", - "igniteui-angular-spreadsheet": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-excel": "20.0.2-beta.3", + "igniteui-angular-spreadsheet": "20.0.2-beta.3", "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 18f5ccd21..7cee78202 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.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", - "igniteui-angular-spreadsheet": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-excel": "20.0.2-beta.3", + "igniteui-angular-spreadsheet": "20.0.2-beta.3", "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 18f5ccd21..7cee78202 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.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", - "igniteui-angular-spreadsheet": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-excel": "20.0.2-beta.3", + "igniteui-angular-spreadsheet": "20.0.2-beta.3", "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 18f5ccd21..7cee78202 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.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", - "igniteui-angular-spreadsheet": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-excel": "20.0.2-beta.3", + "igniteui-angular-spreadsheet": "20.0.2-beta.3", "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 18f5ccd21..7cee78202 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.1-beta.0", - "igniteui-angular-excel": "20.0.1-beta.0", - "igniteui-angular-spreadsheet": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-excel": "20.0.2-beta.3", + "igniteui-angular-spreadsheet": "20.0.2-beta.3", "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 8d0565424..cfca73a84 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": "20.0.0-rc.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular": "20.1.0-rc.2", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 8d0565424..cfca73a84 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": "20.0.0-rc.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular": "20.1.0-rc.2", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 8d0565424..cfca73a84 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": "20.0.0-rc.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular": "20.1.0-rc.2", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 11370d431..4eef450ce 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.1-beta.0", - "igniteui-angular-gauges": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-gauges": "20.0.2-beta.3", "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 e328ceeb7..34b99a173 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.1-beta.0", - "igniteui-angular-inputs": "20.0.1-beta.0", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-inputs": "20.0.2-beta.3", "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 4df76c62f..89eda2017 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-maps": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-maps": "20.0.2-beta.3", "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 4df76c62f..89eda2017 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-maps": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-maps": "20.0.2-beta.3", "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 4df76c62f..89eda2017 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-maps": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-maps": "20.0.2-beta.3", "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 4df76c62f..89eda2017 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-maps": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-maps": "20.0.2-beta.3", "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 4df76c62f..89eda2017 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-maps": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-maps": "20.0.2-beta.3", "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 4df76c62f..89eda2017 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-maps": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-maps": "20.0.2-beta.3", "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 4df76c62f..89eda2017 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-maps": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-maps": "20.0.2-beta.3", "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 4df76c62f..89eda2017 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-maps": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-maps": "20.0.2-beta.3", "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 4df76c62f..89eda2017 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.1-beta.0", - "igniteui-angular-core": "20.0.1-beta.0", - "igniteui-angular-maps": "20.0.1-beta.0", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-maps": "20.0.2-beta.3", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-azure-imagery/package.json b/samples/maps/geo-map/display-azure-imagery/package.json index 44fd9a185..97a35bbbc 100644 --- a/samples/maps/geo-map/display-azure-imagery/package.json +++ b/samples/maps/geo-map/display-azure-imagery/package.json @@ -18,10 +18,10 @@ "classlist.js": "1.1.20150312", "core-js": "3.21.0", "hammerjs": "2.0.8", - "igniteui-angular": "20.0.0-rc.0", - "igniteui-angular-charts": "20.0.2-beta.0", - "igniteui-angular-core": "20.0.2-beta.0", - "igniteui-angular-maps": "20.0.2-beta.0", + "igniteui-angular": "20.1.0-rc.2", + "igniteui-angular-charts": "20.0.2-beta.3", + "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-maps": "20.0.2-beta.3", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.html b/samples/maps/geo-map/display-azure-imagery/src/app.component.html index d4459e325..bd3fabe03 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.component.html +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.html @@ -1,7 +1,7 @@

- +
@@ -18,20 +18,25 @@
- - + +
+ + Satellite View + Road View + +
\ No newline at end of file diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.scss b/samples/maps/geo-map/display-azure-imagery/src/app.component.scss index 269aa8c41..0b1ef3bb9 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.component.scss +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.scss @@ -16,3 +16,11 @@ margin-right: 8px; } } + +.hidden { + display: none; +} + +.show { + display: inline; +} \ No newline at end of file diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.ts b/samples/maps/geo-map/display-azure-imagery/src/app.component.ts index 118b9daa3..e9da18b34 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.component.ts +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.ts @@ -1,8 +1,7 @@ import { AfterViewInit, Component, ViewChild } from "@angular/core"; -import { AzureMapsImageryStyle } from "igniteui-angular-maps"; -import { IgxAzureMapsMapImagery } from "igniteui-angular-maps"; +import { AzureMapsImageryStyle, GeographicMapImagery, IgxGeographicMapImagery } from "igniteui-angular-maps"; +import { IgxAzureMapsImagery } from "igniteui-angular-maps"; import { IgxGeographicMapComponent } from "igniteui-angular-maps"; -import { MapUtility } from "./MapUtility"; import { IgxDialogComponent } from "igniteui-angular"; @Component({ @@ -19,29 +18,41 @@ export class AppComponent implements AfterViewInit { @ViewChild("map2", { static: true }) public map2: IgxGeographicMapComponent; public apiKey: string; + @ViewChild("form", { static: true }) public form!: IgxDialogComponent; + showMap = false; // Controls visibility of maps + showImages = true; // Controls visibility of images + public applyApiKey(key: string) { if (!key) return; this.apiKey = key; - - const azureImagery = new IgxAzureMapsMapImagery(); - azureImagery.apiKey = key; - azureImagery.imageryStyle = AzureMapsImageryStyle.Imagery; - this.map.backgroundContent = azureImagery; - - const azureImagery2 = new IgxAzureMapsMapImagery(); - azureImagery2.apiKey = key; - azureImagery2.imageryStyle = AzureMapsImageryStyle.Road; - this.map2.backgroundContent = azureImagery2; + + // Wait for the next tick to ensure the map is in the DOM + setTimeout(() => { + if (this.map && this.map2) { + const azureImagery = new IgxAzureMapsImagery(); + azureImagery.apiKey = this.apiKey; + azureImagery.imageryStyle = AzureMapsImageryStyle.Satellite; + this.map.backgroundContent = azureImagery; + + const azureImagery2 = new IgxAzureMapsImagery(); + azureImagery2.apiKey = this.apiKey; + azureImagery2.imageryStyle = AzureMapsImageryStyle.Road; + this.map2.backgroundContent = azureImagery2; + } + }); } constructor() { } public ngAfterViewInit(): void { + + setTimeout(() => { if (this.form) { + this.form.open(); } }); diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.module.ts b/samples/maps/geo-map/display-azure-imagery/src/app.module.ts index 4417feab4..00c54f7a7 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.module.ts +++ b/samples/maps/geo-map/display-azure-imagery/src/app.module.ts @@ -4,7 +4,7 @@ import { CommonModule } from "@angular/common"; import { BrowserModule } from "@angular/platform-browser"; import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; import { AppComponent } from "./app.component"; -import { IgxAzureMapsMapImageryModule, IgxGeographicMapModule } from "igniteui-angular-maps"; +import { IgxAzureMapsImageryModule, IgxGeographicMapModule } from "igniteui-angular-maps"; import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; import { IgxDialogModule, IgxIconModule, IgxInputGroupModule } from "igniteui-angular"; @@ -20,7 +20,7 @@ import { IgxDialogModule, IgxIconModule, IgxInputGroupModule } from "igniteui-an CommonModule, FormsModule, IgxGeographicMapModule, - IgxAzureMapsMapImageryModule, + IgxAzureMapsImageryModule, IgxDataChartInteractivityModule, IgxDialogModule, IgxInputGroupModule, diff --git a/samples/maps/geo-map/display-azure-imagery/src/assets/azure_road.png b/samples/maps/geo-map/display-azure-imagery/src/assets/azure_road.png new file mode 100644 index 0000000000000000000000000000000000000000..8c349123368a614fe122cd5ee8d67fd02266b045 GIT binary patch literal 295578 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
YJ_g*^ff+nA|AgKF_PU=MuN-&sG-( zW3b(;y1h+biT5iygplsd-EJ2Zkdd|^`(IJl*S4{f*uzy9=l6D%_UJ`6FMJrEi}bwaDM(ozrClm?NiGt`V^R2RfRUm|ZK-98hiG6!HTf({sfa<{ox(g(wRAcq|EO{ zBF+S{szs;Svt!{50 zuHRQ7Vt+vl^?3*R-Q}J0zcLTw{9zKIb}zX;NpekAqN}4*Qe}7518_5i1u zPLFR$%sqW%HxVLaE}y3P#VJiy)r8EjGQp;fm z3l=6+Gq*2&hC8#A22crQ;g|ebfxn`nb+hjlm6Ks;ZR1&Q?9pt!nzMFX>$uQaTwD4{ zf>=U0h9mGobMSH0;A)*irL?p)Q~Z#EW>Y9+qx>39@s`){^%Jo(5Q5oa`QeC06;DF~ zt0#;5t71!iN#j=Q+6B$Yk8$r^?@t^z{Vl5){&^K!bd~>jwoi*b?7xy!I=2~3iI8}R z$(33uOcK?*dG&&xG*VLmoE8N^Zzc|y{JGToo@{ZiT2hyyxUdSaJMb4_vxMETx9IgX zdUUjYZ?OdGmu8G$N)yI26YyeFdwyeS8j#$;3m}IxoJFI8pw;aM5KTjh1R5ZsZCFKy z#DXs6n<}M^GIhx?@1`Ua)dVW(~47G&QR+e5{ z4SG{q`;C&t@bC4u;mDrQqSw2+qpd{ouL~oL@sPY0wpP}$e(_B=IKm{?wA%~J=lHF` z%``=AnM4k)wY7Cl3$*(#9Evayq>rX#P+c;Ii;B6l}e*J_WCxm~x7m@R8tvNVb zA2<4*0&^~O1Br-WG5oHsK5#$w_+P`(6ba^15-CtxB1@pvJG;SLPBNBtiA@P@9 z%C@6#g^Qy|2KuYxrdUs*(&ms%eLCD1`T&k=lVY3{;sG^TtX!YZ^>sE-UZOI!%3`ik zrWpA+OSpoI1qGsdk{o8t3tAm5&4NNWrNN3}RF|kD-%0c%Uxp=d^8>?^fP1dLAw_!& zk>YsHfvt>=*`<>#fgQyvjNCP>_(NuzY=)jKvcUx<<&{>>8DiRA%od97xQzIa%7WB z^Ehmdzw%!;KRQzGZ*On(F!9vNfolu^crgW{OLVYU>7YdjZlFB!NE$|{w58BubEVy> zZHu0y6_oCX3DnbM&iscZ0BJ%EB%m4CxiSGjuwwX*rVS&o$nnPdsIuvJ(-Yquw?0oF zRbg-m;mY0LOg5Lp_x*X@Z`;|6i!o<^-?Q^Xz?X8PZ>6%Nd^OqAhb&|bXE8FM& zp7Iw!d@iScPkqn&A5G#YgrKFgom=onf8NcA-!aO6yWjpz@{Pxz7Hjp#(+PXn&qK%j z?q{4Ks5W+XphIl^n=N;Kqv*Y(8tXyF$rXLyi8n8l4!1X&VU5e}ju8jL-@w}d*!Aw! zcW$TDcbu*+A#1nVhi`9BVmp>KdOzNg`#!c-yunl8V$1Q5Yri`biFqh%dSC%Q0oTLh z={T^0;O`}CyPAK`&lLLam)5;64=|^lX0EQd{^BTk4##2KHauHoGYEVyYh^B6w(qx$ z@83D?b68KVCo zF^yRMK2AX%AF80qrI|(~6Mw4O_Ryx{I#gY$X@iNlFrLDDczJNHxrrw@^gw6O2D{2Y zVx@FTVW0#}wKfZf@L3TZRv4!Q%1{VZL;{znSg4{&9jHDI~*ARxW(F?$8zL9Ugu1@_Ktjg)xG{?q=|o{E;GH3*DGPtkH5kq1j%#1)?X8< zC6!H#sMxdvy>Ssva)9*gFOR|8-^scdLY3|340)}_!YKe+=|Ba;*sRP4HUUWaW? znDOov5-5V+@SN1c{XRM3{k5)($33qV%@&1l;_tG<^yzNC&C>z%o+sY^=Q&5rd7OyW zFxlwh`n#lOqJ1vVnXvwA!*d;CZ?*! zFpzO9qBsaF!v5Er*viVxoQvv8u^F#a1w1<>vud;2 zfWe#|EEMsRu`EX~#rnl@%hPPCXt;f3uMS%33-aTZ!RQ4KY;xj$rU#?wjo=zKlkGxJYQBRy%V`maWkR0=IQy46|5TWYl87#!v zcWnDQJ%=uZ4!VQtQ)hJ6cX^{WIESR1t>al`DuaG2!c#RLoW*doBmnZ70lV>*UJ-nE zI8U(2yuWDJ z_$+}@&^u(&I%rgN)YKCFz?vDZGg$2;o7yNbi);o2f?HB6@fK8AZ^at;V%E}!4(=y% z$dDH@e?*?N>A>Aug*|a8AdIpeEB>+ojyNx-)HuuHm+gR$v>u6>eKs=7F9Ji^=9eZ(GPguaB14&xFqq*Te57uzb4J! zPALyOKfW#?29P7^vgVB;d?~c*0{tnp?(`)kv}F?VVaVzWrh%K_EIBHBMW43_H|f%f}f4d z-J(zP#I@FgVN}(ttjSXSmGN2O=uA}K_0#xk`#$8Xy15#y@8;AhU*plTM!)-pZ8Rni z!3ajmi;E_mtnxhDP`@qVCGLMchExp6&BBe#rcK%QZNDeuGtl|W>q9rVzu_l<(f6ba zX#J9uT^nVc7#kM#Ph=mU6M+qwWAE||64Wivw#{3{6eFy&oWKWgqXzXa%|)4lN=?}* zRC~)27mG#4Z7}gxLdtdXG4y@ic!VzC4gO-?J6uT!O|tOMfOhQ{y<{Ev8jd#Bdg73r z5KfB+kDB-W!P=BWuDMdblspjh_qKy;0=wZZneJ3+j6DNRSh+yK*7V}ok>bK)c31f%h5d# ze$uoS<-Jl}P-CGH7BdxClh8`QPXV>bcgdW6g3vihwfH(O550_+St@XbM~*2(^D6={ zF=>uMb^S!tLL;X$Em}(l?1i3!FK1f3S3bJ{YoC?J=T>+WvQfn;)~FslnYlYjyC|fg zWhjc)o;1`=hm#UW1*=C@4?J1^EL8TF; z4U~jKn?T7*<>n>^6dD@1SWTezlzf&f1!83TGkrx{DUJ)>jE-q@#M{W(a7+0W|{Hg zd}0SgSzn;hYLUqZ>2vK~9r>hH<&e!nF9B#9s3loIXKL0^;jPFzmgFqRae63Z+sTpn zlS$xQy)zg5aUH_=OitbdNN5!2edJo_G{Be=>U&$7(%mlMW%gZ)+iPV@68o6$c`?HCCM#Y92bV2g=t? zbWWb}z0Goe9K-M9Uzw_a#}(htyb!Bn(*^s5cb==iqv4Gpx)vI{`!WgYvGu56CFRs4 zV;|hV#p0+GBduNt$t`=5j3*$+V=N$Tz^_B#XdMq4D?CD}qX8;t zT%4b#XoVH6n=OH^!Nx*nqn!s!B~Sv~PzFeY`3U`)h_XJVhfCPN?d!pbs+!O)NF*4X6NT*KQSw-GonFGCusnS>4GNcB$u7H zk}A#}>P8oPk(8(~D+`^Ins1eF6Z^jWL}!OpjUvE%6fkF`)iBTSZ9Sm}Ea#RTHsFdvU;hN`F0KbxPDnrdP z4DU{+JvTooEP~Xf%frl^3{%Fo=qQj7eSi{#;3^kKn*C~}rX98f#D=E?(bgwBp1bwhUmxQ54Z~=a+OpGTs1A|D9iqQ*B{yM#V}o=;$6@i`_vozxcfY1wWU1U88;qf zfA`#`cQ)&us=AQ0o1(rS=!K#EFZeMZ8n7yzLPYh)o?-I(HO%Zfbg< za`0bn7rR<7+;uCC7idDQOK^a2Y@yzoNmT5wn!b*Mf|>=ij7k*$@b>-Ut84kL4Y<>Y z$plwPVCRF-bgc2tanr=DA(L*igHEiIIZyMeTI_WWdT6&_Q~!Dr;uu30u^4EfCL_XQwN!#Z~0D#3{vW zgHf(l{r3y@=y5dNZj&M&zTRbjK)PiH;fkWfRE-)>4#Y6PZmeeaXWVi;aj00#esYv>=M_=)`!qk6+0|hsaY~^I5JYsb?(W`}w3sU7 zuC9Jhpc2%AB*(Y;dZ@EqpMDB{%nO1Bmx*AC*Kec<4s zz{ONhWA{Xgdq4yp17>$r##@3+u;_ui4&SA?ZE(nz`qgRKbS@4gzM@9%Q$99GDGC`z zo5iaz@z-C%w1}(X_3p5FKZz6}+02lE!Dy|e#9gAJ3zn1RJY~aIn9_eh;$j|G3>Djx z$HzV@RuK(=08WWL49UOPKPA?n1-m|tmV$D4YjNF`cpF;+rxp4_#NcSB4YoR@=g+Od z2yi!>QkUQC-L0Yod{K6n=6o|AcxTHgzCZh>w$RU{dr*|0@EB!!qot~x8B>?VSgMvP z*i-r=e3IiMnPiTegf29h|FMS5yT)CK)Ya*&XaMmX=DU5JZfU?+x(!qFeaXadz)8)i ziSuwFgqib2x$%05kc@`jlga5!2G6(xups>TTwq~Q#jJVIITb2Z&)mR++mV3vVto=E zPlZXKo#m8_k$UJB!4BcN1>xm^I#tM_L{*hX6DSB zfV2KL*jh03x&{U4@Y4&@^uu8bg4>n7Ho=u5I+ZLIu$K^?iV5+Tv>Y=U`>EF0Rk6L&+Zea}?=ug^!8=dg&`mMu??myg8yBw>hz@j~d z@fdr@B@{=4S+{rlnJzND8Oj~d_E#YREGwhK&z(~|PWvc@p=91~vdUQViNNimUUfl| zEJvk&-TAC@`B&|UgbUjz=wf&U8ZNhae5nBdA{p6FmOT7yZVj1yffgA|Hwk-OBB~TJ z$|~g`zdlCav)H)FLD$SS&`gYg-;4?5iU^TnIW?av8Z{hzs5%<*+Z*!#l?GPz4483j zznCj&Jlqa&{s3w!2TMMs+vZ)Kzrpwl(4^KfYMmW zN>EX|lBuveUNDW!<=7H6^B;V|=aBgaEmc?AV)IKqhhVXqewr z(iM{fXl3GWB2$5NtskS0ytLOWSgjP8t+>jZ*8|?aTU!HDstsu4+UMylLNY1$gB@9o zZJ7@D_gF0B=Yi0wE~^z+HNi=EN0xSLnYdKcQ3+35XrPuhK@1(godqDK-DEfsV^3i5 zZdo(rLGjiP{my&Ra#aMrc1s-YVI;4EVK45_j=+q@rdC{qne&i;BjtP<9j=LGhZ z_jVpYlpoL4=rIZZG{0fi^Ceb)r)muc!H!XqPn*wA->e3x3@{I}97|Ciuf)Mn+TY6j zophr=_5;>THTDa}m-+ZFmr@hJ4V0-OZcDtX$EDi3r@_H*}GbL=sxU$@Y4nZOhYd#%z6^*v#DXqAdTl0P25opG!R1 z{iJ;Mii!Q=M#w15r_1FR^nM$0v=>{FrSX2Q=3!S4Un{u2B9EvFDl9vnY5j<=yXE7( z8hX8x*9X}2K_qo<=%DRu4b*Y(m!}OF23XxmvLG1;TOt&*oA-;iL~Dev1F5@nxqEFW z_q0Dtdtu4xY83hwp-pDIRHylkJhx#Eq{?>p+K0Asuy!t**BD5Wo5=!9l|n6OpSZ2N z%u|zk${jITsvxUVpadt_5ju&C@r)9jy_oj*_i%{mYDSH!4YZ)WJJ!gN1z?AAa-#iS z>Sx|^Ods6roy|#2t>>>-;=HIT^6>rf5c-}Qjvf;K&e%b}8mZofsbl&%3{89h1u{t)8S+pUE1356d)<0RKnoKX^PLaHl2O~syA2i(0NWGNAZ z%_yJp2f$CDQnk9!?tPX!tv>zZ78=u#B>1TAXvP)`LPn z%_y-&N@AjpC&nlKu*>Tn%LtBFLBi2BYydn=ky=V?@#`Yq&Bg64`Rzab{R0)O#>M7k z@xH)KR{Hy{$A>amP*PsKr(a}n$8T%>h*leV4`9b6OEA&uTr0)KloBSQm(l_}u_~!< z<^6coEy0FD4ux|;;CCwE1!z866?&l=o;WLi%DRHu>y_Ix)kmYb7!Q>>EJ1-;?Xs6- z8qzQ;zg3=6=!RVy_++NS0f>g9F5)W#@@l@!^uUrsEs80y6EQI^`pdw##Sm_ZKO|WmuU#1;<#9%6)BIrv7IRH{j;&(6W>n+L*1ti3ApBE)rt4QFSQ{ z75IP0CW?;hqouRSw0%CUtdZ_z{EP30MiV=;g>yrYIb*G52vW`}^u2V={>9ZmxiAKy zpKcF$Wb9`mt>)N*rT00Kia*9>Y|N4?!Sm10v)zJ$h&!+%@AKoOE+>@sPvqR73D!^ff278W5jY?%ch*;6=X@ zzA@5HKGqc~V52jK2JZT5+|U8uPonQi8h?MI!Z6@xmhXdF>>kR1;Pr&2Yh^Sg(A?Cz zdHRzsk3C#HiT^E!QY}?(vtBuPW{Lt2!K=g2eYsv8xIz6GU<v&!n-w_UHU@c=*3%;l{fnHhBD*H-)VTyeBf_8bD#-)0=Opa%oQBAUP>pC$AP zG3G(rY_>xPF!=$^I^WwrEov}0kRuO(}%y%e1tX3FXBZzW4n+t@f*O$plntji8PoZML9 zM=?e!z&;5CxPaWj*5j)q`aX?;GhS1cxObc3qus#ueySl4Asz~lp0<(SGM15QZ=x^9 zlim)7p}batjplp*(UO2cK@6+hS(6@@`WeWiP$9wwhL^+|oQ&%9rzMDfrluF&m--|R zUu@0Rv|0&d{p^tbG5rTdSw@ne&P18@xT`5@kE4fhKD`ds;&ax1o9v30k_IL!-~nCF zo2^bWXPqv&?Gjo%8DT*zICU0#Ho!Y0@TW~4(G)VqP5*^*WcW`~g0;lmJ-Rwz(Pg!f zN4hAd$cSs`EMJ#+7!SYA_AIz4_uYGIKJKASRA91zOXaqslXiG8bD&n$GCD5#lMCho zSWz!ZYQvKe%%I}Jyv`(M<_`h=i-S!(8Tt2d*88N)?N{3P)W+20^_r9)*8J7MNlD z&3m%;TLmp{EWT06jJFLjrs1Lx^p&(_se2;E@r*Y+=$7%yC{j$36W-cT3kGO;^!_q> zJgqnaj?C%Qqq$m&I=Ywy80)dV4Tt_iEB%IexX_GzcE+)tOf7=*c4k>1!&?5ymP~Wi zp^4u(UCpI%AWAo&nV&kGO^wNiarv{?wxuIc_)I$PGegC(>79|Dx;yHqpH6ks$24O;k{A?G=T!s=D#V83k-m(xaY7814G$(URkg%ZE^qmu*WwOmwI}L@H9J< z>MF+OEDp$Oa(fVzK@FyMoF@e&X?K(*S5*MB5zqa*7+$Y^^Fp{SMI37WTXNTMrJz#7 z=2sVV_0R2TU3p7d*ZZZ~&Y?_;G1@^7E(dr~n!u)F>U8iK2ZTNo7pnZl@j^`1G>rXq znXeCGqv`R}qF3GpVHo3h`WIup>h)dOTWq+Vm43qe9(O6uT0m(^XM%|$M*W`zfSCW> z1g6BNdl1>#2XDb*R7kcO5m092Y(Lt=W&FsR>ay4Z4AwgggRJ z8(``%~E! zsT^?s?L8jG3j(?X*1kUw!z4F6A@{G#3{9d7<#J;>bHKtB zFlT^3r&Yv{AH1jJ$eWK}h>4KcZxW(>);oP><;OySSt#={na&KUz3FVhOSwGdEFJ{L zc$H4SEQ1udceXRY?%|8_ela{KKmp_m4}z`@p?70EU4__`G-D~!5|gRoGY#pJQO`sj zA&T7lDQgEhmpch~MgDnn%Q}HGk!=>|Ov*M6$l1lKA zOY!obADq$hChU443V=19X>@wWHM%NZjm*L{s<{z5aoPU|;3@GbY=;ywbmUK?;bQ-{ z;l9bRs5}qQ%SrEvpMuZoS_Izio&&lRPG!0Yh6b9Y1MSTZq;k zviw@p`o@n$YJzxfz(gQB+DvW%TX`1`btO`m|>sl_|`pbmVoHJExWz zPxL)+-==}lTg}6kAZXXtQk3nrYsgy?$O3+lQtY*QQM>MkzVSSK6tr8)DR zMS5c0ner{ZobiL}9>4eaK~zt2UtiW)H~j`8yj4@v{XW1$&9b~>o;o~Ehklb**tcz) zJYxo**V=oc*C5C;M_g75>ICIi4k?k7`>SkNdz*QAvYnmS}R z8WXS!v{-P=0?88TTA&d!CfvfG&Td&6^w)m(J+``?{mx}oco|jz1c)05{BH)AJueR{ zqHpb{j}OsAcNVDkc3u%kXOus#<{tDX-ts654na%)htp3n1-}77&*4T{86#bUXW3bc z9P*zFe9Dx+{o6O5y;mb%|9U>A-;0qGBMaeT>CZe<>DZFBvNHp+La$FE|4Pl&OtfP8 z`qUX(|9aTxn^=;IO=fs`botA$*z?%a?K{wHLfO|nGt<=#kkPtUFKc5-YqAjKp8h}~ z>e?l-b* z@c`bwe4V30&`lAQAt0$is9ifP&fXoaC2UN0W;~I^>t%UmWs zH2{#$&CS(un-=j&>j?-}+dg&Xe$KgWIwTI7GXi+-hLc(xpkT6k7c}?Jn{pT{U+iST zn$dFyhtb^H0B2d2hG1eiWz}U;qx|hPMB8(8K~l(8=cipY;)Z8%&Q+67M6J7Ljt|ep z5PM6)K?~P0RvB>6Tb7g`lXoXHdUu<2@I_l9dcPI#?OlpqUDyDIE8uDcXhto_Le!G6 z5tDbCLz<1+5c>(#k^$lwn9|kNTwLEQB#UO@7Ike<6Z)y~zsxcbRP$$9&f2darFF~i z*Fy`J)*Enuhp=OgH(U1BBJuj|VNa_hyKAc$@cbaC!7xjILBskG|d7W4d*}_&OSEv%Pdt;N%OgDnBejs{u|Pf zA*t5!w}parU|-LAYal8pCYgqt@&~${zr|?J$&>db3ma2nqNR7QY3Y#&;jQ{&24|}0 zBC{?xSC6E=4qx4yEqy*hhoXxku&axHS)R=XU4Yic`&j!5joYtm0iNBIRR7;*0sab1 z$w>eJq7E5Rc(6EqKj0@*()c1NTC(I#xXUQvIaB(6!~azFaelzbd&L4 zF9w@BC=n>Yp5Q@}vr8JJF98C}Mr{%AzMQ#L^K921e+k^e-zmMJ<5Qbwle?9ua?A9{0 zfG%<0eRU&`xtiwtbMDb}DgbK>YE3n>0Z+aAlgM%9Vt=b`2Wo{{$${c#j2Qfd8y52Z z?JjGT_Ku_|TS=;dr1py@u0&i_U?M`>_RE&b&s=vR`ibwd{0O**54-Hk!>Yn;!?rsK zP8)_r^jYWwcE0a?O&qoC8$zecA+!($EXi6*Rx1|g|7>}$bax+q)<$)SPVyf!wti0& z$NP$h(8W4Yq&q;x&%f%UuLnhX7G7cj^DUZHf;?H+=bN;gjhap`nzpU?CDSIL4s9B%LZa-Iz+OZE3uo=Q|1j=B$oe1*gb1L z^~-&|8E_kR-?(6fR5;q#I)80$#$N$!XL?G^5;V_}qLh`IW07f@ZJ00)KA+mKNC08k z(^KZ(eN)$X-ASXd8fZ~QSIR06Y*nDs$Q}b|7TH@k7?+Cs zy*Oi}CyIEbf#E#bfR@ytffQiEN-k+1{XIu4Xf+6Ffe>$d+hOm6S*j+qwy`u2$vSrs zpT&{hL(4vvf^?3D-l9YWN;B8w4~Ds5jtiK402HnI+Ae`5~_vdNhGhuH1jz zy2yx>zVYGbK|>{GnablYDdH_cQ}^5F2F(+ir7eHo^~Qk+$K^#U^0J05(DevWo4V*v z-grBC?fcI-x_LUIXT{WtaT&~)$#^a!oVJ$?!eNCYjxtp0lxrXElrh2Z#|X4vW|wDV zs%!APDRW~m-dc~R^h&MEwcr?L80chgfvG#0p1kc6&+OU=_0A2r-}X`bByG#tzNO*O zZN8R;tMwJAAFn)L{z>2n9K$V&>c(Ed0YVB=!u&1&e*-P~__S6(nn=z^K=a!Hw!MLE zRw+k_zXEw3bzE=XXI@U`1<e?;ZOO|u#%(2iz$c-gmP$JCeIPv9>pfyV|^|ARkn5tl9mLduV=#|iDBo2e8#z69f z+MrUgx)Nz0Bt<3~eb=Z}w>ZNEE-))MQ?)uu(YQk_sP z7W<i~6hb4<&gj1+w2lMN!p4`Z=Dgak1!M8D#Am zFkq~^I*?s?{)%|4I`4+>mu|MMZClsa`|N;wDH9$r*D{a@VFqNb)#J!sNc+1ZzD+_h z9tGH=KsHg_F4=XK`e3;Koogdbpp`G>sgk?CW4kTG4%k=KQRf_dXJvFXNZ#q)CDg+S z(n00XKk|0gYG{rmG&j{JZZsU&DmZ-dd}cuP$EeGN+`;^ujuEiKr{LXN^ms;@xx+sn z9od!X$Z7NVWA!fB?vcoYsk|bCIGA)e4S&U5FX2SMbQ)U@;?YjaQRld>X85S6crll8 z1c`roqRM^eYv3@o4#r@*l%Ec2&rJEQroFR6f($ePlJ-MYs-)qQr(?$fX9~G^XlW@M z8u0>2y`w{Cpp01V)UE{_e~wtD+_i~zJ*UiJ3)kdN4Jrbe$r!%B zkaFX#S^p1F>bIor4~-n~E`W0bkDpCACI2|fSYJ+9A%4Of$JVvm)~u%QVEjOny$y=claEe<{Vh`_OYtJGMc%5?<)@I+t5E975_c?s|#INaeh>Nt{$!zB`tn)fkpSb_P*M>se4HEZr~Ri zJA-)8+_;WzMpt<6q&l#K6JH+$ zPdlp4sQGjM$TtP%G#V#U-joQ1xmsSuffASDQgcd?LhHbZd1dzokgwjEzc}7De9IX% zWA%L`>Gvjdhls+q0tP!rQOW||3QXMV#{#!Gk+CXNx?2+V4=G@M(xPuiuL$8E#5voT znvvh%2ou{kvK%P>xl#1C8V=|>yOH-~fzB@UT4o_gAwl}HZN18^(b6HzKgIgfHdY{G zutB3c{I1|)u7jyj6(W&=XO?&R~KYP=wA4h`bQpCxi zm}sCrhRh=cb92dI>985gbBru8UrgQaEnk^vpA6T{eV}2LaO3}#9dqg?_c8<~zwzwP ziTo8ls3WjyG^vP0z4pe+Xh~pfB^%o6+^~7{zlM0%_iG0Bj&j7;H|3A%=^pSvSc^kt z^l{ruJ@06|(A^)CV{jYtd)~+EgnFm>{%|NTuPqVf!RKPEHrkx_D!uinrm;$kf`4u$ zXTV+v_E8;$t9QMt=g-8i#}A*YADXtc$CyCpG0tkee@Bvj zmrGb>?tFjdo>G8IV96cOxqS&stWm0OOwdeU--IE*&0seyWKYg#CD(bguV!0lO1+ zpqRcF#_^CcG3BmTsN1#M9j1oJ;*o$e{=aVWMMO@1{_&1mY;wiALo_EOQZ#Y=Q~mBR zZgdsM$~ZgScfsKNTwNR)Nu*08xpmp8G|1%bg?>_FijnTFAV_Q6AcdYgAoJQhSW5PG1 zQ{f!;v8Gun54O|;PJ1-FM~U#aOJCy!@OryMEmRPXlBrWphV}Q?k*jZ@qqJ<>J`Tbo zBjS~M)j#dYA|wp3z3X3PtRH9iH)|uM^?!9WOszTed2}&TtW|gjVc2KOPN^I)5{mF` z$f?3%dvZj*?sZTOhJ!2@aORKXYe{Qfm_|~-q9wevWqQ`a=fa1|^sK($|G#jA3g|uG z1J!uME1yrdK9#4lqUJH{^5whPbBy|hAJ9ZVA+biOC5Tp8_WTLswB?d76dRZXnb>%; zMM_l6mI_G8hF8Rym=lev40fdggPLHQsV#MB1`ymLo2GuDsnHabyIIiDb&XyMIJAeq zf}G_G=)|aVXNDM0k)~3P_cZF+nUckdZK|S@HOEJ7+IND}8@Kp#zBrNM9G#qNv&S;J zBX!7`_cunlAis~;>*Z#=)IT}Q{BtB;B}CAZ;jIa(d%)oT=9#Hq|9goA)sNh72+2L_ z{Efyq+TAMX!SL1%U90qS2mGR3k0Mh-#qVt*Kxp|BPz3T;F*I5ffD)2S4dz6KO^ZQ^ zLSDVxzDX^A-bC&&jcPtTmO~2rYA>Caxe>UYK&Af_m^1Z)gCpkiV z3M}2yODi;^A>)@dm^*39=JWkdfP~jt6^lBgwP-L$eUxLkj$`%mi`*t~w78y!fF1ER zx@YYARCu{0mXmsnfPqv@h&b&>7te+jIc+Oyr9cE5y)?uQ0dz0-ZM5{*w!-zy%w;KC z8`HIkbizq8?#sotCzj2?+Yro;8qx*e#-()9g7BI8v;KwDLnt2go;(Z$A<53S?f$Wc zsvE<+*^~$w8c9T8Ob>>i_hkmVrS~#R@7(8^Q8tD)Jv$psK9XszpE7-d@I)ad8WIF? z->1Fay-m{F2tV9uo?{Zv@O!V^F&j8xdDfPBa4PQ2ebI^kbVs~}Iw*zkYlyrrfZOaR zQ`SjEZm&x61_Hb`HeQ$=m$_WuUcJ1MqaQg}KRw~JcgdR%gwnzqB>zlCJTQ|(jgkg; zT{5@6p zv*q95&68G$u+I_6IwUK*+)Z&9{8jNi_+qjIkI@Sq6A0x$iv`V9d|0l1iB%8u^Zfd_ zA8;JU$m0rbfXOH1Q~I4mKbF=N*;8P!tbSyj5xlUSEc@x%kwipEjj{Q-AEy^Edpraf z`RQCcC|$q61W4W-9S?+!PI%YvU@KWslz3ZylJfJBlj={Bv=UDEOc1T-`>8Rn3)(Tq zvupjddGAd@2Ul1a!yV86GnnC%DSEJ-$I2s4#A$M>ad0@4{@w-h_NBoFB@`#gqx1cW zl9yYhv*^mYWUP89_C)qG(s*!dRIH@k&JPD4%%siRp~rhYQ1g^WFO^5{q~_YWQk-C9_y}jpMd+`*^*elS-P*nS|RR zDdy(~@kC1Wn{i2yY`N{JPlfHS!&eUugzV}>QSmc_XGQR5yLPyCSi%>|@!1g`qi| zRFnPIP;fdSQlfH>%sRX@^076nUp(O8KAH79>S<$5@oh`~IH?OG;g1G|=s5(&OGe7!jR5BMzy`!xn@F2`Utel!#K&ERGURZ`U$ zREUC9D(7b3=|WbXocjl2fiui9+u8QgF=I03<6X|HXHNs{S?8eGE5@;WvVD}Ko z?VB}=p(4Y9YIelPpQfo8zAeo-uDobEnj!aS^FM~>PG8f7&wF@$l;*S8Ex{lU%#-Jk!wiVGwVCD!$#281$&E)2z$|Yy7CH>6 zc5Cv6eW7|z44afdKi|Cu#ua)`V>|@lSn2DAeI1y|{kZGdC(Px-$|AbkE+9LPArpi1 z<$(hx*7O?sG%L3*X8nB0`AX`OOQ!2J0!q!3n^7NR81f7VWfVaW^p3%t@kAg6z z?v-iCFuHgcy$1@}y?&_8K(d!8g|6YQ)B5#2)ol#4N`W`7^-*l@x>lvDV2N)BEO*0-{1urPc3()Pqp4xv76QtezSAsEVo4Y0G24>W z#CiAh6t=>fb9eV$5@%9B9*u$+VFIw5O!96RG+Yxz(G`{AGfc=q6m;wDW4XS&uO4{U z5K>8vg<(D-PSAJhIVUT@cg-{fpYL}Z;PTv+Md3Hs^6 zsT1|-RLE;MR6kZRFpSjEt7{Uex%Uu-Kkp?1{wwt@W{_2+61`NL#a4mKv){r;9|ybk zzOYWb2?cZ^1FVcbQp4UB`pdys=!!8b$fn)7b>a)e!`H?k_m@Ef2C74; zZhRvjG%`G#k^Q~M902~zE<89ZIcS~0vyFvy8Ut4epL*y`KeLcH%$qzC;U2~+x;^=9 z5Lspqjzh}4qbstBu#;z&1zTM6QHFE0Nae*!uAhC|S&;X|sPE z^&^r)iiug3dGwBIY7JGh2UB@)O?Yz1^JXtE)1755m*s;1ES~N(_3##zdUxXcP#!Xw z-^ZjwJ!<&BcoI!kmG!2^$UZ;Cn+3N0u%xp9vn|nH-n-@%;~Vb%x%$H>-Jw3u!pEwx z$gm<#{K(A^-&G_+iY~~0usA`H;Kad`*5QhJTWK59`nB)BZf{e#kI*=?ShjMw=ChUjy4H!}`{E!0Um?R&eaz0_o{OF4i)0gN)9d}xs1u2W!?7w-{RJeVIAG|`e5$#x9AjXQYWCWvm*>~b zBi&-uztK691j4AMxzU=MRMjIo#i1llQzAeSlG9e*C^~3ab20wYF<5h%#4C?31LY4z z3M$@QD542#X%5XqB_?s*m%XzwE=QpeLNBO_SoaspTwS0r^6-Bfu?{%VZB%#V`PTe8 z6a=A_6GhvNNVvQ6(Qnk8-+CPm~3EA^;1{WDr?cve!Mr@d7|3q zzU6HX6q)2P5DK2u#C<5nh^F=6`Ff5_HXu~5ty?GH$%XW~Ftf*dHnNQp9BvaMHwyYG z-)$u@5G(lt6w; z$w}q?1;gn5Q$4Zc${#_?Ao(6OuK~TK#^(@KKXAZ*FM#QI5*D`Dl2=lStc9AUc(jP$ zZu0e0X^)r8+wz}aeJ5+z$gwdeI8yQ?)=2I#h`ad0W7;nv0_mvxBS2&KG{bD?SP2}t z`FF{VrK`1cWmTZx*Bm5)re#l-YV$ut3zBkzP37Xn&ymX(FBq8Nn{&~;MWb=^iKIyI zi0PPAdr^U<)U$O*$$^cYmelPVF96xK(N|Rf zQ1K{&K<=|qZ*LIP5zHL>;(!>U z=qoyTI&VCIM`zx|W3kuUQYTi96({8qNDidg4C_@TyoQNHe}n<+5h7-)QE3OMtui z;K#=cXKl9i9(HVh*#x@&>0L-XF&H$U5;$n9mUH4T4-VT#X$l^Oa#S0`+GiDmc?K&h zX{2L#L<`3V9GgiiD3RMtHdth$Rw`7CxrbRRJmKrahp^4^Dgpv-Oc$oO&Mh>!M})V= z0Eo{Ap1-av197pl--g6Av)HKK;T2o$Ka-0|KtWDKfuAqV*g&sc*f=Pxz5nn44O-xu zpIZChaDsw0C+ho81WO%*@#Xk-AC862H2`R&opFIW?{Xb5{Oe1nAm_dx?t8gaOcCd0 zvcjvFlAQ)nCrbiXHg@iO1`2DpkA&sC^1C(8@s~5O&O#@8CuhH5IJIGpWj4h7b7%== zdh4Zjl@9iXl}2qI&WduazI>|RnBBQ>k~$(79N+PxR*#h_j8#;C=f@9+;tn~BB$D_1 zWDjQl7#%sfci=I2@Mv#e)R-_&FWxpkyl`3jdhdCYs2xd1wjT^0d4~sEiMD|zzR~;e zC^d=-_$g{IC8@B-1--V%N}~OxWL@T^BW#fc^l7W`<$g+;Z+@;g>4yJ>Gzc3MKCc`f zN;vi}B{o&)@E|F9u-)F5ak1$Muv=HPHYLzXwe9%loKf*)QoHtM*J(GV9mgy3OY07Z ziUthrC1r#Mr_4%Uy)+cKfqZ1nLcQku94t(%Jby)t!r}f)BT;~gNDsxba!X?jo3?{L zzA2=voB(~nuKUOQBU$T*-O`e+Y@Hljm7{9x1(MqvKTVqt=MiS=y(VmuXvQ#HZz*Z) zO^<5eLjMd7)r)B(LNjPBUbMvbQqOEsyKG9aTcbxtO z=}U@O>P(!AI}5A<5&P%&Nxq6xZDP_Ow)e9=?Yz#l&kGp}Ny!cO9^!Ra;(8BEyT1dGl{)iPQbbj<@OgzwK5^9ea;b78aMA7seM6;huj-z!@QAMN z*FyC4cr1Z8G#Y)}3?@5L5*;@rX=Hk-@R?6MjAlYqPJp1~xiS55o1`iquph1@ygX11 zI0ZsYR-&SAhTXJ9QW4*dKHzU3r+=H8BR@@mHQCP_((xv$v3+SkT0DQXHrVz|){2)0nN=L>CUiu!_G6eGrUJJjNt6KFvy9Gy+P-b1gcOCVz1L8KHPI6y>#jmW!;c z?Z`9nsway_Y7u)&8AB}ZU4&}A6JK69q|LaaHlw~>Ry6Mu3=NDBV^)bzQS`7VQ7{)n zEM$dv{~@%a_*P|>89vur!E0;=jUma{c)Y_!P`LBnY0)lQj-2p6)}(J%->0kg{M3#{ zS1Yr_7)jXcBK=t)OIsFhqI4V)2su)(283eku&>$x|Nf#=imz`yGo*QBd1)6)X*YqP z!xr@-*&x0c^#%EBbbA_KqopS{q5kd*HJoL7-w+ z+ok!A7D@WNA`POw)4iwe%J|^7xL6X}ga}-a;A!yhrL2h^zSI?xq7{^h2EpnN#t`&s zQXCaf6u)%oWYw6Rp8m{YgEX`2_E8lu>9-o0%-(F0vrEq?YRY;p*32 z(d|t9A5-KJlpx15XryW)I0})6gA-p#^-Nj1vM{JOcJmdjI_JE(*kLM=lBSnFwjcxx zWK7-mtUOqh^@?z&{J}O*L{M#^LoC9bLBOV=q>&fURz18X!#F~_#4U?cEAMU3zJceu zhHJoqpXM#YSfthr#>FlsW)wbh)Tgtj5>Rb$t2%?`Y1BX4d@A(v+Cxn1b~q z!q-y-@8tRBv3CB!aWwr0q6ArT0kVb4;3?D=lLKFw6SB%Pr=HEA-bdNx7#L*XWtB(G z;_dUf&-QrzJZDS;(9%3c%(;Nabg(K2zA*q!L3fqKZB+W_9D~Ls_X$p=q+d28JIs{>Nlaw zlqJEhOvyIYWhs)Or_Y8E9nnVpv^d?>QT~qFA}WbReh^+{bmo;jV&e8u2UmCyd(}5CUzlp6m8? z+4qGVEh>RbAUgD+vfyMq7TAou(*P$5a*?GUE!H`XEOY> z#}ltVh}^UQt2<5J2dvnYS_2;arLE8W0bB3YmutPBi$Su7ulf12ot&kRjN8C86Rmb& zcwrbs-xpI7(0Jy=In@`t#5;Bjzw968(AD)=`fbSboLf1dzN>%P0ZfuNZc3E}7Jgd8 zWruF(B*4VeBV52YCy>OFF)NL{eFW-a-WZ;IHlTa!flAS2!k_-ESo>+nL6TgUGiD$T%J@%(%uNfCJ-+iIle4Z-M%qR41fw zcL8;Oj~vvgK$%yzz3nvWft?AP?03K&B-8w5od%dhyq($m?MPumls?j5>0%Ty;tMT6 zDvwd?V6Bp#+lDny;}ESgCSu*ej`w!dk01z8!8qsExP;3x>#lr~!txKDYW4{iUO5wF zxQ1hEF+fdTIqC|BeT1-ybR)uw#U=DvBtSA6zY2bWA?EwjNRnDF$Jgf#Mj&0oWpubq zbor5)vYdguD*N3uqjabgS{hGSVY2w}P@!7yULi6lF=g1s?tb>-WbtUhGOe|7bujEd z(1uMy79O|R*e8WphGy{nFN)g%Sc5Bmm^+~U*K3|->G6<;q~W3irli3&g{ykbr||XL zgjYQ2Afk+=k?-IR@9_-Cvr^oVIQ>goy z;ZU^r}p3zw@B`2Ohm{tjv_c|fbN8ywP zpFazo+;8=)q-OgvGNR!~C$0&{V;Y&`HE*O|yvXT^^{0&#G$K|Z#!08v=l?fAhmDdP zlts%#Y$FMC;5lGg(m$-cR&eWz{Cc~ODZNVAbs^l8={3|3-5KE?p_G@56(qqbf$AP^ zLAj8M&ob0_HcfBNA?KdbTja5av?=a#`@H|)Y!`mkDS(Bj=om`Q>#3v!|USvxEO z5@mjRH8)y*@0d&P-$aD9Nk5RR9p!dBW^_a(COBELK7i^$gDdAzYFx>G3|ZMb(={@D zYCQg6h?bZ6-pqg=;v1e(DDb~uzWPv=?lXb7OeR?nsW0XfnOsC7Ps6m zaX?>Jnt+HocH*rq0yRP2?w$P=u-oA!hd3FQC-q;9H1EmWrpS;;4KK#-#6%M zSx;6fwc9=gr^o~o(LPZdNE2nZ7R5L5@*Sa^yv0UiMq6bGx{tW}R3o%vTQDJA=EjgW zp|?*k2Jk4i2d3i_JjAn*Q-47fn>{N1^-HS9rZ7?Fz;Zk|E<+JX+KXxWJDxo4UrO{k zqayR(cJnlhflw2TqRYKmfn+IW5Sy-~@7FXa3<>=AV`QgQ{{YN)&zLCna`7m7c##-a zPF~Xb(z}@Pb{?}n86K#4cVQ{Yj*n-Zu7%3mc;5k%=N~ytD-bYMolws$!jw(-7Fk1q z?{Tl~WGh7a+2f)?#c5Z%P4gX-AM&fUuA*!3>QWgT0ry=}VZ0-=wxL1+?gwrn1cwm| za|9{aR@#a?t6R5pvx{SdGEN3&QDJJM{tkc;`Z=DlDmLV6;Iq=|Nq^2B@aox13UfZ4 zhqI=$l*3_fkW3yx*v#PAt!O#RgmWCp^z(+ z6b;BBe%`PiQnq<;HZlz{8_XgVM!`*qpf$rQD4a>Dq5qT{W27=;@XpwQ_2KB{V6MHI zQ-c-}t}F%g?$e+KlNF#_tp95DPoaQ{aCYkncZU_f=3iF*5u>V;=!xPLPIAPm)FZ{p zlmrM0ObOa-URHR$S`M5XzW2b!P&C*vuSSOhoW7h9* z2;%7P?D+OOwj20!Jq2+@bEIEA7U&1;YE)*lm$3SEKV>|5d;{2y*lxU-lWKc|jrfJ-plUdEK4Q z9%1OM5a}mh&aww~s@zLrK~TGYvH?)=x1s~l2W_wZpD?>c`yLB5uGkS>ctvy)&(@Rf z@LheP=m(sGj_sbG64!B}2FXw}*=W+Hmqho61w`W;iJvCS{1r(`}by}SM4Z4o4~3^ zPH6#@H469Vi%|c))!?%XT%;!AnD3};4g6h%^2o>!=tWX;D!MG7FL;QLJE*W$g#2lU z`hFq|rLCC7&1jTaU5#9zA|j;MvnsgcgNnorhoDASdXrO-t&ZM7XbgE8o~1i|7|Fs* z(L31GzyBoI8uzu`h&|g+4*)Kv)i2y?>^@TZ!93?9|GVgOjbCP^AzhmkvpC;dM7Fmv^Z_A=WUiQUs_E6v z%vhk^&~;njry*Z_!a*qJl4ena5XJZ}-*8oKs48PVsy|{aVBqR<0Yx(kD@dGZ=9gRk zzuPC9{+S$=h~nE8YOjy>GuZc7baSg3DLaKlGlAf6kqrm-jQSa@!c9F%Ip2+ z>c_p6h#NR6lZqw8{IjS5X@9=&n02lbJlI4^eK%b{Yr7%tOrxuLTh_@dx@fCUd*;5A zlL(?&Sx3yiWA~m$t7&Bx#uq$( z`SOol|K_=WD3fB95a zt4M(Au#*Jq`#Ddk)}L95oiDxM#I=5mwuyi{Vs&7bb-m?{8DmrwkH#aW2xa?GhyGoX zddNaLolusJjS;(~oh1_r?2KzLGR$NLE1nqXTgJrmrf#7l>T4qwNVn3yt5OhdusSL) zR`1ZsN!=`Q=OWq80f#GCUP5}b4m>&b@9kk%+28o3?CPd`hrfvVK2T_%SogtC6BKMU4nP0)=Sn0Ap~w%nw-DN?U@7S z24^R=_)yHE)Zp65us_3A{S1Rz^q?*pH8A8eu&&0R3+B#|rv7QfoqbkY&YqgE>LF>Y z_70vELB4rmq^643LY^aWFVOOcuuC!yrvDtR?C z$>JYKH#ZSVkF-zavH8}pYh+Kb^69_%3q>lzM*A<)_qYP$GyYr)<}Hxo=)^ifu?nh7 zBylNYrydGnHaEp2)%lC7*cN7(VTOBn1pNT!ns85(aV5eOcZyc`M+EN#ODi27eZF=H zbBq*2x#bi5ElYNlDtJ9a`q1_!$?WZvLV?n&gL~h2Mf5>N1>0Vc5xZh?9$DXbKlNu) zcp5@o9x*0~2%ChNHd#A_DwVia)~5xpAA&zz0^OV)B)+a$XPHcc9ZcgLEA>`U((y6B z_Q1I0oAaA$I^G}y1+9|@Sav0&SF?>M#Pe%yI8N~RL&L_&g&LOwcgP>#P6pCcVnM`7 zn8@EQp|IlWXE`?LS=Aw2aM#mCmPh9BbPTHipwRrvm89o+iqDFb z%-kj&&6V003yD>k`e?39yiEM%?PELuk}h^aFrWU%w)jLZ$$Swrowa$9D=41`G`&Hf zVui%u78aLifMV87)TvYDo;;yImibW)BDkQdxx^38r?ZpQvAcAsZVn^K?iqhXOH{=E zW|{gNxS*ojPg`IBAGFWhvG)6k_0T<4lUK2s_K{izUqZ@BKb0%_EMvgdR}roet8A?p z1Dz)E@uXg=78_jrt!jpz3Y3b-G}4vYi_|kKH9W$kQIo-31U`Z<{@TDcRnmuY&Y7Of zjFx?3y_CWx%ax2g!VM0Y6)+QSU_%?YPm>3paW}@urX!|b#z0O58F+)T15GLj8n8<~ zMMpscyS=N6bAHCTsde(F@^tW9iEEYslAVv^5T9s6)p)a1IA`=^oUjW2aoKU($J;ps zs^tGsxi#|>DcRBj;1^Kye&S?;HjtbcEn(dApwf`0MP{3YSDCpC+gk2u{f|cBjH=GB z<#*5y`c|h?&7EJ+Y<|IsFInWAF)I+4b1C%j%o^uf=T@G^f_i*_zYTm zI1!N~Tn2ZDYr=rAdgK?J;0cA@D${9FGKOJ|!!3n3=6(Plg<^z#y3ob}^n?_bBZRS&@4;#ySDM|p1mexV=~Q}UOA zT3&#D!ykLA_wFNxVV_$jgqpfc=g0ZJD5trp8#u}04J#@{pr2t`s?`Lms{HB~dr#S8 zMZtzbf(9$bvD@Ww(2%K><#7Vw{aUkc7J4itS=RQvxl{>CoSD-xk_4@s>8mJqdux^ z%*1S)WwvUQ!h`kMP(#s0VGk(Ej?P8+mr9O4*rFd0vTjY9{z;XzXYF-+u^cfw+?ghV z^W2vvZ9Y+LUd@7RS|txmm%OS=>BZBoJ^d>NN-w6^zAGYznJ^%w$M93cQkwUla7^gl z)wZFIe*B9WzjhA02jM)1o(I)Lcih{v9Na$4R=gI%7+JmZ~hOTzT7>HvzlgBso7h!=@=9PDOZhJ!iVW+t{9a zkE!3#*u?&`n;nP-FmL(CL24FT=Tk3+D1z3>yHJbfIw7(q#Y=2UTg9e6XT?6apz2qJ zkp0AkG7v~9l!%NM6d2Ty*ooX*c@-Oc0@9PwDsORgR2E*r;;vjmE^}l8Fe?tpGLdP18Yk`1R1h z(a)X~*7gm@@Tg!?!f_nHM`AcP?jvW3qJ}x`%{aWv9XilF zU@RzmW{b0d=X@?_b67I*?Xh&S(_&F7mMAux>4t6A>X_v`5wQ<(Bt z_$Q}Rd~o82Nr1(C`jjT|LwGKNU~(~(`StVx^(EzM*iSm*TOyn}S<@g&8aHPiZ(bt5 z{$iSXbJ6W5T5cHCTdcarDiq_$XQQIK1e{;?U)~j{_&hXhkFz()kTT}#%2UWhybZ21 zM7&jKzl}2piKQ3Fsm?JCRyxW$HQxG7QAQL!5-ZL_ji27kO?1PfM^$SW%P;bhSi-CZ z;2IKYMX#(hdq6{xu=2~(ehTO9$Wlb|mF>A{|NNhD@)da}`s4ylro#O2;qCBn#W5x^ zma*+7kE$@lS|noq3X@e`4SEFZI19VdPVCGrTQ^vldn8b_O&8LLk#AlJNr4H1F+O*} zqv6pBAXa|r5NbAYSer|Z-QV*hgM+szb5rD(^ORYf+M@iucQ?!lh z3^#?MO$J<{Z5UpnL-vOGuT4&{x@P4@8yMTD`8Q5Beb+!+=0iG}Yn_=yPLmJ3!4H-*@IATaYla1MV|2Z`?g6_?l< zZNQ-FW*BX6Ymb|2@U9J(F1Y%VJ>7;y1AurpH1(12=ZLgC#_Mx}Ipg`;=R|_-BM8uG zv06u_!SBs~xigoXpiLek=&g0ZO3!{|!p%Nl&s%mndgj?Mn-OfcS$^b`k`E`Ql<^<7 z`Jo$2kzLZ&ZJ0rs2uk5j_rkWP>3PJ_E~RY{V^jt`VfT zfy{R=Y&Q1Wx&B{38l%R?pgLdKh;vcDBR<`g=Bvlo96^Yrd^Y?X%qpD{_)?BUheIDW zsGnM|72rL6X_oRxDGJOCKPf0Y)!Z}=2Mabe=hRj*Hx0^YpLOBU5=dxru{D>Cogc2G z?t@|S1XBGM|C?%sKZe7@uDKf~k#}L5!e$@&`u9^T4Qrd-Ja0hFTu{RLend@?9VtIC z5C&9(ne9TI>q%n$qA+1QhlD7ER-V_VY2DuLT@%H?9qX$*qz81muQHFwo)uM7FAaCfnzoc>r`gf^W8 zA30c(P-RW~N?7i&(Kr`tpEsl+5h+~M#p|9xzBC5Ayr=#bVGlsr@2%Gl8#Uqk!sQ4Y zAU$;2czK#{B~_$*v4udzOiUUP%IP26-RBGaNOH@B(K4lsmU8t6qr;jL%8gGm?>_d4 zy(crOH2UcjRpDVQG5qbgJ}zkkZQiDX7juMP#DYNg>kVk(Thu&}ik9(}fRN8K<5wY)CRkizgh@KR zcj#BWWsgUx<{6wVzX6aY#B^83l`6pLH6MTk1Bv&eD49sNnfL%$BF=U)g0pfiHPvui zG~n#O7vfaZ%-q)f?~Gga<~91H^A&rI9U^&KK?DRqq#oG0HM4vP#~SjjhvYE?M*H zP2W*y>1!U95SI-`5y<^xb61|yJ9mTxjSFMVjj=0<*)Wbp(LP&s3UxkBYxEGk{ZICF zR4NhD?^RcH4uXCF(ba#JJ~Hl_E&U5nec$>o71viv`;D-t^fe488SG<#YfnfyOD`ce zl+0kHW6`W^IAX$tN4l3HQy8{V*Y4cv{c{9O%p5pNUwBh~2KRWwt~SRWfBIft8Zqc4 zVY~S$(bT^?_RMg$jZQ#=lrdTiHSk1>M7_GXG#lsH>7Pp-rpAD?0YhfN#Ha_G=lN@^ z<6!-Uq56K2+2f*T{}&sZEDIaLbom7hv8&u%qw~bob4Z92>LOq}tK;!KL^kX*44s1= z+Y{x2wMg4{*vyk8{j1G_`;kX0`8SH%{Ul!K4OBm#yekxRnVnk7S~Lq6{{%$t&-3-- zKO?2p{K-1WyFXcEXGNW>zqmPK%hP82EnNf&;EsT7-egqM<>op$xP`wTEQqon%VuiHk`;$f z1cJRU8iggc(zjzf%L}J+EK40%7RNM9;=Kl1&7u70C!9fU@v0F9PdO3I0!NaAN>P{raZ=@PHU=ygHtOmplE1g+B@ z@LXaX<$3S6j4@ zo%5;p!-Ro@dt?%ep<%o#sSX?7Y+%>}DTi$9fBdH@GEL8B&^0~bM zN6`yYg02Q!DO4z{$wzH*6?^Uds7;7NC&M8_%teUStzuJgHGySJl6zHsp^ zCikS()?*CWtVc!0dqIhEB%=n;R)A!vDn?PcIMv4X*MU}(ImLH@DG9JIy_{*S__`Sc zbzCEHyE_v1U=V4za*h{ysP$5atPvKRfsN(I+LTGZIYBI;*c5ZA3Y)JXqmghs*Wi(~s9l@Y4~v z=dMO|4UgH^W}R%sxA)BkP=<=|Zv-Bxma`)?#R#8dhLFpMU`{mwpTLP&HSfq7&~n;5 zUD(px{r<4V1Rpt<2Xn~^0Xa)Cn;LjJG}fy*?_f8}Royq2|E1WX1jwBtF8z z3QoZ2ZGaiA)AV~Mud-%&#!p~;VJ)9y+Jr{}S6%ZBH>W&U7R)8jipzz&<;Ah=DOJLn zqd7trC5C$7n3ezd?W6ie%$`3G!LpWG`eqe=x*1LEfERLyoHFCtAS>UVe8D1cH4^iH z<O~1K$3+(#b6QDt9q+BU`-iqHHP~w^ zVF}@2Lh|Khet5m!@q^p?x7i0BNO|eIBcP$|Nks)Go~dH3icnkq?pQ@el$WIU8a(|~ z{j~2s5(^I3PbI2Xz8W9?rfbKBbS;exgE+7dPfDz!;VY&g?(^uyw_prEyijb|fgfwL zdO1c?etVn5X+PGCT@ztpj4_#$qQ);|7#M26reIySzVW9|G)91f(w{pO{H-Pc|Dq1I zrB%I_2P^KFvhU{f>h@m9=UcROHAGS~OQ-h_#o|)5MsAN>tyFFwRJMe-k7s`U+kRcN`qM`;Y%zFcIZ!^E#j{&Q{MSRgT1X!3z}}qN!3L3R!0hwnzj7xJih#n= zz?PVt5*j66A9!r2&6t{pV_+01UP^%HsR1;Iz8!ztL8_3=U>Sv84)VI8J03h3PwhCk@E*~ zWoLJ)1z~D#RuLXC3!ToEDV}8WJ`%aWs|;KqXJUtvWry?oXZpylrO_=CE$$FhmLtvy zn`fkpA{;bU+T55UHz2s2;EH0Nbd5s0;q`H^b0e#sZY1-IhJnR@aU(luLo_n?l*$44 zFjE!0ac1(adBy7Q<530go7qHA%Oryvlfr?chxj>_|G&=5{ZZJdEYE@7Trx~Asni~K zjS{L~F%0hFxyg-yfZ#DT(m1ui8BghSU^nnR`ng&1)nvHU3)5a4%uZL+Y)envQ9E(2 zcCHdG5zB5Nu0GJPv5}{bl4k`A=5wC8_}_7u2YCA7Ui8!-0%oNzJw#tF&#on;&`EY+ zarjz8VDdkE?z>8U18IY|n7D|-p$V=u3c<(tPk4U=mjpfOOAfSNi^L} z>kdCe0>NwYmoj~3B=!EZE_?Es+5o*}Mhlca#`$>ZbJ?>cVPaErXPASOA3Cz2J5k># zU+v=C{qRWR)D(MYKQS3@Y|u&mxUN3*Eiq^K9FYbdj5yMPoY#ako7}TJXhBxw9~;F? z-Ab5M#SERo9D7$d0=CXKDhnT;W&sFJKu?2r`x zT)Wb8l^335C)W9k7oRobxEF*Peo$$E3J0b8@zXsGt(0WcpYofgtB2j$m2)kNk$S^M zixN{+>uCAFNp=`mTK%%M1RLR7-un`a>Gk#iN;^%SUj+QfN@HmH;JViiQ1g$Ke$>!v z1h?Q)qbIokW!m!mX#JO!B~(EBPiJI%KUC-;ps^V_@6Cxr4<%0;`2!9)Ou)ZPnMs7X zrdadaibEyk`hQIM@+1i57zBvkh2rKr2hO{P4AH;q{LM(LD4zyBFAe^M!w|SvFB`3@ zpT;Y9*?k!E+m7MkwZURK5D;JXYeWuPn-nHkdX=tu|6cmJ(e+ci5%vIp-3;-LvD{sv z$p3!O8uZy2Y+Xkx8DV+GPzIykF~diP^bF7SNxCrP1S z%gtJ`#U|rz(FzpED9mCt6pG{n8Btv{O*F!AVR=jG;sryN!BqL5|G~TN`KA`wk8NI| zV}Z{K7a*)67e3DlX<`(X8VQS#IUpS{SYz=tmdtBPgr)WZ1jsJf2N6oDdhWEm1f@LW z9{hUUzyvL6(C=$0N-Fzd&EVl*KQodD6`;5zHa~l+2=`Zs92s11jPcDU=$fDVCxWs^ zxEw#drsSPzW~K9v`VZ2>k4{V>^%ptW8Bb7sX4l@qQsZ#^RA17EgrEjIo5g@LU3ey1 z6QPstoQUpAbAQ*YFk0j!oABuOrOjSj`J#D}K{0bwnCzN#uIhJ{f(+ZG2a0(~jCiER zYNNg`fMdiDpC$1^kNzXzez(X%PbL~&LzhXWGZL3$3~7zZ`0Y#m>!*P6oMKolMc`GU z8i>?E!-YK`NCM=L=U`J`+pD+Pe%caS(anjrb)ih-Ax)1whEmSX!`>o{o1BaaniY6L zgr9u!_a#3Kn(=g3h)T&>vUNue99-tVLKYzA*CF|@7J|7cDrM=VEt97;5<2i+jz=q| zz1^^_v)pvx%0qePj0vx4>*g2t15we#a^7hI+Y5(m&_#`HRr$+!wBo(PJ+Mx9gSuCgz%Vng~f7%p}TcDQ&-(3K^5eo0U9V|2O5zu zuvgn9m8aS|{t)p^151y|w}l1!rVAI|T>%4CpoY)k6l&edIvaog=O zOf_6Z2dXcIbC%WoLJGfGVMhf^QGI*0LkB*1+w~JCWx)QX^<og}{?YQ&YUp6^ZDPSG>6%JKW4x*ZVWZ|TG-YLmYlPwf>!lPT8P*C* zyh$`jBKE@e(#~7=XaOI*ydR#h)SOWtaexyfjjgt@^pH z5-HAS5(meBACX}s#&5Q7f7qG-5KN<7qlxEZ$g5L_cHHWw>?A769ag>_X+Eu|5|H@K5He6KBbL#H987Fsl@$|O%BcChKbQcdErmf7AK%=v6lU_C5M^au) z70l-Z-nZ{#_F*Pd7S#7Ph>`-EUZeb*b<_`sw5B=FAky`2iE^hT7JKi-nIc-FV-ks@ zf~2|yeZzSbSE1~k=L3sh zD)ouIn#w016*7-AS~e)UyL|;@+BQx|Kj%!|4QT8{2-Qr{%e;eEIcF`6IYc_}_e$At zU~D*>Q=9eGww~l`?$9B6-q`@n@_TeJwHzARk44=2vsHoL3JN$W_xS)tCeIG9~{jS-3{DJ=qxq=i>kW$$A?zoe@?juY(abm3*`jdx-l^n-O`< ze2$R3+`!Cawk)jJAiAq5mpU^1AZf#RUloMChj$5fqtv;zny!C%jMo^xjd;3`T)+A% zk`B)bY_&|J-@boUf=#*>e>m)td|wyOnTsS2Kw!j<6^0f{v!Ur-QkABZjs)!nTY9@rO+*iv@WjzR!fIQ z&tc?~H-XMAc}708kQChWwn0T^>DeuMgl{3CA`|sq(y?Q@@Hvc$bt_pBYFZu1* zt98Pd`G=n|Dxx&wZ@aO)TG2>UiYn|MD?2$;3#OK-EhIXNNL7vt#jRk}=+htNK#2E< z?{J=V8bO&AFFvXo2P1Ka(Tf($vaZ5z6C6U~)RPmS()kS^)r|4No!6_k)MsJRhf+RU zq`3L!V{y%)f}6AB8yPtp?Kgwst1Zp{5kk?4IVT%gbs1a~V`VN1320`D5}QXK?+2~V zzkr(`?aUbeE(+ugRg+5y3RR8kR1YxH+{3mI9-XM)GKFiw5huF(?%UmkqJFGIrBP|O z^8+0f{fz#qLhWQr%m*JA9%z%f!qi(OX#oYEjhBfQxFJbOlu+!O7yV@Pi`4jvh#ew{ z8skRVgLB>~lX5)gtj_=oE7CmWeORjnu8H-_8}eT0u>ge690laXSNFy-_RKV@$%{=4!Jm3nne`=gSp zjIj10R3Bj~N;UyGZ^1D7c_{*;vnn0^7&C9gi2dlb>>{_zLnu>Pi>Iy*W;x~D68zg_i6aiJQ~=%o%N$vMTzf|LVnl@Cv?+?er(w{ zrbSd5JPqnaiNk8bkuj#C5>AM~a6eheF&d?@AX{m`B+yk#_++6Q!^N!FWL8>U7D+}$ zJ!u@wK%j-+Po0Pv1jWlG~}t1U_mYV`%M+tkAZ%)4D+v5zX^%F2V6Dgy9)+B531LyfUQ zVjtmBi^*;(HB#tD*#o|+QF8V~2+D^TvIad)tjSuu2vVGI?i4oaIruWjI*Ud440ln+ z`yD9Qe%c%E;-9rIRL~wbi-(lKZNMf;UBAChy@iqArp}FYUP^uoq;$#6dUKOAGdob} zV+TV8dxc@9yNgVaGrK*YbdFU#`)2UEQ?j#x)tFxYRqN(n`ldzl<2^d1Cm*`dKQ0Qk zFK^21_%#+%qOQ@H_NlSBgb>LQ#k^$6?+vxJ8x$ZUSnf3wIZ_d}nY(({lHrHq`jzvz zR>EU^F8fzs*}bVv;lF~P5?q^oO#s z-NzdN`KcQ!x{cNfLS!QD2gLW;fdD5wnD7GC4Ufu8mH@>OzmQ7t4#kR%@u{Rzd& z#9H8gGT=&vUOPTz{nzKiD;+7DP&3umx?Kefp$?PXN}{<`LZz#IL0=I5Y`{v2t?~nA zX_mlrov1rb(a{e)C*fvDMH1yLb>-xkplgiFn&+pHkB+oX_RSTzL0DD71?Lx=K=|Ne zf#H8v0U8;u0*%|QwQgHTX2E?Z;^bO?oRv|5@>FJ*psG|q(f#qt3_sUfmeB5ev1|E8 z7+JpcuTFG-ipi21R=J^;y+-m49>(p!+*l`@yDoc`0hClo`k{t*F-&+*$2LsGnwK5d zN6`}s{%M*Em}MB0B$g?Y16bXQv#{Qr38@DBkgkt+BBq^1&iKW2y#TaN7J7NcU7U}@ zYGmSDGw^2~Pl?%F99+zwl@5K_>c#RQlQ+sXx?baP_0XLbm8_F688-B8$@LCtLsUfx%$EJy)oM*A2}RPL`R0%` zctzrgz3~chMnC$G>Wc!XH-6MnFmW`t3!ClHIB(RM5~$vN>>$nv>!8dZ`cJZrk(@D2 zfZXP8?MwSp;;I?GYSXqqRh^-+ z?DOheHPPn!U1D`zT*QwbEsrsfIr8fg&BN}YBOBNufjC!{(;{~bfZ6#O#oXfXtdLy54!RXpRsVPC)-9M+H3jST^msWNG7JkUDA4Ahj?H;$-Y4*~&+?u%1vY#7_JN zE?n86k*tka^unCWRb>}Z$Y-W=r@xm@f4PpvV#>Q=5vkhk5~(r~!7!6rvcL#!_*tdLB znVm)(DP1{*2j(&PE{0FG#6s31T`{Cmr}8uPtYEIr9cMiNjQnuhmC zRPG`7SueWDI(cLurq)7tw4C*)2<@b8bREeK;}xN0EgdhVk~V&jnT9K7%%IH8l398# z7biMmLI?YJr-0*^|FonJ8iOTut+Io!HU%?HXN!E zjU*lSUb_byU&@M$gDh6rA5Hl|9c@H726t(?o8m_IKPo{%2C&+qu=JC2#f0*nC$!bn zGDR86_5O~tK&QX!?}lv~WjY`b*8~zQP7Rv{W_hzAxR)7fjUl3Cf2DKtAeBKo4U38f zOz+H;356W?B*v-Hmb8@)G|>71plqv2dAdbI{-{9lRSSL$tFwr?^hfropQ34dgWU$h z(d?0hG$%{cO|`I}+-|CVq9t+Kik9;gUOsGK5`;$EYX^1a_x$ka^u6ax0K9~tGBE$B zTK6pWtSjb3SGFCtNvf@jR74VBPxm+r@OU!(>IP8y=eit*^*zuTlWXvGN^Q4aPnaxm zeLlXruT)075~%zM@9Tz^WM#f~3sr{VWCA|+RBt{uR?0a=%M9LOpmJmz49};6aKVp=GkiC~NbTpVU ztY#E>-T$nRszZp7&Rcc)a}@o$_jvjMAtG8O4+JUF#!99FTDK_OQR+bF@7Jd5U2ryE zmO89$ea?8jD{I4sp2|1^fk?pLlJPuaC);8tn^1~fR?ENSaP~RJ%L&da1{#!#bndd@ zbco?n0D6AA=S6qS%q>#DsR}ARWN0K0#?L6TS@J5ZA`dHvKmieLo~~cxYH5uNmX%#l z4!^r}`%T1<Uw#Q*)PWl39ZCik zonqQ3a_w&vGXj{khUbf%lSZSpB}7kY97aZb6x6=pU{&&;e{lSGdincMGWkT_2c$@b z+b$S}Wk$IXC3+=;Oz`!tWT%416T!oY;kWySCzCWeFS=BQdsc?CVZ*0Ru06YzCD+#% z^8*w4VmmEDoHt9ryu9)%~*9yoPYV>ao)3v9m{yW zAs~gsNJFM_q)?P*fKm;aX(_S}tt>I*#85!YZ?uuQYx1mSQdp#n%vTd45~Dkm^b}ch zDbs$DqtkvJCn8;l%)8{&P?|uIFPV&v*%==(86UE@^_*cfyZREJJT^#LFV~h&XB$eJ z)z*eLqRbiw)f^vv-}`wxnKFEq@9~?#4*NyMNnNZ}Tnp{l8l5m2OfNm>Wy-p3=s50X zeZOgB%M7WsU@N!$b`sbtJ(+|DMTYDrtTW-D5Hi|!5ARY|@(dq6gW~p#=2c=S@OF1y zl5`V~i+w&TAM$W``B*{}%v#OUMZq5qM?7B^ueI2Cz9@LM%x@L@i5C=!2bpJ-Ikw6b za~C#WD(=tX{r74op|Ke^(z9 zE=X3+@Muf1JGj0;{FFIbMow0daOJC35(*7PCYY3xOhK6mzTOEunWP6VJI&AY>!o@d zHhfBy+A}bY7zMfV^{ zff-P$lA$UYUbyczI)7f?n`v|F-@XYUJi}_rWOT%!oS|+BYTgDLEQ@Zwt~zUdL%gzC ze^+EGCsWzllQq|ulLgm_%(?}&t!Z3Kybw@kDx)$bh0c=`fDlL_D6)<$OY6T>jrAs< z^xNT_;l*@^!_$X^DAD@$dT58$ltDFPYn;B<5Ctv>x)6|Ni7`zIW_9wo?QBkwudcq# zCr{@kwUg9VQR==_`|5)>YPLS1iDs_Vi70J$pJ$+if=lSz#c>Y6{LF{$qU zq6~YC5g%S&QgY@$<%6dUj+JkihZ?E;x`$5*d0|&A{TrgdhYaHNUCpJvE{yb2LPjof z;N}S?#=x!_5u490-F}vFn>L1{I=ita<|@N1d5bnqanjtpt13m3qu(1Y5F+qo)Us8! zRMnJaaJ08%tP363AGAycD~e)4mM>|nq3$xWd`7@?yo&s8KlMjOptg}8PXa$42XZa= z-2=rSd;7_wGQWNxt7PE8(DB)pptg}&lit(c{^a=MLEzit^Pi{FcQfgKsQhs3`OiN% z{^cOxZ#Z-##ii2aL7wqfj|~6Y-)iES7|VtYpD2a)d_JjpJZ>m-KnRJrp{&sb!K!=v zar7<;vb}ZVQUF@%b9uPk>Z9y^DRlLwJ%>E-4#+uDpN7chLondu@v`=SvzIrR;=8DrCYGDb5841 zR<_0lixdJS&Mj~n-=OoKnG8?a8qF`f()IJ{jJ@jBCD*r6>Li8*;De^_GPG{lnY=*X zve|N#GGDPhI$~JN(aKZwmTpdTjIxNj@ZMt-c&`~2HIF8njObNdkl2ufAP2^8g3t|b zh6{?>Vw>e^2N+}I^}r}shR^doJ}XkG&eCdrn4RyK?vyPmUl7FQ0W}iWjqI-?5Lm@i zTKSBXt68{)CRmQUInUY?!VMW!DFjMhKjq(aH!&hu)Q@SG{|mg`O}9mXw-d%{FZF8x z@v3T|7aXq)i%#FtQ+6FC0{?1%&X?nw-SYNbyT9C7aJ;OjV@DGkPQnr;9WN`b@)4|D zP*q1LktE39`R5?|!eD6z^xzv|+=Ci0Cb#3Y9ke23fjBK4?Tlh=7Yp88=+$2TdDGmVel_NS~*6;Beu4mG8&vFHR&kmY<{VYBoV2~1zV%z^(`SnV+}ta ze8K5_hj7D^)ks67E2?~emS&yBEOkj~%60G)0WB2&X7rmYuaGvsT}*luXJST~y1uq~ z9i&WxN*_A{i4^jZfYwE#h^%Z)7i{tcjj19l_KL)JiU0|BIsn_2J{Q&U&wBX5T zMN5kjilHpnF1L6x-e#|Y&cpFi;ez1vEs0UEGZ0j{U{VTxv#a>=#Pjo1uv>L&uhN&i z%?}bSBfFKy7)`EWkPH6s!t?E6V2}xZ_dudmI!DiV*>`cD7#FGB{b4ob`9iamcL=Fj z*>qpJdK1nyc-IoVCHRh2=lRpon`II{Za$HdV#8}=WMsQcJ!ncq%FLkk^>SQdptF`m z_v3xE*iD>eZk1H)OsYWOgJ)O_5eTG+NExu*0HZzbLU#Nj=OSJ4 zjmB9Q#Ers_dzD3G^EY^{1O$SS z8DeyfR))P{#*;0@PL+=1htt4m9a(fq4C$Lg&#Vq?6_yYMbsvO29JDk}Az#zTS&2xd zBmS12*LRH)@L(MH%}!)*WGIZ_`8?pACo_^iJP&vTO2B{o&XXI#DF1cd>-(nd8l3lZ z&hzKvf@SMbaY+{na+Av3Wv`qZg2lEAyle5kM2M`!)lF;PG}z>m0{*mIOO)nxx(#qA#5{rllz7_}JirMM+JjGICw4=i3-1!B6mR z8~W!(5y?#oG69Bz8OzlKEuqRf&@EB~@~ojK7VBX3CIpcpZ&1pilxJ&vz|Q0dDLtd% ztal!~9Tz&Pd~hv*3`Clk))5j(rZQUJtpl61F_2!nGJ{()p@Bec8xTo#_g&M4j%oA$ z0?;#jbol5ILSUrED1-Bkc{ioDt82oP12aSlMWIWS)VPqWT8uO(d0vjYv`aE|t~l(1 zVOfvxA*~;7Ld$?uO9q3VdyALLkCP&#b4pkQ$(Bxv^D{t*lo6FO&G+aPmQ##QJ+H5W z5CWxKQq(PGWcljWX9_gqQ-OL2^=O zC>gIU8tx~b!ZB`mT|{roW%{1}qq;z8!#_TYSO?pcK!}L54G?ibaoT8%ObcfJo{|Al z#8jnYI!1#T#x!)k!v%{V*=)Gr=zMAiiD5{)`d91c5Av4r=mc{?vQGc_lXdap&6a44~vwMwO71X&oC-ulnpV;pru}KqzD8` zs`Y0ig~SDiQR#Klb>fgh(7BtHjvtN|bmAG~s%ERu)Lp(#mT4I%%PB?m9AW;9kd{Hw zQK=k|AUlLPATLhYD*}5}z{i$(>(HuRzmHcTL^>z)tifn^>u9fqVxn?}#xpRf(yG*+ zOa+Wg;peL=;65ePfB)b8pZ{i+IGZ(atNzx#iKY!3W7GySb4*5IOO6lD_YSf|OaIRkGBnqh%R7Yz)K* zTFP~KZWsM}hj?HHHwK|+Xc^JM(%A+rEX2rG*`**uq|ZVK#n*coU+!p(^qj12^HuzC za6vL_BsO?j>p5CN;{;VEcraE}8I(rw-I2#=(F--DfA2G8rq~)7c88jAW*L?_zu8p` za>1yObk-ANhjoFbYth25lQ@}*95)%IPFeg9{T%q^-1p<#@Ft{9zR1xkXVw~8ub4H0 z7$aK)!MIG~K1!t$-6Au%5II=L_Y#2S%HyN#+d^PmEy#)~u~&$7A=!3?82hYYDqoE; zzid6GTZ(Ljy5O&PJbS>R9$jrNS}(~=x9Rfam19Ga;JJ+$ z4KY*%KO%+!F=~hzLRw;!w99{Y^(n8!M@eS~c)OSUuC7p-eu?I)w|8{juV!U5S(_NL#gz zWq14WeJHpfIIRUQ7Lpi4GHove+XKlrhk=86q%@MkB#C(?A=97GI3i$JD71o6k;E1ou~&N3cG26ig2 zAt{W{>Qr(o1Z2`8WU4^3&M|9}{lmLvQdnxIF}fwo8nS$mHZA)eN#A==rXVZL(?0rZ zK`02cwis>KS$`)ZbJ#3)Pyg54&usZ zdq(YQK#;2pB_u;xFc29ULu1X&YespBlpRu(2qDR`6-B-xGaW8KkjHDwyci`h6evAI z$ViOm_A*@v%)$}$s>MD!L=>r_OI`mC-v%KBT?`aTFwl{K@eGO@l~2jChPo{;DMMc+ zQz=2AWZJyHm|79N*ZjMi!`?sZAe6r3PW49P=@27Ah}ZHm{Lst2nMRj_ZutgET9==xCzjuu)7GlVtL}8X}a#=$04-QU+Att8+#d9X7^G zSx^9@3{on((6Q*2oU|v*?Sf!iOa$*5VsE2!RA=}g*eWf9JY~QJx#9C|g%pCHP6N44 z0!JsSkLy|+WP#5{4M!`5l#13uV@F5hc=ypR0)AT}At`kV$>Ad4e1uRFqNd0cxq?*}n78l#vkCn*I~*qO!`!4wp@66J z-6fG8Ei`3Tp6f6O0SIEu2vMPhB+u$~PpA-)s#uYm4k;~}Y0%0eWWd@SYg1M<>;LA5 zii?ig*0jE%arHU?Jwpl!BK>=@d^Zx;*<>ZvwV?J*5JJ-V+uMjf1ae(aT~H!^8S`$2 zQ5l&^S=Le*1~Q{Ek=jY--R1S8RLOcS21AS*tt>{RGIFCW-fO%#gx+mIh=^1*Qmr7S ze#J zfD7VMoFYX!?lXOmi@F`7n7||Xz(Z3*RqM1zO1Q?J;8AuSI1S3&ZAPlIg*VgN9pIx->e!AUh zu#bCm9+8oGGw;oN?_1Bp^1jRn5BJmTv)A{nZ>@f)h|%DqWV>)|myV@-ITzno6(LDl zXK{WCmtsk7f{;CB^#Q^>CdoOa5!AM(&=#XK6IrsOCrnjICC&QF2uT+QPTVOWE6G2`5>$oKU5;}eKDE6qF;9~84vqjbT8Ey;37{N!OoNXfEGOvcT|=S@Uzi|y0wQ%R`#g&As!-{?W^0+S#gf9Dk(`h+36(;i zghmQQZECdCqx`f-syU$6Mt&0$utjsla7ZdgS+o>3&(f8)V{iq%tB6rjR~Jda=ZQob zKVLTFX>*D{JO$OOL2{n z(`B^2A*P6yd5<@dxg#pbW?f6CE~sX-eTonPr4Ke=Jppl36x<9w{k= z^eAXzd8WP}m+V zBokqnsDdH+we0pf#1!$-6Ovya&uvvvN^_;kX=HYrJ8U&tO73pgR92y+VBW#JOL<{T zkvnxq=fyMKfL|BH(d~B=QE?%6u%>Pvp_lz)+_eaboly$; zP*+Qww-|Ht^YK-}MaObjtYxRY&!$W+45K7@Gx@xXm?BmcYf>6hr132&MMCtXG^&iw zkUYbt5i=fBXAE(Vf_ z_>k3#*3Oao5mGk@;YcYV5QG%*F%ZQ-Wi(csD~SoK#=|B83XsS}2NxY7Mx?wdAAVlc z(n5lPK$`}_r5t)GJ*Uf^3nWyjKv^!ZwxO<1nUqVaqNOStwo8YyrxZm)Q7oy7hN5T) zNnBWGeLPdGt_Y|S38T_$t!7pK?%({+zVD;_(&U61J>+)1&YSVA*)erBCq#*l79|4$ zNvZP&`u?QHYLAyaWzn!TJ*Fs@ND*-U%z^9Ic=?D?W0mAiZO|s$c%R?MX(VbxV6qq; z$fOXQ_{I9~Z;KdeVysa57^RnEICsh}x*`zV-OE4n!Z0#%x4v0&G%Ev-&*i9Ih7^fA zbU+ntsVVPt*hB7NqjI^(-TG_SxQZx0{#*SjY-mU6H=0BbtYx5 zgk>TNq!4VY@sKIb9|@F`2p3zazO^(!KNw?|5u1iZT9>Z^L)*9)c2bM7IDb@5Cq zPhne>@}!vE&R38k%P^<)Dcw-BTL!+i)9}gSUXjy=OT8DA`NfM){ zbucR&i$TAVec9?>Oi3{e9*F-!?b;=IM00W-eN zbMOIc_&gAk#QPe$`*pzcdAs{=sIj(3 ztVpQ0Skq&KVk!y>scB-4VF5T@?$EoEeyC`=3CnJaWjCdFCC(Sr8n$(w)!0NpSCArM zRf6bvxRAVmC^0I}Nme#@3V-n=(GHT{XLZ5MI^NxG_-KAT@&3F}o4`BUEnnX^ys=wy zcT00`OEb}KG%U)oLxRY5mDs9ocO85YA*Dho%O8It5khirOY)6~Hu zr->w%gW%~BK0eiK6@G0FIkkb>c#O(f&M!-5cYo3`?`@VxkA>L4f~C*T!)&ax`I!X} z+#Y^-hn#+xpF2`|O4~lua7fDh`_%Xhd&alFGGv1}wI(AkibNufMnw6wGJ&+J%uy~f z$HAN@p@}qh3iGUKj=|~IF(^vpEYqcX{zCg_jYPslcY%od7}k!;=f87>iLSVBch|?H z368_i;_(O>iAkbV$9H!XTc+mFox-Yv90z*e)5mNU)w-4;zF4{4j;n} z56SBwRfp0iC^bi_GXlye8xkU)+lYfC;gZqPYQue7R4P)LNToMF=4}b6MV?$ zqjLoxoz~o&T)()B@hc*D|D@)$OYGK?Z|qBygkL-fEc$H2E~OwPIPN4vfW6vrcQSC) z-c-r^Y~iD%b&9Q8GbS;!#08BH8lgM3w+^U_B~K3D#6`($dPreAdRH);9$||oBzmmvapHhp1nyRWpignG zqIIv&8t^KSi*SL~pY1DhJe1|QGn{mW)@hzJ1&6I=J{T5G(+ry4tCu!cy;V3)I!i(z zMWU|e7<zq6*NDw=1K(DM+$maI^yD;@=(1*DKjsR%K5#FWU9 z9iJ9j8fsHh>hgjVw{ZDC-IeLSBs8BLe6?q;)A=!}?Gg+($ z{u8hqG*ctk(*=c8G-*J}L^;kLgsADdnh-TcNQ_K0L9lRwy((<{^ariwaH#osK4Uq+ z;PZ^&Vt|u2vFzdQmgJp1iP6xz#MC(6-D%k_Jb(1)Vy^1z02d{_3m~90Ip<3VcxO+c zRE}FX=@ddpc4|pA=CXd7aM~q4I8L|#%OP>vYd$!NXeF2xt2t1?qzG6Yap#OA7K7n~ z(~6Jg6)_3sgZT;&P+n+#_#z>Vkt0S03gd_g3fodu3%WilF-{kIC>hwA9cHJ-D2Y+i z$2omGq4f=EbPk=E3QwRY=S-^>qPaG#{>y}=JCml*tY4e3oNokd>e?$A*_+JiT_%s8 z2K_j12Y^T@y`W1EpKC)LdRawA9y{4OvxC+X;oT2n2S_-z;>2Rys>oUsED# zRe@0k7YF8j?p$6)J|bFby5uON#R^4#$*EreLmbdb^R#_>;T2vMgpicF!bpt^qmwZL z9|Ns#^6}UCJiLzZDH2E&QgYZ-qe|kld9N?)H+?}#=t{~FC``xB)>F!&MUdFtI;0#o z<2S((ND-`11QGefEdfDYEh*4UMBcz3hfnByKnlUMI%KQ%6sE^$$FyEBo1TpFN3-s< zuD*mwR~)cjM<|glJk+E}7@Z9UV!Ak|`B^}Y`LtRljEd|379uO`vjblQ;Xx!)n37^e ziW7wB5u;W2%Rr8AaR`;k=t_EYTkO`3x2D%$k3I?}CNMK+ZiP2>T78r>gJs^%=v|hx zDjC?G9WhgeQfhWbH{tUefu&QNbQ+_wSx_M*C-GvT#s#xJ)mlh|jLf@&AUuAI^U9#xMKDrgdoO{U*k2zii9emkV0+jgjRY&sdLoc zgJPFjSdsvj0^OyEz0=`jJyZHJuxeBYArPYhkyVzsBAuiENbB=@6_O{!h*r4?@v<5n zFB3imluR5gr)$UDmkoJ|BPbcDj7N%3KOXP}B%ukT2PV~=>Ex8H*)i4(Ika{(W4Y~h zl44*PT544?kB*oGMtf3kN?5qE?BeiKrhAf+e9ijBH@A|L`{@EWyb)<)nkUfc?q1@sI-f z`MvE|iq7S(Xl(>X%N|I4{f=ROnrB4c*p}>11P`_)(?a4yA|=r3>`RXGp z4=E&CYqIrUMoe*ZnZ5e`uLD*j6d=TKg@g)`V{GzqG8mz##L)TwzbL+NBvdQM&g^JSK6BMJV{qkjkEQO|!{O zsRO6|n3beF)B1!-y`U;vtcrAfeSsJ$k(d>3Ezf!xD2hX>`UzEafGrM4Vot*;Pu&3r z?wAudr;T%jIs!RI$oYDvQ^@NdTrpI{Fu}VA1iy=ScS*5Es^(hT?#oEA&Qp&9VwgSG z4QFJ+>d3+wrsnEmTARSsdLB0gTBHjD<QD~RLjZ12_Jv(0iXQ*Px$%o{UN{jAN~+&_u0CC52L0G-CgF(UAlg9 z;e8B2tt;ek9Vy91WI-NN)cbE@RovI6l3L z5Rt-O?Z({(iNvCx(}i}-4&8h#3SCj^a*X!4`9073IYa2Ns-V;biHH>WSg%OW3Lynz z%mzn^G^PYdLJGK-NY-B_&XZ8TfrPH+FIPl85RoFMAP6Do&c(>3F;nz;B;ps53EIU% ziohsCZ6{cnJKj<#tj_N#j)qe4%C#>r(xR1l#u@%>Q3yjNEjm>^U9RM~*JG7ce^c{F z%WO6oQ_g+1I$as3QOZ%*#}wr;i4GwGTJb{4$uATMHOjL!J!CqWU;Za}0TSA{1|JGN%-_XHxc<;*>r;2C<+j7YrUiJa>ofMPXIM zsz`0~ELZ3A1HbhGlE@a(Mc!B_89_#t-E?iaFUCr>OL^Ys{N}*u0bbB$S?g1hejguO zhS1Z+o*@p`R$_09ETILdPf%)sR1H$*KX0<`PRSC(loTfU&t#BHsfvMNl)+wx5)mzP zw_tT6woWqyiB*wV;jcY1OQ*3qu8RS;!4Txd*`5(vCVYa!*6?Ui@w6#;+7z7jn${`0 zpgHL^Mmwa8gkTt4f%7)IzdB1lOx7Lzm^6bcNJ$c-!3xF1L;|2qiIQjUd3GtX#Hj3$ zYqelGm3$k>++l@V-Lg3=21Cz86*>#p`DEQW*>kwxct|1h8PuLc3-xgWl- z6SPcJI$~8AyFYo&QsXGZe%+x2R5r3VJt3&&+QnRoL`;&x43xIR$HemFF~9$h|1po> z`#H;_6W;vJH+kzfzsV;*`4PxdcJ}rW$`E3K)-8BX-*!l4#vILDT+=H5{^yacep%tY z#f2rayW~UvnnEGE+UAruyEN}@iHdWDN;s^cG(X=_&!p3s-oLyW~5r@?pRfPf_|1txqWIoJko7!Qz8Kh=4T?tpZvFgdC7^pir3rpMRfU zC=y!Oj@_+;>ozNQVULysxUa|C=E+`(&OP)060^VN` z*7RtVsEd}uIBFBIV|T9)lE$A&USm`!m1W_^>rVpL46$45bol8Fff0z}Q0 zjVRUAiG+}vK#pa2*1Uw0aIna7&1oUHH`OxMnlH!g*sNqi;t-lMp$!XC$Lta%)G@EQeL-u`3oyT%WXfGqiTh7kkv@ z@`Xt#BdG$AWD@Ex&0;E{&UHbb4J8zfTcXYx6Xj+_?f`GXDyKE2EPh<=A74i#5`E~= zBJUT^lTfQHR@*Dto7r3^(sQxfJosVb4DM|q#u;5DHKi(%LQ|+B@A+e3=@;1zS!P9n z4<4UfZar=2dWZ2m&A3hxVq$a|Pd2MV3nbtS>5KxsT$J0bzCA|dAH zMWNyq5*m_3%0OAPnHPuwtp~iX7`#CUk5F@xn4{IezTHMEg-c7KSmJ$w)(fW7BPL~s zwF`tgLa0NkvZXND5!$GTNb-wCLaTB~U0$CHsnzwJCVurKS;6g!4 zY9y{=BT;-22DAe z^T=@nJ|+$piPj}PI1)T<3OcVoHv+msOwc$(B$KGtXDRbajxz5JQYL&E}*D1}uM+rWcUYOh@xSLCm>p)Xpm}&)-6&U;f6b391?n`?g_$C zm78s?Z^CM}VI^aTDH5V5TvL6@n{_`9kf+fdEuR1%!bTE01cwVA9|N6l@X2G9<(=uf zMDj3s9)7<1`v3xt_Vg1T|MXw7^*}S-k0^7BKoMhkE0^7}SW;?Fm*#nXF_O0U;`Uu%vM_5|X6zXM}Y{UWJGVJ&>eF z2!|w5Aeq=1a#RR(eS-@hpX1pDTI~A09>ymkAfXid|5ixkkKh5aWzz zh&g{UjdIRAlYuSku_{rh$Z>BlwqcQa1_p*_Yz*gzC;Z9p{R@8g-~1~?mFRtslKI)w z`Z=a9NNJy6{@(wWde`#NKl=gS{Px#*Egm z67oj!EXLWw5Cb84tSUxIl|Sc7-g#RzZn-9)&x`B!kFOhY_x9p3)zTn@#42-zgkHvS zSki?TmEx{Qs79&0C(%k1W2E&h?t<(&5mTTK!+O8}EF`jNl#v=K)iXZHtAh~=D>Ma) zQb|gcSTLv7;MD?c8jM|{ZHv|ea$Fmf^7QF|C{9T7h@?((lS_D%O4QYoS$#@jI+||E z;EMG)UWO#0kZOrgrwnmmh>lW~`51~GsamWm5WvzcV4N3THQ*|%>EbDf#TSQ!8r>6# z)Gt6nop&tUeAL{ZU1Zna&}lqa`QNoPSY6N#9errm(u)woTAG`yKZ513AdH&${qhcP zPTyd=*y2ugmj}}ayfJ;_!WSeKZUH2^#hjxLAF=c1E|Xo0kX;_Cmj|N(z|A{cYkRbI zB>f()e+y-fkgCa@yjYOJ3`9bzkX!Z2v%PhQ(H<$YTkK^5%1Gd>>FI_Eg>BJhK*~s6 z%@Kf9bCh{Jy3-~~RiUKLi;##2xy-_vXLdwoHUUc27{lVS6@1tQJmMLq2hV~Ki5PZq z{aXl1Kp|w8JEJ0?)B>eXL3lzeiGG{e^ca#@oAg`i}wNfClZDUUT-D&tZ>2t^xOp0rOm9p>Y#OnvTmWYku0cb4Nn ze)=ermZnea)dO!#8&VQ1M>CYmP$F%dVR+d{3ARhe{b|p3>5;$(r`6h|g>i;%r-r*T z&Hh9(Ey1cU?`-HzI9z)E4#7Gv;XE_fsY=C$FoMx_I# z&PB8B!tu^d!-Hwh(`E78YxZp+MdIG1U$2iT3A6xhT9UYiM2W17F{UR(jrZ4)rA!N| zvLSHFe3;|Y#r@J{T+RvA%2O8Y1+&OautGE7FObYg!V~cXhLpdq-=EzM#tc}K%@GIsr}%7&HC(-B+AZ@6W8THEGbVBA;{)^;poH1?7Vr0$xiMZ zMjS%+C{f`3_1#3R97gxqXodq~*us=QN6HpIJb-9Hc%+C~vMD2bTL-sVd;z4)6_To4 zQWp(X*<=~79NY5xh(vy^tg%;XEAm7@ss-9S$?f}8Tw}x}ASq%j2!03e?h}UlM88LH z_jA-rtchVpj3rWCUyvwuojcg3rXMS6DG8$AA^1HC)1p;iXX_X*K0)c@3lT3VWzwe2 zDMm-UU&)cLVro6JqNggC+?zOdiok*fZ9DdD;9xnsurVohc7m;Rr1c6V;TwBP9xf_& zs|H=2&cyrcK=tSdgUcgZL!4?EhSSOuXWF(C$mt7;q$cI1rIel>KfA`J2DIpiLdROCzT|W53|B<8je}o?f{^DQ%w|V=! z--Oc8rh!sxloXuA6Bb>C_cbmCh$T`wc8W-C2ZU}hW=TR2FI4G28L1H zK@g{-?DXav`aB8UEeEF4Bh)B!^-=T5ldrL8wuwpR?&|m~3gj8U>yUelH~;QUIPFhy z$zjG$o0PeTavnk?l#Hlx50uUJZbw3uRN478fsYO?4U=Mm7SHFHYLp!}=gP zJ*~1EJE3`WE#QM^2>lCP11qeqp}afEnXF1E3SH#Xix+rpfuPhCQsjm~sdEarQyop3JG$<)i5(eL5bT+RLBB7NZvj7Dl zIjky>LavAIS6E4OrCR2$sceX0E1L#gfyiCoq{e@jfXeYGGRu90NJy32{F~sTqc$~K zDO%U&i$A`28S%l7&WAmc_Q7fJ*!SiGB1$?Sxi2)V0m8%(j_WN}u-USX$jY?YqHVAcjk3Bh4| zwh&2?9f143qUr0glYS;`*HW`z?ytZ9JYs?;i^MnXNPhT9V5<}?`YdDagW{w!8wuzN zNH|uHhl=+h*7Eh1)+V_5gkg{5+@7|?r-vBfp|KOkS@P~iQgKvF} zZ~tq58kgKSiv@GP=d-J6)4Z93(Tk4KIKIBSq$-y5q6Im}=mo(~h+|&mX9XW6 zLy*)aaHk$9RLoB;0Uw-RRe-FpU-fJifzB(IgSkLJjf_~8HpVP$mjk`ONI)5lq+FC( z(?8P`2tbN}l@Kmve?ykk4k3`l5#n5DwbT__TCB2|b6+XW7>2BF>b+vo%s5@{akAKB zzT6>3l}A8^nx@@C$T+HJUhZnKDs~Sc%ZRTdIh(M0kGI(i39`|RRTe1~g(+`MKu`LU z>@T8B9(ReaZ_LW8gpZ!aHHa}P|uUmw`OXXoJb5|7_Z4Q3a{-Glzo)F zUHo|!i~thKoZi?BIz!5aun1~fql6}<$ka}eIh6GEz=~W55s@NNS4WhSpD>+%KwTJ4 zhdIr#Wbk>Y`0P;K{26@62l~|_&kdY?-DYWe4hTrXBdYh=-~AXVvV2yM=!crFpK^S% z4+JLF0f>a_zCpM6-e|C6atmGN&f9Gt1cMvsea~TY$dlz`+<3vRkcnuZvWAJBB7{UB zDRp)2rc8*4wofUhe~gqlV@QaUACP*WD(2(gg$wUf3aE``XL^J-k4AF32?EGg+QHW} zCx4m6@n2-Q_}cg=SzTu-cRP!Z5yIp9w;)MU(&J2P$IyP8lcPUJ@Ml?e_a^!J>w@BG zljn6~%oWuH7d8rw=-8^xI+Bwy7xcKdoOXt9?k?G_2EMho$bsL}W325Ex+kg*0qoa3 zs(#AdLhz^Fc*y?bdUGyT6kaB@a_mk|F{Z_j1(?(24udav|KT?;{}=!fc(N?${KaD{ zMdHD!r<^XgIiByYJGXa=-D~g3&L!U25qxr**sBFb!-LtGp;#{M zTn`@w%V%_hUp17-j-f^=tj@)muNq1tuo|8$US9&bdG-0~VQM|w^#T{O8)UxA0TNQS zDDxC;pN=#5`405n@v}erArHRwHHxh%Z~m*l#arL`22u)s@y~y>e(m4`Zg4F7C5P<+ z^odV?@+(Yj=|hiq_c=ZK^K|W90G|Hpf8xDA_$S=``rG`@zw?*ZuM<;Xh~4;{P8d;R z)hs(c7DsGP4++Ba*v~nQEpSZl0xq;j`zxeuUy6soi(E6gV3jkofA7Pqg}oJ~)-xY8 zkCp{zNBRsd<~jULIPEM}Mc$m|uETkZ>2l9RRW$5vKV^UKL*9PyGro4`@fG5#(-fWV z;D>!;$j`jaw+KPrgpXf^F38#0`RDUz8KW0ce*UhC)Rl4gpgBCg&*Ou)7~H1L%8MbA zaKUrj9bGXEx{Q=Weny{rKIiP!+iapQqEH1!=#AIQO5S*WVZ;=>^q_w?P_Zy0^StVC;NO%#4YdB85aGffkyH zsj=sx>0SjYX*Ti*pCTurBd?9BZuY1SK@3E|}WfXjA{!|I6R{{&8zRcgH!S9kb~nb(tlfv*`gr zeweGBQlq4z^DRE*mTrn^o#C`HKDbVs9b))YR?p9ZRhI2?m%G)SbqMcmanhe~(jUV! zI-yD^=EEs24p`-xR1QJRRkd-(#|J}75JH6#QxG{CL`aWNElN3zj!dfsM&E8GK`TvZ zN;;qA5k7`o5tRCh+)_)OC5dVE-+~a&wDu{POom4iSZaeQK0(M+CWYhe?I+a5z=>O+ z%wv>31R)_6fMmb!sHcY%Mv|hT8>UE=+xkKX5CSD6m98n|9!ku3`1IWi?@@?ISv1t; zVziyM1iwAbt4f03Be@48f1ken8X``(QxEuU%Sp8_6bMNK@U4yPqXu?*H|;q4<&}Y`LM+)wKVK#i;J40cJl*E zjdQ)F&2s7BOZKg1A~j7A9Gvd6Y_~_VimPO<51Vs36Jjj|Zu==Q8q#RxZS+7&66Xub zqD3i7?}v>up@$8ebXm&w@FcSABU)s4#8=(jd{Ja~bM#e>4V~+ zwfyXGN=O1V7B?@$MSz5ofzq}(Z=QM0Xc9TPiH7fUA7 z1B~fuy4maw-TU|=p)xg%ThNCd7afgXUR%6= z83@Va!z!)f*(g-Ww3v%Mw+iH*l45E+tZ83$a7NCd}mC5_E$ zzJK1p5JjE6tq0G_cZ(Acbr1CwPO{oM% z*>j&O0Rr_m|L%YI{cQ_J&D9O#X9=x5v&ji{wWKgTtv|+%Hp(G+x^-x6CZB!ivxRuf zH@`pA1Y!5L_V1-*{VJhWbVK(1O z*Fqo|{8@0dPacWd=n|agCNx@Udfc}ss%=Zh!%;= z#8`AZU2KhcQVFH}GtHJRBOwSe|4gAr6DH{}+OceB7&A~6E!`-0*(t7?m`n@7P9-Qb zWC2^wOYMD*ka-UL9=vc^46L48%GLC+cKM+usu7ZZMQD0zd3#;AjaRzc&6^wJ^Rxovm$WhJiRlV z_61r6>gtq9b(+`v7bH=R!2YB~B3Paq88OV>6hbXHsdl0O-bOR$%SH9QrZS7 zQXa=~B|=2Z=o2r1I}4k-ll;dD(HVv2;6BR%qF|MKS@C7n`(5DcMzC41D@6-F9- zbZ7hb&)~B^k1Mg1qxAZk=GF?mA4sFzl#vrWFVslbR#&nWnk`kbEh`W_(<#~$Xwvyc zTcUG0az>2m%tGb+d*uS0#|UqKJo0>}!q`V+^XRJbAjkA&FM;e(Y_O_8k6m3Q<=QXC zhXEla>Tms>zx92YRLCzZ67*%pT9ziq?FE8 z?($6N%euj}G!!Za6i@Ap`;!OQ(W1NcEk8c|F&{48=V|+dqwa{~{&+q6IRuB0lGZhR zwET#N%d-~uO(gU@A`T&15FUg>3YkrN#tLwbWtlT6Jl1qng{SusrFyK&VZqOfoROL@ zIw1sB+KnXiJW`4j#u8H^#tClNL779OK1GOp9M9W$_i@OZk_bLn1QH{9nb zN!L%9mMz9E*Cfkz-5} zgEynSw?IpWHUpJXO!bt?OmeMj!=XEDGQpV?fR zsH|kG(qE`~(9T2a67L-)NKhA7Yq-6Kr^~FekYv}}4-Oq49m8_C{N2CC8D7I7 zaR*4mSg-$EkZ11akAKAv{y%@f(T4}jpB&MiF8Sn#zhv>~kU#ss{;L>kxbw~%Jbv#Z zKKSXM@a|vuF1zpEr`nnF^}q02yz|@N;?3XwCLjLf7u^5NukprrzjpC02#_jg(|z>E ze?m%$xBv9F5K@qm!4G%F(GnmPBWVq!WRa>J-*2AvGou79D{*qsGtbv$66R7ziZxow zOR)mCgOriFTrjOqDT^gm3MBH%T02tt3xBu5c>=0Na+%1NM^UsCrpKzlvYU<@w#0Vf zcraUHiv`v$P&z*ss-k17UT~)nM71DE&+&2#H5TnB)$&u5xj?{3IB8bhN>KU~sgLp= z1E|ep-NEq5)3`hml87kP5yKWS7VK6%x;Wd%F+S_6a!H7q!IdZ(m{f~T{l10B=O#;E z^Je-g36(V6jCnI93CFaaGbx*V4s1Vme>KkMh?pNrNrQJFMg@Vg7gTq7 zlP?JAY8;@J*{o6ufeXVG*VZpP@;ORl1L@PdA-{a&HS+T8>Sgr4rw@IebsZyUo(B@i zmMSqq<3}T<)zYGcq)iTYuDQ12MK_UML3ZyQLXQ@D%$W7KINX?ndJ}|5D4h$J*P+lg zN@SwhhkopW=3^*;5cBhBKFsMtM2mHP z14hTOBbbAEUxb7zsc78UF%%*j>Iji%VK*TMJg4kTOp~?$u^Mfivu*!*5}MCrqEaP& zh@?>ETuK@6!-KV>Za2=rhA<(7iyHXLFxq81cI_F4ing!Eywik|iF{-PB)PGAeOo9Q z#*S;qOF$ARp_!k1u%Aa!wA9stx>{mQj~U}mfH9M`zrr;SIm)EA z18>x43zR3)`kZwclVHBw$%aKQNI;cL6e`jAoF@w4f>}$!q<{yNrcyIb`a~C&bfKa3 z9Wg~@N=TuY7J}_6cSUEVp!3kV98w-$vuBak4k-dZ?l<3J_su&bkq}z&#&^HQy>GpRShdeLpgEdz_~B#T{@%BcQs!fpavYYB38|0K z_AyE?&JoZIfgq%mi_GJ*)dj~8FFI)|bBq=RA(ZRF>}`=oC)d5YVNwiimyX>+@ML-O zb7qC3KR+uPc<$x9T{?6tQD7=khUo9bm^!-gPou#xvUaZat4|lzlD|YK10=L?sLp zW$-ECQlONEN*D$r%TW=^1!E_9-_uZ)&-l80$ph7 z!kICYK%oBi-~CU%?+9p_D>f34Lf|*di@gd6K&z~(mdYbXm$}=L&`pp+Vf9(Z&&O=} z{33W``X+a(JKU}Aa;Lt_8vx|L#; zD~&4839bJ9JOmOUB%Y2Kb_v7X9LeIh+3ciyGvwIuYr6?uUlT%hr?a+aQk_y3EoITt z43`6WpASYk3fofHj-qI(iUutcF{-s;&k9;OCe@s}T5g=K8?pY-@b5#Aq>UpfC}wBrZs_6zDGqM=P{oVzYztqj`>1nfLkl&-=uC2a!jok3TthxZz)tRwj~h&i4ZL@JR!I_!}3EG2Osm@fBm<4>$~4% z@2z(+)jhuPyWeALucmcNQc8Fg*!kLBX7_hF{`e{LC&z5x-^Y}>pe3ZZk$?h7t@)Gx z{-0Ct?=acjV)f_E@mm*WrP%wY9K|My$GHIR_4y+ zR4EFjnC4WDjY^rz$m^n{E*o}d#}vg9Q!Fv2r!2bsyitO-*~d!3_Uw=lHI?>k7Xc+D zrO?@IMD~6o$(8VqH?gA+Vq-e?bEOE8o#BSiBZSKYbTm8IR4t1n z0x?T?{T=-9#tl&}S7FD3#_FAB5~vX*ilRd)k2O7$azRyPSx#YkoHu9{DYZwcQ5O6h zRdlT#h3T{Gw`j4Z=je0~tv$|LqzDwY!7^y15`H4NMbt6o!qYj zt-HDo36b&)?Q?#X7l9CYqh`ziBIOy@1TiTplgZr|2}TLtKa9+~k!&{k&yzM60YX;m zej!n)@HrXny)M^)7#ChMuA8|tmy#qVjg%d(UGm5O^?%O8AOC>m;X`y`dFyw+i7_yl z8us71gRCIZ(uHP}ayg`wl+zkJDf#4wzeHQj?CuUiUVpq}n2ziC6lH335jcGB6F&Lz zuXymAUjsBT76|E4s<|?2-dHcb#|OBuDbYk zLxuO2>Ewh-wZOgvb0Ws8y${2M8MhcUefy1^|E*8Z_Ay5H)Hb2alC656Fnv}^DgVsw z=XtD1rIwnQ@+@E?JK}DFmX^xoPI_gkaZb)6WuDbzoNwJkV858iGoG9FcbAd7bEC5E zhWq*RfR+lQ4U*ir*+lk+FpPvNBc-&yHf};G^XpEPMF>eHZN83Epi7RF5`FR`F%6vd zbGp#1$$A*`R0RU1uFopX*{jb!4=)3`3#urzrT5*aNG&na=A|vEelFjVZ^hmkDJhij?TAvjxmuL`G!iyvvANJ z@T0>Y5ieO0x4z}!@)JIof549qf6Px0f67UJ{JGvpQlG-PSQ9NRwXKmtZT#%>e$KpK ztY=0vae_Ucz48G*>-sEJy zmnoRYL`%vo`60tQc9fknfNIgxl;&g>(J+jE9AjwFTR{q!1UYgDFK~^fv$w3o8j-c9$OT-XMgh89Z$tIBXIhpG5rg zAJ)$eHhW>v`)oqgy8QKJz$SO+uNEXJp2)R+R zdFy-MKxvt`k1}C&i%@g=kh_wXI~Cgx_St#sE)Re5KF!I^kx?ORI)5HQI+Q*{*{AE- z#@irE*Ak1^vxtsFp6$F>-{N_oI;wJs(fzqn=tbmiVNcKt1PP^EP#sMg=#nFlD5cIh z(b4h5FPVp)kRpfSD!F@U5FVu$2$`KUi%UiKmjNjwg>9*dJd*P&;D_?6Rfgpf^vROri2)KtvKky(aZ>H>QyYDkb>acfgksER^YRO&3kQT?sI^S8c# z;U`8288LdGEL)cC*7^rtB@zN3G)-RviK>Vgowf7*+8y_HSdl>~1bU1MQBskfQ9<2= z&i5Sm#|Q+E+b0ZRV5``|$H1fZ5r^%;mARA`!Kdkj2ER>=TSPxa>qLwesHuxch;buX zTn>v-;*{NPH+|0vt!vkxuTTXsB??t;)W0u=Mb?6+9HEoOir2FsL_&xmXNSrbAp=6V zJPUeFS5nJBX*-N**_xa%sZVLU347H*<5ngXE9d1LO`~MaSUnG8a_3RXkmozKL&<>i z7CX8mCInTnq%2yb3>2nEDGx}r9uOkpTz26zW?*;gfTHM`FL#hKjz8NWZ&`5#P%2NY zt{`OqA?QaZ!-hQCTg=e zZX+RHnH<-e9<4kfWC!JxB-ReJ-6RLQdkskLZ%KA*iB_4|y{!gwDX3~2eLPS!`BOstIkn`(MX-`o!ARP+D&z|h_$)e)P zvb%Tq|2A-L&D*oS_c-Q!l> z!`B&B6`6D^ed|4Y+|V6+9gs*UsYj!$GlUe@^4!jM442M(B4Lz8NRe?n-otsi4S#R7DAw-@fAJv#rNR-lS=^8V3f2GiyNodyO0vlz_dH>(b&b`Ry;RTTr)WXY?Pfud;Ho*iS& zfL5NmTF?%b$>fB#n~sqyDobz7W*O7@t|%iRHrgRB}17*1+#7snXwsNMeHQ5wu zQq7r7<`lMJa5Y*D+3guPUF_xxaM|YXe-2!JFlKvsP21-n@!m@g8cS_F_a=RojS4{} zG(*Zm?Met1VW1r?ybIeiU+g^Brg^7yY!?^ryQ9u<(&xAt7qjsZBd^>pJyt~;rzrHz z_eV+zAtZ}IGlaz3JBqtgflu)9am1=fsRLHU?Bad?XP@IUJTIh7_+Zd_KuJ$wyKER0 zvg>g|pq1eMmSk3n*P4I=SS|SIDDwVcq#3TG7hi1DCNP9wlTd(C2P)IyQlA~u1qi+5 zz2E=uP=(^#f9ZEn8cbo3N+N}#G8IzfxU>A6z5XgW{NNG3>)C(z!Hpy|ujNaWo+Hk6 zpz56|?Y!ZWAO4CrfBPHjzt1K`4y8}=?g2tLZ2j|GK>^a)5-BVcH|}kx+M$xkx-sTBq0$@WeEb> z=ov<@Oji4t8_vbcfFKv_^N5XFyILBR$BtHxxaXmnko-OTIfKCKNT@LbJ`}XwjHaD2 zZ+2<>nzpZ*lviK-d2pVDO4ShkE~N?V?>xdP4-n!DW({eN9b-#LT_4QK5zKw5#+Hm*7sqa z0bb?5`b+mRfQtj2&-0u4oaVFaW5A_>Z8cew#`Ak~DFjiZJVJ$H5qlzu!jy;vm90k! z_}TiGO|CN8yNr-N9SOCnU{XvdR6#N3rGlU~)o83$V0D32nUJoqBB54VN>i*qqd-td z12J*G*x{q@3F<%kJO9!51%eO*o$CoP=Sr4#pe#BHn+IE!a_mo9=G|wLCz=p+t{@~y zX`4}3Y{wIM^`zf~L?k3P#E(s5!{cw_hh0*th+&(>{5R?PJ(6h9sz*u1;Dt%GUcY^1$;!bGqEk#zLdDd_qu_bD|s=%n>KCSwEz+}{#kh?!6!;PE_ie06{LrNCa*vvlfnl;gf$*MN@_mxdg75^Io-kN)U?;$Qx~ z|BCPZZ~i^D?_a!k&m238T>TdkK_0tUMWCF=$3OfP%Yzf{efw=}eYL}=q@vVWago?O zb9eml0l|lLtV{G;_~C2#{#|_kR_=VRX1`-rNX0NEhUu7h`s|{f7#-w=h$uZLxO+F6 z71?4*Q7(}paAbq$pY`*U@`yB1p=z=Ct!X> zS%CAF6fyFSV@i~`zl_}5od>h(tBF)EG zJ4egx(!Y8ijQgF|LD!ee>gGxj`Z7G8MZci&4KYTBFd(EriCo}cz4!C?$;wq&$=n6H z?$fF9z6&wCiGC5W+UphP;&CpMr7tR69L55Jz(tP_ITkSz>BE^R(N&zScQIvujJ+~@ z%S>d!2kw}JAP}+V2;3qL9K;3hHxKE2pZ#2r>-AyjvTOA!DpJYplq-cKiNtbPa?&5u z`F1_C{32KpP|dg=jO$TI5wlt&#MLz-iA0FGX*ew=Yq@eCdgj9^ZRiOkPJK%oI@I6z zKmLvHE2S8`W9jA$t2hz2B&JA+0c{#e+Y&@z(cFIH`Z7?Mo>}cFjK=EhZ2BUE=4E1~ z`+nIKoKHhS&mi)kd`wtvNuxXMQF}O^+dM0KzFT=6g5M$deWc7eV7Zze5yGMDA!0@qAMy~o!jMQKvAz6L&xVw7?dH2% zH>8;7EC*j8M5L~k*FNaZBPEFviQ~mtw9vCKD?F1iPQXXOho==E&99gA3hA)r2WWeM zO95j}*(oFDoC#JSa^jZ!Wbpw*>Zz?|W^;!ZU}CfD>`o>4Xl^(iT9go1NQR3!r}X*G z>dlxHdA3VRk5ZAguX%Lv7RzQEA+p=BF$0l-omx?wt7QCj!%rUv-aB}iN9px~mibzE zRr2g-A^m^xl-;`d@wLib>t7d(pThAqFaw-QSHeSGqg^ zrY`yAKm7r-`+H39?p}C3DI}$?#thHRL~(hv;E(>xf5PwlwZB9;%f)S}dX#yBlr2Jd zZ2c1u0aJd6(kEzhh%!fO^PCrfAMTOT=6T1db?i)z(K?fwd9$;TgbEVVx?#6&sa2le zDrJsR@hM&imoJ27qVlu&ICgjfhwUM9EZPoX$lU@V7?LNXu$IDxl*cd5HujOmH>7k% zs2Dq`=~BV@I^@^CxN%&)ZXbGv(X8-t_b$&fmRMOJnK5+x4F2qyyi?B+=2vjxyd(-; zu3t-xV-97}QkM;b_=w0Hk#f;uWq_4G|Mj26k9)A|x`zoc3AqVkAQO_-Uy?6P;@_ z2h;{hHjj!a$17e&A|VhouA%cSIRH_jRUYwZU6bc*qsL0i+%JHHY&T5b+r6-rgISMQ=mOYo*| za6Vs@+1>8;L{RBtjQt2xd`L=aoU;fN^-nPNBa}H}h&_Gi@X@hwbLRbgeW9&x&P2L) zc=~$WEN{$R$gq)st{_EZXL`u~&LhfVLEBApOv~6AO}E^v*5z_-B(ya>zWmQOLTks? z^oT^F^JG`UPkG;XZ#Zmfx&TRdW|JfKcAi{ogt5Y^7JItfW;R-b-xeR7RQ%HqcloCu z?(+K|?egL24FnXh5+=5wE<8$gSQ9~ra{@DXKJU+?4;|g89O|wyuJiqXsS2v?X^vXB1SRwp zlZq8W2>jr``2*hi)4##a8~ZR8$5J$q6jCkF#lyVLo5%U@Ul|J8 z>e*m*cDKC@V+N!-<xLqBIYM^0D8;6fMlK5uS)3WON(G0?h} zlkS*ixLK;2NOZ1c(a$fCvekz1JVFZe{$lqgU3$+xItD+i_X}Zs&5$CCX3C=3=5)T# zyu0`eSh$9G?zk$UDD@;eV_t))nIeRs@k5Dfmq#JG2XbZT`5aeFw#(6x@PkC3Hp@Rheha# zDKRx!)_f7^g0$90N9Q_*nD5n>-4t7)4;{;XK^(mTR#$ECB?PZC#_s!jyzW7us9T>@jZcjULddA8+$li>95iSkCB&30B-C_#L93-YBVA zK?!y3gYe6Un6eR3Wh)Yi#xH3{hr>?;rRE6PjWadZANL{j9JfcDbSHE!UsEw9hLDJ1 zLJU(`lKj69R_?C*OPVv;o71m_A8lHQfHT|E{yu2#4&BSb~~6mbtm56mVfY|oxD znVcd=ciB$^qX)JoC+y6Qm`zTYRCAOFxL|PJ(7SSN0?`d6&Rb%VOk_bNEHP@jai;WD zpfZ8Gvn5ssW~F3Ww{+3*$TysfS!jtwk>vV;pSG_#Y!dD@-e-geCvBqXU+(ew zHC|5$kub_3)iRSg`xs>(A@v+n9HI+J7@pm6Y21R=wJe6sgR!) zA>~=TY%X+$M?d|LqxV1I+kfTHoc&BJM)l1OzJHs3`8|g2-E1`D?p^r#=Yf{lG-LH1 zlzDpXzNK}B!^IBWP?8Y5wRb>aHy6j!nBBZ`&QCxe9sStNWbA&l$>F2hxM5v&Q*yC? zJl<|W>y{VD%Mb^KIEE7K2jzF!lkNThWwOSi;@Rc0Ub zzNZ~7?h#ycoc6i-(6}Y@-ZAeS%H$68WdbThj;=b7Qdg9hW-u?K)Fl&hRrQq#T$jo4 zb1JAH7keSm4xZ!rE+_L{hW4BE&2JFg9i*C*@M9sM!-edE%=p=lyJMEaJm(k+#dftr zsk7{OZMbqVT!NHxD#IBvNvrMTT6a~(&3cX``(mxnMrLVtsSEm$NrsUHr77~g5k28K znjT*iWWtq4)t=R9JfBRFiR<-Ikv;{EV#A{_r%Mh}{`s5GhmMo(n4|9SneXM(U{#d7 zjF18@I_CYHJ`6O&lH)cvE49>=I?s-tN3AQ8P*kSQW<`JF|Mc%)F($eWDO&vS#%LY{ zs1u|d5Yi#lB1dqDkljpQB3!WaLrK$aK`My;F3xS`hwPIm0nf|7==-=QB0x;|&c1$QS) zdS!Q`MSHH)<_csOGhUTYd2V?vM|d_lOi9voGn_Bcy2qNHx>``$ixDl?q3`k@cd z`$S;`vodnfolqFh%*?25?o$Ynuqxs<%#3~-2m$?2;YWvD?+sGs88xj0cP5HiVa80} z%Rl{kpcxWBeH3{--+UeY8ZQg4#|5Bdpe#=CDX+209HY%sVmRi9|M2%HrZw;W?st&t z+4qV-T-(VhrZta$_7Q$??7VpgrSpbK$*jWhDHEO5TzVcL5S=qS(_S(T$75Se}n7Hi9*!bSHN^c;V5iJ zH&m$6IXz4C9jIdhOQevv=xIX7JwG2- z|CUI(Q|OlTz8ka8L*Bfp{5)*jV(qHx#;!;odR%mC@)J`;j0pi*t|w6A^ZKMex^Qk{ zsBwOa5GrDvAW-y9(Y5y(hAq0GCSEE;XNmN2&H*2vM|rmR`hxWeS}I!KUD=-rA?QL+ zO4)7nynHyMaLchQ3221uveBXH5TeUZR+WEV2!YiFS}4+(iM}HG0x=rr<-LfD14`rw zlFLPMG0Lk~9Um!Fc1azj)tjW!fm}owLOMrEZ z^SonNUj(cQ={G?LNjVz$WQ9X6%1I$nGS3oQp|K*TcQoh57FO#*sdF>wvZCR$gc1rh zMmC+l<`Zcxz0F0j^QNzYN>9*AqlLmnkBb9RNNQU%#Jo3DLSHK7JOk;1)G4CO5vF_} zTmA}L{R~_F5>x)_-1odZq?F|lQY6Y^fm97zIb@o_hWQRX2BfZnfh$#Asm6X8A%w(7 zPcyW1?lz0`?T}3!j)<`)#S-t{01Q@IDqUk`fsvLR032pm;gQEwWoW4mI?gNkz zq_7KNmy}dCl<{Zw?&sm+z|t+452ti4OLJP^uo$v5;5HB>tQn}vIac>$_UF}y!DS4t zVA;;_@%jqptA;{Sa{J$3mkX@v(ArVh7Ns0QM6_~DwLqhI(v&aVz~?fSAu#XNx)bYz z#`}`Ra*xNSGd`XRemTEf91*lbGD$lU`rt6DId%qqNsRtw#VJA zEQ~1(>{ifu{fx)L^FxTZ9z9sa^t4@_|G#KB>06f06JGW&eo62F4x2>lUeh-?LW;!1 zTqHY%3RF72^bYrz38fB~Wax=RPwN9Doz+64lH;R4{soIC$NcHP_LtE1cI(P@^PB)u z3byX=(j1)<*CDxrQsv^26cRlW(#vOXc5jE~XmR!zNsyu;_$`L+>$uUBDEM7m|IOST z9o`_g9fIE?#jDT!O%P;aAP^L~#LANBuP2}@grMoXqxU^p_v~&xWq0c-+q1_^CLdFj zPZ+`}o$q+m9rDZO6W(hd(#D=eX!3?DB_^UkBN)PY8E$v$=NEvxG*>5t$g_qaZZwQq zK_D>NQ0QVEpRkgZ`Z%y0yE&H;;{?}!ouT;-L-QS$%eP3$5d1#QZQ=dJ0%j(73zRuV zh=5UcbcVh87@vndC)v%UEzgH;>K?}wZ=G!}ghSg$X!`_PJf*G<(DndjE{@gs;AmV+ z>zWJa#zmJEIzxV58EMx=gv)Z_G)gpAh-1gBb$OG19;*#}Gc>erInEkxF7~``P(oo< zaiIw?wG$?zpTlC9)BAjEo<-EY>=0=z#*AuAA03TbGK}|hCG)Ihb56z$Ii*4fiPf83 zZ$C?DX_*#NthThST`Ln@bnBwmru$R~apAsZT$B1RFdyb)XEi-vCsYVQ4#J+G^a81$ zqV#g@JSU_>$_^03uzmT*pBq{^luYO3kb)2lAt_=MKuz*@2~i?si&6Q32T9MA$2K{+BVhg25MPoii$EAFvZS12jiu5%p6qK7UkSY9e(RA>pcb-18V zDE6y?ozk;qV5Sp0b%E8-uK0f*Xk6mwk0bN$WgnTB3n9SBw2r}0BB5oXP!X*?g-S?~ zXSb9Xl{l{*UTtw_6ABek60C|;#^c2tA=~_3gwI73)o}XcAwT{9{R_VFul_c>Z{HoC z<)0oO{ot2qYq;}`H&G^!zLcgK=jlZ5h@`Waf)!?Wclpsj_&whG-nTKO9p7g+&T8ha zXhI-`LrI6C#<|@*&JimR142IA;4Q7qIRsi7x^9nV`Cu$+Uk@Q0ym*XHZT>8xL8*aA zLtu^&ElFe|bUxd0+s=5i*yqHzRHGq}kB(Ef$PSiLjfOg(=6RAolZ$7uB%2_GTua`3 z@^rpmcSu)Vi_2pVz!-lc@^MCyQb7#U3&h>XNNqckY?0;(+C0W+kU}%H6Ra|0_ww1u z#pQOrcT-YR>T=xyQXejGPBj|51vo2nc;V2q|c-8DW4uQPIvY%yj==B}t1<9%A+kVureAdNE4 zuPTJdj<#BA5D-S6l&ng~&$)>zDTL-IW;y&22U^$SqC=9&{;M!SeI8^bU@j`13@0dI zFj6!4;gbCPJVeeH9XqG1PG}cU7Q74iBzO_0puOFAFb&gnkwfazN=NG3BBErrqas z{tkV&&)_C_U*r8*rCLdkwTmo^p+u{WH!I8O@@5t6RkXWmqF?biu@ z4=_y1{+XL8Awa2s){dA2r}I6u9&(h*1_+Tb+9O3Gc*`)<^v>YNJh8%d&)oRDEJ!4U z(6qRG8(s7DGnAZkp_WV5@kj0hPa34H%HDb@tPld~Sh5u_=5wMGc2 zbj_Xe9?hWX9Mpy2=Z_=p&?5*8UXA&XFX!vQmSle_sSC-Y(}L}y;@+&}&557{N~tkI zVNHpA3G>U(i{m!&;c-GqIA{`93ABR$?#G_i!ykSa=si4LaOJao7GLjdFR4vpIpl1y zo4#g+XL0WP5&~^nCex=heMK{rqhZX-{q}YI`s}gF=yg%j2L;KZ%u|#;K*)eD9wJrG z&;Q3iqL|iv?RS3zZC_5oq?@;0}Q_``w^AM$aq;!N(Ol zCy>%1i;s}@S15f-sSPoO9IIwZl+f4S5h(_ayJLI|SZz3Ho}N1(As7hhnmp(i$m)vm86(Mm4)cXIgX1^Do_?J z!Edi9?B#D+Ly3qr16z{=X47NpvO%jHu03B~wMdsDVRgWHLjorCoT7M2UFh60_AL`z z=YiOiXU%*Jq!cMk!D)BO@&zhsuNto_2^E}W1Z7Bq+h=ILiy!V1LQQEK%5p(fEUAiy z5bXNAr6lpbCip4dPwD%89xb+LodFWcoTBt*^9z9J_eNQn&G~R5QCFu_#ntPM@lkpC zY7^sprZEFjre}6Gl?q6eXF_I^6DD;wr1`7}DC9-GW%Fk|kG7kPoAbPp8(e|+mSta) zL?HMQ7hWAn5+YF5heZ8zI=>{Oh#hBP80Tt-kT;6TJRzlm(w>rJj+9B!qSTV;_wpu0 zpQ6+PPmfO9%qqcQb4u?@o-PuV72KOj`T$4E$Vn$@UCvB>nNU(-6dW!SdlSL$ys6l$ zA;kzn0*RuSq0RM9!LJgJ7m1%djC_2Yjgjum1Xc<5CW0S)9Ek}Qw^OaXR49>h{#k@c z(P5RKUl#~AqYvuJog0E-a24CLr}RTbS{G1$4aVbq^>_#b7C*d23MGCxrJFzH;Jt^W znArc?8=snlo}CBD$A9=UW)Jq6>~Ck;tB@43K&w3GB&8Z-1+H$+r+0Sv=|B3H-2IJr zvE^NY-yXdJu9Bo6pAv=#|IVa7wvLczy)pbvl+lI+T!kep=@BJ*6}{YoD!YLI^5d6UT_p#xFtS4*I71Oa1l# z_&@zVD75ly)l0PPiRWaFV$`m$AVfgQB~m(+K18Zb&Z~mTR7^{QH64DG<86YLfqPpG zyR#!~xj@N_Z?YdsND8a6G)sy^sS~@?1-3k;C|c@jiPdL0Og?y|(46!~>+0nYdP2&% zHGZsSzHWG3Noc7`jI!&>R*EHk^BrvQn7Uq46)h4;h=#IgDQw5q^pMjr+|e$li(FQ{*?N^XrLt@6ZgD;V@&U4Vc8Nq7av+|%p_MeBo>E=by-nRf+BMkQ?AxO%kRk=99hZtya1H`Jt3v6pP`EWJbHZsjLVbT zZc9@hSns&t=zL4<7jNj_^l}hFW{s5ICo{wxlyzahE!8vM7vxHb#%HU;^SUfvKZ1c7 zWKks{kTSO$8)*)zw)CQ;Qb-nVe$Y7}L^cRK>l#!4#eeyK`mcnD467-F;WqwAJ3$vZ zT9*x4k0PW$P{Tco=*NU8QE5coj#)Hk3(rUqSsw4Qx-`LyvoGMXoH5jJZxDGfs;O*X zTsV*&()1Nm@?mkGNxOHZ<;;Fr`K%Y>I&fWsP@jCC#ZCQ(Nh28{)Qmy7!=MZ(l`GSA zGwQ1rg1WuVfbh?0aSh9N?Rex~?rgh-648Kg0#%>qL%80Phu&RbG~`C^Q}x0XagWk^*j?m+_t9Psp2nrX2k6B>Un#AJ+9etX zpKT?4jM)Oo3wCSxbTd~#Uk8Pb#3WcQ9YR1C1cgde#xt-U7c?$Pq=;zcNl2vhtS)U) z*oKrO#yCdRg7IL=@@SXks>axws+uvZW_VxF`4_9c{-)y2u#eJa7pZ2wn)xo9AO96g z_t*KY|LyNnEe$UW5S~U#lHgW|?siThiNwmiF`xcVf6VV=kbQgJ zVX#r^iZ(X5dcwn>e9GIu`MZ!xQmlw!+;_ZqQc}I@enRPN6PCw(&d2)-=fUHLa@FeURZv1vs)|yV zhNPm_l#YGQcXs!p#qo5^oYxKh*`^cX+ zB@~4z4%%4T6T)P^Z}q?40VvSBRqVH*?7&9>4Zc8%*}>t$nvS*QO;*NR zv|Y*e-o29#&_NYB7_2mw;$YSaGl=Vj2iimrW&a75);2uD(n5c&yPPZ*SQ2Gu4@!##}VV66a; z)LX=8&$V{i7a(cVE^7n9w26Ga-Ozf^C0r(+oBiK0E(EhC@$qKl;UuzKr-Ltl_WJrl zi3z^mi)_pivo<1y$0z|vYL~r0UzbX+RRI_Byyn6wVuFEjESDX_qCx1zkt(jj7{{=h zpp|Dhm@*ztSRQX9gl9C`!WMJFk%XvsC2d!tbe*sN8%`l*M-nwsZ6joj(hG#lRmYQo z;jAbYXJ=b;Yyd=gSP2n0jQBS9|%)%y_+ zOtwV`eRc0u5>ucJS#;z)_1b-rs;qpU)o5Fv3jd1jD)-H9nu`-aZDgR{1l3L*2~a?-Zu+fJ@{Iy(PsmG_sJpis09>vSl2R zQc3WufFvbzEDL!Qqa5q24-b^ZF2V{;B@KzhJUF)FjIPhLb-tzZc?i1o*+c719f-cJ zmC$`$bXjg%Tjp*;WmFa+kP6v*j?L;N+HP>FWloBSH7#1t5OPiu4pKtM1-AP1oVM)wH65pr>mfotLxrGdf-wC-}?7Bzyzpjt3@6C_y~`K8bY!=-I7=J^gRCy^pyw8QA^ zQJ0crUN7Oj!TB6yE9nse=Jl9qJz~}w-dbvq#V)hOG7?GS3?XKLt{n6|{aSlgQYuNQ z%JV}9o~pgSRVt};NolfguM`raa^>2`EPN6D>Jf2~m+KgKOhx6__cf3GIuzoSdrooAsdvM zlVX8Xy%KFKpIQk$3n3fIVgqTOz*7RuEWr4hFQ_Y^gu+NmsVicCNL={YE3ZuL`+~-l z*L|xjA!b$H(A%mUZF`L=(8XLqdDeE=*MU|BqYR}gvD%`fI%ahvgg{AsD&e4|IZ%-` zYQIH2Vw6Gj0n3{}A{TswkVu*T)>4y9FTy>K8Bral>hjDs;t^ zC%cTw9<14W3}*9XX7lBP7BN9$P|g?)b`FCJH3zkcwqIhZPq5|Z$J%<162pMtvM7=7 z?&G`r)b$#k?fxDfsdp)hDN1=_Fr)-A?t2(r{zAAaN=C}!=>cfY@;>|KB7o)bHiL3X z(+!v}R+ufugqS^6ck2OPPlr@GFfQuc>Zn_0?co7Ek!SIq6{|e@jLL!09a{O`n{SLkvS)`wlS)5(~@`Ap*vi|NY*&q%?v%qsV&YSsMt}23f%9MX~?;VuGDT;>k4ea5wSsMkJ)Hin~|misP&k zw6A&37b4OHfs2BW1Svt|6?12pwVFv?(sdSN8l?0Lt38%SJ7^Uclv$i=NfZ<)6oN|R zStEm@#IPhwM%GalHG^tKRW4Xr+G2UMgFO=Le4A0y_qHaA7;fj)H${{+*ulkfdY3`V zf~J0paKa-JKv zQU(3~kdlN{P?(05vSnyIr4Ed(JK>dj9IFCV@r0nhBt7Gt=XF8|NvTQ-nb&wFG*%fx zbj*F7g+N{dK03P4GVc{&V~WhW8I51i_Rs50EfAbUAkaD|-{;-o>%H#@d0v%M_7y`Z zB$cUhi>}FYqHhu*c@}O?>l$P~gFLjuvvSBckPZqpb=RCJ()K3f`b5&RA`jH&$U-Z# z#WK#@JeL*>&Rb^nGIf`YXip+!OKDq{hTBLPNYT={0WL^fJpU6JlVWGO&Xe6+OsBV4 z)Wb9LK&3DY`V#*vIA(r^3oQv~Iz{V-geVWIE;qbXn$R$7b3oDs$E=&-Viw4#+u<<* zszEhlX}pCs9We=FlBB2+!U2I4H7Vs5@Usxokh{)>!JUq4g1n z7~MhA?9EGjw@%lsv#8Jh+`cO2ZqBToo-1X28Kj6Tk9HW8Q_5maN`k%VIvYFp>AJjm z4UA{6F8aCIDO!03<>|ojSy(Dsgqmg9e(8`RP}&8BU0}=_E>u*{YET>$dw0KXHk-KsuVt0LU%jQe~MQdc=!lI+x6B^@L*LSM8c}G zR;=eI^?~N1OB5Og7S>1Sucfb@UQo;h$--&cpy-0iRd|soiUmvKZI;K|tgbv^IG8Z9 z9@+m%m9Pw?WyNT24O<4nG7=>#s$!%pWp7h-^wr)MtqD&V75TQ1M`i*kfsk{Qp5f}6 zc2OgqqeSn!^{hY}Y+nIAEedoLA2ja7%&roW(o_s>77H@{SLzbYbk5SWZ$0Ux_dacib!i9T7vqN za`-W}+$GA5TwT)>q<-~TVHXY+{Xz^#na!{#&7@aGyE@u9R+l$fUEXA6X*=7-R8wT% z`np{g%=?eOkbyz9$I8+McULwU+2;$|CT+=3Ta?~oY57xDmLH>ZO_EO#_G3_6NHxWn zj&}wl?${LyWezGBu6>Wi;%%I>$Nu&Z1C6g4Sj)Jok#YfN_^j;{W04P(>D9ldi%wH_ zuxJz8vz9Nm1Dmss@Epm7^N2-&gsaFcFYvvU8qHOW;_dYU_(#M$%uCpk|)LiKZWLpxwxEHN&Y7?nd(NbG*S zapK+yAv>g+A1KsHH9@I8q~60vL*w)LV&5NCsO@t*YC@DacPk5^y=0NLSBX)Up&c?X z6*0Yh)!maQp)Q;O6tUj}`x($z`|MsGc_!2%`lLo>^0}wf`QLoIArdjNpwtz)`tP$U zZr@cVdZ8BqSZy)#Y)ypgh>{ws3KFpJH49f0Q$(xtKM&tVl#ocFvsH;(0Ew|(>V1)K z;IctzVHyVZ{5F;tVQcrnxi%~pA%T_Bvpn9Ru-OpxD3ORG&?S!$g4@-tJ_8;IVMz4L zm;EztxBx8;-&y%CKUn)AW3zPf=2OHJ=t6^1f$?yU_0@;mT6x6Ec$1~!Hs~pfdYKq3 zgJKV-eg*o=tW0Ph10ZFMEk8f`(8mzMBUOFyC4@)F7HyuO%@kwmJij9vT-rmMhbUEN zafC2q*6ke;KX^6U;M^_PsdutOb@zbXogcHg{Q-;mF4Or6lj$i{hr6|VZ&SF1#3&6@%`1r_m(A1*riQh z;L?nyT_Z+G^eg!8El83@v&yn67^^`aVn|Xf>DpUN=eGz)T4-xmGcJ}G*a|5Ic(>a7 z1fKm|Q$M?YQ~>E!(FMu&Jn{8zWZFb_o5Uwun%&FK-(MO*uDEVY6JPE`zTQdfUE?5> zJ~%v0LP?kZRUKuK=e|o}a-bf(aK6AJHHsamweV@>a2~pE^V|@1(!LO1~DAl)Q)*sO=zE6x*e|)+c z2|?{OMmY+bRWQ#ZCB<~MM&}2F?p<7aCvU!H=b1gdt`o0Qm`F>*-QivK+FizWOe6~l zJPj!%h0+);FxpWT4Q1I-l?^dT%3@A2*uuq@ghz--^ed!f2yUH}EHMs9afDRUlMjCi zrKiL=Mw@MfTo6;1wcf8h`WSHCTS&RUweRF=sLXA|Ps`lCC{oHZ01LN3sVP!UaNYf^ z>?4-_;QzWFwz#0mD{`>SS z2w-g}XV2g+{(N@T&N7>6jmiI9Qq&!6!1Uwq7W{?2bQSbp}A1gYk<^IwB>@w!pj z7UTl0Tas`@v5oJ$K+aop>sa$w|K#7WbpIC1_itUe*6kyNLr72bhaEIZ&2wczXoQHE z;vrT`yg#lL+fM3jA#0!2p7%c&&AvbA zw*o=x_YWZw?c#@h@lfEq`&UU#nb6+HHSglucS*@Uw~|~+^fQBklnytdm?W_m zU`a`^J6&Sh2HN@^T-P7IWz!27T;Wf-;T#e(H|1A*zhbx9yVQc{qhsM02Q4P_)e1pk zb!n6FaEBN?g|e7~!)D6LhkB>4e5Wg1kO^bII{5G0;u1(nlcJ$r{D|Pk`0hTs_zEHO z^9r#aq<=vb(FC+kvpZd)a|N;Y>`Oq^&p!?HfPon>t`f`3KgHM$hQmh`z53@~v&XcZ z9$T;z(E5JXwl_6C3xh!&na`3UF{sWC;%BL0Gfla_w!!d%;P)hRpH)rQ>UgX1%|#jf~EwAn=Kn!+wn0zxnco~25v1Md?7D48gXVQ7X7 zio|Fzp{(+p`B8k7>@}9!z52Gg!q!yff&@5k>0H60De>X*pWdrr6?||@V$VLqUrVN) zAs$)71p<{6gq&~`fI%Yr`;6uJGvWJ;Rl%yNSXC7}lUscG=mTccm6Lb-R-&XMsZG$2 zNMeR}cj*?MC%^iVYI*crRnSbL8vpx~-#mp25>x#(QU8LZK0Ek++SdX&cJIu+APq~68H8K(RcZ8i`hQWkTTM%z?o zzlwFkvmk`T%A#+r9%7Y6NRd^}Q)FaE)IN72&HE&FNP(H3U1-JkDzLK1KDIA_Y_}8o z{W*WSb8GYf`XqspibXePuh~WJtD^#oUbrcdsC4#pRYJc}ftw2*KIXkyAhIw~F=AAV z`jM`iYwS4v3YZeR&F(4XJEG3f(I_va0WUnj4- z68hHg9w~Unc8Nk)XsJ*_BM=uVdYOJcV1JQ~DIR3Cg%D_^54?o{q-uKO@fK~jPV#7_6HG>7tm)RMMd3=2uU$tEVDaZ zr|k+<-!7Z~{6uA{Y)c{|ZQLTHkQl;hf@}Aaoxs1$PDwv$nupq9WP_&D?3`F3|)*lAgzVOVsU{w5~!chcyk2Pb^wkt|ayaRzq74E+n)R%)49-eG`dEGH(ae-2f#$10^YC zff52C#HB2{fL`Rpv)L%L^30m2j|_ZsiCCSxh6Et>B=5l@pv@D4i|l;ykooq6(XC~w z<>%W=gaF^&S7M-t z6gnrA_xJcn?%dJRAf=@74L-VSY1PsA=G?^YRXHj$V^p?kNh#5VE?WlnB26I$THhQC zJY00Np~Ff`p|fhV>$NuC1dOs&x934 zF!ss8D1{IXYdVJ27G1aeY(XdpNCj!X1vi;k@JlBDhm>UP9zvBJC_A4t7BU$AIK z%Vs!(5<-8=}G! zX@%of)v-0Z+#$XT8mj}wE|@#R_H>O9iaeVcPiH)ZoMVbF5i+5LMM*(vBZY|+w!xb2 z%mDN#F=~jGWt%8eFZjaRq4MIQJihR70*q$dgXX%Y; z$2|)nB1Uyc74g9^cM>mKDw)-hpGFe|6DN7(Iu^~~SPS|-N+g8H)z)u1QZ7JmAw-Kn zp^7ijW(TEb2$9fMGFo3|wml(u&)VBp_tiW~@Jk5ch~aemvk(EPW|;Dq2zj`^rz8=n zggB;Yvv+js3|a*eFzI%1sUw8Ilb?TqtqMlBmXYTu`3jLxdWJCzmI{HQz$K5AdE7t> zNMQy1T|&<49h?b-T#)20U7Ym?{Wthxdd=k4QHhV?K!oOS&Q~(+CNC_=d(rGyA72Ja zDyHp>*tcI^jzmlWB{hX9h%s9iy$L9(s7#q>9Z#&`vG+brDR-*f@a;vYwilE;Jex|{ zVoifoUG9>5wjlH<^3*}}Rgsc~r1}8l&A50k;&le0kZ63(&~vyDWOPYPf!G;I7G_asVVynZ-34N5<w{{kMB@6no5O0a zq-h5TkucgJC3tUhwqKBEAO$pC$&;;jsOuHHyG!sZ1V6(05+7wh*Lr@&P+}=qBZV?c zwnykfIH-o{wkhN3)MHMVmFv&AwgO0@PU0o&7M1cFjW`~_A@0JSshEk?|m(;k5* zNvZ4wqyjNiggB%$64lSBo<~fQ5G7J(0j5%DhFY>&m+Us?S_Bs%XtZ(|)lulkz(%Z; zytiJlQppSF*{_OG&;^(^xhi_`t9QK-BB8ZoP|c~T8Ok&S;VGp-_v(;mk$P|F&-O~b z*jZw_SjPLaMK6qsD4Fu;#<`F9=97K78PSN*<%j1)$i|!y8 z-A_zwshPX%-~Mf6|L?x?%&W)>xk@Txj2E7>t`kZstg^`7BmO8MW{nOhRNuCIve0nD zw}HG@&5`O*a7&8Z1t@@0S%yl!h#>U!B2|sjyRR(>RYK=^N2!rQ9<;4$dG#Lu*AavY z1WR@aBMl4JP=^I0J7m3F$0|$h7fian3;z}&^Xrhai~=A0u^@E69pxlSYDi0XKP0$Y zh*YA|8l{2CNUXA0Wf_=3FK}V<_jG|(mc}j3eNXe4Y zfZ&!1K@+1vNkbBIq{#2pK0f(_fZ0Xg+pVN5ubseXi|GCEHny|aPy!~iHR^Uq-42OS zB1OPxk8?$CS5pB*hm`X^XA}DbPDHBq-0Xbt>&)i&@KG{vEe~fEb9eZBOC7Mxw?Z8%$hf| z5-J2#CRdCLTO)c;*nNQ_jiQw5R3`#`)uKy*#|zEIY>e-_V$LHZi4qAd(>K<(MUarH zL&%003sP8yBy+`2I==kNkNND6f6Cs&Efza7wAI}I;RjSp&n`?P(h{ya9mHnU@&=`M zQReZ%?ET^G5vx7RRc^Vq#xtrGXyq}c!zhImic*(!^M;*=n>_f@M+}BT3RO~?5*Hka znC&i7)_sVf#79p^0j*n%3Jgn_w-t-FqzM{Qf$aT7Z+P)YA+XYtdSSNxQIh-#JroJN z;WA{W2Z6$9(+6-*4`j0jO7^RM9f*E>MoD!niJub8x@m63?!SNK!2E`9EJj%>GoaE1 zBR!y$<{J=%%J#Jep;Aajy5g2yW=W4ImBFQikp_3g){55^gjQz2t#Xa^>JCfAh~;91 zO6LLoHZ<(DyH8z6Vv2OWJIDxHeW-YOUJzO+OX~!LJIFZ7zGs64Rtu~?RNE7Mws8M{ zE2&5%YUc=kjp*0=!`LoLXFpP@7D&|~WQ|md{xcFtvBa1KMKPg^xpHW=J$4Y@Z;MGJ zVy{%2NI3}B2GIv2izc^>H|+o)EGdcJHYFdtjdmF0Fs4R|gekU3>LF6?A!XeMH6>Ez zHah6%t-~-^bCSWkRoZTaw)ez4N~Ht$M{~+*4`b&CkD-t(s}hkUwJVs;mvBL43nh^l z>d1qU=gu%!Z~+!a0^8>$#j+PFGC2VtW<;j2-~QZhPP^0foVE~&t{Y&5LWwL;R!E5! zl1fLc&Mmpu0UOdIxs9(n$o=Zpy#vg#FsmX7;`}SrUs!_^@@)o(smUwDwJ|r z4Ou9P-XruVSutJkcwu-nS)%ioOF)Dq^L3`uD_2f_nONly{x&HaP`iEmX;z5UW|PJ4 zE`R#}{_lDJ_kP58e*ZUEfA=nH@7!hS&MHEl4)QO9NMn5W4j~-xy2t_O0;RW6=1EqJ zK7Nnf9U~1^TYND2x>24O1)Zx<%43vbF`4og|Ki`U`qo`O`1K!Rw81Eg7K$b`dA>|l zc`r>C*L+Bf6-o+*79inMq%?uXXDb)k?*sDG^Sa?hV5Fr`_CUcsM4#tClSd1Kmik)G zgI-tmTZ9E7pEWKO#4Dm->c^S#TK6gg()|uKeWH^LL2pfyElGUxmkO$H_;#SA#t4m4 znyH&JkIjn@LYIqOQkWv;5RKc#B z9b|DY!|Mn_0ou?Ji7eX{?vL&t1fcXvZaeMHg+XZQvw2eFwpAq+g+6SXOTCJ1Ofi25 zdnxl22c%R`*af39QI(54UwJ|i^(`9UkN>j&r?*PvvcZ#g-e8T}F>EfGSAa~0NhNE!3ovWRHy8CEmKqg|}&`q{_) zvqC_KiO#pgK69Mg6tWq+JX%Fa1zr6SF)R_>3Nemy+xZzNkq8KCuc+Grbu&DuKu8q3 ztzvVs#-cm&UZm{CSZRqC2_qvLi;~8lUuha!N2LR8IR8G!$*O26Sz@rn)cg8IOQGdK z;JY_lrEW$zSKxesh?*1?L3ofIh0tgr`Nj4aUV|mec}NnKh01E$AeeVxwb&Q?eId-d z)Qc0n+3mP4NPN(AuEYmJ2o@zIL!Ai1lK?AnHa!8ePV?FBkj>h#v#98<=mnaCH7ImE zm9%+N(b}OUgebG}xDcc`=*JM|K;*Cg`5!X6HRij2=eN;Cg&h=>qw-1tXbcsgk!hIi z*t$Et3jOiNkkX^gW?un49q0)mDOE|?+fxXUP%5C>R5ky=sg!RH{S>80iXu#EHm2S~lD+MXwsGW%fh7D9iP_f>21bp`-B)Ruv46 z$e3%X+3O}Wm+%ZV(jE@l9|=PDGi4!#ER(KFn))pk^=*P%!&=X1u((w4xsMBqMQc%N z4`rskk@@+bffS40<2E~BU<@>^GQf5N_*IjX-!TzOlE6@pa}_(9<4j1a@5U$g)4bDt)RDYdi~@UsFVV; zCNXaV;}S+i4t`z)JB!3_o##OpUCOV^8_39dlssOQj7j3XrS2-GO~p=KvAw8xGB4Sf z7wpuQS*MtF_KKgkLqh*KsdRWD`_Ah|$OTEXxoe`ItxiOQtP!FmCBuLCgMZ8q{{HVU zT3;eXLkgq*P@R-K=++ve)hs$C$SR|WM7{VvzPm-jqJ$#&QE%I(h_nRS+|npr zR!2W2c6Y;zB$3;2_y7B7iY(uD`F;F`ee!kibOh0l2w{~JO+GKg0V!6*Fd{{RRM`UV zWul~_IAbPMAdcD5D520w;bXY@T-9ll1^ zbd*JIOO8p=dCP1uX1-X)dBemfYL{Pw>l92R5?yr6yMzxB7Z)U6O#9iaO>E5*b(?5> z!oSX??Kx?@qVxHEGcr>2@4btPc~`J#hRmA*J59k(W7%melh(YDinoiBHb{o%#k?=C z3#qqAq9M^D)h@^dh&kFk#Fn36iihky{xbxgwRiIDrjU-56z%*s=<4qf!{uf|Q?f+A zjQ4|6zS}|sl-|m1)Mj>&L_3eXw&r!&MaQ(!I45(5NlL6OKW4sIV|(^4_kQj7c#PWkPb6LS*S57%&v3o%@Epr>%k)Y)$Nd($(w&Lzda=^Qc z(%VQq?LRvgeQpkK6Cx7a3c=roq^XKI%S(AC3&44e_ZF?rdQTJ6**Z;IF`X}y)phngYX6ippYxq`%1MbiA#TuUX;3ROoH%+tK~{H0U}a55D}?rbonJp*NEO5)HgN1 z{MUcR_y6ACK&pJre$#xXGt2;F_8fEY#)mhgUzkO`^I zR?L4^q*PS8qA-WP@Fxi=u-EM6@vPvPyV<1*1yZPfd@bEv%ikhico2G$F67{I)*9j& zo7;I9-C|6`(s+yI@fHF>5Zh>b+z|V^AcaDytdI*i__WGmRGxpVySf+nIeYWwH3y-w z_g1?zI7_ULGErYUVSj`!fHG^u7l#$77 z4Wm1xObp7|LF?v8Qi?SGc-u)zn&8&5SWz4yL<7mtHSdD}Z8x6jvy+k}`ZZEAw5~#m zNLe(*sF*L7na)?xx7O_I)8toD>T(t3jrmbx9% zb_0}d*r`V>myY&=xz$&X$hI;mVwFTn$zGjUsl+q4<#qvTcWBS@CRahP3vXHgT4+aA z?vX@`lq~|2eL=}e@Va=^cm5o%W7-;i{)d0co$tQGa5ZDA zDSZ1Lp}R{6V^SQR8Gr&9)gtr`%04_d0EPUtQnHA+N)jH&9&Pg$UHu_3X{>1}be;ho z6b({28fO>}9ZR>@c=+iTwDX4B@4ki7xiT^+8>(`Ol8&OBk*M)$L87G%GZwzSIkevJ zEkOeTsk5epRI?m-ibzC|Vwo-JL`11wq{?f@iz1~+8(LiSXqgqR_lYU8x!9m~`{y!= z>*t0qLk>bUm8nqZUgYxTy8fo~d?(CHlAhtC6o?E4duSDq0#=r`Fy$8~?{+N^Lej;S z+AXNN`e0rnrbyE@Oqxlb4Z6;x-j3w#lkc6uZD#Ru3tFOA#JnQLw5+Z?!g)(!8%!V6 z%@#|!@^l8lt4+@pd1WNTix$t51-6kKosdp}=?d zaoyY0lmCdt-tV*6`+eq<-=S%4oqQ_K#B$+ycV*7I%M0FLS+KPzuJrCmk!QO0=enMi zrXBKV<2`mJw{gAVsg!~7Xcwa$mGO+NJ9Z47E>;+5&t7x7vVI+Cykd7DxHA@f=k}rK z(pB&gKHiM{@=4_5jmV=(7A3mj+lNbYY6papL`xD=O!)<-`~q#CoVk-mpAUJrKe&JV z2H`+XkY<|{i{5MaXcU@1tSOa5e^L8hBFUPRG`?FudE+sJ^eDYa=PgaAaXz8V!<;-u z^y_AR4lzlBFQ{yO{@NM_OCwN%7*Fp*Ar?%hcL=c{_)#yUbav2u!wug=vNCmhWCSf? zim!7(D%ep!e<>{Fz)f2Mx*f2ZjG55%hpLa&Mv5h;(i+NQINt6wuhNQP#_+oQKx ztJYDyto*(TYUev#^apJQ`!D)Yj5O!=*1u|6->@-%eDd2@rtuA(I~1+hA4bki7U#c@ z0# zqhw?>m{1liqrrsL<;NK9h*1$@wnPb0p=D%gw22T+ZtErH=T>|TBB1Rfl-kBtKRfx$ zpBp6-Mn!H_9YYgHxl8=gC=nT2&&YaK%NEnCTpr$@y&2V0f>bFImC4o|kSjGQYGRaV z6}Yvu$2-dl9xTrp7u~VP8uf?N>xK}K)d8#xK?#_*iS8MKMx$&jV+JQvkQ?> zx@F-6)9G7;?g6fSo8T`u?|Q=x-$YW<2kS#{>;3sBBGe2-NA#mJyP}>KA03l+4;Oo9 zfg?H^05Juo-BpV(i4fw!EP1JmnKghuoxhPz(+@=2MqNPE%SV+5}FT}KjiM<9)&7T3HrQh zeDX~FiJ2q94)Bew%jj98yGtNWB%4XH+zdtGwZ;GlJ2ktC%)}gPHJoy~J#CmwGWq z1eHH0KF?YXO*r-#kLSmI3a<-Vc}Ar};Ml7@A8#IRpjRPA*q9~eZEnTA;pL;m^=s7K z_urIyGgmNGFN)@uPu}$y#jwNpYX{g9@u2vO6vEnocfS7@zRe~?E)LJG%{ z&jOE80j*pfV@QS+vm)pXH+&n3VMOpN2-%_ZUT;Y^L)(XF^Q3Rby>2Vr+4$&bLVeJ_ z+q(9Z6rZG!RJy|UVoO3utTYFn_ebydCUDeZ@hGl)hw0vr*_*sa-7F)7Cxv^bM(188 zDM>^s32sc+-eq_9hcAC7^eRXh7?*Qyjb}*JW*@4UeK_;5ay+OSUQ|(g6^!kO50*b* zWb*8$kAX+?M?k`Ad(ao}V>rkLjqR8_gFB4Oh(Z^vmTSB{ew#vPbM9{1@c6SYSh~Od z%4b69UsEL&tHmnn43)CIc8}e5_vE+FBt)NEHd18nri2txy+G5`F6RAeS~>6KtrP6|osb7PVS2szJH4Ix1~jD3jG)2GgL zNhR6-{0Y$qZoPk^CHEqd!gmi&e)mk2TA<9uRnP;3fMoI zVp6y+^3~6N$`?QTYu@|K@3HpIU3?1Eu0e@xaGpqXzC)w|t?QFg$&!-J7H#t8qPgMQ zhm_4h0$#{KN*bjnkTeL8s(B_Ij8}&^RKyhmBP~`Ngb+-->4lbtFA5<9Ru>e;A`rcQ ze8MVw(8Z^v#wdF#FuiUlp&-dq+A}c>3GNOlmI&ccb`w*4LRCy5aZu5ISqLFXaYXQ| zh;WbH`5pF}ypBKpr1*-^GO|=IsD@iKYKkLZm8H-Hg)SJ_EDJrdBg%6k{a4AXo3XJt z6zQ4!86kOm09HY%zVs}*nl>~{+6j$6JU}E8%f&M9F1^e5SHI8uOYZ^D`Hs}*tIjK> zzbYEnGHLe!n08Yh&c5c!;tAW$4p&{v+R(7*18^boVslc0`#kAxtsH}LexN$rbOR>S zTTEsvOlB+0=C^RoJGrVT98yow<`LRHLEFuIA-eVKnHMWUIBmLqSz=hi7E_GQ7wWK@ zG92t-P0OI#r6~6fZWBOREQlOl)JjIIZAnp~^dw8FWANQQT>I{k-uxF&;}u`*4fxsS zm``?wbZ1zt7!|oS=y-eFuv#5mj1o>ynWcsfhm#G1a?a9dkJaTZR+hF{UD{xEX@lV) zi%6}nKEf84ucpu1f{p1ik9Y3y+0F`|?hX+mu{LN=Rc5a%E=p#dVrLO~xR=4cKV z=aFW93JH11)>lDrcS*?*{Sc6(SQ5jaADghGuuO{MJQErck3Zkwr~mdREIoL@;N3N* z-Hd5Fp$#={aF8M)23&MF9|+M9qCv_?RZNlU>^&MuuSl`aLv0Q9NKK4%ob8z zr4{z|p@gE)C50-mDvzhN?tFccmqNc?TWzUq#lQ}zOvTXV&c%TlVx&E@IP<#6g}FTH zCt0Hnrvu8|G19l)iVkhQMo32++AFq9UmYnFDz4z0_vz}7sGD`-ky+)Jw`*MyB_n0I zz?kF0B*ze7lsO1wq)-@XkIY-XIzkHUw!6&wH?UL{?~LE!o$))AdcU_k9m|~5uBP>; z+lp7pRYqn=8#{dTRJx#4uSayjMaSING`{Am*_V90_c0&u{)&%xKW4k#IeGU>A%r~l z0(SoF1BB6@K{Z9|!`G|nDt0Hg*_qsCGGBuvQF{AG>q$)vLwvVR2qR)xCWaM)UnaVh zOCF+5qs#_nu}P%E#SS47tIL}#kGIigfe)v%WBx?ju@D}qCkQ$3-&aYDCBdz{_RG*m z$xdx}vM7%EhK8td{`^)AqdTf{K~*kLy+^7PiPA1G=J<@rWpGilu_*X#cfj`I@^((w zfeFy^BSIjnOo3s%?$qCNbrMR-W9_&u zI2vEmg^rX`7Itz2rnB4B&5+KOXI2A*@F=r^DZWPOU8KyPo0K%(--Dzv#pB)%#UjlN zrDo4`@d@cjL?XEbRZD{upj044Pwnf2w(&ejFPJTsD2v=W98+Z4EQkq=o{|XpP^P-< z1NxE_>@Lf`pJN;3u^<#Aq{N`Qd}T8uDC`0$6WxC6+!Y8(;-VxWSS}qy@23i(y&wcoYEPieDz*rO ztdV-&x0Xs`7$c>-RIBOF|L{*3-dbhl!R@Dtc?7qL5-TXih&VWCzrT>AP_jdr({rbX zWKU0#DwKVQ)H8%|q+|&07GOw85u!mLNg?v{fBj$My9FQp?SF_J+|GW{!Xx^mR!k8e z13oz-5W;{M@(gSCp7jVhIVHMu!wugSgzR!Rg{nz$h*X#JPrpv=kAj61Xnl)I$LH5y zCaD)viYX9c4uHGRB7~$34WXY=)l!|Z1$1!S(-!Au$f|-E9&P zgd?Q_DVrR)`emYf3sRA1GG(roKg(J8vUK%#iT)PetFDr8C?{@t@~Mi+7g z*hhy8j?N8PEbimHJtqK76vZCOe$mf71+&>Z#7nj%3qYw3X^z@397jlpYu-noNTSJyo;W6kC1O}6 zB~45!S3_mX=YRH(dGyQA`QCr}zh|)W9;AX8#t0dZsy$o_2Z;_os*uVh@nJChbcbo_Y8*+vF}d#kQ4_bBp^r$hJ#&< z7K9f#<65bT817K$$b9w@AymXmh{ip~>F~wkqGGaGqG`)>KYpdoRh9kWVdou-e&+J& z+vxLAsFL9BBhyhOL4iCc>pV6??hdlb-%%ER##ghi_^Zvo;^FM;W48&w2#rBwq~YH1 zJ`YB3osf=x`S|ExXaKs8kDggOW!BCPg86+Vw3IYmcN^#K;JUNhzO;Ru?M%#LA`^sc zPApcE7zQZw1Z6f40?!<%UM}mCk|p@#zu!ksN)g}PBBqFoT@FNjLmP5t%!M34#~5h4 z^4R@+bO_mz#P-48yQuHt+MM~n4um9dXH-N+MTeA;vY2D-8_;i{myTGhu{8({~15|=l_nbzWAUN z{4$HC#0PV^Dky+Rq)W8=Y5O_I8l|^UdJCmJ-Ld5qE%O!-+Kq+XFkR+c;Ztt5JZqam(&5AP0>3x|tl z0upU#G1XroPl@V8LdtE&05O_l!`auBffBtyRG#O$3{pf!!wKulTda*wx9{BPg~HzYP3xBQmgp-9_S)t%wpiD7oR) zvT(2W8Wcj2Vufqo$G7j`yLDKW;E$(uJ5x=%hoT~|_y2L*&z zjf|I5Fh5ER1KP!p`kDOWWNW?hh3e>Z^>^9a{t@$L3Gc5a9D8lrap@16wKIe$v8F?* zzLX)6kQI=g#ND%Ym3uD!U@GJPB7?P3+1ZnHBV0fIrbL!d*dIfW`%E7z#qjIU=8 z`C>BRS6d6dnEyGSPCg~Xz^~o@b?yxAAW=-aDMlJrt2OQv>olR`H}CxV!S9>y?(*d) zpYYbZ@3FF;MJ9w0EZHS=g6-~d_9)jCEe)lvD0KEj-D`G;DWL6RKq6E_^yjPCDwEYC zNitgthzLpbz3;hQOGux+@vac$93_PTuKDob@RX7yxVr?mmjCq?Qr1}peg9`-L2$Q7 zNg!p15P=j27pl_*zeWsaCtI!+X3n5ourc2trpUaTA%!}&u{N$jN_p%ssfA!g7Tl^5 ztAjaXn;6+Z>+{^{t89CGwdB96^9e0l9!~;a?FOcuC(zNliWn1>mE0OhjLOz58`Io$ zcvA^|wY<*Hp%4L~rbsMO)=0GrD5MP7>K9L$zdX*L{x|=MKmC9Gcl^fx?(eep_UR6s zqwKGbu6^g^P3NM`F4AmZiib#besWKUl>G`%*ve$@X2;~=FZh#x^nc^G{^5VZ`+xHt zq~0UAd&lmZ+Y0lTf;^`h?7F+O%>$I)LYmJI>h$^Gh8tcrZFFd5P)cR%B?LlgeDJR= zh`Hg-rJ4N}ZFBK@en2wBu*}lHG1>d|Gi!`e)!bTrOko1Gt6x~hqjz@+A;(Bpeh(Ki>>s4UVK_C#KzS6b$rjZaVobIhaR6h6vQfANN zaiJMl!OtE=jD|0F67J@V@`jKQ2&72Q6~qbwQu=pNc}^X)JApZ?K* z&D+2GclgfV{syRwkZjoe9W_9mnEe{2#15xZ;jr@%8OgAt}{M*YPUEx44qgs#=JcYx&w(xYS@l*_EJNg9CdK4t~@z71k?Y2s{&Sivm-Dc44tnC zAzO2FKJk->k-a+c#dczKcN*L@rUew z@r3!->HYB}!L1YAZG2e5mp>iCO){O@@0cYcSD{?>om3z77XE8#ma-_)vFk^nSw?a8NaAIA?n>yu1V9ijp|E!r0w{Gr z%fp;1D+7Nr8i!5&&@oG(Zm4}3!m_~em7WMf&IUlf6)vI9c$gcMOiB84KR zLm#rU5JKYG_gO3+5R;;?bA-yRQBtV>_vb)&rC4DSK4eDbrOqLfAmc=Yv`eEQ2@G2Pu^ZT%LbVuVJr+wEQW{NE&U zr7`8UTGe8tVPFPWT|qLvTz6K_J%*saxb}{J|5-^Il0n;t{e>xWH9L$+VT`t4A*DyE z8j$^5XdwFK+S<&?k^WBBZ2?E?Xr4MrSoZ zAw;h?2lVQIH4aZ?I$t67f<;;;?u}~-8JW5BUlT#@a(L58NK#TrAt+2vei#LlIuX7Z zm-IK9Qit5RArdZ#J_(yYnOCWbN)gdAL7%u1BBIS^ul{=V1FKY$um195mhawTeCPa` zO#rFp2i+z@%%K+qQZk|Yq_U9-qY_%?uRxboeANOe<3Z98kpO}3?ot&V9}_8-cy}M~ z#&pfw`0gIR`Zs?;I}5!3d;dAba2=_RsFjNVA`wpr!fDl^i%%|Xzp}56E=bSx8s6|t zMqs2t_2<8rMMx3b+X#jjh=ktZ;N|_!8@@>hQY?t!7O8vh(mv7jiNND$q=Zy8y8H@L zd_`gRa+i(BUd)j2-Tk~5FhnuL2lAQM-@z;3{ z?74$b7v(btphFWFS;vE=nw8R_L}J=moG)nF3MoCtI11AugrG_Tp6uR2NRKfc3GmU8 z5`^fms=z3Nmb#Z)ju>T#F}F`yRp4Ux)CEBaMGR{M->XNdJ(S)BBttXC3I#%PtGb2N zmM4oR*(S#KEwo9q=nA|a()p5&S>oZOW71A((k9-|kQCG|(Rok6Bl_p`zF2`Up2R}|2a(qmN0Gr&oa zVu4g=x1OFPMFUA43$%g{{KX&q5kLN4|Hs(sa@{g1$zDLHMM#ep2BRcWBnllVRK%)? zQGqVa`@_e86h_3DZLmlRQbh_Q1O=U2#x)<1Vg*OC?DNg9SbzUVEZzBtM3F0;LXhGh z&&G<-CvlI=feMGV8`yL*eBs(5 zN0CBM>H;BTu8O8C#(2XGmqDb0#42u4IU@=>6ve#&is9(W~1gg!Dwe zLPF)aCcTH0^|30bmIm2xwENHfO$$N+v|5k|Ncr@6WTPxfs$*WT`}kl8LE+tg5Ska* zE}XvaQKSe6Jwc*REsSp}DMc1eAVpx(+ytO+3bog`C~3Xw=Y1tg=K0REERN12C54ZQ zlq@M(gltiI8zDPDT`+?KF${C?*n7b>vzpKU^yln7+~CLm%ilYB_cMupj8s{CO{y9a z_%NdL1uke>uc*B~_)2j=ii14sDFj5@XYH2=ehuP~wp}BJrIWu3fbpGo8Lr+zsC@kn zq@-!@68$OygVOU{8BG>rzwQ%y4MNT@-EJHF8bUZyv?w)0-iQ@lORTaeA+u+=P#^?_ z%x$c)@1S`);z|K*A`w$Sz)SV)R6??9#+0fg3NZcNA70|w<%Vw#DXin#2e@Ey&*fVk z(RLG4JVb~<3M zKijm^Oj^TUYia!9Au~pm4ez6-=>{z75uMivk+lqHEqKhU^C_)dFQ65&aS)Gi0q$OuES4;x?1{ zkgb`eb7Ml-H-o(hMGPaH8&W$%>otut%p1+j!A>3USoCm67%f3{A2nD*D8(QBfBqZ3 z`{N%lURps)#a6wAmKv258(%%*vp@M6zI9Z~L!^4z^SHhwB0e@GF-6ElZVgk0QkQ-5 zz+hF8y*G~tQ(bm5x(q3a{$LnTW(vtt7#LVf?fOb*(s*|#XPeA6+U%Ta!!311Wh;!d z2qEy%zmY+xQIN>lYm)8{%4d`I4;g0!p-Kgec7!Boy5Wh|k+YE^dta6127@vnQh|R; z(E28@?@6geBD`XM${SuRsUJsq)(u$*mleK6BBhcP%4~0PP6aUfC4yVef;_V0lYjpc zHh%Rb-~XTeE=zYVx3>81E>g`1ZZ*$y$^fw>rQ#`x9(lwXOOaxk?W->Q84yR*v!&Xj zG&7>vLq<}h;B$)9vkL?H8(tq;YD!(w#SSesm8mFo z*$dyPODc9Aj(l8&ml=T4?|+DW{fnBE(oGQhEkvNOtmE7&F=ee2Arh4;QBs}xd5B?5 z*FGSGXPdDc7=O@>qs%s@_!8Nl)v^}JJzRGO*R5o&lQ2GZ28&VmbD!rU$>MWQyWdrK ztwAV27bFX(nRez_0J={~lFpU1T}A6P2|_|FZT%q-5A0h` zlG6Fr1|dW?knaU~QXF7(q|k~OW1fE$5h>~%SecqcZvE0ylTyM+OKB>sGNc3b=J3V^ zp{1Rp^n#^9O&1mj;ZFtIM~Nw-r9MawoJq7Sn&IWLd;+R!17bo*OV^DESEx8$cWwgE zH=p=i0cb#~8A8_mniNp7?)Rj#57;rR5W{L#2zN97{2%`jZ~w-3dGB|=ck-^M$d*&t zhf|1v?;apTLW(?2k`EV``AqHyqbL9FY|(PoAw`OSP!qKMim3O{W-D8rnT9ClB-&o- z_WbqbX$TQ|o2-+!+;Ck;{XXHM@Ar9)lA0tEt#6P*9dxsug+NkBdu`QbyXa_oHCz|n znE}TQ-&|5sxF##cdbdglBP1iDUqhx9sv^swbgW4#I~$vz`t5V9t! zU7XnFH@^SdxVGgF|H(h$!|#2MJ8SpY`|1gQ@`wKeqX%nz@V9=%_7_ixA+Y}Ly<_Tw zZxT{S3SFS2rqBg3C44V@QVauJ`+i>EPIN6qze)_t z1iwyk&_g5hSGaj6NzGi(o;K<;x!E@Zg}w|4(B8T5f}1^ln;)WasoQH&mIrnR_qc=XiA+ePtFTcZ@A$_ zQK$in`F9E3U4pxF@D;-tB}xn{q!d7SR_qv+mZ`fju6;m=hLmLPE(rrd7~x!n3ku}+ z8J#YN-DZ~w2u~7{M47EV06ncul2yx(6xgl_Z)6aPh@f{!@(EHTlvHS?4}#EXI{^fR zD*6pD->zkTW1TNBx@CE3lks2EC^wR z)_WFA`JEsAHm+;!9+gMG7RvJDd9E}iMp=y1SZ%S|BGQQY{0=cGNQM+kVk~pp7>SrF zNClutaftV;xaI>OoGS{F4~G#ca$szvrHdVcxr6OPb`A@m~y?3dW zhood^=f6huV^S)SvLVIXVk@N2$<#1Fh+K7*(nHFLovZF`rL8H81&KM*eudDRD7}N! z^Il}BL8>`QZ{xc!`Rjl2Pl1}d-+O>EM-N#y!Nj+hL?rfme4^A9rK$RAXjWB+M4?J< zm8;ydD^$X=+3lWupf?Kd?wso*e#7fT;M#X^%}4m|KCZn(Au85NNhuApHj9-iy+e!x z+U6e4t>N8Wn&vi5yM}kmWb3U%as@GKV1!T*{5nQfL~2NuZt;DDs8OmWh7l=UEYx@& zN>9;d^W?Yj?jF9qf9iQ%2j0*VPy*o)aR_M{t8E@|hkQr{3OOXWdkl*KR@q~R;_+~o zm8ET}qCu;`s5F%Jw1~m9Em_RJPYi>s4E2g_HBwTfXmRaZY;3>Fzx{fLrH_7(jVF8j zU;oel7yjEn_ya!r(T{oi!TVTgdFzMo^Xvbs-{*h)fBaKs+ZR`?t}6n8l3B%0ASg_( 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 -9KBk+0@zuRG`ka zv%{Ow&>##|s6Vp!&od3=M|5~Elb>JQ7MAd9*bk>;-pj>_YGHU1$DK__@LhZAdD~8? zc@&q)pWY+pONmKLbC5=o%kcGYarfW7SEf-9I0Fo>?E5!7^FoI1ZBbPMIJG=n8eF4P zs#745w5VBiHF0HAQ!9})iyCwgqAF+`qL6KtzfsRX>xBMpM%yIOJgHbcEpFp^Gc=zi z*r?a3x#sIt2JtV~D%%%Ner{wLzRx+?*WDcRu#wY$1*Srv@mw8|GM zjMz%per7o3BayB`IkMt>sK2u74!DLMiO%##F>Zi~J`=b$twHySuskmI2eW_ik}VD| zzjBUaFnl#Gsu(PZqQje=7g!b%Bg z+0JStxjLPuwxpv$f&(&{Pp!Ri;T2yCc=$Ta<4o}=F>7$ceX2QR0sfSQ1wRF{ck>9c zuD*Uv>R5A26NS8nN47D`*W7l0vv`xwgGg!X1vI&HF*G%l0T%mrtsdG56)NiGVh&3| zHFfEa{Q{nGlGJJ+6Zh#X;tH2nSN~)x9=P#tLu8W8dL59Z`-DJ^fY);szL8!kY;41!5`2G#M}|E2&2J$k;w379bbVGH5kW zFWl0-;~16Y+G~0c??9SX<}4sHB1a}fU_M$h7uDXnYxl;%e&ssE*BWtwk=GWva6TfTG>jia61>(`nocPyxPt}?K|x`OMMK$ z0WtSWoCUYCdZMcIS~eZu*SL`C(l$JiW>6Uyi;>;XcirBY4C$W*CcIk+ETN-Nw)!LM zim=RXygJV7R-%rZ$*^blx9iT0u+9gcTX#3SYtQRefpTQYR7Y{;8aa$}fez1`$TwK$ zGww6Y?~?j?+x|5)=WR2^`(~4}oI})0a53Sbk}dLEq<`{feX!oQqtKX|hBYEzTkm<~ zxlk@2aL{7>DObqTth7v$n9(?p0bMr?+bZxO7UbUUx_HO8_0DmBGD2h%$Pau~r1d^Q z_b`4xu8Jrp9anU(ULuxFB}c`jPFH}{pEYZI({-oCkX)!vM)#8py{OWV<172upPyfT zmC-b}HJLg&%O;!O=uOv*3S(nw$z)q}Bj54!gYRl+Wa(59hbHs)r|&)lD(xSe@@`#T zChxE%(5pcxN5dFR^z?200tuOHdFwkKbe9tC9EY=V*D&7*ni(C_$9@xWlo`J{YeF&NR;S1gij>rf!WF!H{}+xwJe=<5$XGrb+LoxNb8=mY*mTjT z>^Ii{hr3*~H#xJ=2Q7d zXm`|rqC3Hwnex4NYsc@X=E~2l|^PO&omD1Uf`yOqTT!Kyei~ z%d7g%zMe8Q44O86pt$Ly{_7{b=f49;WD}&rQE6kC?}gUa z4O0qw^vcL~9PCGdBgYn4Qi-66jp8C*^7o`-z{2c~uQt3Cl|c%;8Gq6hhmxJ++kSw> zvrCZSeZJh@;-SFvdwSSlvoq3O1-GxDE3WyDF2#~uZeNH3*US&T0BpTC*7ptdKM8|} zo7>RBB8B_ZKk3JR2Iq&#*jN9cpby!850teB|E!N{o5=Q6w?afoM;}c=nBTr$Xb=?S zk%S-M7GVd>Tx-LbvCTNZS zk#7F6L$Pztgc}c-S0^J(lokA!SSosUmG0qDBwj%T?sg%?!xnka5F|OfG~RMk>G%rn zPVS-#M4;%nT2~pg9>$7`%eA~ZzRmG(f!MVqW;pBDaNGK&;|m>!v`k=6)YKxbYlFm+ zoNPt=WPMS<$^K&bLb~15;@BPM;O=zUgZ-rBfPc~v6=R&XmyiNDO_7KQN4Ji$^1zL~ zO;_{676;ee$l1=WYmuw~KPNs@_UyE~_IAwy?6?R!ZGFMC?6mK-9cWI-F{7i;)i-IP z07ao6sn`kod}J8+QT-`ht!|$pK23ELQNOk_fHK$O*P`w`)6q(2l!Ri?2}Z}}C=Ldy zrTMve*YAAyNG=N2Ui7}WxgWTD-DfY)xUuLkJX|l}0xSFyhJ;|hr`nvWw^x!^_zv%j z_yup__?`W4XmGK6Q9cL5xdJ3>n9#k&E8Dap?;}u(Bl#KhV!Bed9A#Oe=oakbPP>*R zIx9Rwc0X$p-OmQb~Be<1=J@)RyafG*r=j zs}^N3LO3;X;pAd6EsZ4Oj5@5Ps&-#^DE5%GxbpVBQGpr@%z3zsVuUSm%3~OiiJiP% z#HyzI)UbPA|EKy@!63)M*KOFFSKOp(TWP~9o#lFPB>L|i;Gt8K;4GWf4*sWNeOAc; z>7Y4gr-__W!gAnCW6yz}2cns9fULfcweD&^?Qse%d72UFqIMuO#C?NDfm?RH>soxV zr}#6QFSLEJMeY6Y>@1hWe(XNKMig&>^d2^GA|@7~sK3pSOdt4dU5CVPl;mX}74P~9 z3o_i-M_W;AXlre;&DOq1Tg>R| zAZyN-VY<%=W5MA%k@IEOaq5Vw$rRlQuWwvPYB_~#eNwyW*%l`MdW zM|c6$)zu90Kp@@Tye6y}2@IIU)A%Wks+SnvLb(ji{XyaFMx%B@+t4jN-zWIB05UVq zW+NxBo|Em+r6nC4D;a&r{76*qc>4Q_w zQ@ijz6&c3P4|)D|w+acY!s61i{sHorz_k1X>RKK5A3#OrUM9Hg^0Ieq;-b(} z!23eB>a)iR58oOc_Mzh~Xl)z5^M((IEKHub31gF=sov`a~%cudM#s@QAhZ8;sJR zZu7W#FQg_$gbtx+@KKjZROCTCxy0e6#Ng*_0J{$y}iQZMM{TG|Pq zq}{Jp7F+uWKn4L0o2vFwBZE{65xiSCL=rgB*?U^MR!7<)6wB9XQ0ZwBx4o^QKZ zzoh^vg@iYN@v8C6?04CD@%S9bkV229pz!ym{yL=&TD@zQ7_Tz-$tB$1Y`tnjnO>Js zZ-?&aQFS(=2B&VgfuTpa#y%pWRj_m#YFbHnE3HmnjS|a3_wo&GDA%)qwj^lk6s`bS zMkAGu{PX`3oLsm!?=5?u6j6CrWA?=bUzBROj;oiBFu*hkpZctY8#0}}T)VtIWwo}0 z10+ibCJ%anw|*j=&^fJqpN*hNTBTA)1*LL6Ex)2_V!$BMzI$u1@8=}4Yf-lWKH%8R zE}}SyuaTl1!Gg*}4@a~Lnx*|pp@%CV9&xeyeywh*C9I`+K)Q2HuW6o#p?vlm6Qj@A zQ+7X65oCoklDI=>J9~zMiDf5AS{$3+RZWymyz1>Z(I2y`wfp9(>9_XWLc}SG|6wr* zRp=2-t}g|aohKhss`BM_;M$86($Rf|T|`SOE1I0ro5i&Dc6xVz-+qVSEskbMl|Y|7 zf`8U=6|Bz;T!S_tXp*G=0UI6;V7^0r4=83u9!FioFHM`z*OZd*UWwuo*+s#^-{1|f zKNZ%&SlS8+wSp&5P5M{5Sft0P=RT;9)E1NbxoDMXIT&mwrdw)w`Q^ccVs-W-ONKH6{aPI2u{&n)*w=Az}5-;tZ zHs7k>NG7&E?eI)mSN9dwBcpM>YZM3lx3@~>Xq{2?KBoyt!pm;DJGAQc$ z+<10xnRDj-L{3b2#=0Le3#Zu&BqcjY&Uda-+I)S+hlXfnAY#g4;_<%-XkzBY)j-1Q zv}7c=5IdTr=|HH{>AvWyS;9x!Am+?7W|`a6?yefH+EI zk9s%&8e^BBRlI|bv$*muzcp^MKi(|mWN?s~vF_jK|zsZujcI5D< zv&Z8fIdbkOW`6;(S1b8@#px3J zgY*%6yeA(n+aB37_@h~&G~C%bZ@m#~9hEUJ?kZaU^^j7SVO7eIpm#G3W!u-5p|RKQ zfp0Fi!O`(#r5O%41P&j$m=2-f*BQVpd)|ok?FFtQwT-nw{Ytyy@>PojDqRn53Vv@! z36)LN_IyzN-wmEcr=T`B~eGJ5wyqh&TbjNKi2NQD&1U<8Q2X^74=l zVYs2*dR)(v2eMGeW3b3qp0rVb^G?2Nb9-~ves|`?6_}V^e z!@GNyi64)oldB}Nz8Bf*{TSdn{;f6X{jZpxrHX;+V|-ww@fL&=e&v+H8(U1yI};rv zsQqj5M5ObYb(cE4S^8L30jeus<2DW2six!o$b;N2!}a1Lkg z!~7|{+0`XfZ=VBwn&|(Ldcx~@iFs>BEMIR~LE~O${2T6mPhrt;0(CeEpzN7=UtqA$ zdCTZr_j_4;{SH799{-zleft+4Akck91yLPjKWcHa?=o{&O^kEunn-(xlTuoFoTntl zIWZswtwl$xlfe{Ffu0)9MCHl~oMvJn5fPE&A3&vwGM}zt08GYY%rub|4WhAIAzvHc z(UlGpszw-RNTQ;IpO4&!4wU{Bog|ArXe%4$RyiC?!6$j_*(-|Nz` zx$7pOMa$1zmx0>lIA@!0q-9x2Zd4EUyz%|D|DC;pNVA#8wPy`t+tD6zJg+i$QK#t+#NyVjXMfJifn~Q-_ z3svA+GguS7V@=E1y7gs9rUJNek|=5F)VZ(AW5W~V8uc3Dry}A{gJ?A{GX9(ZMt>9! zXU@~7*$z7hFMk&>JtKLNNJB6^R#pmx)Ma=Zb`#sXgo8BQ$bGq@U0pX8Kb22g!Ub{Y zf}K^P!gpAmc+b`@w_(RDfUG zXH2!YaT$1Z1=i2fb#P?eICN83Ca7`ukhA9?qeToYAO)nn2XBRV3ZPX5?&Teg`0@do z1Z&hxq(YTs$(*EBPSbRe3UL%@eBl9G=&g@BGs|G(2_5KHFk&HOCH&dkhK1suoh+YL zZQW5I)yw6%lFF}z<`L*zr3h=vqOM@;@s3kT#7@D*HIxBxN!hN z^y%p-|GJ2V_9`>zML^<3&@5TWoSw`8^YM1IaBsuw>xnR7*vGs~b9$7hok*5QkNb6W zc=)j6X!m{BR%Cb+-jxmzl0ELZlH#T|J&?42dHo+$pt7>+p;qXH-S?$jaVRREN7=!o z<@>lenb_wnOlXy3(M+E$VH+xiE~e6gMhe%Bc{R@`Ov{~vhLtbyO9!-{Kz$w@n_IDh z`IzEZ5Q)w?N(VRT732Ppstu;sx0g?)jb;S@d|id=o~=uMqZcrgx2z;^nAK~uX02Wx z&LHhxApjrfx6coUeX_5|Fh99?^JsTBkK1D&VKjiby7ZP^PypX12pKyuC8IK=3sTSb zFo7BzyR4so+?MfY@YWfPQ&$EL;B?+L+JCk$>|tu=3bxuL_yad1KgLo&#Se;@MO;g1 zHOelz5ZLgIaytwyrO7vT`_g!#B8xy9V!_q4NL)Fr+sw2<;T-e=#aDEHS(b((`57#G zy=1)WAB4U0Cj)h#N}H+M3aS%CLePE-I<;{?a3DUu>-wp;A?l}&wl%}EghO5z{R z=Z2R0L&_85E9;vO2CL=L!tS}Ricw4f`Ge>68(l%-}nu3sC5QlKsyrn%I|_IIF9VekV0-y8#u z6@(zJ#hSq=9X}d5$Ao`7V2CB199NXzCPg8%-Me@d48iUrHNwk%2~{R7+2xT5%M}@~ zqLM3?O+-}6)>XtX7ny#vW8kU!9{opH&%OPf&S|%~$nBopS9hPofaTZiS<>%n+v458 zgj+krm>S7)4S57wB)jhrwHyZAZ6C~?(^o{S-D%y zTRV$0qaCsqZX_rW7(2dIuY_n(LUj%Xik(elg4AcR)K1P4+lP52`b!H=reN8W#_sAI z;FBfqdeJAlrrB0XGxs0$n*^E`O5Pv#T-{^m6s6F+ALI!$&Y<1v_o*ifh3&LfAj$id znsW_x2Kd5&7=e1V?-;UhUuaj1F(}JrwfuFMDep#?4<^jDi2hm4bKh<#G`;Pge_v>? z=C|vvh1K6_3w_T}d@$d#0x3@QKeXY^?**67}!Ido6>j4YOD+M~394 zu~Rf~b#?Vs5<@v?QyEqGJ7ulB1-))5p9Tij;pI}06!ddg(iBq1fORh>z&9QkKm~LT z>eFkQGQ=RV)9b;@$chS>!ke~6QIB;tA{2e%rT@y z%v|eg>#7!Nh3-L~&l`RJ0zZ31(exd)eo=U$M3OjD%7lZ=KJW3@SHZK+JEpu6+AGQq zfQ5$qIq=sG-OfTSb5mPWe7%Ym>%RMetMQ*Z61a8+pRy`}1%EieAfi%4!w^)&AalvE z2Q*It?KR<(4x`iVs{nJ&$c6~Z_&xRc2YyEDp^>spV4rCL>sVKO-8Q%?@q63@q?94D zJbas}AOg&ItDMog{zW&8nLw&{VF)u(K+RPkDDst4A zypE&x-bduOcWzK0nR45u$z(2Ms2@P8ZNwC<=SbPjgb%{bsVGE^o}tPp!jF0Yo^3F& zwZZ$ce+OUR91t}^uP!}o)3H7?gpiGU4yeLPk>%y!@@v3G2378IQ}FpJrN?BVXeryO ziJ56_Jr(NJ_BMM?#j6|pKCHF-;txrNM~(EKD9aHF44p1{J$mr4unj8WcybaypZTxM z7{Q=a+(QP1h2gSKtSaKwu~C#J2B)0Dnq>$nxg zQx-n>ec6;Xsp}lPHL`7PzZzxd6g%j}=9sMBN)(J!2~u~T^J!Pu$!b_}arJaRT+GB# zH;WLNnjS`zd{-cxWAAsQ^E^rNEGPub{E+MQ)UMnSOYXnZkx?VEua8x4=_ysfj|umA z4CXs-@HPf(YR*zxaMS@gqZZ?F* zY!i768b+s*(U%97C1Q@}(;SWwCYLp#)0s%k+78iG-ji{NIELH|g0n2zlfnY?E#2wy~l2%esA zsG0(DQ97#R#J~af^5S!Qcl$0Cwrh;aF{Z`D9x1Y~25fPSdT(yNbIoz-uIbjMMs1RZ zq@E738x3O5{?o&Ybn{rd+IJxX;>JdJXnmx<-`xFT&}H9gWvgPXhY|4$?Rv890pctJ z7aspGA`fdL^GE(wzc&*%w=dkCO}odNk!>8nawKxc8n}|ww)#n- zxkydL51qtcUFkgM%EsY)S5Y8h4M+}HLI+ipU9f>k_F=s7VRnGzvWMiA3MhmyOkzk= zpiVTS{hB(GFAnB9=)u{ubkY)`#Q5N3y-MtU%Aq#vjRH+M{|CNhJUOD0UwZBLSv~#$ z&or9cQNGn8=($zl#r2`8m0l)hnPN#lw|!_ON-lo*(Ti^_hV9>=S+#sIj+IR#t7|^# z5v0Xkdcrl-VX)5tUmTRUEzX3g6-7YvP|576$NzNRA2QI1Dn+p7dU@fyci1)qO#&DO zrBUq#OWtKOqe#<#Z9k`@u{~5-kUd-D_LEins788<(!pFC>xb!x&En#U=!?30EDE`_v6)!YD*_hmjsbgLzE z?r-EO7?W0U^Gdin9uS36-Eekg2TB;?8LC(;CAI{n81_b(4bC5LN*Pobm}twp`972X z4|ro3tvfoqipTHX3#VY@T$LkKDU7GenTsip0&R>#TLZ@@G5BA|ycru*uG);7rJ9=4 z{^(Yiwrhi;;eGmhh?R50-{){&N>4}UGkg|V2$yh_TSi|pSH{|W5d5aQc(?ZU>&)j3 z9>6ulne*V{rW9IUr)~kn{x74{RMJ)!L@EKelQfS`H zfE~JKEJ0KXhOZBU?N7$L1xDk;7^|c9u3Fc58U+*#+&ui-0(wOd2n+IaHoX8))C4_# zP@hUI)sITeSS`Jr_!SzxeEd|f=K^>rSP5go3%&q;l^tWVgU}OX@~i^OiQ zc1)xSzH=eAikO(H4~^1p9!rtsSjPQ=lHL-Pq})kO>hpob(2Xr{qPZ@P+lMXk^K zUG9_9I#|dOx0$WuGUW@3-`#S{>Bj0xY5v?}u?-<@n3sXjC)+7U6+U@irfhCh#iggZ z+d73A4VTlYEI8dIq<&6YdW9*=omxlZ4Xfsy+01n9i$gbvUY4FuVkQM0^t^5CdM6Qf z_nf{8`RZ)|3Bxs@N9n2;55OoJP&+(`#u{y}m;dn_pu3VOxe=8JOsZGD5BwvF=8`t9 z!SD47I39TRf0d~u7NL99_s1Xv$S>9*T>216GAs^eHsc4_X1nt@+SrQI7 zRhS_U;|?oV_0N7qcQ zL{cWj2Xgxa85lS%ArpIT;Cwu93pwj&lAoZyRZiXyn%AMSN`$iI+^>YlWwavGi=Xp>H!nd|ezM#5KZYP4omH#>= z)oKHo{27t(1nTPj4rAb20B0 zgt+sk4*)MM^LhjOT1@d*qQ=^OTpgdF%e7m#-#tKE1wGT>mvOzJB%jESa8rWS5rxoB z!YoRv(w0}zLf&O@Q$>;oenZ>T#{>^;fkPM8=znJrsK)9^vez}(8fWfKyNMm1C)Jzj zfGD$paU-XOjy4j=Z=}NZfGQ>j?`QvuaVDCvot>ol8}T>_guOlBnyKsP#b@NnM>@hb zcX4TAL(*#18}4R5S#gvaSLtAX`WFQY+rv5Wy9efr+kNYI)D(H5H8y={DcObNwFXCT z!LKbOzF>-nn|tuM^`zUJdi2WuzXvtD?39q>71sGo-&wL=P;G>cSHpOSbBTF(re(+X z{6U>z@KpuRGp8L9%<)aDagQzodtk;rDqzgFuCDaNA}6WH{%79it_06KxL%x++Nb|E z;=W$-v)+PUMxz48oPx$qMtIn;RR?AWbT~6#D&l<(bu95^5CDz?bf;m52>{Lf^8=mg z#pRA{hv!B7)d)TCClY99i98yT+qEvD5o_z4GR?Dc)k%{%v>ZW%c2zM01#BoEjc5>yj{8@DY!w)+Q1J)A5u$Cv=dE}|wMz+o4)6Y@ zP$la(Q8IlJX|AKF;Azn2F?2J7t?kuI)cn+}3r%Il8O33ra-n3>iZe$5PKMad8`A%1 zKIP1vro7FRKTQ(ZfZ-8XD2rCD4XD*r`$zJ_q-ulnM`?%S+h}^d74fD|P{KEf#S!Kj zowNO1yN8Zs<154tehphDV(k88RZz(d;F|mn?=HfP;RHc^j<-cf~sd!(HWbDKE zo$p_G5}zoIDh0^HVYGqYWAsd!X+7P9e(>HW8c^IGtyOZZCX+C&TfbhwF~h%FVDEZqCWJt_g_{4>L=XYkIZG61A*POHpzE)rkY^X-JA$ za}fd8SbdN6(o?C<%b>B3`z7Px7*dLHy=LRq&0HP`+aWWTJdTFH!)|2 z6dx1#x-U*Rx`fo`C$?W5{2j~+FJrs))pt(cK3}x`hg`X$yBPDk(6H+1H<*%7(~MXc zFAkeW=D}Yv8GowIm{+G-(>$?g`6|LBr;Ekh-Cn8@b9m-U`CTmyN>CS`306r-3J^lL z95L|ew~1rPs^aEpUk5I7wNdm63d~JSO~o|GzTbvHiMOS6;>kN$AvRR?^*;32SUX5$ z%>~j4!BHbfz~R!=k;SG%!Jv*WtrBkJc%qE;Df?CmvsuZ$ObrVkD>Prll88NxDOC;! zD2y>sM((4E>ey|sUj9=qz<-2)#Bx!-3MMq|&Z zy1$-=-ET(0JT5jr;o{;l;L1L>3+C;-2k$6@@~^w`q^2_y=1SVUA0lUD6l}X9wb$^s zZhLc2Ow=04C7Vp%u@<@bPKkvEu(ZNI+tWpN+2%Q4+vaMk;ceOsgq1HAitZ=02;r7Q z#T1tUKT&TX&$FVTK}^EAti_u7cxI+Kko~t}A4zal!G3|<-&95lonqv>Nii}+a zR;Z=IXxSW;i&dlTUFj+WwUF%9$$;IH^>(Q}JCP6ah9K zC1#||7bm6kp?~LGTG0!XW3wjxR~%#8S4eyGgRAJ&qi7Q{WX-1u(61!WKfdc9)DvkO zA6*%;q;+pBP>?(}ZH;LRpozpohKueu;W1)#Dz2q%Oh8CjLP-10YL2Yl*%#S_x%G)y zcpp7jP+Ju3fspXDx|WY@1k?BCNb!EAN-&ScNeO!~rM`kB*a`L>t946;0KKs!zd~k; zAJdA8D7Vd@hWHn5=$=8xrbg#~+RAq=BPHJ7*k2LIwG+8kv=WwBAF1Xa7bMs-*3Le5 zY$*rzt}(!H=4tX(PXDbI(EYsvwgyUAlve2g!_>>`>G+sv;wV;=$r&hh<|()!h2?ba z!d}M|?=x~<0&%MphLA+vS*XU4#+fSbFGo`NpEhN2YOz5@7cY2P=p&(mV=6f1lvM^f ze`M5wdPdbpA6DkZ#?~m@;5KhaH}iiTu}{zVTI%_AXG-29O`bu{TisK_lI7_vZVb)U zd-WChnv0L-zZx0~or$!w;b@;Yn~rSfqWqA6OWKz=O(SPz8H^R=8K)_{rL6L6^R7f4 zmgNt_oD__OF1-qKD2$a4EyN_tarGbLTj6-j^aHd0S7>7Um9rhkZJupDQRn7??~_I_ zqrxwsyL7ISw)Mqo4ptwJQUUdd`3C0m-O_z2kP_n`RaR0>Z_`l|qTxe>cNUthU zNW8j+CFLEXHDgtaR;Q??P9ZH}73_~+9xdLaXUq%&PwIy0opa7px%1Uw z=%hfhqmub3GmcpfmGG5UVug?WLD)cwDIPLuLKQ;aOp?N=a#yf1bcjb%a zn2jKHG+*@HEo%}PJzen?wv|4H`_r`~pV-Q~|LX4G_=1&lx-GK>{JH=|V-I((5Hjw< z`=33qwiXFcZXHWTJS-OcAZb0#KGW%+EqXj^IHtBu6>345k)t;~wxOuNi0=F`J- zsfQw`r!{of^b>GDX=T^yR%%vaP$l47?4>ZIlxur6?7^#1R+1Ox$a@iLr`tDoJC&#? znAlXPr@XYfWM<4a4uFy)2EM|*o;X>Tob*Som)kyR=ND4ds8=XIc7-GnRrFlA?$w#e z@GV|18665XsEEOpE9-JpZzh)}e;(AFA1v`{aaH6wb#_81)Ei(tu-Rrrj@!k8O~_0& zY`i!$B2N+9vU1M#BZh>>(^0H^Z9RorBuLmYjbK-B)=mxUK#bLk%`=mJgp^R1r%q$7SkQY zc%yk5qk5xFNBHDRu@buA#kP2~d{i|oiw2?=Wn_`$6U5mi2!a0mu)*4Bjxnj}#2qJL zEl{vyu)U&$^2CW--_IL|zlPitpFbp*Q>JL70Jq=BeqF^;j=rof+F+a!%7mehusejU zaF(CHhvO;a@nZ+P&o|(E9Y=9t*%!xA%+_8hEBdG~wt63--06cMgldqf`q3}IGF-5a zBJt5EtY*qIWaH3tm|5r{F=1|RI|QBJfG(E-JDcSHI6CWiy5Ikee>TII?%wp#G1D>K zOi$+#)7?x@4@Wl>!_gcZv1!NT(K+4SHNW@w_n*H!JaF#&bziURdS0(n79AA~?Q`Ik zt|C=|_yiqj_Nylh?gPbW=??-SUV;MRl?0G;?$mm8Donh-&tQH0S3G%dT|GZ+HK^yi zy9V_D2aJ85#B)scP+WZ|driil?ZCm}t(Sq4Re8rAqZgP0`$UbNG&?}(4d z)(rY``Z~9gy}U!W>%-}feWp(zx^DZ*RIHU7Nf)r8B?lZZx#C3+H$y=YQZo4-_IPhc zS`UT12;DYU-?w}nx22z2PHtYc4Lmrb>JB@-Cx27cd=-@F9_}5oFRxFPgO zi9)|~*ttj2?sbN)n*f1-h>0OSt_FUdGpF-18SfS%OY3Ur9YLjM(wcHqQGb3i$y_4ls;y+s zs-yl{O*vPCVhlIp`<$fhQqdHduSy=$%Z?*G|k*Rtnmo8C>i)p%|QXc7_bmjJUKO`tFu2afD zM;GT;8yNI!irx@dF5hG)DGMp&wQVTbcwe$O| z`ttDw0LHQLfDf!zg?z8FkQeSj*MK&&Bk>Oq5tuafWW`)yxTXTvGl3KVn*7$v%>;ME z>n$tQ$G*!Sa{O74ehKw9#5rCpv*2=d=fhm)62|Z(#pN5I=pG1m)V`;fH~qSl;xVSGW$lZfV>7nZVkxfX8+etp+E4(`e>##@{JXWep{2=Js$-*C@sEa8bQ5G@5hSf^|rHu)Y>)|ZcNOu~r8GjQ^k4*%^48ZLk zEMAP>^MdcbGix%iz}ob6A}^tnBn_u^m9KXD_A)Eu%(i#sn6r4|8z|v3CrM6jzN@FN zY`uYoE)a$W7R^8@teU(B5t*f+h{VqQc4QH2=BPD0iL$UOu)f3<{C`jQpNR>4bs7mE zS`c-Kj?x-qwfG@MB;aylfIaQaBoNz@@_Q1OWYF`4kk%@>g_cKM(*Yxwjp*|^ae6uo zLJT?@Hjuxg!`Btk5}ouKZT1Mm;yrOX*cMrVj@VM>&ip+PJMM*3T2S+MvHe%9sK?@3 z7PS*mrAux;SJ=p0GQ1UYaDX8&t2H`W-O`%Jlg~(JTmW85BZd&W9aVtN+CR=jC@m6d znD0+vF+nFx-i;}x5DSr}>lqoZ0+P?@j%mOUkb8(jHn2^$Lq^K$vPu^Dpj%5Vw*9KZ z)6_@`%PS)@fs$)uC=XWlS=0OsHeV;=`XJZkXw>PcS-BNM>OmlI6-)Q0hKRm=OS1?M zRp4y!NG1n%TVE!Bl1Db0ExtHq^#}_LTJl{y3HxX5D`ONgI4u-W!I-tlL@gBm!ob%# zM78LjH>&gC1!cOtV|ddOcOf%@!a}QgbU#|$%L2!f!{AwXb=3)-7&&9*IUke4D{;!G} znx-u`b#jA_;&tPt&#s%3YvLB<+IMsW+4=%T5^y@?#l|<>Sqypb?|AVttGajk{0mKI zwjq)`yUe{23c3teb5_Wr?DTW(z8ZnN+x?4*-}%3-s5oa)$_){^EMaY9NcsY`__yQOj#wtce`4ZqMRAHGx#gw^7fver8Oe= zRzZJB=WA&fza-0Suqv|>k)DZvg)T(KbD^V9PHUsX!7tHng4nmEHwJbc~w}p-JL})^l|9fw{&+BQyD5!GH(<*7kK|_M+h= zA9I{VWHB|cLIQpd*DNu~i;FD4UvV^>CJ8r9i$z9Ylt_nAWTFaBUX zlAEPGfliGe=dVov?)#DNZeA>#@$h9wv~kSzo5hYo?*!~ZzmTwj%(>@WO?0G=))oGM zh0c2YQkq7Z&V7;As^;o~0voG@|J01Mk!Fsz{%jb55_70jOGB1O$1!9Oyk=x}9d=$j z)bb(WKnn^ay=7)--Owj5%=q?!60Vc;D2aQq&WBv*hTvNCUp8anJ9p`(fJwOL>L_l9 z%fvPCJ(%A#X)AR)eErbZsfE89WGG=+4R<*~f0OMvE;!KJnF1TBQENR$H#hLlv;F3| zG9sKPX9e>_*Y&5cRC@fy93vfBEWVNZ!j<`#Hn~Bn2b|V*bErdejMczx&+>CAs$w#M zJbrEqy*)OEmsl~V`{rf$J1cLS^fTK(wtPjiCz@%DHf3c-rlt)UTp(6v@|S>Oc^qW0 zr3?mt=1gxF7umYMPupT;RCQOHAR7#eO7yusf)CCro2=~+%zYjbb#3BrfjsP z36x>#Ml=rp=t1iDLZBUGvhd`GzeGYvhj=}|8nlZbml~|G_V7Y~ z8%N!0B!7n-IRpXz3oho9+1XA}czQxBWWK1+_h4)ahv^#NO%k^nbC!g^2>)Acd6_EP zXOa595JTo4#YxRw`1ybF8gxl>d_8hv{3}2~a=+6-w%gtmsz-FSM5|yk^u*b8XiM$E z$r5j2$NG7ua|YS#{m=^cT|SvQhOZh+zZv=)^l9kqyGUV&f$RT+lTRV_$OIiR}h-yR%L%>VM8@yMTu>cEerb zLVa_6Gt>~bcR7;>(e2HBts+@(Pz14UhhoiWM>y;Tu9kt^{B25pu)k@XxwOF5O0}|6 z!ix~~x%~=ISzB`=`z(H2@q)R@l5H4ML)eE|hT}vHzcXOSn&7k@+QBUIjf5|GTG9)xL>2**G zZxizQ0sW{msV{RJl}h@*L0)`2_oCL}t>o-Q`C7 z-KlxrUOhjI-Eo7p@p|~7(1`nWuZ772bLEA^KlSG~UH_(Se%Lt?JKgG@McYaeYuAG7 zmI8NFII0(mPAFTZBR^0*Qp{m31_cvRub?FmK=0y!@56YakcHR<#jau9C%M*GuYruo`_2S)ylBXuR* ze;xF|c9+o)`7DwVTWKV+gbtPUqFfkiA}4O@8fi!?{bJzZ|J!hjTh&)J*QfGVzgY!= zdhFeME%2p35Ab{Gl|K>N@?ZUj9drN-db4_Q*YNf^qYJnLhVS|qN%dekd8WzRjK2CI z1o8R(>l3+Na{>79S zkWpbFNClK%k1Iu^Z6e0^JjmkZJVcC5@;gZyXboJwShv?j$9gUT6A}{c{)XXVgns86 zX81EN)OCMVb9Yq}tZD*Lu~7~HQb>l*g-zDnWT!Jd@^J(IE21aAd;qi!HD_lhK@pLS z?d`}4)?F_VtVon(27r;hVPOu zDhotLT6Qe=JVApNKHJ)N=1yDe4RQ;odDc}>BwsRX>G$wE_tger7BTMtE|l_1%g5kJ`(Qvu0|FQz)UsWY?I z4znZ6{~VfFSJPETUavdpH?qaNIsaK4;$oGeGXGN18h)Vy(lNg0|qXhJbe zcYU>{0Za>pT8oJiM(7vyL!4A!$$BLjZPG*bNsyu2_{#ScbT!D{3B|DrD~FGzF9cfS z?-b!pSkErEI0)KaOaXu6pyGLM9lUc2QqQ7dEJOZ~ zr~8qG`C2<}z!Fe(?{=Oq^G}0sZJr^pd{Nqj5>>|m!}Erwg5`sVY zVulYWA8UJ#S7`sI%}G3u1$W=gqXyyWM`p}r@X4uA2~wD(7LE7X!M(iYmqjNq{hVu- zfB*LXyW%3}QZb6mt6mbJ;xEX%7{0@<%r_BlKR_; z{gbffx{>{F$wPe%`A7tz_jtN0<58uIt}u_K9QsWX%B%1Ny_;l-sQs{i&^} zoVFbCeQ6(YX4uvYv{z;iFq%!{8zuNe?1z-P?HR4rV?;{^38hS3JsJm2{#`qt$p_#1 zUs@z0XKOOX(%HA!bnQm3uENK}gGcqa)B%5A5#)dqaRF^9OyzWgUpkJ|Ic^+Rl&y?M zX1ji|eVkn^!G_kY=NT`OmDl5dpE%8an7H%7y@io zdU|?fV1)}vUw|Z$EYQ#smz$XQR&>*F^_~QgHSK$L&KP{rkPoDd^M{8rLsIl={2T+ICs=Qtps$H))Y zr(=0Tf+TtTQIXTo=;2nkd``gqrq6whQXY=*^s{%}RGY|xqiSkePH(W;D+mp1`j35l z{mlPeF<2~7b*J;$xF=V!7}c3I5oDP}0x5NjO11f!{m@~!+LpinFSKZIYpNPCbU~y} zd5!Dsdwz>wY@R51eJU1K!^REx9XSNjcdB&XUwaP#99e}L%HfwFbuui!xPEDz>l-p0 ze;>rBO$^zjLJ0n7G64>xe!=mgh+)JnnU7gfxxNvid~X8E8jG_znHwgyO5o`+aQIdBf?j8J@fO;cZ)=5@c5lOU8!tq%Qx}4wqCQi)1H#Ln9vWOa7#549T2G9v|t` zjBShmH(1b2Xja!X(F^e-?)yvV*0H00YE>GLaxb1eL7rTJDnr@T6?K)XYid3-D$5nq z_DJTFa&@gE$He<^Ujoc-`u+{-&c}VmuE#CrfU`&CpzDTwcVAz-KIso&I|U?F+!C!8 z@8!&KoUrN$f|qh3Lr?3M|Ghfxp5w#esjd4<&y(ZJmUt?s!#Rr}j;Y2Oae=o6e62Xj zxfR9p3%WHpmK3UGp2D6+7*&T&B+OamsdTSfRQ~Z9aWNS z{J@(W=K-J&lEe!6`&+hkWE2g8VgRe#s09zBs-CU-#E~bEE;AFP09pp6l7>6_*((Lb zI@Yc0UlE_4Z^qTXJbJhd`V|(1DQa2vlh)dYt zS9%u!xR|rwQ73?|uaHa()|eM*R+^Djn!y3tC6z+zkIPy0aS@_+B|qa1bv79cGAgAw zkM@4B91R@^(@#wA9{ir`NiEG}sJ5DdAl2OXH3Sl8gd7{4RRtCv__6}OK2*xzTR+d8 zHE!#{bvsvo`7Y<8dmn!f(%NZ3wGTRaD28G>_CwjG^Hdj8-Nq0_A3Mm2QRWGxNf=8j z1}6c8RTW*F^?DcXBNh<>+T6Up^B4kq(L@?CD`)R0U?Wd;bTSc* zGU=h1%=v5O_xA^!3SE`(>+v83GEa=2>LoEr{z6$h?$>%%P%Fj#)8k1)(OAUu zRdeb)egZj}uaG{00#KiIX5BhhuG+VsN)`3*xZL9Ku^l?Kr1N%cfysuxZ5b%zrpCd! zRzNaVZoR|{o35w5JPpKWNrp2QDWK8k2$l4KT6yHA{^&&tCj9p@ktTj1-Hj7tFbidbZC`}Fi#FE5T6YCfBH+>jGLvF^>Pw|%t ztBI(~JNG$rEDQ6TRkH2{LuKvVlXg7(#X2uKPLgdfdYqzeRs*BXe60HHWGo8Eai2dG z*vUJdiHy1HDoSOQY=YIYN`DN+v=5FeA&gI%QuBZ@nz{0j}Dv z$4$cR3)Gaoa3DrulACk-c&7)rN%}{wu=~HM8ilcQhhr4VYGY>ZD#K|%SO*I1xk#&V zEI;rcHke89kx1EVcgd`w_pasUSZx%}}y+R5% z%U(Pjb|X?5*|04$+ftjzD_s_1-ed|a+Z~bEo_m1p18cjgIaRY)R=JN{nihWuaaJum zKuZ=w{dLLeeS@R}U;Qz#KDxEfgWB9VWzs>V(eIkxNFyEE4Bj3M<>WF?5*OC&c}c0H zHe{@x-(ND?*p#)4i)~cam=t;ZiY2WP5`$aSDU`>7CfqS~S>Ye24HWf_d}mnAhHMra zK9Ky#p~QE2%WrC2LbXvg?Zx4j;P&Uu!C`}ghl(mPRa%?!=Zu>JF(}ep;qOED_!XaT zl7$3bCUl}fj8vU<9RTf!rXF2Sp+(;P<KCf6Zm^>;co22>gIuRy&^f+5BtfUBU<%k)K2i*zyr;7@Y*7hzOYXFg^}h|)AwbC* zI~k8g2mCR>k))PI;?tS9^8ld4V|-k7&ZdFpC!qNr`2J0LC`7JQYyNH@6z-)BjD`Qi z6gO*E1X|8vt$6H_jB%_j`ZPH@*ZBrFrlE0%C#?%~KG7=u-n=GRz0rq~gePSnBq>8b z&dwG>CV~Fz^PbiF7kSkH*{}IVt#3c9tO0f5z-+Z--XUaPsXFTYAd9V-`NnZuH0=$c@nk5@@m^ln2dO()nE&=KXl-7^X2-nZD3rFBvU8d_d}i#)+nlJH zV>uKNXlUvI`f(Ib{30cGg&4pdlsR{)c2TbFQE6?lle$|s7^cMvUG&8<=mY3lIUN-n z*rvYH5(bdU`@U8iE3ekIfs95epi>0ieau`k3>aI5sd)OUgq+$*=~kKFaPLjN+BgQa z`UhiXhW{{LHY?9=-d17xPiKB;VnrtfvA}cGD26D~Ha}gWo0#h>uKp$>?hi*<@$>kF zguTU=6HjFsYWSnpoK-)#7oOGggn!cc^c{EAzx!-0W7$02T%wfF2S}{%`uDn8$yyf@ z%3p_nJ}gi&oyQ;n)yKU%J#8#)WL-zH58OzzT86(rK))JFGju>aX`8Q;(Hnrnehu6N z2CO#3zsq*`j>^&W+Km3+3WeHBdoCw4*z06QZC-vVFGWLvq+Hw1O~!EPd(H92+~^W2 zr<6}@Ty}}Zbsx&Uva6nn+EvEJx=%8!?V2Teulh!HgaHjQjm(Ra&Li6csWn^sb=Rh^ zm*f*6kA!mhXpCh^c3HgHBQoR@BiL{3wYbJ2gzAkr1-shK>OL2U_3`T0E2RNjnq+PM zy5Z^2l$3Np*i!~5iDfoBkC!%Gn|Bwa?0V#OCO{^$e{jfFU)QazCT9-*_pNSkRpYG^ z@&d$`XG~w*lOizVO?dpKoq9>Mv6=iSD}HIl_s2D%k=sT#hx^BeF%I^emTEU;-0U1T z%2HkOTx8mcNN_7#^=s(~_BQ=eKZol0i7Va@mcO02`4Rt`s;O67XDrG`i>V{7m^`0c zNOPV8@0z+DrgSF$q5`kDSG430_ws>CRV};54~+DVO&Yqdy7q5$sr%GBhs;CAL%cr2 zD9RtYsee_0X~C}ajdwFeTTTtf-E4N0EKyNX4pwj>&ewdoYARIvA~{OEcZ{ymI@|1| z?;9%wMHg($uGolVLwM+<_Vh0tz#7R+EMVQq0}p_j^w;J2>vAr2_ph?mgNbMhDG^c= zQ7@j1qG3~P8 z-sPc*-}SPP>v^$|;wz9K%_F_xFC+Qw#217mn^yc&A?*$4C}##RJ5AFL6Y1$`0pyGS znF^YX@GGr`Tm%`EF-O(7e4g&Z53<>kt7@&41LhAY6;fWUrnH(&m!If6*3&u8;_1Ap z=2{F~x#uMCJ32jIs-nzNKMxf14I#;^3e@6Y%Dr&A)SY2P?m>bdAA*0y)|eoK6#>!m z*TtruhZp3PqykYDy1c*;uvYS@M;Tz!(H zOD-Cb&4=Mc;zPYa_>|R9vYNc^WwX&Dq4GY2oNB@;M^m@wz<`RSGTUSS=!c!ExYD_s zr+dZmw1I&XR!+r>lFi;CcI>=mBCuT~Z;V6g_yL-S)Zk=z19G1y~6j@KH^%iKIkaNB^&W(ud!v zA1QFduCel%OYI>Y+2%@?Cj|zrL2PYDcKH?M?3~0t;*bazj)P_%g#h&p7VrfLngWp= z0KfC<7i+8Ab_xCk6A#EP4#U6LBc4s)vGQf|CJ@yy`Jpm;JiaqA@jYm^_$^ES^4IE` zZ`ysegap1WwF27{Ve~Yj!2e}1ddV9mB%>@X5no!6i-Ls(9rsOl$ceN`;=_=J6>rYSvAfI@|vs|GbpqAfbXW zvf&(K`ka7i#@N;EJZ9)Ht^JP%rtV%0gYvgF{GKxf83M79QQO|LGwGrh4X!ZV}VSSa^W<&FBBPxUHwUXv?g-^%v*_s<0@3SEdU8@`5o zJ#1r$$x(R|=LLgrgl1ZyV=7Towwj$e(AddML-tnv!K+3?lZ0G0uhw7`bPim`^VktZ z?8yrr(VBR-Zpm3ynj*}$<_7jPD+~aD_3(-uI|@LC5Z=u`IK8aJFI!(edU_As?}(@CDgVz$&Z_GB zTZ{vN<;t5c!dZKfs>T(Pxx+_vD-vZ$0AC%p7R37jnNGVGw5U z>f@!0ptZb?q&|yv1LFYh>iXqXW{E~4G&@b5lv`N>IowWV`2)p8lk)CvnX(=-eOnJwe36L0d!r}lPOiu$=ja>M(jwE4M&$w0;z#5nVC0LgB5rN zC2_W7*Tm}ioqfgfQ9$V%FO{4JeWIu#Z)*qL7;h2CT986(ld%%4q_69-@m+(<%x0=& zHU9L2E$jMV*=+P{Y2bkXD(e6NIrgYTnvJ^`H72J2eP>Vx;#V@_p9pTVg1ENLoc{o{ zh>eZ^b#xY=z5Xhy&Xa1Jb|D7njzqpOJ8UXCW~_A_B4k)qObbTM`nn=U8s89i6|9O4 zQ>?`GWs#0KMZf7|`L9BIpQ;ISAM#KBUZJft4|qIun7A}q&PLB8O+@Zkpt6fDFy*e* zJ_vb6GIQcvcMl(1RjQ$G<#DGs9QC!HRZliJhOrKd$T|O>ezN50m?0~vWB`pc*f&p} zGQ^Rmlk6$dy0ta*M*MCw9Wc%)v#r1_IzN9RifG!$Aen$$ml_FZWE;9NHO=SH!E|#oIV&9xca*rRy5bZYChW5#Y4}cCUh6xYy2m0C9ZA zDczQnjmR#y=i?Fh)nw38+P`MMxwfqP>@OsPIGx+`Q;DUX1?vPJmp`QrVnF9}%K+<{ zqCiD4t?Cp)ciNYun6(WIX9e0HvnbWnMkOD7LY8tJEVH%y{yC=(&)wIwdi@{)Vaa70 zw3>rSClF4;OWUa6Fa3p@m`5L;>~rQ?`@ohp;bim!KP&oMncU@_8@;lZFhSf*4cXT( zW!2KS#tkw?Q(4LpR3(^kL(%m40OS&2yY<$66Mvuy4~aTqtEebow+cGw$ zc0%9s-Sox51il7L!0u1v0aC%6^XO6NN;jqsj7r_$SZA!cxyGe(z#i~{q ze^p{Adx~_$mRp~LaB2|XEX)ox{nLiwr2A*bJuQ|T+_rgY_CM+;Fd5LD77n_fx0lz1 zn%gx`)(er6a6(;=7J9{2QT1j=?(7c)9hvLWa*BtbL7$ath<(JeN7AoE`OWEr^`n$? z+NMupS6K}cGKMD}UO=%j7xt7$+0K}N|0!mft_uwR^D>R_xP-k(j=nC3|%-`%K!2a=%& zOrF13<#CD^`r?2#?&*lQumwnUek}4I^%X zm+$>%28bxZtBbVWKt-QpC!?MLOX~jVMaS{iEmq4WC7u#GOi{GuuV=Lb$37rT(neZL z@ELv|t=v%V6no9<4I0V0waqIb0VKI1E9qqudMT@*=+eg9=Z&`jE`J~{QVc-6_R7Bv z?nMVOwZY?-bvXbVMpHKeq=G35aESpIo+SWV=;M=TVG8KHc{(}IJqe2XZT6K1z{`4ibG?ZD6KqQpNjS06SM$>3r_|2~GR>po`B;|tt?C`84%45&P) zZ!Z85$AS^_TOR~qT5M^~7oOSNm5Rnq0?soyYgxXKVD&i_OTwCkqX~!O<8@PN6N1)R zA>o75&yUMCzGzWyPI1d4?hPngO^TH)Wf1vu2=}pw_oU+njJnv#&(oE9qegLEP5-#v zaITHfSb3Mm#k^{B*x**gRY3GOpo>d=p!SP*x{k?oLIb(;Fx-GG->_j0_XBlO>mV{x zvTL}2v>|6~0#LQNX%fx?##SV%T5{O|5|91%#Vd(#Rp-LleH6k9v|^}p2aMS& zN84mMLnVl;=kghWa?i!j6wa>A^Pn1MIk5CQzS;N}>0R|$WF@tYLh=U$P`7u#k&K&&JNJzIF9z8S`0U#;PKq#CAO-jLgev)D@CT^)c9B%h#!= zQ`Eb>7X#2El4PIK07eMV*FtH1L0)MktDkz?8Fejs&dRK)=LRmX_>|Y7d>l>C1B%=A z5-xbB{2n27e&8W|cyfdvS*V~dTeuskKoI)QOpt2*K^&1~HPjF)%Jr>?Ga>{Fcf)h2 z;%iC+rAeoF86RVqM&d+E&-4h39w{>xy7B#T#`45h^O|9oskL3(bTz7m3^kc>2mutc z=+k=&PmF+1a{Q+V2$4Q3<-xB6Uw_swaaBKM>RJz^A6EB)k}y9in&b1`HJV%n4I;Kl zD@lzXMLfoDR0nuz?1ymKoua+B2{=Q$~AY>cwO1*tUYc6!1vboaa0JBvSDBWDw} zR=)S;ws?yk`#F|QM2<8Hbk83@FSs0x=b3iWv>)d=D6Hm`f30|4&Q}%rleJTtf0d47 z@ccQ2Kl`)v{){AxH!~Cm>qs$(W7#YE=+)}B1MIp3ZH>w~?I62*CS>DRv#f}tPI}YN zuz8gN6Wf;C86mFa_Qsy3H|q=FK*{xemN&GdM%`_w5=7vT9m&7af7x(wy@ckd@owpQ zPSoVZj-tCG*#WMq#Ne)ekO0Aqd#5*{~H4=2A7Ed zTNgk?B6tbanj+I{Oiriu#xj>oigku;r*?)mq8|I50|vdjE;wk!MAwg)6BSbcp73wy zry1PaiNv7)XP6huM3u(M6C zch>_o4lb^JokrE`4eKPcK+&gkw8a=F+lw29@Wn@R6uT@S_6!JR!^5#zB$QabX~4PW z6X=K7+G31~iaI7#1!oNmfC6@3z!>10;uU zHLLx8iQ6Ql;ddL9&h3VesvoI;H?A~Oe`(tt_wNbL^;*fd5us7Coyy7|F%t{2C$vX8 zOUxD;_;l&gfRVLFa|wD~Y+&{F+76Zo+p(srZe;3WNdrrtRmWnd<|{)RJ=KF_dp5iL zqgvgo8F#G(&+;CanlNl<@wQEv|EP(vpAx}!<>2}>ivY{iVK9~=c))7A_K_VlxNpUQ zIt?}gio5}jPODZ{pFppng9bKHiIzCON1vsfDG+M4LH3Fk3p_Vh zrZ+OLcPylYXwUopO8P+|`Go>3MjZolS(=jvZZZENF8UY|x5PQ7C@?@DL+~Da2(b}d zII4#sna_du*gDJWZoDJZKP1tESgblV7>uU+2admYKkUz6>zS$hFK2B935P=eQJN3m zII@udeO58>L-JC^SI%C{4j~FbB_#1x} z9<#Ra*m7B02s*0Oe33myQhrg#b>xw1)L#p=jf#IdMt^~(4`Ky_hOyKsf%9&Dk$OB< z4AP-Rb}NqA%9n58Upx9rovIHI6V3Y`NGij*kLOg&ifUiMDF>?3fDGu*Et!yUA29gZ z7!{2F#z_j2Jev~Eg_+SBN)2fpOr(fV9vBSubvJ#79NIP?A7ex-#}UlqF_Ht! zr@gQJYDhJ7$z?OmRYEi(-^F|e3#Fb7DfPvsm*uo~zN>L-tl=h#8$kJY@O+O8uC7OE&xp#mK8 ztt}yu4IU8@OE2$!QNPRYiQ@NPVXHw(U9xpB)@^w{~YFUpmzB6PnVerjdUox*QR`iDzv5$7@7sH}8iyODQF9xFI zFCWCZKOWyy@l-C1b8ZBi*FtxB|AFgtb%^!T>I^vb+56B|8@R-G05E1s3Zav;^Oknu zEd7}K=;)ZwzpeC~cJa0I^B4f_Naa1Zylg2*g@21bEQ{!y#-4>~A(Wzx*E8ql?X%`4 zb7zd#DhM7zB0k*I>u%3HJAO(TSg>i}$|j=FT(EF*KvC9f7HUWvZ7U9Rp4vJ%cdw4< zvF{mJYa@K)ky<~>;o#!YK00tG1Y0pmXcnLuan6-{g0D;-)xAl5oD3{BPY+;E%1FY2)x3^hM(`T*9;#^bzVNH)@mN%kKNw(f;dPu zm3>N+B=V+f>%i$e(a4M`Vn1AVQ1jJphhBTnxys76+-+AZc-=g*CpF$us(K^V0z6 z^Ty=DJha15@V?@|lv`MvTzS0kPKEBDv6 zf}T3?DDFKqS`WB?{IM+wPM`t=hiRy~BJQzv(Av$J+J{+^&PXePyMe zdU6D#47HlB`ai?pOt;O`+ramNWD^MPQSP*FtJdm&n}xz+!1ngQDU%dYy09qdl7QiWuO!ofEX5)nIDjVT0PS|xGAUFhO`4&QJ% zWkk`SR`)MvWx{GMuHR%poGOnrc?T5?{-kD}2tf!VA1UaS(t)fFcjX{{S^V463K1iFb5so12ZDvrG$UjJRW39>OoW&d%U~|GL8|s-uJY+Uw?Z*sr4R zK-VZqY`9L=`+R0d>dTU?gy9xxqL`L}fB$flbl6GWHa8w+>5kS!U)^a%_a8P?nR zLrN|@4sh3q&;kxNaBss_AE>)OUOdj*naV|ZaXm!3Q_OY2hK2iG%=+u9yhtpfw#j_V{4;&Rt!+Qc-vXev$pK!s- z@z3a9dQ6c$s_-~^!e{P=qnFB1}o zlfjIPR$N?tN2aeh>~z01e=6DUt0hn-x$cA&)*E=U*(dy9vhd7zhN@QPQ$M8%Psb5G zjCdBCr9UCBVG(TD{lb6R4j6{~>J8kbOiS2R^PD!0TxMhXnlyEso-JiZ5AKoNfA_yM z2N~-xsD4UMv^FpFcwnfxa=7qF&OEvV$3dea;(J0#S{#fYy$lS^mGe~FuM`dlWNsKf z53GLv)Ksu?xX5oC%kA7;nW{VNBy9Ed zbR$ZmV*suwQ!6c|LbGUmFm;Ic8)G6#%1r8WUR(3TyI& z=F3h3S&4;renc?EnIf{qh6v>w9*oVYXH}>V|6`(F z{=G>J%&J=ngaQVK>VAS$Ss*>5o`?k52s#|;B5pd&o&}1pWnz9EoU$hMpVh|Vt3cnkj1^Yd5gYbiY8B3@)oLoQVJ<**ja{C@JAv!B7Hd>lAQe9^Y!7K@Q|^M0q3*b2}6Jt z=$4vnjXDRf)+EL6OM2i`9VrI=V0ViVrN{gL)RO>;0&VUb^EhK0;#=|8HCxb<(2;wf z$kyd$D0`*MaK6?TX;}^HA454qn=wO2*wH$foXaIGZJq1aUfm-j|I5q+ZKjymh++_H zz*{dgeDi|n^{?`Y342!}f3^uDdtN-PecKC&ce_b{ocK2otL1V$)->2F+7QM7ner$n&bz*2nnJt+8>o@s|!lhH!+KywnF z)$BcXh5p+`t}7|SNHgm3wfh;`z3wR#%>t7_k$|R@uauOCCwD>flXuP06;eYlnZ|D^ z0F2V@ZgHZZxNtr5U5M&f8XOz@W%a`|>3@dGRarQnuGNmev|91!HyCk(hI2ZejA=Tq zUVk0S4;*c<8Ea{2@4W~J$<8q47JJS zuO3rfEWklhFpot4?SdIUG?3-~+m06S05tG%>UEhavJwlSooO;by8t7w$(30e;l>d@qDBz+_ z`%h?dA6;PuK)7l}R2S&(0ODA`jz@8V-gybc7ByNDs(@vRq0IKL%>P6DG}9*`^5rZ_ zal0E&2t#X}@#(Y?fB=*Xub&8Fog}<_3mDI3U%%yUM6ZSn-mNVdbP-yFmox{0z%zOC z?}~)lhzzvS=&tig>owT_M}c@<{C(?-VxEmAI%-5m>}N>C9JxH%zMWH30t}E6_G;$@1a#u$K8NM_5Lf{z;0(?MGtG-$zN zBcA;-(g`L_6cPH|PeYgSa!d=@#PFa3z-SW)h+1LcYR>1%zI_sKEi7(EdQmb_Gy#Qc7SFXsPzF2;Mo*1NQTB%O;#$J7> zxt1{-Q+#iJv;AycS-^IYs8D}%JS~tWbgbO~RylI(K*nsZWg+i#eC|VhP1i^U$lpxb zsOrbo6qM2fVU}V#$4bMVe-=WDXMFNpNk&7p6H09_q{&#g}ZqcV4_yo|tG0e(Xfb`k#p1Qwp zvP|p0u&0mRY&>Ewt&7mcm{n9d0_YOWG-sf?G3T*rmsu15(~n_9*5t0d{cvp|ULy4G z+820Wl_th@Ej|F~(tyRDqOb53I=~L+N;sl$yqX%MM0#2tEAqD-b)d`=pRg8PmFVo| zbVbnbCWV>lzZ;R8&8U?cQ{vK}0Sk0Sm&Ivr(>+qz{(B)B;7-w8T>(p#3&wT8h;wpy z4g@e*iS(pIuC@s^XJR?eiZV(P-AFhqSS$Ae*7H}u`aSNwB*a{w50?-psDq;&g{gyF zFYmL{G^ad@)xznb#yg9-aA*E6yegmQ|3u(lwJYPG+2m;V1QmD-2dzvRGwc$LJ5I9{++i>7vKOo@@*@Td%LI0 zj;Hme#zyld9T$Js;FoJYaNNApl+No9v7WXhza@XT3Z%OD3z_ii2VG5y%IG3l2dQw$ z5z8k?rv4E6sWrP?WAMzhTQ?PnB%qxT+FNg(dh}_5#UX(ODxY59syCe!W2Zz;QUzWt z$o4q?!S$JM$Bv%tp62y@^?9-y#>D%UE)cFKQ#rUMu`jKyxNi!ghJ`q|Yd%|8JBmG9 zEPx+TmfyA6(CA*j(SKcKo19~l4RNSF4Ai$CaE7?-1uGnR3U=58*o{Wc`+Of0r27oN zb@2a*_h3EKTSCBcq!+;$-t%a%=6#PlAdPw$Gaw;4I5ou)+=Uh_t)-P=w91)Y3GhcP z1V7T;P(@K7U+SnwB1?+U zTEjvARQ~pV6eRG?!;mD90!hfpx_t&sb0y4_PtPv+6A+8{+188MG$o|(rKa$oO2YjJ zq)pEheSuK3A@iX5G%iJ8q6k2!^&};?r+}>Lh)N;92{Vpt^_^F$M4R5iSqy*s_%m67 z)CUo?9k(eWCQ*8Ax`o?A7}C5QIuk00VQX#{?d;ENWBYfoS}k> z|95^DlC_~yW>{D;Xb)eR#}4<6zgNEP-_fuLs+8xWI|@N*A7xl|C_KI|`Djj4BB5S0 zAL_th&UJ`~5@!KSxVkqg!qB5VU0Wv~T7c>;G8diNPsGDD00$&! zI`QYgN0ufa3CP{0AK<)iEuFsy*f7qn0yJ!L!(#J4hvl%*9A~531k7Qt6jR(6X-ig2 z^hdcH@i$^n>-;)oD^}DOzxpCU&K=ChU|-W|^v2=fS~m9-Ub?D%=h*efHTcO}q~iHp zN1?`al#Cm4_XHB%moi0Kj`pSLc5me6NhUo01X8G6b_h(e#=1n2(BAxQ_?v%eZ)9-m zY}3qM?gJum0!%kiTm;sS^lkxJTilR)&;HRh^A=Tp{~@M~mtJ@7-#*XmP9NBCe! zH%KuM-1|oCZxo${uCqX@8X?`x3XlMvSZf+QHKeP81LFx`$1>jC)y&njBG}2fB*eUVTjGf@e+<&3c0;Vn{!e6 zVFg^ArowxrmF+uy&)Ln-$1w8&EP*bHuO|aW*~h!JyRttB`jVQHg{LmUiX3@L7wWi# z+PG}Fql-SCX$mF(z4NvAGJaYN2Rl2g`Dv0~mQnp+I?MX}0`0}i!|0=q`xxL7ZV>x& z=&}X+yZ$g|bXxf|*Rgf8qhXJ{-jT=rX1)1lPSZg3oO?WNe4zO>9M4h`T0RbN( z0%n55=q~4Q9kkST8q?rxAR#?pk#R~ksgh@`n#O~ zw{YO#u@i1ERx@i>x!=TN%?BALKg4drvF3Tkv%~854#d}u&Dx$1xKg2Y!e2@#Q7;{0 zGVsG#4anutj1tSP+j>~;$To0L$suqu$fa7IICT^1)svgZmupVx)pP&9RTae04yKhk z0ivVLNs%;R(3P@{bm)t~UyB3NRpUloBR~wmvsv8l%TT6Z+9hB^oRV~4& z<;B}?4&MbnSp^Pv+&2UQ+^qBtU^<=A3=EwzEX7x(=f z_pxjK?5wBVkC}|X^&$X2i1NfA(pfK&L#1eT<~M*X;y1CIUlhxa3bPqH4=N~**b3iH zz&G?e!!yHdISPgS^q=ArJj@v3V_K{GIsZG4LzO^vhfgm``fhJxoR2T-%_g-E0l1W% zpPGvUthmahq4`Y=H8S0(e%B} z%tpiVhVbUAQF5QkDwsQguz8YeOxSKbpcw@)ho7Eyv^#cc7b?9x0*2i(a8Ze)Eo${# z{4Zk)iqVnytm?}xT1Ip$dF^3*Sm6mMc70dpH#!Px-R#{y>c1)D7jrZXY60bN4PjL- zX{E6D5F3zsuN0#Mc*AygZc_YO%xVKVL1;(=_VG^6uuhPw`19e6wrRi|7lDOr7J@dW zRIAq+q?Bn-b869sTtcZr>nvf04D)_}^(OH3WvP3kvCtoQtvQXL-rUog9a0*3w(GBn ze7CPyYKd5Ac_A?OGG6_&Tyt$e?ihg#1d?IVAmurihj5_u9`-ieyZQX7WEJXXRW2;F zCI5|$;TQLkV$7evIOh53riRN*p}_mC!_eQumtG^$_}Q5iCXQjLpe|X zHGx&{Kg7Ay%M0(t+O~Nvz1Qr@Lo`oN#mXOcE-?fj`HM=XOI>&H4(O(7t8ohT1Tt#K zQ=*z9>V*}8f3EkV{G;sElh$l7-{xQ_+=JHOuKVA!I0kz4jOE_YEP;-|Cq2fL>oY*H9ODrW#yNK zyfwj|)t28-Q)Khvmc4uit%l+o{++QFrpV#kM5nx#^W%}^iJLyaZSIy<)7oLt@Ux0* zW}h@{`|2(Y;A>P=u>R*>$E4ZfqJh#(+mG(^*Fd=YpbLsZtH>+iF zV%_-b(U~j8MaNSp zMS$0cWm{j$*FLxIy-K6A!>y1dd$IUl36qfS)02}MXB)5>iT)h`g7LEwf3P$i($}o@sOJxq$-}`@n|~la=8*F zy&rrKhU%IfOuo2xG!%ZkOmS9kwAa{1R-zRNo+X0lR%-b@uX+LikuB@4)2(ny0uqq7 z<6cQX(eQQS!f+3C;P%;XI`&e5&&uX)upa3$Zr2*lkBaFj< zo_>@xQp!{}m64J4A0a&|neFC)L1cF+Y61MNYUvm>B8ODP6wQ&dn1~EY<;{PPJIQp@ zN+F$JImfX7lXrG3;P&T42?;Pjt@3JRxw0E z4I{cN+63ORX575j*nj@8IFJ9*2(PCuM?Sq{EeNBKliBt8i0FYkL5a(e6ERxx#hkI+ zd|V_5Y|oC;;H92r+VW+||2(nGy4i6WO$bZ~I5WqJ;KQYNym$w_e99<;Mn~vZfNfqm z;7Ywlwf}LItdY=4e_Sb+j}M6WNQ$~(lfZrP(qbvRys#GUTw~}DSNTOLgr!9g@gl_9 zSL59{Ur=Yb^dI(Klu!_6>X_B&-%s&i`WXB=wUBQ($_b|_04zS0tuQ<{MU}^tlNjID zd4uQ`Rn#r6ZafEZG>2%oJLj^2Vbzy%cKTlxA0x%KlJ)Eu&w^S()+@y2b=E)U-onR1 z8xU(XOZGAeIQq#F->x{ezMqVE0uSW7We`#a&p`nd+sBgTSNUkUIQiTbO8_S)s*gi9 zK7uAk%GhTG22kn^wFoQ}XY`=x;bP)=VbE#ZVX95Lt#B|Fkp)N8ZOC~7pB00vVH=o% z3u8emgOmj%XQNHZr>S9RRsbPME9gc^17WD@ZPm?dO3rW{VhmI`)s1E87Kc*fb+qnx z4pUwh&I_+sIu^d(?2RL87AO6M8S}NK=&sh5K$6o@QWPf?RBoM?)(o;K!8mHeV8ZwN z+{h=GbuhEh5C#uhy7#}Cz2y2s{9C#~*}RkTdjE>N?HqUfE7tzqI`ZN(5xIwZFKX1m z`lE8w=)Zpt3q6<*Vg6s7p8cM$vGXaI7V>su3HZH?28a+oi)?ain?3jy?b~G3i1Ct0 z|8}k!#lO;66wjG9UIqJiw;Bh+#0E`|op;}b2IGliu^1n@nHT2BpuX!_&qrnr!(ZIW zqag9j4BiFxREp}klkCI{0H1ffua6_aSqw*R^4~buF9Fr2{>^5uU-Xm_>UyZM@uypT z@{z4O|B)xG;i1WFS?61~pXj$a`iZFQ+Y0N3+=j=-SP<(*XLpwj53$e3>t_ssXYx;% z+0OvmBxUz3>GCXQ)j=`7ceDUM=(AaRS_!C=hm@^=`LEeBy;Y0h4}?cir*SR{e!k!N zDv5`8Fh>M9&Z*n|@#2z6*!va=(jaJgI}%1`6CZB@fQ*cx_^2=Yalcb-pQeCgCYMi~ zI<}5h8bIaf$YXxOTNj5Rl+YrQ5tpXTdkR+X`=`);;u2y9#Dd>*kG_Yu?2KMoziHyG zweaTo!bGYCF8rQp*pvysT)h49>21etSS90d+Iu#`vl*b_FP5K&qe82H+jN6Q!2E_z zJ}w7s4~$ZIj5AB5iJQky-;Q7#e~+^&JD!9BuRQ|?o}ZrY0?#O(7M@W9&v^rT(s>>I zJNLZYl9qdXoy1m*PwfeyL}z1%5U?+TYceaBL7h$Y{9K9^O#RQUW& z>i*ZU7`v>Kr&;gZBY?_>UjomIKCmcPl{g&ZzD}f3xd{*k& z*{!0Wk@ClLV#JIYM~9yE{<;dpp66^ocbM?d%JRa379p@SM92Yd-`9f*GTcF{PveIJ`28(sg* zB{Cf+hJisvcaSm;3;FhU>mgCusKcCRNJYu?_O(=dhie)wIj$7CW2Hl5i+--#hN29C z-pJ+x->LPoytf8#`cwSGvzdY5*Pd0j{9cJ12niDM`BJzx8(Rt#e@liVGX^Zgw{>v= z9HJ`21I8zk#1Na(kJWp#k*977KlUC+2$Td@_|aF*p_Z_e)7|9k8J>5%3)*!M#WV>) zUypHf&NC&~vJ9q4u6m0Ge56VnJE?6<{73`H+^mMXBz(KB`P;J7Dq0uK#`=#v{UmJc zSOIokB^8hB*@E>y*TfAt>ALqe12mCy-J}kn z@c(v}ARwaOhAw2cZtMZsA`^xk8;9myraaWqnEe93N2WujKxTr&gEbNw%`2hJtTyHB zxc{YJTQ6&kwho6H0PI2A#l~^%-Y_rIMwl;nzRRHF>eYd)tjT9Yy_ST#;f7~?!NVZ{ zYTvmCDOprK)G{W?ct^6(y11D^hlXi_W1Pq!VgFvd4IcfVNzN+r6Km6JVS+-I;&6sx z8Wme)@P=~l^l{q_oLfN=YkRx032w$C!*~=&-0E;HP2~);DpO@JOvk?S_ECxbB;taY zVb`}edSDTG#RRzT?@EpoQ$cRiR)@BLGrzq80+lSMP^!r2zj= z$AEK^(;y!g1ybVSTx0&slZPd~0coJtWNT_^%Uy(gh*lGRKKxYYV$Z{5Z%~sGojM_< z(HDB;5v&#oCi?-U=TbU7K1gbw1B+31{`*RanWDt06l)dIAMdD5l-Jk@2FBVr--&mL zb7i)m^iNLJhK|(8mBrA()dd-?pC%dEnNw1ZC?Jsk!g2eaSgW*KlIBG`p|;In2BMvK4|( z@9`W9Mp01lg_lC@P<8bs)}br8l^-qR>-&mQx5W$Tna#X_uOfGqzH4(@u_VM#0b2?F zWdalQj0Vzj%fr1oAg6uFT z3b-zS#bUt>x+=lNGCm;{+N|JwhB0L66hv4aee5jIJp^% z4LpkS1mRijiz4egD2gIHfyS_KBuqU^lFUt&MgQ zd-lVcNXZNhXwF?XfRuX0WSPb)-#lptAsP|D6DDJHx&4fg?;#}cyV><4ZZBn9a2`c< zt&xU`@Kk#32eX|wK5a}=qqGeYY&;MS@`HtCVz`HT#O)EF}-JTroY@5t|3 z*yvzz5SNtA7D&`i9M9^{s_@DB(~4tpNo4lZ4iFzi6YHu8J= zAo6^x>|C+=^b|8@3(#-hI<5yyjE&JrrhX!iz1cdS@b+;2<`M%dW;|mVo`*`IH@>!F zappJWO2wo5&{DH`@b{&(jHZBcob7T!PK8Un%vXf1`^2efmnjF0N>a%mQw=7EJ)5G^ zAXv$Fef@c8Er)Z4ldrF|?#{m#@m%>f%y7kVA9WYs2KosSa&n$OLS;=Y{y1V2G(`o) zAM!&d3`NX%Fmi@eA)+|eTVVS1@k!C{mQsCKOUCv#jqv>iewI_1 zn04ZY-Ww$jGUf2xINBki*nSDa`cfK)KA6TO{Jd(04C-S``7Ah{AOtt*5tjG0BH3~h z|KYnwj*-IhS1|A?Bbm)8jvn25%(5k?gejt}@Ey?IHP^TL2KLPT48f|>;-dc?LEO<#G2P>#&r?)X5neCoxItP1Ipbq_m5k6TIvxiN&Z!A3+tYZ-i!Sw2WP0@ zFK>_UuR?W@fl%2*4Rx)bLy38wUd$56#}Ypp zENI+W9y47Ga`)h``n(c3o^-mEqqKP#iYR4)n7h0kw`iPcPzr4BFfwVb*|eoJgsS93 zj|+*y0&(Pd9#*VB()0XEnBUQIJL87+g){+>p(R1o37#WWR8KP%$Fmt%em}ZL6BA>Z zk(tS!3XOF~{$QpAb(SY5uo zRH#|UAA|<#;bSLldN#|jexdX+btJZ-a3UrJ}Sjn(N@beOooDo&=L~+ z83Ue=NDib-%CD>7*m0WG`G3k)xi&tkzN%n4_*htu5fejCI>tacRtS|&)%J`J_OKIW z9D963_HOS%Nz2>n2p|^fJg4$k55nulM$rk71w?09c?i03_!aph6w8`fA$r1q10CF4K4;E(SR5nmhJ7 zD_Tbo0V0IOSmc*>fgQ>}8D#Foh7kUpe^%C|3fUYV$A*J^G(-xR2 zk~(RG&T+kM)5LpX?(!Y*+e^}@yzc`up_JpG(xfpDc}*=aC3_BOP0PgUL~*AJobJ8< zwV(oiaqjPVIU-az`a-ZW(@!k4DRI(M6SaV`i(ls))%*E7{=UH@j;tN@4+6eo8q;gy zRTN>Bf2K-mxT{*sn8YFL>6F9OeZGx341_umeQ`gj>zm{b<*(b4qr3V-R6kQ^6zAjqEh#MsbcO{TwrLlf1!iY3ne;8o3$)(EYzq}=p#&ssbziV^AzcnfndeijEiZ|0uK4ykpG@>ucy~Ch9GZfR ze#1@+nW8~3zGXu__xMCxci4fAp2>-BlpV=5Eg%nFh828tEwM#~iJI7y1l7dd&o|gX zqObro;Vt_0J`Er;Qw6bjCA3^z#k`^O(76I*U~bT{;)x{Q7SU^5ACN*W zBGl?RuD{}27|*~kkO8D$cnIz;Ifs_R%8n~QFl=k$?$0N`(0d)cI5Vrj{FXchIFjgC zk~2Qo56T7DzCMj_p2Phk59fOPOYR;o8c+RO!t#L{zhgidTh9ygjljbd+SOZ=+p5*J zx5fO2dlWxLt)1`eB3w6DshJQrg^p$7A#0Y0zwT!C_c_J6SP}bA9^n=#cMVM6QARKQ zPe^x;ue){xr3hEMI#(V*h)c~}9#Ai(`0~F457ZzkZ&o| zO=g0TUIEUde(`ZAzpQ&b#BPF#NUJ$$t3${+=*^qK)ak6@HH<4Yn`8HOJT39yF+lJ_ zg~?@MfHBQJ$@R{={hju{bGL01H70dI0;4;fL;*@EtE$|r4E2$hcR+us)t+Dn*rY+X zMsHP}mrkVh_9Yn#K=sCvpwYm=>BChLC1Q|p9`;;+{H)6ZF74%RRkx-KFTOY(syQVp z)C*GiEh0);(pEc^xMbdKo{^K-XA&`;Qe)HTuT%Z!u&6W%Ea&BM8b4(%rrSWE*wf=P z)?=#($7y(y+p+`(A)|5vhC(8{3CR<(G{LrZi4b&!aCFm2bpFA`UG9a2hB9rtG|s|e z7qL7vE~30aKg>F2*`fH5^iugUPg|!z&k@U(zyHj~qqO%FEI&At;z^p~-*5FX8MfUe z_HCi9@Q(voOm~-sb>+K{yL8^FS89;_-s4H{ckH|9X$}k=fIk|gF&gc~+ z@Oi7AA3t(?FL4sHSsM)Q?jk2^d)hB->8=o|YTD`lPzj$^ZJs7;z8@Lp-`{8!zoQE& z3h{SBMpC&Gc@e5iH^G4j@GPLjq)l7ZBMp#exM;dCb3)r6#x(KJu4oBW)0`z|aIZX0 ziaO}z#}xB*3ybX%a$$4rG3LdL^zhA1;KDZI&Pa<@z*qiB_B)`}U+Q{&fUVes!eG_! z(@k6Uy2-)X&1vDiFxl1d$&&iMnR3gED^S>Z;I+51b|SM8;hPF6bq+E~K@pLyLoZe; zj$9%;la^8)h+O;a@!RVWZY2`sI1dBQT+1S6Yvt%QZDLqv~3~SJ$0`cigM&`N`kq`d5$49iWgG2Ug~+yNdUSFEjSKl^Oi)GqCu=d4 zHvCyPY+}0aYWTCPL0@Zy#X{5fW*W~L4O2t%8-#edxsQhh%uw=MQQjc(fJ19j?-fxs zOMO!7VDJWXVlBNne_L65yIlIVQ<9frW)K`)7d>Lx9ShjXk^t5O+ z3OKn6GKN~S<;eLqWCZzMWe~F8OX0U$M0Ru+O8UIkq&XZK7UJyy7%i&jm-|as_ zRpO9uAu7{B;y#vdu`I3%1hAsi$3MC4e98SOIpgHPzrEC#QM;YEFLVB2+68_SVJ4nP zR0pf8=q4I4=cHEb4e;Q|x2|$m!uwd$`^$Q2*c1{yA5>UJh?tv~ z^V7%=dJG^lBtrr>hC1~l=7RZq9@o11{UgMU_t#HRr={g@P=(0P7tFi_%PJFJ&5?Ib zQYrXjhN&1!Mb#R;3BqsrI2UUPK6$hgUfvW{3t+_>A#ZPF3KPRZk2U1>%fkr?D^XiT zJuEO9rf_*7a53*IHcM>L?16=@dV53{HrS<6(}H}gPJ@U+eo8&}E)ke?%m1C(E=1Q$ zE_cMxR$5DuHhZ+<{l~!*Ct3C5uCs>rz=WdFQ)ksm!`$VVYc7g{Z(9I`3>{i${kwDB z{=TIkRlGO}j9ub`n*Ms@L~51D&rG?U;o{#YB~UrWds{oaH(GcR|4j+Uqy#s}D8|rf zg6p{<`ZKUxLQ^Qc{3lpCi==9TL-#ELRiDeQ{7jKL(TNw{8O@h}5Ot3p zACms%KNo%bJ+vYf(0O_ed6h#yh9|Y12pjAmbb?^r(>%w2}U-^C@`$q``34!22jI zbP#NrkZ83h4fIYN*<&&Zm~bvhh;D`JT6>3OvbHh*O^^|?uRzMSlm~qH>%{OFepOj`RnEt`tgy-ogQ!$>l`j)LG~b--T17 zVMe>|xGT=-9rUYdacgSkK}Az#!lw)9pk{zGPtM0& zHvh8G9OxfUtH(KdKI>$?t@)Dt$?M?yHa5Rd z?&4-KB_EW9NL5q11+MU;4S!ih^6 z=>!-n1e00b(js3BUY&mK{pzgjU0c}P60v_6$j@JOua$Yb@}$ov!6>%8Mq$3QjV+>( zyk0*S_(9o>oOTyI8URHc{+jF>II{H4UTE_)lIq{vEB7t<{C3#GLgJ`v&u%sO=gwV( zQ_nRh3_=o53j`bQ2?hozCH4QOE{L47?enS6t#F09{Far8@7J+ogolF3YFXr-{&qZR zx8EQ8daRJ;4TVn#-zRQwf4FrJ*ZjG)L8Vv)v*5|(AXnC@Y_O(7>+?w;hL>K0j@VT} zhARi5+kLn>9KagU-cx{Qg^X~(qam;26(!qWS3^NxQ9RV0+t4}N?KvB)0nxQ3 z+Dn=szW0qu&8&l-c9Aa923ozU!)}~?y3z)O=DN`Nsxe*(Svl2)B1)6m(x#Rb({e8t z#Tf~E#|$7jD{Z$YvQxt4*FSW6-G=2sk1wNmmfIl(e@x&RgP?dWDyV50hKk83K)OvT zh06!M2)G={<|OL_q*ulSwfiBp3HSh>9YeBx1YJx#o>oJ%?{bVgZzyHoUW!P1);+pD zW@a0|{ccDZE%+-SM&TmHMWF&xjQ-Pz;tgEo(xg3*W?YMv>ae zJjz!Ic%%-qLTz+#4Pbs8{IvUHK42B=+ok#}Dml75>2#mpFfcy$tv`%U6niXdEt`Bc9$T&j0dzdH zi=V+mx%R{PEoowInO#{eb25+*;0PKCopYf(^=;E@@X{j)8t-T>M9ws#8Sa@Rcet)n zFg~7is6#d%PS(yGoGZlckj5s+&w5^XuW`0cJ}(^9B!ml%3tW?`2=2L%uWzA{JK1fQ zH>eJnD{6N!di=F2{X9||qd->SEutM;`3<>hz|IrgA6$Tye#v%4VecfX%};+!j(Y8l zib={Hhv#M`S!;N(e*1%QcHwVmE@>^~9lqw2!?WbV3n{j^^!=QCMB1Jq@ zs5ClImDbLf6(n%vG1JK6d3X9VIQ0u%gwx6!2~Mw_H*SkjzNpJf}>`cV-)vUUc)KMz-m z>7cn6_Et9@jiZ43Bl|xUKQ>SvdiPiM$nd=IeXs5*`xvcAzn1OI&8$_20iXID2%Up< zQZ!&KIkgUf&~YvMw26}Rm~)!(X9D@y<*_Y#Nv{Z{iN2cyvxAXIJ=LV|z5lR)=x1~Q z(}zz~(wqx=GY@|!&&CIVh_6JpF@<|>*MO$v@B#7~!H@h8Hl+BkzJW#0jO1o*xlM?0 ziB36N^(t)AlGrgLwnM;4wHikd#}%p32>KcHa>x?Ib1h44HtQ$SN}r@Vp&#Zg2=lwO zb{cym$G4nn7D>jO7XrQ$1rDw1%&Mw9{lB7R=xc$`ke^NwFX>voKab=5Hi%XU5aaIJ zDyk;hpT#R0PJ*K*X)bc+p|5wDVGtFpvhSS|-IS`|aORXWtm`>V8;&AAm)E8I()sc9 z`X!g5EU`3nIuXQA?pWgrr%3-{egtQYSaUUL>dvPx+0yaasz>MdXH` zdX4TEm+g*uNW=XhT;<5`!nq6>H|?)gY;QchHgWTmg|g!0JH@bz?;ZjwMb=J~J0GOy zu9jlqSTlJZq20X$vWyFMPH5YsMsiP)IF{L!Dk&HLmMTweA>-m^yOPzy*C+hFdldA~ zWvGY#sn{?7Qk}bkX@Wg(0tV}_pFS?&=jBdsiR{owfR4~$KYX&T$ORKR0@5DWv6egs zTSrLN{{My|}P_zH{)6InHk`z6E-UEwo9U#r(?(5Y9iLyJj+zUmyEHJ~*f zvz1lXPV{E2&P{s_;YwIaoY#Y`kfo2k{?BshC!F)q^Uy<}EMd_??$sBARW(h*d@(*s zPxu#sIv0=ycs6P`%fL8wvzp>?!Ff(Hl;Zeeo9pUj6iX}!H`BHmZf8! z3{o~QUs^ovOB-Um*J(2eX2RZ&kzi<1X(Sj+6$3~&X)=oRhnrSYD&d_8?p)hQHXx91%cqO>J#-O1)Qow>sWfq9E8i zO%;A_Nw$~jUPzi+9+myVtyk$6=*9;LYNqlZCEIMbB^i0Q zn0cfCi5h4*);c2gKjc4e|O~%EAay@2`zaOVZP7n2Qf0JssCi zV~qmG#>TiMQ;~u44R}D_X(QIpua5MO5eW3W@MJc_lf$J?K$02&xL_Uu{%EfLzz$NV z#o(B4&PCFf&0cJXA4^*JW=v2eZT_wj+TPBNB;+T7E|QF64A5ryn3{|62Jkl6eC zoI=`Y`%gKRU zPbS1WWXG984ZdDvHCBJ}`TYnGxxWv-+&FKkep~re-!uF3+C9wd zC{UyV88tPQf{An)1ni4z6KIr_3BP1yI(hi?PWkoQ^N7R0j*Qr?85lYTc9^z|NGi^R zp!POH6Y^8^q;deNT34-=mAUTl<0IL)E`WC{v;y)kX-*IIc4<{R?fJWx(ykHf zrqC@w?la^y>d|1)vWlS~E!IoQVkzPL6(XUh58R=RWlR}bDU%zm1qRYio1{^F8Pse= zk@0@DH0!$x^k&_ZzX#>3jO$DUQ@^Smdho5R#uPxlgFYy?8hwjg^^pJZK84a)_&xoX zczPWM+x~tcscnw)z6@~8y+0zuEE%EW2-N2<)7J1E|E2b9sSN(;<&Y)#LCp%xoeh)@A%Xyx)drfx!T4NSOw0r-l4-QhX~%a0vp+_l-5Dr za;@3=MLUmiI8+Pe8&#y)G&6q7vP3JoJoJ(Xf@!guS&QjRZ5X!FOnA;>rUT)j){LP( zS*Eo~coGrifRdFhnaE?2VtL2tO6T9N z<4m-c2&jkOIlmW{QmE>^jj!caE#earGEMAD>`NLPket(-ntwYlU>uoClIn_GDN+4XjoAbd(em;^QnaTEFHRQCG zDx3&hEv2-1Z9MY4-UExV=KI$jThQL2{I+5w@UEZ(-==qMO(KS4RT{s$mT3jI@jmHw zZ*e6e!xK45`zJ9@p}_%;e{8Q1qu>{+;bb^&DDm2T%_;@spY@_H!Q&a4*dGS^kCL&i zEeBy1Lfa;j$?fA+e-aSMbb_DN9}{Tb0c&F31w5J&5d93}_E2J89v|=;In-`FX~n50 zS*Ec6wkM7Lj#z8m9cz&%jm%5H7k)fcpH?unhVbBR@I{J238nc~fT=v8Km;W_pchIj z*g88P!yfT1srgJIZj8Cjm0wOW>?duYY2QH7pTGzlsd?SV+>O6~ll;zHeL9(MQtMc@X6-{>{Y;26P1WUV-it zb7PTXux_5DKKt&%N+VOTF+ku@x{JIVVv5{lI7S-h&SKbi8zpkjmmPQ)sUpCY#2k^L zK;LU4$DcKc1V0K*Zz1W=OJsigAr=q#NgD~~*TZ@JQd>K@ELlG2v-&;drYzon0xP9L zXg^KOY50=g@zGamf|w=y;iY}X7b{0nvkAFzGqpfG^#ov2dT4mQx(0MuYMOj{fSv(q zyY1;R%u99TXr9^7Yq@;R!Jpi|do$@)M(q$je3`OYQ~6->soP#Ao@iGuX#{l{X4#(N z>f$0d!yjo#NC7|>4 z#v45jRq8PRHP`L;YX?#w0395#eEWNMrx)i-U!77zlK>kh}qjFFMx z7^ivD%sy+DHH)@P4&g8I3_=JhRW^1+c+#V%dsgw(<0UfR16pi**s|GI|tCacOeq12i?a=QKG;&k+9^BdA^xD5 zaomeQm$)`XnJCsYCf1U4tj{F&j6?1xI+3!aHU7!fsxLXY7Knx1)X9)an zzH2OOUFMq==JAAraTmAsDj;y4UB9o=IbCjeaW#?Qie0EpLm_KvM54|k6NDCw`DGiDLD#DE17Z-!^f z4|IYz+gzesxnR!&NR|z-9N!SsD0~{}I9ros2uS*)2y&Mm|QK2E7u89x> z%S*W^11G>lyiMDW@(pJ;>%?WgX2k)JPg-480o8aCoEw;n6hMF-@cBNJHbxaBwG=)w z!UXv4X7-^4Hh?l*D19}Cu&9^hcL#s55Yby%0?u>=P*gX5nVjimF8i`6RK{0QwBNgo zO2Cpo(<#71?AJT@`t1wzuBCn4ZyswQpNUZCb=h(VSvtmi#PJva-+?5R^RTl@@;k0q z+g!AY68e>8@|CaNyIec59n63ZVEH9!Yo7w)W!K@K>T(cQ2WEoKRXI5#d7cfiCK9OU zVH33ILauR_=64%o?fVQy_Y&A)-kHU_2@9Rjk}x|Z6RCm14iBXu91*E9A?hnn|F&Q? z3T0*YD@rl~ujaa)V-dY)2criLWIgx2d*LAlQbM?}PVBEoqMrw|X|3-ErBS{}v&$KH z$2?CO@C~iF-uZV09RF_Z5Rtj}Xt}7ng|cmDzr`kQGuL>6uhY0cm>5K<7j{(%O|4zl z!qX{8uvTCMn&XyjmbFVNiFBekIT`tj<%}apD!|uk-wsR_O}GqHG?I7`0I8>KfWHr} zECOUR1t5+8C)WSrwDlP}EnYbdbi%Nt?QQ&AkZHZ2al@(#A>a8ev;YD+BaNnCcUU@t z>DUcPeX!cI+Ogknr`HYcW9(aheq49;zKvl6gj%=u zqd*?}FkioJzwK?OPg^e^pc|`$h!cd;%8HRnYq&=vJ9n}ZJNvjqszm~}0Kn=%6e|TP zzj;IiNRvu3|NVc3u{%fiJo0=NxOcR|3!|M!94&_%J!-P_?eke2Qkx5ljHQ@NXCN5*F!Y;AEcL?J-f_XOq;Y%E@s;{ zj(q3)$O)PR__1A;DiUx_s~M%XZ2X`R2+CIt;?u_ufp6@8MmJ_5?f=*H`rK;eNSG<# z)UH&LDQw(2GAJV!JJ;zMf>!`2*vzz4?TtC!aHw)4&A;QGgPz*V-E;_0mU;>Yyldq5 zj1+%T5rAx8{h@CCtC{tuRb!N1Bk)DovCPWp+KNblZr7}<^LaPV6ydX>}$`<1idhLx(Nt=~+ z@tz+^qrjlTVm^riU;O&|9q&!_uI)hoF4KrMI7k!?r1ONOC^AM)5|!yVV3=vIrqe3+ zoQytnwRE4`ebIuPl55T;t+L87^=?E$QF=zWQSYGX)dXMW)sqPRd0op$l%iv9_6FJc zh4=|{rSr9iUIP!*UCSZlG;YaG8lTa09@zvTwZN!h&}uP}<2+j|2YZKAQX5sYv|FjF zl$kdTqiHE|=}lp&obq=Ko_bN@FPH*{n6upQj2c88uwZwdMWBr+DTBWoIiVnk+81_h zZn>vlR?Er)UcXvwn#Q9qA>muQ~m1#!%NeR(oo=3pOGb7eO>j)GCTMxS$v| z^|PMvc|eWvo1nR9YmE5u&|SJ0x-~k>927n2S(J{o$y{lX_r#jX+eX+bd>HNx?%=46 zuqd$H=BJD=1$KCZXZ#KB4GMjneGw><+A4hO&q=n5(o*-+NI~2Y_~(@L@t3=r=jusJ zBzCT)sV97sCk4zaTI8O zOn=nD+#7yYL8hVE(p?$POR=6_IDyoDU+ki?O-q3J5g7})TdA$UZ#VZu!Mrnv+Z6C z1MA}Pm%Yi{N_o2A{%O-IGisNO-FW+&5^Ksku1+G*V+br_^KfT`7uiVz48W@6JLDl) z2+=*#APpyZQ*r#$dv2^Y+J&b>$M3y5YC1hSMlK8$>efUqWz$KO!wfvx#x?pU4t{-0 zhZt~OoM4LQ&lUBI(xi;-BylF^BX7n7?n01e(%$B>n((FpVGeM<)>M;6*y3Tz`UZc`vL1tSdk{i$-^e@CsLW24 zb)WBjjIkHu`ctY2VRZYUsE1j$|E*aBS_zl@glg!ecI+1wLlChoG?l zK}_e#==LVbQYOKL%O z-TJGx6-Hmhqt{0!Y38y*MWooDax&k29Q1A3Ut6F&Kq_vv_x`)UBkyt1&jKFV;veAg z9K;f7UbBC?Jf5?4CPC{BO3zF`oArB`EuH=MEA*z~L=NW(k|E+dbf)8}@23s>7xEU^5)?nmt9K zz?Up_-c~6NwaU|l$AXI@K8ow4W1JUXl3EElH+0;CjyX>*)Pqyp(kd!xf0}OI~-dw>z_vr+BW~Q?6qq$uG9A?L|FJmVj;gi_tlJ3 zw5YOPY^~ebmrivEhP!Ut z2rxCVNNM->pG4LdKkJ*nVFK_vpB>0oseN`=e#5I7h@e0fd@jkP-#q~}7EJw0N1M(aP#aDt-@Q2a&ey|x*iCnw zw-Q9cF0WRqmyUj)v1Mb~`MJAy4G$Bj)0Z!N3+(q`E@71W=>cdZ2PzIkcpM{AL}g*( zC*NmzFl;I`YUXXndkxFJt!@ZVq0)ls#)73BC7vT!#&~@+l-SX|Ef2z+j>rDV>8~qv zc4CTch9qnng$Ev`YRp#>#URVwdb92QIOuny``GYwD01?+gi$uFz`zZ>!a)T+b>E?Q&H*;>_2&ynF_a-(#WX|}efhlcyVU0`^+Hh=T7 zLci5eI15KgJYdRwxhq8E?~I>@tY;LW1sL)sN{;fBl!X8IarN&_`^i}mo5-yx-S0lc zZ}nlz+tGOIJF7gP@yK=9@_y^enGr1gM>jE3wo$|mTE$il_bo47`f#BF_o1Lv;1BD&F5%JT$s6I)!5-1~sod zZC5V0W_)V(;z{oK&#~**s)HSceZg8Th2N!(tBBvH6tH0XxQ}y(z3YJ*cs&h`<|pi1 z_rGhpS!&zsiW2#6k80;{Tr0)p&FW37G^OCDbm7z|kD~{R`L?x6{VUxO)%ChsE7H^w zgjuc(h0vVPM&N**>2{P$jk*hTupu|2uWSi17$DtrH`%+JQq(DYzCG*l+DGt0b|haxc?knzZ<$OX~mp5w4uy1U}yW{>a>1V)(u|=Nj0_ zU6`|VYhr(;XA&g>fwTqx@znSHl>~6zFhnk74xRYxv41^{7NeP-1{m;TiQ}G#ow?pS z@iCJ9pp@rg-n0n@PXT;XW6%4f(e(XJ zQ{!`K5lk%85|_*e4-eVgudYfpSSWxcxPW?P>)@0uA3q|Owv*$l1M5ij(iZeR>97Y^ zq6&POLe(?Ac}e5mBALUKXXF{ox#wMaJa;^vA7!sYEp+{S^TWMDcUbcKrKOX~j}ucE zM)?2UyNv7xCm^}j$5=>~l@Vt~JW@ZUE}2RfS%bdQLc!-MPSgj;}EfkK_zqx(PRmwW0QFLBC9#Eu;e+}9m7vNBvNGrm*`M> zL`_pCY7@7td(4|&N?dsJPykR41M-+o5PSW%P+Z)e?8$(yYzt_e0)fbFEiV~8QpM|Y z6Qqeys*{A+xc}_g8J5q@=&=xs*xO?0gosMqB?57xJwD~_y7{WKmL&HNX&W@iR z4DJOKjTbZ|4s(?9d-l!xh7ZEjy0=$jWc-Ro|Nb27vvv{qxs*h7-jA0zfLBaOra}f` z&5o5^(?JO;O}Mmc-eQsS47BO_#uG{>br%>)5+o>9F6X=qi_ z?Dv~q^R)ThBFM@dlKepb489WS!#yqg)o0~S&|c+}44r#~?rk;&rEnv6Po;=nNK2}` zCAxHk34U;iTaeMf^t8~*gG2wtaH@T4+vc`g)Las&E!y|6&d+BxYT-U$Gw0I>UegT? zvzGr}CWzEK7CW8&g8caajvW9J(XGkcBtY`(l@JZmK(*1$fl84|!tgi0I9Qdr(!mt) zgA*i0^=7Bk6^Viq)O&m!CE}tTAaB_1=j==$BD$5fzN&GraeK{Zm;OViqmT|O^xZpSfea23vvpkIQIuwJe@OJWP6ToSA_cmr=-+(vQSrcfeaYYHfPx_2x>%*p z_UqTLwIkntr(XfZ4a%vHUStBMaOJgVt8ieDt7PQaPKu5 z{rc!>)hd?u4Bm}qEd6I~^Q*1kJ?=Hn=Un9>n}#zMSSq+--S|b@1^W6Z87~Nnjnrsv6ilS0)haBdOmT82mCgj_G~4Hgv4a z3}F|x{IGWs6B6CtXw$~mxH52@E6g8+eCSv)RGfv{(WT^2bP*}}WiIDp=@K`k+&AP| zQ(!jxDdg~O;Q5i)hrMxb;y^)_z!0Pj(rqlmZltr3jjK=B%^TD1e|#5p!hNJuc7jCP zYa#&oDTWCRgkl%I<`c*7Cd}JPW$t`j5k9YaT^Dz;z{4grm@ePe=o~<~zp8)Q*iWn! zSL*$j0TP-bnJSf@HR5@4ki3ygENe=~TYJVFtm7cDq*WU>cgXzDW$`2U#AD!xvVNtO z!nh8PeY&%)+dH=#%&iSALP@3Aohfx$J@p*6abDZmtAv|q4)kUD3nGzVI( z@72Yz$J3*bf$t5yw6ruZ>P#lso|Rd=8JtU#63a%+>@eS#BAfQO8-$>TO-j^qC*+hc zrw4%e+(?$5VOdd*8#)iUWv5K?PXUm#9(JlT296=U2vt-(A^^iOY6-$uFzjBQs5n{Z zbAm6<$Um6s3BMEBh!_>I5KigmFR+>~o&B@?r}|?#Sbmy+GqF@{MCDW(;29CEe+IXz zoqJ9rSrBwbW)i;)fAKK5nbqs>e$kiaR?1MnH4Ta zT2xA;YNR!6glm8<2xe)>6$X8m0h@gny*?Fi*c5irE2AsxXrr2=*B}r9Kk5oZv(>M15KKV^}5nUkfV! zS@#nS*NSk~arE~=p$lo9p$5U2O1fAfJ}_l*At}ljH7uoI<lsweMBRk16+#nfmw$ z9}HXC5PZ%jkDc*Gkf*dNdmshQuKawiKIumkiK}756-0%MF@$$;a!y*gs zVt7gY=bu%tU;i=2s%mapyW9@HYa*?60wUqbI3O|NO6SPENWCx@*VZu2(JitjW3D}a%i)ak3@jhp0MI%8pSZaL#P2+deH zC^aFBFnMEtG`B@xZ(-a&)HnmvSjRbTI&R$nQ^&iIyJa(PZTthLwGnW%0&|Wpve@A| zv2eLa4Nw;ni>8{U(1$DiHo9sA=m$Srf0@)QO$Y#v8IZmZOo|5LLPC&E4->bXWUCfc z6JNq<-#7dQE^PahNNGfWC{zU%yktTL;Ci1RKT+kvn&MHdr4Ym{D$8GjH5F}FNG`jLR1S>HE;DZR_F^u~^w8o!CmkF7^&8EZbzi+p<~4D1 zaU`VMi#_Lz`@`2Zvq=U(bg66)9lyr-i?bwu8|uTdJlt-RwBeg%@s zkFix0N`8FOdb-L6dsyk3t0%OgfA79EDeIsGBC;#a>Tsqgc<$DL$rNB=CDvD2f7BQzR!cdYDmt=_@B;O!4M66u z?*ZbtCXy9}bHNB6Rrl7PSGdrTqGS>P0&&*l=AsiZvYL==$vh|$#z<&Qk2)uOY027kew(hzmIwMh? z&*IVkt7}TnwFuR=C{B~Qm-2{;Jo54K_3Bk_y^lMqabA$Jy`(%k1`c+Mn&t3r;v(zf zcbSp0lL-X`IZWu{1JwyCj8cN5uZ-TO(`g~)$1v(8ylnF6vu??Tunbh^l*-{_OXA2f zJ1!HTF6!)+AW%gcBM^k5?l}#2bpbP+r1o?WOo6Otr~p9B=);WDzW`t(7!=;vh14Xn z%4(G*5#b>RF5u-}U11Gvqt#9TL(#w1_yoCM%{nm6Y9)L&sTcL;!h=LHVmUIL17Z`b z#$4o_S<1xuD6k?Fbch)WxMoPoQy#dD5c><_$-l z=PdJ4D2_3h@{pKhm~o}3;1lc*OVMRFWf-tTQ=waB^e_R?(!va`B&Xt1_y>+il-wXH zWTuihz07!Td!Wgrx*t~*l}OnNJcNFcrk9znyRM`1#NGK})Wr7N{jDp8+{@aisr!RT z7$;Wqqq0|A-OxaXHLuJqQf%^O4lIh$dPeSQ&&YbG(JrhNj>!`;49Su8pW0uTPDIF zDqaw9EcrBS0R3>-S`k0^L9|9qwi*s_kDc{w(tXlIWnl7^G@1oCCi@p88^6l120dPhmLXJ3D!W zV~QzYkMpoC!hvD-#-%f2XB2=)30|Kse-iP4@f3%utmDM+U-$f6*MV#vA zXQ*j0qGyb}(rL}Y<{ObGx&3vHTzJ>p>G43FVw%<>o#q2=y%&Zx7|KR#kZec=a zhWpW3Yp2MXTBhk3&bE&6)6Q}+kxn*L?1WdCILh;4{pDmoqHcq6XU($A{j}g~rhL`R z_DEo*EGgG2PujeRrb0H2UXV&Y6}~LtqDd*+PX!*#hX)~G>&syU9Mp}+wd|{vaSwCD zMV`&Yj0V>PNkT8h5)OR()-t~t9=P(?7%AFn7loA9rn|_wJY`9r%V*b{t4eHiDm)1o znPvnu_TRd@Uk&Y`?Nv+hOA^L--mC+r)(o(qz8I;mg-2;bb9_)J;Eab!Boaw!%Opyg zYD=UBA!hg1e}k6VO1>3F$Is@3uq&RIpBL@pDvGNmMKVrM?rfGaDN*2cs^m~w9{*G# zB1_~MZli5o=s?`-Dv^vR)~nZFMmobrCI^tfhMe@qY7^_fK`@;j z-7F6UtC+Uxq)t=Ap`7?V!5sJ@X=U*CknfXnll6)1?{ud0wO)pjwAAPq?W9yIw|8JB zK!hc1LdG=r+z(xpLo}6})-aJ(t?Ijk^ga<^d8D7-&l7JeKdq1YW@tLJ4g6}2FiCzv-K5br4$SI%$Ur(|hwRav>`I4f@QeU(oM$u1>elk#_c8y*Z%c`vTEWvNpz znQZWQfTrK(Bc*qUTx- oPL_AMM>rhg9 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

2lz;%&@J}Q&At&EAbt+ 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 ApPpla;l=<)q>SMrjOY<+q z@2bF(;v*dw$B5nFi%T#Lm98P^yD~ap|G_uhA*EN?B6C^9Q;N_b3Y7xP({r=GCem>R1U&NBH!1=hB`El@bB(NI=o?HM;RDUi4 z>8i8VAe*D&dTx+Nh8ksX`=_=B(c7 zGq9jGCuQbS{bD@zr2}p*7YI)ML1x1opK6N2r;!UeU~u7$OIGIl2*dWQbz4#mZ!E#p z)2zQFw@91dVqfu9Q)5HKo0%kQ-T8_b=FYFbpSy>kYqGV!PYk?~jYaP^5dq-q-5ysT z@PZ8i!vFb-%_kSJwVk@an**1bEe~?QJ5n}IuOM}N;wUz2cEr8*weLM#Go6PK5NN1& z_3RjE{FVfT@p(yIvP@!;ki7Lj>nZ>aY)qYwh#%-|@(({{c>w2Fs`kpS?0qhCWXad_8V`obr1P6Wh z$o(^47C7Z6+YUT*Z?LJX!l1!S&Pl0k^y%q=DeYk zqkg@b`yV9`p()t1k$lAL4!U*lk%W%%TA~l=JWhUS9aa88K9?4>mY z87(Z*WRh)8dL4*U()3uWa`dF1X>K%B6sS@a-aKr0UK11(21>p@-F zLOnYO)dzHe!g!g*@4-`CGQEaWnhT{a1gFRoP$A3#6@nV}9QiLmY$=1$Z8D*XdshU3 z{82XcKgihtBDlRe^v=xR-m*pj;##7i2NVT~!}f;Xu=%zZ$>yP0vH|8jrWu5I#gxAE ztZ)s!zXV}K);7Cn1cE5{+^&5t2?H+HaURw~`BS2J4P@;SEN;9t41_24b3aR}*+?zW zir=C_yYRmZ3#0cepU&~|S3;%epV&*nS{ZF#Jw&9xYO0~I!pll3#nr>yI>h>d!06J1 zyjOIJ*4Z@d!Vn6)c0>vQp}3kRFjw59>Of*4E6YPtOppF<&EC#3;$|Owb)%2RF&QO zb`$1Go}8qSK~(f8(H}kAp@k7!CT)lpDt@I9{}V*k6`}ApO+Fex+gDa@L16&uH9S79 zY#Pc;4vJ1HB5-Ky-pn_Ti{SsBxs~Ngu`e`DdK6GkF!Klw>Ett60?-^=+9{RD!wxX< z_(wx508{@8oL%vgrlh8P-$vd%j`kZmUK}-YOhcedaHEPMw zD0jpmmUx=_lMd;D8E)DJ_e|fv0tq`&ni$9fs2rJ?z#j9l>$7dDdERgfPmCqwT%@N0 zkegYDR-#=Y2h&_3Cd(9PtQ~*#K2Jq0DMXZ?CMqQgZx+Mkh}^-$06Lpwbbn-py;c+M za3lnAeMS@g2R7Tb(j2ti2bJ$659SqaF7m0?8%8KN25N0T*i20SRh(f4B%L>?mBrYw zD1ZpP^Cx(HFM}#`M+r?P195Ko?>h}b?1y>4=N7eSC$%9ggzAGHhhOrxSV~e0)ZW$8 zGo1PH1-tj5|OYN-N+`c*3cov zC3NtQM<~hgno1LY-|AnGu-CHNH=`CO)Z7mzt)gjG=m*QgyFZnwHEN>2l~>jdxU~%K z?Ge@1)@m$akC(t zgcAd@$yfw{XhkZ!-HE%AYaKEMcgp0(uc!_Mc%;rYV;{T7P4?{RZd z;<9!6wEa}7YZy6d2$u0^2EJK08VT}WiYbE8v!~&dp>aNcSkaNxoG^1q4EXqYQfVW? z=6!(-2#(x6 z^Inu^c?og5`OM6+S!ZM|F1ue zM{nsK-W~t;Zv3j@f^AAtOt_VqB$UGZAxN0IP$fckbxS?)$>QlBS5QRmDyrU1sgbzq z+PU^ZFa!kKRVb{^S^vTUKP!wU?)@GpU2(mNKnke#!+g@k=ef32vB|QCgE#p+7CoWZ95V za|Hl%PcBHN6kz^mUuJL1D#6yE3jA&HvrWWQ7#&x3{V#kI$*to$$?cn)sCl~*x#lGE%E2wW{o5(g`mY*^gqMU zZ*iFK3T=Cc!kaj6gt+}=vg7Ge5UG5f0n-`a?g+C(2$jWp69um@lDn>pSi>u2r38wK zzU^oUJDH9y(AxE%8P4r+IO>sf2h%30hL6(4OphBf)CqnW|7VEB#Eas&2tXr%Az;dy z6o8lP;ITH2i8Dt|?jd|K)t+nMV6hC7OJAvVn04`DLCN9$N+VauV(6g{#dH&*xVtAC z4(;{^$&i4y*{k|L^D!cOu z*0^si=FB-`TH)rF5aIC_@HW4wZzPl>n_5V{w`J>vUyvSH!?g%Uxc0+f;<0)oW`qMx zEMmW*EP$G5`vJ;x`-u2ZD_P8uW_%{!L^BMUdHTrA#u4pWTM;d)j@M#Nx`o(NeB3z# zwS$8jUBr`@ZvVXGdDuy%*;ysf7WcZ_4h(c!QHN@TAAVK0vBVhf^Jt>6vRaD3_MxjJ zIQo;0)nedAGZGzLhIi@CYHtPrF6%8Vk`D45EtX_4akL!5%N*x)uqPl9^tL5Qpl0#P zMu6!&IJ}oY`q}~AJ52x9(oYhL4`wBl52>sSj|4}Jt)FrRUMvO0cXf##atv6KbLE== zzJsmjN5H)ZYy$)hKIxqY4vylSxeCn@M`F@c9qJ7QyRm=$fH#(fnATaFv}!C6I2mU2 z{SRFKF9ceq6Y4iE5|9pK*Ea?j|9OWt$-+?U!6RUGlch0+EpJF2Z*-3oA?&Y^_ZnXf zQ!_1+$RrQxpQEtN2IF@?!GO#18GP{2eRt9fTUU>?*l=F1Qd*{Jes0%39Ug)pldSJ8 z&^5aU32!titkzc=n@i*vdm6dz{c^BG0*nt@W*0Cc3^W$FXPQ>fh>Lk1;+b$q(kp9v z@Q@{+V86ZQ_TCjRZB}b$66>ZD3@1@M@fAAUDh2jixAcE{-N(7u|KVWp!Hj|#=xSN@ z0vZ=A_l_sWGDg2`ym?mrMq8E`9OuZ* zLE+1|@3eHS*mai66mx+=VbYQd1C^B%1Y;qcGI`XM-Kd`DBr zKlClSJ16IWTmkR}*_Gaj~V;n@!FqO^tmI|R`rMN}OR*W~1RA;}}p(MGi!QnV8QpZR&1aX?n&Kb+6 z0&{HQn&SE9)q@rp+wiG~ZZm7UE@CNM=_Qzih(&h3`31sIC&8j)%0jp0?u_HN-=62b zH&bB{$dHEY%4Y^kOm=YpBU3T!JSdQc17@w{v)b|}R(N3|3l}W?qnm1xIgAZ=IkmdTRsMkZJdH?d2r%{6j z_r~Y!X$?X-^b8_Sc_2)s_b=QMPd4VwLUJj8B%+RtHaeCG#)&D5Ni)#$9d#I)+&u$J z_O~y3PX^oO$5V^L`_(!uq^dNiofmuV3>A5I#_x3)anB2MslBl>bQ8z531NuJo@$gX zBm8dUS7>5IkVnfkx!mDmAF|puPk{TJUpV8g5+;1n?@{MAjaJMQNz$ZQ-@WaXg|4o z3J`QD5=NUUEOd@k*wF{*xoj0Zm#Jq*WtC1n_9t_uH0qV+xYSM{&?%eJ;Nn8I6h1|` zeqv!_2!XsM+*@hiWT5_QdnYo{wu?&F#Js_nr)Y}DPvtSVvs!cPm;AM03_#9-3--wT5Y-~D#l!BgaX#BA+_$P9&-y@!&_vhx*D03{0 zM%Q{?w%ke;Vn%o@)UWA}Vr>RB`peFO1~r-OYbM*5m-w;6#N6a-l6mJBH}LfM8LONq zB%p{WbB{x2RBD5jHer$|b5iv2uicJ=I-6|lt=o}yyMyEig@h9RcTupw*#m4}bYP_q zSQ|BW$6~S2!@4MNbhP&(hU^2t%Juv239VQOng*UvDdU=7NJ3?A6Jo>XbqaV#q{!IJ zeW^hrs0U0TR`?29Tp5Ea-!CarPZ~M40^~LpalUalki)anmplf8@ioqr>eX1cU4($d zq5L|{NZ52v((g31=zze0c)*EiHvioiNv^Dq#b+(GVtOWT!D@XI(lu<|6gnT)?*B0E z08GLZi8vsmEnqzZP;_?%WRq8$T%Ay9tw2I1AG1 zw-!aJ3Ec*eOAMSx`ZN^NKHum@Pz4zC>_xKV*`|)uFo!Bid@_9Xru~@bleLweXSQ|I zis~T&y!4#paS)wSkPI$p!4~cfJjO0oGaV_ZXA% z*u^~E)GlIw?e-R_T*Xds{c%d*EC}DddsoylJUva>nhUfqu5GTK^`a&<7);?>;JzB< ze^4O6u%IlWswT#X3QU%mC9WU|2|BFb@QzZB?iu~q8z6F~k|;4Q)ZUmM zdV%%FUP77NEoKgb1p~1Z-`QDWdw-vvF!=kw7z(p* z!IbGlu=`p6_%~863cJv$^Zc=tdbtz1W{A$2QGIuwv*vuJnU;r`S;Y?^ofDd_u{=$1 zV~EB-jAx(UZAPaV0<&rD&@&8WhZIjsVF^dbOFY3T5_SQ1Cho69Iuce*(aF7K?k=_J zdx@ORIK`vct@t%9)bPoiM?m_VEU#3K$|X%U zO_&5_mt>DRHDmklKVo8~uW_Ae`63G#Km#iwhVC~P-`>His`q&{#4dURiQ+va7MAlW zabwC3qy{>sQ@dhg6kM7;d=XIL8N(QJ*4P1NV7ndL)kUe*3N5Kq%X6#2ubhDVCN!wA zHsAzk%r*cwRnuRG&Xy;p@MD~D-!F?;77B3(12K;GzY3+E%C#pds>ss34kLpD(Ui!> zAh%v#t%JkE81hA+H>hC^vNKdhHcaQ-g_RVM<|yqx8dXxMsLqTmuuz z$^`uYmz43Xf~_WZ&0eK#jaYthFc&78Beu=uh59rsS%>;&X6KXr;b(c5n<`2aL+O zh~ShERK$;f66A`ft=--|67c1Hb*=0?PPL*qaijARNU zU=A&ip5RD+rzOGO_@S~K$H05jIt@b=!y>$E3@t&U1!WW2UVNvF z^eC~2V;PeFVvBxxr`Vuh6h-lDtF0E5P3d}Eu~1!28>w^Xu}HDqGwRh9^3zddXsEWl zg;?HDI(oCJfG|{d--tf%FA^Ps-wL%?h+)**QM@tji)eB#FzbKV#ZRI-y5R-SKW5Lb z^(A3`K#SruHWifs8ZCfW;BxIX;?7JNoCaZ?13JPp$^bK=Jn|VqrC$Qn)@)zD?uFKd zO~g%ecl)jOri>M(0`;7CwWUZgcR`)Y2}<|pp!oG(*(Jq0INMVy^G=@Ai;*L^M##0M zgU{^I!9ktmD9Oj}5lDm74?ak}xNHP?lN2jVIYN%! zLI%DsX+rHof7xxTib@AP#9E^uGvZNh**LqRD$({cWXDasB@~*n^((Dtsp{IUsAHz4?1HB?D zYw@%d7N;UGG=;Xrc$8cqCQT%Ejx|KX0RTtZ#9ZQ&ORMSDGd-c3_`{g>vmxV zYaVEW%}G&Ca6X^hi2e&m1e_gEJM!wE>`&_(&*H$jJD@D4ozcw_=8(z@+z(HuYdjPU zuk)B>8S6h{b2sZXhZl*16=snCb4ols5KniH#FFSo70I3hU^W=bwv6ZWPBCFDuUKDs zl^aIh9{zAz3AfK9fF=&93%n%PLzI$*htia~(2Q$Jyz0c5xIn-dNin zZ3BQ6-jQ)}!)_5AE}fNSey&>-|{}t)f|W3dI`-SlFG;;gAWdkH$ZW#lwS$qdA} zfc=I@JPmSN0M9ag+*6J`Lcg%um>;8H#bffXqIT@-pK6_UUd%vAKpsh#mPn zZblUVKpz8?aGm63836Z3$A-$g?bCVGG`F|w;({;{={Nan(;%#teS8! zbAA|WLKn8Wi!IDay9|_>9N=Cxxo|D$9&RcnUKFG`>K^hR#ZIx+Lze4^Tsz z#h87-6qDAXLIoUOntTkzSHk;O$iNS)Y$GSG=Tq;Qt8HT3TMWZnY}#&R{0HdUr01eEWqj&&B5-9EDmZMlD#@NNbd4_Z1II5JM z>2{8Rnn_Eg`L&eYIsuloiO_J&kf9Hg2h2!ew^Uzg1|SS7ea?3)kI#P@%J`;pg%yPy zfW=1KPqboGBrS4xxyA3Gi0E{!R9u_`-UM2L25UWfD>uyY2oyPedK9mY^a}i0>*ipD z;G(mw0JEuxIGV5K2Wa%xyh^fGo}u#}8jRT4wXB!N-AjHdaVxM_*4;v^grz4YE0NM< zFgPGLJHgI}@Qlr5maH$0>{AWaG7}N_1YUH}R8A>nx1(uu*QwJQGJ^lml2uuiY)qp` zoLB!74J8!*A#P}+4}UtRx4t5qC{y4XQ~*P)n71pyatbXJ)W;nASHf|g=OJPzof$(O zq)Es`20s`_q!`R*)=Y!v0&DE}-Ivdh8)O`^TAjFKHnlX95bmGu-GRzOa$Qxv1Lroy zr4|;<$ouMny*);~Dk7jj^yU2V)A`E|e~w?mS>G#O6L2xV2Abe7If!jQ)Av2yrE*o{=fa9JF< zNSu}OTok?y!S`>C$&HA_?zws52N`gX7))iJ2MT@bQ=`faP*2WMd-4lSx-v1OD~(&< z>PJ_=%TWr$RAhfjw zi+*bRFc=y?;@me%+J09)70n;@keL`lL?%oYUj`?2u2X?2bEF=9)WXdq6B3s7QJ*Lc zimduiTma`*W6U-OV}?A=B5@D$CS0z9(N?`shj@Tl&n4iTnJQ{tCHSjVuv|NCRkL2D zIvM&;B81}kiX;3cGOM{_ogcvK-P*N|&a{_TBovS0RyLY{yE`}}Wokm(Tf_}AcOOg+ z*yRD)#jzG0i#WD@0Dk_#;257Oa1k*MTpSYt!oPUn-3zM!?Yg(mvY6SqX=l@}5(t-I ztyhOG-YR)e7?mA?e1)0Dis@n}3YS+#W0_j~ckgQyK+3&5Ldcw*F;kWKyjJvyS#mC} z2zb%}C0K)32eX=j*aE9xqdrBUVV#pwU{b(H0p6VFQJTdO11s_e!vA`WIF^*4&Tr|5 zy{QD=u5Cz4IRJgasLf7^1~x8KhwhdUEi#xt6Y8UJ>_@2$mz* znqE99E2Kmf-hvW6ZWHPgbG#>je5IXod3U$Np3d;9LRyk*HAbYyN_U6H>Ss{p+G+}| z#Q+oU;kekdKA+jUvLWJ;b*_xm;97+$sXB}!+(NhGvfF1 z;CY-+6o|ijKPP^CeW1R0+;~M9Xk(#3BzC}>;hMP+47w7$dup03)h?NOXu(3BGX0Bft7zmgMx_j?1c>27yCeMGpJ<{x04# zk6x*ZmS|)nXl0Moab{|+VT;Cv>0ujoKS$- zLr8wsM}#YS$?$A>4yJ1VlCg`mIKHSC9(4ZTBT5Y?1o|V9zgZlf2G=QH5w4JkC}K1jss`?S-~CqV zm_T3CZpO(lO)uWOtwDT&yzCn=&1NbkhnmzD?&YK$vtthNMlTl%qpQmUk*M7~wG4KS zk_N;Tz=P;IbSRz%<>}4v4P63>W}AGL1BZ&?)?PI@HTe3_cve;>4Qr{R1JYEmW_4h- z&%)V_CSl(foLy6Gy-Eg?;Dh%up%Ld}>x0;1|uBQGlXj~4&v-5|hPf}T<% zx>#1|^b>|kw%yVjrQuG^|!8b$>%;mH8t z9s2KjDc$SNIHeV8divFTZUdGn3%3CE39*~`6_!W^79yEsY&&%kl9{~wi=*h+D*6xB zFW=6BOMsk|a!#T>QJ)a@#IXEad`CZR&8y>yeGqm`-xf%!AqY5*6sYp~RqW*(IGG^J zU)@=bQC;(z- zH=32)>8%4=$M;}%jx_v_dc|nB$!8%5z-`c)cW^ms&*lfmmr-w01(uqm@TrYxl3e!$ zm(xy!!nwpWqNRw`UeB=Jf3oUo(Lc@u#aP$k2aCf9ktSlgQFq!&v#XO4e&k!I1oH^B zQhfqK+<{Gz3n&MfHbRo+1$ER$aRG@Gh|nypR8-x<>}kz3{)9+kCqbHMvk8l^sX|H_ zXGzJAz*&SfLni!*_gC$xS5Q9)WeABPfm7Hlq%zm&_s2BGnVFf3>;G|dR#8!QZ5XDz z8E`;4XXx&35NQw)rKJSv?(PPOp@x)h5RmRJ2@#1wx>TgA{1f9QUNyh_ZyCH^$Eu+M z)@&A8(AHasAX$&px7U7uvYaHJ#h6L)hLP0Aa@@JnbvO*8jqUV}Id<{mku7i_d5Zda z^~1n@J)&twYGn1EN{ttc2Ff7#&0@;>_RnZl!S3jRpi!(6k<%D(u-FK^Mg7$kkTg)F zNM17R{xj>G$0a)yLdPFXv?3ytuTC!FGK|I^*x~Ys$4oPlR4}n;-AuD_x#LC7R1yD+ zCc7d^M&GFzCG#qlNWO;mlgcMRCkt#RP!k=KTB+;TX?abn&#QW#Ki^%lnj-#Ayt%u# zksja<{QJt}o#Y7MK1KYYmNMBuT-V#+so4Q zdcL|2&5tQWA>&dtZ!TJ3`OU=aoALJQcToV$D9Sax1i^`m zk0$#1??-ZC9~Y_3V@xHQRV@PEYR^GR$C9{HuPqYcFV40?DrVmjLO$R7g>fQ48{SAhrW`n%1nz7YIl;*tPLVsx@ zFGI8-zIa+p1-xuGa4)`}gp1SWAO>6d8kI%}1m;r;kC2m7Ay(8bs=rpZ5>D^>2~!En z9_F#}tQ1Mi5f3=4y|$L4aKYVsY?ogvXso6~FdE4WOaHY441!DmPuZ zj_WsQHK=PUiy~E)+m6eU82P|nAVvBLS{5s>Ti|1KDygFmDAWPYAHxsk!@E$=!>If` zPAE>3*32DA;bq%#S}Mpl>v% zC|;qh@etT5qCrce1HsWbFR?JW#z|(wF9_j6j`3u~{N&ixP0==kh>$ORO_U@DBl28mZz5is2 z^G9YaSmL=9l(W*l-J!(waba?>ycxLNP>v7mJ>u>LpyG0op{)dQe<-@|4{hod6E>bs zUjk)X;TWlOv}K24GRzR>koKk>%cVai$FMsx~^E4Jss7(|P!Xd04|pVCT@l6E(15Hwo(M8zB_-_Fl2&!xuJvUQSWj`$us6@YBjS?B0^!)^L{gE3Y%%e+zc0v> zwPXI3%n1q}vWO{jB9fC?bLFEu%}KLezSSGPW(+ks9^fIdq{VuP8jR2eRg(m4S?r?s z4Q4T5_AQt;oncPyx?RiF*Nx{CQ135%X&yHB>V3GSbq)$jYISHJ`z=8`I&uY{wx$xT z`2ki4p_Kr{BrzYZ1rT{`KR{G$IOF`c0fc*Zerner*PxQBnS;gXk>XT)E`!i#$4nZ zNP6fN)xL_gkJ+Z}?7>^gjYL7$#dHTNTFG!t;)Sq^0{Lj3+!+mLZd#P@!}p16;IRQD zrW7v%{x42RItQ^a8H#VT1})U$zwVE=6bstxBKIfoX8sJ0nj#i%^NW|FXVBd`@lWh< z)e;3l7+@uZjXp}XkL;z`udc8uDA(5CD=?I8-d;@01gE_MVa-FHyQRB*qJUjWSkiLa z$|)e^TFKW-Xj#I`A=_k(IjrU2y(b>I362jp-=DpO87A<8ACLohgtmicc!mZ3S%hSTk0kFNo=>MnMs1mcfn9wmBqf zlfy?H4DO?15`NEAb<#n=eyWx?`rbccdCR*O4N9D4)9O-qNkypK<@Z4Fu#Q|zC_w3tuVD+gX7 z=GNE@x+HO_2Z|CR<(7Qtow46r7ZPUJRc~lV+$b4KpLI~~Kc6k+++DAzWO68WW4!@a z&t(25^FI2Gm$BeHPsXQ&IR2Q>QR_Xu7hhYB0w*WXi{BZxYberElP};9q)7vpf*R*X zdGAaxUBYy<6FSeN7FP}d}1Q|+qks;^K?`y!IArW zmr2#{qpX6jSWx?P&*Wl)Jl0wP*xB&Y6KX1!1oVRAT}@`iA?59@7m%M*R{QzkeL*iBYw!Qe!C8qq1b6kRQ!m_YQy^cMe~U16vcY= zxJ|Y5ov#{K^q>gz7jewVA>EGX7fiEmHoUnrrD2#t7?H$)KVfL%Gtl%#|N1E)s$Vrk znpySZSe-lzP>jOHMIWS8Y0ov{2uQt~O+t*CnL5Zp_-*FX`CHc{<WM=qlBa%rlqIiA2*PBUFzv=riR?-s^vtmZ=Sqhn! z0S9Pm4_DyzfRb9FiUt-jVs=9C)o4IEmq1SemO9H9*zzc2hDJAIdPV~2urgBJ9E?vJ zw3N5~$A#`OU>`GnOBG%&7>62z;F*fxC;8QN<)ZNi`4sY(}x=@_z6}{04T6U z+XnFmmqONLAq>Z5py|6cOH-I2%YFDhY9OU+LER03T`%lQSW1Q=4TM29S9H{E7>uF@ znX-OLde~1Sy(j;e{HX~4c9op`Y8B7;rK=};S%pjky5}19N$~urY7wo{fvr~LOD!;F zjw&W?N|T&^@>_e5k08?b`{oZ`DH$IO;PMvRrdT}|p{q>93LQN?dx~r!^6}vY*Xwj> zzMdE?gk!Canwi`KGA(cRa17t}uA)!^4xeK$07c%cjKcsyvPzL=1^zV~==t(Z&){d% z0Q4g&VAhVCrdh~6WOk}G9t z_)F|{JjN%(mZhwjJwW^B)#laS>9_g!GnxTJ4o6LaMdTW9^QwSprSY_Z5z3vHughBT zA}txu4CVIn$A>;fbi$etqxC{4`=UPd*Dz3T-n$!`35u!fxu@8TV|FbIs@GA&aX}e* z+VRWo;=$UxQa>^5drfh7e!ffC-V)@^l=E||{Kb}9FG`Cv35!xW+IE(e< zrt@FFMbRT*6jZOp#h=Cr(~W!&c{EfP%cW`l=|2YeI;O(M1Tswq1**|;uPJMpzFLD2Zd z!aFgV$H{{xnx3%PH=fjFC^<%11$ zZL$qsw6)!e(7d&^+@h*Oci=cotvp29Q#-T6&A@i=zfei3Zv-SvoYDu4cXNy}$#`=T z;mED;ynJ8l>l+s2nSV9O?~o@NWk&xv%Ba5WmCZEgnwU4f@K}8Z(^N<6!s=!!YH^K}uNcqP(EX9G$xna(Jeo8hT>Vc#Ow4$YYgT(6qRcxa!Tux()FVDbbc@6Eg=&(4-w@j?`3>~fe62y8YRd{`{a2Os`CKAOPfjk#XWJCAPqO~eirblZg3fqgmlaP_Rw zk6?yWnOftUTjp^mA8_A*VR<#@m%sU8d39z~5gDy()RV{CL(=N(^sM{_pfa_{1_PK1 zL>wsac6gpM|oC?Vw8oClv3J?x$Q#855*6*j1||e4g2r1_`?%w|7fhqInY*)K4WE1y84Uv=EWQDKbOonNA(|f4TW$^QdEzt zYqdK zypYx^N_{l_mN#9)+m{I)UmA>S0Ngg9{4kHp4?!zi{48l646*?-(1qP)OtgvgST?#>HTys`22kKk7kJy zkY^!p_+KgeUyVp_&fa)?eH;3B6m;ix*9NRwBT+!oMqWlGScudlUPwq`E7>MS!h?+V z)6YPRY(73JQYXP%+4rL^)=}r0LHSZiVSjeGnMa-)bUoB$$`K_^-+Xd+DTnGg}|wsUOuVswh8y{%re!-|&@y63|%q_AN>WLx0toAc2C7 zpLhO;Yh9B&lp(IwRF|soGT6uw=zUdy zh?HiYQ0on+c}(@|xduA?;YASD4v~Jnv0FrRKUtRW^*;Y_-&YbfJK#w>)9d+TdyS3&Fcuxv=n7VAXc!$EDE&wi#wlLY!5t#)JR*Z$E zJU2DAIr7Tax7`OCF41FCmOJbnf<`P0OV{;Vei5P!)_HH>VoL>wIFDj); zAE1inNy+sUa@bGvi|VRwfd5hvzsvwG>CIqdYjV>C2JQ;3yML|X`}}!rh}Ufg)ve4Y z7tIfh=W*N&;Rp}XO`bsC-_JXxHc#xe)Nt&rc7-7EYF%w(C<9uC z1;gPtn>0H-83X4sg$02w48CQ~MCM!`)oFf*6+^e-emhhfoOEmaj8(<9%!qU%Qkd3m z`?d2F|B@M4i6ax&wq~xi*&;TZIgf6rq><%tNGxv1BGKl}3=oo|9|~U&d?i&?Rljyh z91!kC9;cX4@b8%2EnQ1%aiF>Net!!DGaL|?J9s68tuX) zLGO1d-Ww5VITE~gAzx;S7D(^Uid23qW!cz^rNtIIlBK*ZBH-adG7}@`pZ^{I?Y3Hx zGx@ZuPR`7ph`6bIoW+5^)Bw*lkQdxZ=eZ{ySW$(;Hlqk47!}SRAE}ne3~LNn6-^yp z{TCnl{P~UHk2uh{^H0&7zGtV^ki zS)0y@hoXy)YJ~fWg}T=EYjI8mrZqSCSWFzdl|@kzpZKDqACM>-VT?$&z=GiBWV5DJ zyeZt*(1;28nZ)4Z=z71QoDm@u>F4F`413Z#3u=MJ+|P6wE18icfFB1l>F^c4<1-4tE(@ z7&QDiMD4VtkWrTj?Q3|+i$`qks-5hk0DVuGL_yB#F-j~^n%kHMb1L<~f~CG-A$`kCZ`oh}*lZDe<2_B{m;~&(5QypM!($_oO%5dY(`LTvu`vgf@S=O&JHR?RDzc zg^P!UZ~2}i>JL^nRx5uWzKBm=1;(|s!5`28P@FhRq~y$T1mIs*9YN(?1K@84vJ$`Qv= zy1F^lHdZvxw`HNJLgQSb^Ar}Z3Gm@lE0Kx8(Hb< zZnDA}%dbAsj~D$~s9W)yVJJa}RiaOi%CymeoO%?ek(I>sOWEtQIC&h%fkT8L*9#Hx zw{RylNM6MayJBoQiN8N6J=ZK&G-a3=B_g^keAq9^+-ms~*w<>d3~s+N$32dsMq2iU z9KD*c?qmASFt+{3YZQ-0t|UaTHpi>xeNihb_jk%AZ>Bj^PTEtcAPx8v~A!Ty-k z?QO_V5c3$Q^Gt7NXzc2{xlpe8xA%Ekc525a7zegfyKeCz{qN}Km2CI@$Z-^`>~q`_ znDII|j6m9)tGc7+TrD%k^|@C zK0p)XiES^=%#wj7e2@wgBTHH>8XWr&;bOn$A+!6??9Bg7#40*Af{v#o&w#! z;#kMR*pesP+bACIijTfjzZ?`A5sd;AHu6xNX zCuQAmk18Hwsrffi2M|~QC8ZZyNCXex1Y*58hKokbl^b4*aUem_{kzI|%3TQb1qT{V z%s=eS{1YafFBdi#6hVd#F%21qReDB`4H$?0woj~d1xJ!o5HAsxiE?%TThxtmC*&9W z8XDDs%I*FAV1qbIDzn%9_JSirLzEsybgW7HlJPq8-yoX-!9bmZ%{PK;FB)FaVK_PK z$!TGhOu>+5bA}m0<>FF=0t1qXWFmFii*z<@9-O|t+mqznwSU)Q(w;c&E955ybIhv0R8-nf zG6PW;(pMyD8b9_WT4V1B;Dpg#QW~8(HUQQjdaXM^7J;T&?XOS9u0%>JV>fjO0mWOx z9jQ+Y;!Dx~HSf!j^Kwz)$s{yX&xhG}ru9ZG!76MqbuAi9dW}(OzgR32>d~#y-k87y z%ypNv$)(X^t!L9>WEspojoZ7C2f#dc!GU<*E5{e>UbGFX)N@IU;^9!zGJO$=po`Fc z+P(oo$)zf?=_QAL`iI~)S|RU;Q<_^s&Pe*X0Uan)^2-l#l<#Pr-TaaUE~1GrtP~(q z4$h#urMjSdvdWJBz#uEHHyy~j^#ofNJ5+`4p$)O?p3)4Z!C+;>5x1ITu09c8|3~k* z++2JRRlKX=^*aAc-}h5+ zxe0Xl97Fo$uPBAdNEem*Y{hK2FjE-7#Mryr{7Q5JD1i zVrfj(#%PS`&U&d8EKXj2#{@v0`4>XC=Sec~wo}@yb4^u_4hF7g%vR8|IOKX-<&>r_ z)nr+d{wm4xM$@%;VWvE0$<&)4NouArQdW6+4&`Wfml6o(9N%(wB>r^XV>5X#Ia2pL zv|#~8dA=wJj1&G;cX9KCFZF%{0p$ADpD+Ng9imiF$La+q)-s-29tuTi^ir0SW|F`s zP0#(Y_vcv?nyY^ozMkJ*j@+v6jUFJ%Zq>bfrm%A+gf)~yg04E5sCTc*@uzoe?0bzO z;wH$Zr*~Bvl#Rd~pWWuvk>U+1Vo@?ChX!QyR|YO1IarxPb#k%R+pH=j@gN`c`(4yI z_Sxh3pPz2-oCBf=mxV=ICF#1i_4PMbf8)$>&)62h`EjSAbV>{{St~AFZ*&Kl*fNGC z*j(kNx1a|Ck$ov{iP)2Xn_Efbh^K&)$P&1L7K|(c)*;HO?>b9dQAYeD{!$~r+~4&p z@J$re)|M<&FdiIi%IpST3w@Lv`|p*oOtE#%Rxt;sM>hD0~VVg_^3e~ zNCkE?U@qz{r^t_~BA<375@{96OphEr`|itzF)qR8W|JKJ4T7UUyB{K4B-e>tgS!)ReS=m5@zmH-R&W= zi)l2j6UAhU0CZO?wEHN$I@xXY1p4p#M52hW6EqrGc3?)yzHotQ6#QKI9ls`LCw%m8 zI`PhmA!=v}m|s7%XKJg851|!v9(G`)_gi!a>!^V~`rzwmn~HfPVhKvGKEz}sZKE+? zLE2uAl}M1;WPs{3KuEO3N2K{H{QJsl7J%u z%S04Ti*kA<#4{D77Ffl$y*Dm@z4l)eEgzU6DCf5ShndIiSQ2$9~x zRILnBzr?9D#$oLj#b^&$c9|#YD;cS@9JJ6Vl{UaZ4(?8lVBf^c_$rptzD#obwZF(I zOI>r;uoM&vmzkcw(48dMy`rF3QL!jb)m|p6=J)=0O5OTEZLtF{7{tu9P$dA?Yv6F; zkggw+o9kd((*PU_6Lw43^BtDN7GL8trvAnWS2>r%8!e0=){sT{uAH!irfgb0Lf23U znG~GgCwbzr07rjiy;em$9^)COhgRiK1%nwQi=u96)Y#yMOyvD>FGU9+p7=(@23TXo z9IxAS*dW&`2L%3 z3}7dT-F}CFNYG&mFpF9VtI7g@E;8jgrD+JyS~2Dy)LR^w{~Hb_185`Q7K}4lFee8V zc2N?%pVBz|!3*fYHlGByl9t+jQ4d2R#keV$WL;oP@-LC#9Mm)wlr86dXW8X)krpHF z%3!S>5u0312lO*bq9n2r7s+-7uKUbjM5a~ zr!i`YPiPXob@K}KkSQ5^vAR3mRHLsSM1C2QI4H8=GQd!CegI=Lb6#$<*Gk%u!C3%+ zS+83H!kO@a+yRcGeAy;<`WiA>@RqT|lv6eDvHB30CthzfvUT*w)~v68mrw87t#JF- z^+HEX*Apa2M!ks;U~n$v611SSp2l<~U|oDog8INAq4YlJF>g;|IRkNVXQ)mjOT#+* zL*(zpSVvL%aF<=OTlg(1%rdHl$lEa;XLTxzI6vqL5n4H3rT1S#&{M*r{bl#_0+;iqqk@BOY#QCQ@D|`#LTmWIb?xQh3~ z77r2pzKe%nq+Ew736WfK6o;3ts5spg?Qbu;11_Fh#D6->1(Js(5gzlUOsrj%*=7;F z{e4XN87XrD{6GTVo0h1wzK=kBtNDF+fa@;h9_mX0;~X-WrYbH1W|zz#u#>>Al3j08 zDYB3m9zl!qn4YE|f9#-+t=*7CWRY$auiA4P{|45Q#SK+kz2U4YO5?5u)wwFIwfrX} z1LCx^NpMQeM4S(e*QB)fK*HdUZ-6~zg3cpma3vGScb`I2X=c#XU|HnYtK0$1kTWJh zpWn;~Yl6Qh)?WVe1y`(q+YI;e>PuJce?61m_SonNl^p2AJkZ@+phpn*mjudM{f1p& z>UhzdAjBfVXm=FOVcwkjN2wYoihN)Ng<*P0K(HD9!hV@Lh7J#zknrWtb;-@=K->kB zt~<>4693k`YHLgk)6r;-s~a40QUF&gentG%)qf@Z$TGWnV@}@qm|5Cvz22ig*FFN8 zw82!`%jk!dB@|DAs5KJrf&ARjOg`ez(VlmpN61jMoIcn#gE&l?fNB3l;tid4>daq& zg+sh{f-!OvU3BImK{M9^LZ=)`YplkRY2aJ?!}p&?OGZAd*bD>gfLa%WO8oU9m|p*JQ? zHOu{+1fA(a6Gcv$tnP9(N@Q@O63a2Qswz{dc}CQ%rqh^iK$9WVn#EhnNk>P7-v72xe{=(U!Q|Mldb@`> zpFh7C72Qe-dIY*Ne~E`F-A5Qb*Eretjj#ue$lq&1u0b#&-I){o6pTeh#jPZzP@K~6 z9nQ+0@Gk9i3#zei)WEP3z^=z}2Zh#_-dnx{XnAcqKGyX@_rxbw)s6>lHqGYf9Tm12 zx|tAINcLuR1Q|V6teGuBOZe3yeqF{bt<&6}oiZ6|Ps-HZ=x?{j-AOdT{i}aPr)Ri$ z6KOV{&XGTDY*Z_V-Zi=Il*B}oI7T1~O#oIPXyBhJQ(zdn5%_@r zs|PqLr7#H0>KKkybIEt4B~K6NMZ7DhyBPXhfOy<~RPCJ(Z>xOCvFktwl%URl-JhWd zu{M@t#V9q&`NaU|>6zEcnYjD9OdrZ93=R9bDb;63mEoquGADw4{9l1YCR!v@l2o^; zx9XjO`J_2~K9f4jT0kgs@MtH; zR%e|GwJc+zKu^<`By;5{3dvf5qKRNGX2|N>13z@d$=@-?RRat;DqlnS_TnTE8MI0* zRm{_PI3+($efIAYHmsn@9XrECt4v`H)4zRnb6^VSLC^phD7USwO@j>J7=yA`MG+sn zL&Rd-v%?`(@vETYrCO?vgR1yg;ddDl)6sROiO`bb@`BWo_;nQw31Faj3hY*-{DXNZ zfjYdcJr0q5$alMo&FSr+RS)HOOTtq6z^D>A_3kE)oqAFuedbOeFP(jxzXY|g1}U!p zRMU1dW=xnvDcb3>;Ou0RaLfv(xR{&NePKL|;jJglRYh_&MAZ~IEA5EoLNh`PxDOGV znxTG*MnD@&7RusP^@kDw2C^wq8(2i>cF~1$rQIk@gXY*{Q6|urO*rdE@o+M{FJ4Q> z1}to?#P%?Bj;b|yD?Ny?)G6KB&%$@vQB;gmFJUpEY*neUT_(a55||0*m)Q&l42$ka z{VJ!WEzQq`&P?K5!{^=)q)}nZi1f|ZBi^x1bb64|G3|s9^qoyfTsxGhkB5{^A0j(y zp=wN0t4H5)M4OURf48X7C2L)KGm$uLLmK&qPkWSALJyNgY56b>x2A_D`<1lG&$kEc z@-o0tXD;Z94b?&wFNaHkcMue~-Mq^~Z>=mImUj!>Wwkn}Qj;eAFsD;bhkR3}e6>Y2 zZQ!so=)})y>@8SOkcSwG+shILH3?YY!ZYM_XZC5OOnEc}$(3#hb5sohiP#b4+DT-; zZa=!`_T2cGZuksKb41yx-104WSo!;rw#9rr9zuojRkr^f5!8$loh=vr68|8$@hW#L zVp2j#R2Pd#XHmpM7GK+?ONdn%?X>9@c|avD%^ZAw|HlDRbADv{kFt~cTjW|T=^^!j zy%F8tkpbcnLcu`^66GUsYJT;i?Ij&E1%0ckhcj(>~(}giF{9Zm#pcdo#{HKuujx z{vDahoF$c*`w8+|lpn-uQQzm14uucq0UieSdO&R;ud?(9SmNg=Lryh`1KT@}S)`hV zEY1sH1oL0Q^6o%0C^DVoKh1oLUatLz>xU4XoiYVE31ACi>DTMoHo$XpZmzJtr~n}%jeH8tHh$&No5hgvXYdVKzcm;=(ZSl)AhzVP5-!_H zzJ;_`VOW8*s2}m&H9@BxYXN0TnZ?&%lHEK&bEsYRqf=xEgFzaFNSjeCh%XyZew&z> z6gs0HcJvQ@XGUG9wT>{{tm0K_s9i-79S{oxjzRtpBcIUTzl-tl#f~o5!=iCq)0R{p z%xQE_rISru!qK17U`zTpcx#Qc1(S!e1*+M__gS`y%h-jP0#XWZ&p%Yl%fi5D-LPi4 z-;M8D^CipG0TyjL{`*2{eSO}|Mgr@t@LO>+DnIZm(~6VlV3+t{&)Kq25Bx;sq|OJ) zF3d)Sj>j=8mN*&Z#Dl@obE)l>o4c(j;k)Mt;eD}?&pUXuN|73_-4{P}wPK}As_9}W z-wUlc-d2p0bgq-P3DX{gSmObVOaPOR;dQ8&Zzhu@_tILCKu*8GZ+csi=%@r@@>_KH zmnD!=^p-2>+Z6N+{~jW%RKpu;VxmcncYc-6#IkVwB{-R+ zwNp~+mkChs=@|eh>dtuS3;Tv<4a|K{WF zh#&QZjK&b&;xIrZONw@tA6FUb9zXqbBLD)Vom42WnSG}_XNeTg`U7!tcFFm3B8m`Di;n|`*I`A&Nf|8F3~bs^p(I;H--0}ZEbS&RLldY+i7PVf}`{!>E6 zcE0;5M_k$K1(^^}cHoK9oe(AIs$t7^h@&z=saAV7wp7Idm_+}sT#yt|1ZyCxiaZ;M z5sUI`%;jK5^BT~7RUpV<-kMuz7+Opyz%gwkr<5m7g?pj}2T#7ZtP@ho9Ly z)@Rjem^A-(#XjP=&xc3xY6lfne(@D`K}rLCu`HB62B9j1pghbWW@$*%8<(ftYA%UoP2#ZTc}MHb*SQHNAL3da0Zc=3 zM3d3?<3x6#^*LTaa;ugG1Sc8*)X!~_zj+0=!MLDRj_!D+h1`)c*x_P#>i;!%rLzW~ zmBKSWmLvw_FubCBFcl#uQpD5%YN(C2J*XxDf_}4Zt~qlRvd@53H=9&KCYu;Sc3Q$q zKBrtl1VoISp)P9zpN6t#JtR9a(}kI@v%8Og{g}qlpnE<6W85E68!AG~<6A#K^~&(N zOD{&chB>q^3)`6csF_arN9OB7rVF)Yk8;Zjfn?SVKj{74C_}O&G>{cy3uL;C^myP9 z@o-|%g`;jzTqe|$Mlx+`Y8M$XDzXyyN|ER=nxrZRU{(N#nMJ_^o3md%BXs2KVXWKz zhPX#K{@%AVfJE%wG6P1^kVOdGSzQ9%PUKyuqBa8#iuuwak6Irtd?5o}&SGoGSm&(5 zY#OeIq1a})$yn!mz4OG^L-(`89UU03P0w(jd;L2+)6NhK{MWgGxJL-)OZp`eNqjN0 z@KYR&(+UqS*zi&Yx)UtrA$$J%8MbVmHn|@Xi2$+I5um1lRN=%id-yEbys-T+@$V)a zL=x@_fG%n?LYFYsrU*RV0q5r8GheD(<)7=n0Lm*Jv%Jrvt{x+eQp)JwY|LpczKXNW|W_Zk%O1Yi<3-r)w}CM(bgEJz0&XK7#n zgCf{~d~Kb8o@sIq_YyBpk5r-C=c~!~@2X`$j~5s*<(aZ#!5K1I4i;{Krs`^rn2 zBuqnxRj7|n%rC%z-QFYJCj?2JZRkfc7>}$~#zIk4tM+dEQ#X6dSe5akFa>u!iE+Gf z(5Z*9eAza81p`3LHdbnbB4oG?zkFfiYHTtB4wsu&B;~3?VWN9fiH;*oe=bqDO}o*= z+h7WC86$#`{}UKUI?x;6W~eJ^l~Po{ae7hj0|+UN=)w-uc$Hk;B360~xsV|eA3axSlSHVJ z(hZYTJFE$Wg#n*T3QiRtCUgq>g=Sh!x$x;Tl>SK|4;6K=e5|?afLAuVo!m7LS2*1t zs)_#o==^es{qeCbP^0OB2-;A~VnIimIHIb_w5uy2xp*t-e*gANmw{ z>j(7UkS$e!Tpn1-RX%;C6LQhMpf<`)YURa71anFnySaWerDRi&`F>5R8908!E_HX! zS#HJ2N*)SM<})89d6cnZ!d_}dlUi8PSjR#4yhLVmBh?|q2DP_Z)ic&vt(Bc1PBr(C zu|7XH1;B1p3F0360>n<%4_b^<(!`!%sgcs_{|>COH>1=Ij0CoY_)-k~=j`(JNaEQ; zaP84;(*QthoKM71wT!;KUWV*DN>E~x_j2og$9uESZlDO+g+;@Hng-)qrut&yP7hF< zs*a2{LvL{n@h3}9xg+A=#_v=Lndg(0zKk{4jh%n-h%A?DiSA4}=M2i8` ztGuOQTA+#Fa)r^?zWK27^vC|EZ{9@WQBQ$MQ=VZE(N)>mT!aYx#8w-iUEKE-AK8&L8FF1rm_Cwty!&rq ziZmab>3)VjAKFMq36cZ3(kHLGo7_(>tx{pMlDk(JKxbxvhpu$g!HCidAwoBVWC^g0 zfO$U|%)!9@;gixjoYS!XYAovzM?`w)8v?%A$V^5FAK~TwjV3LbuNWyd zjAnzoqkg7!IV9*hUoK;X!{R+bB7#om13->af0?gZw!jcWS8gJxcMXcmG)4NuJk9&! zY*YC1Nk;qw_APLbn^DmhXq?1#{^i1O9$TUs)a1PhJ+?_jt&MZyw!A2Nx_$x>!mw-+ zQy!=A0@6)DySe*m_vJ@n!g2z)#UpCz6FE9o<9PsoJF>Ohn;j zUp8U%$K#Yp#MWa3#<9e}t)NlrlkSdOz`yh02HI%(7w|uz=9msRT~Xd{Y$y1r;xKFNt;0i6q=+)7^WR6@bGN88r@|!8kYg`#I#i(htf)F<4zR;4 zaaA%zyaQ|b2XAO^FzMX19oBC2pr;))z>txNG_?gJrUtBt){0pU)4d|zlP>_)$}32z z`Cyt;4#(-~+4%sW^fqvlBP=Yu;$)<6Qe)uFJiG+l^%@fw^q6oI4GuommtQUez(Qtf zV@qs7RSVt!z5-o;FQ%YAYmRN;NSb9~TJxHs>#qPC$gm*^i1%Eg08TV2rA2GSkI#2l zUl^E}H&+013&4yTcou=v0_RJ@_MQ#%>u^P0y8OyhH92z@8dbd@AN-h5_N?==70Z_V zt*Sbyk&Wl7o<7rmai-hH{s{p8xOs%pkr`BaNv6=r+W0cXBGf?D-y6Fsr`y;8<0n+7 zIjrw9!!>JX8ooM-pc1pm3&zXywG#qpgN5VZsjXB&u@m_UEkXOnN9TX_DG~3s)*l=` zwqXudgxhdZ!C+X}pCbe`*Jnnc=&C5665}MEcUZoh*nPYLrK@G=hp1{#U&rQ&N%y5u zoILpRFn|>_E6kc>dnD-yPcmd3WA${ZJ=F@&v+6b0V86YX=iE~< zGnjNmJVNplzkw7)g0)iH2E|!1#d}}QG4M!Lhq(sT)KK(wfc`x7^l$J%n zQ@(q@LO=9VmkYJ8(%W8qX(?I|y=0hLo%1zWL?M2eInTC=*dyRVAvPomu2V*1+o!D2Um6`71R{NU5Gct~FZD zX)1FF3dwymBq11@3rL_FEFUW;!M(=s=Pq=@(jf?Bmj8EHHDnx;_ir6VsP`P^OM1bl=|y~&!)~fTaRKc#_1~BOQpxW$c>LmfVh=^Dgr|p{2oHi^j2t! zho_KuOlK-+o~Vkp#!qs!If|zTe9~R*z>Eekn{Ja9$Nl7&D)Flu)BMjvxQ(io?Hfbr zH$_-j_gUx|&7gGUD#tf79tOwPugDX`{+t1C*n}lV&x3pX z)hA@V`OU{|aK)9dd|pz+-9I{-@XWp-rUbQMWEA<8CI_V7DS3X+8lWgRvaF=lpO*mE zz32>5P#Jh;^!L2!EB7CzRZq&m6GAU#eu}wFPw;3Us za0Y!n-Q4-Ho`;~=OE;{erNO^HUQk2?cdjRWF>q)N(%T-@kFE_#mV}9_vyzkH&;Br~ z%NEa`?FvtSlRt90dWOmK?FbBi}jqTOvC(FRdr}_gsvfZA3(<0pt>I2Nb)I7I) z;;ybp{EeLWMSagg7A=-u?&O4>7~1+hjm&E4D=cFHkFg1&rlCO*Jd%12>~Hyu#X5TC z=h3v)|I5`scu~oETqOPD>1}~Pdj^HT|HksGDNfIdc*P4_ z!!3P@`fq~z>tq(M5p-YpssxyLq^rIljzoug=Q^elD=%nx?Z`0>l%lw-A!3U)+Lis4 zh;|x zz0(VmRF|7IKX7sL4W$aW#iy!~u;|{v7htF>X-X>;`|%Ah>1Z2N${Fef*&tV(`69sy zzb-u1kcR<52ZmlX=lRWZIAU=EMR9^+be*)E4H# zLs2gI<;Ox0IJUg2HtDNbBW_y~Q(+7j9Cq+Z<*uywow)`M12!aVw*Ho_&oC+4X)DIw zW=}NR5Dzz3Uovq(g2{7IF95zVUfAa-r~pN2k01W>H#iIs?Jmc$KiJXZm9ziaae)R6 z6nOZZCCC;DMPlIrOs=@mEC)zVfA2hBMe^$vFeY=6zX@ z2)x;w@6_r9`s2i@JWC&O?H-VoQPozvhSgJ@+(?A{$Dk!|MB?czeqiF;C2)NFbXL21 ziia}m;bF41^#{2Z=#s)3v}rTmVtOAC&DC{F4s5J$aBo7Q5M{#dO-8*2*b;b@PL+e) z+K<@EbYWqsM6UHS?UGSoajTPSj`m(UDLQMqt}*n|w%bp&{-ZkepGCx;r7c)R=PEI0 zzwGKNrSB85BUyCx$hB3nb8;;JDTD0`i)bSB30vZ+5|+vC|TPFRBDqxBYtn8nosA)e1}82#&yCvc0E*zS+K8E8#s*sGYH z0!A#>0Ax*JKsbf<_h6~q(yF(jg-Eaol3$=f8^a?TsN@40`>^_%%qGGj{iNI%R&Rg$?hW%2<)42zGUk#HVOw*&5 zaG5+t^FT1}Z?}Zklt|+A7?$nh&3Rq&rpX!@I6X{x|L6<+vM|+$wLrFA7w5h}FZp?H zd)B>6cZ{^i>&>f)tL?d_nCt;FcV$K5Tlm67yV3~eiK&Ley1io_47utDL24nhiJ<}e zZwAh(bilzA|MD$h8}Lp zqa@A7fc6b?7k`y?J7tof5>O{7b!DYr6cw)ufVIA6%)bXiJO*u2dk|E%qWJRt>-{R^utjS^WEnESRv zonj6eWfmh%Qf?oEp{9!Y_A7M}3_Uc<7pXlJDa^O}9sq04w6MIKux~&(vhI*G!!YA#j{*T=Xi(bIUE8I0?2K*Xl-9@TMd{z_>y`nU$G(TtB0__RR zTyQTtLgxfenC_P44}mWX0yWLo-lY!NcNPWm*wSpFcW{$-7psB|HGP)o(O44V>GH~` z#1Q9`ut*`3S4zLf>dR-qH_7|m#wa5rec>gFFN6mHwcPY}S~-7WL1bc|5BM?I=gyn1 z69ER&H0UtCa3~pMnolYg+*)+V(X@ASALx_qb+*pVh+mS-9*t3Xk zXyEIULsLEy>)4<{ZR9``>8O^8!M6q6AU1p?F|rEbYM>uo7EyqjC@V51Fmof8cvxd< zfMFZ8KKG-ld0`U}OHYmL)Xwv}s5Xa_reDPyZs$wBV{49)B}3If))X_uz`9AzQ*-F~ zCiAB1(3DL5zF0*%EL*^R20?g%0=71B4V1*yABv%5p{GUVM{_Uzt*%U}r?<6zK~Rl% zoIfJ_T4Csiyd!Iq&107V`{u5}3zYd$8H;}A2x^z>pNRalJ|ST)yN@qlvF^IE1~a~r zBFw$5VZm08`_ON)nAhbc_>P((|I4kxyV&~b0&b~{=qYAvwaY&I8*#G+;m!Md%Cn6? zv%*i`f^z7>jhB%?NJfO5fE4t??-7A~d_}fM1>7AZkdWX7Wfdfi26$Ui+FU{HnaIio zXJV(6deKmUdvS{f`#OogLX^J0)|_frTL333(CZyPOljkJ{zygHpYU(vM&pxCE#gpZ zbem~>=CE2_&te_wD5~F|T{-|*vlotqr}W(hX8JS2%8R{HKwSBEjyQCh$u56qR+RTz zg9R!<8X!KS&h}LOgLa^9Q7n3qn}-efz|AQ%Qrm6hu4gE@hmctmV7bt9DD6-|%LBGNa%`9waPGSQO!S0X&>=^2Sb4_F{(v@+^jR>Z)?JhVx(iI9TJD+`FX z1gD5GX#go3@FZ}5Mn(LdeB~&JYnO%IVCbfer;sB)Wdb`D$uy9>Y<&`n36(~t*3Sp<-g0k&J~@PPtA3owS~{YM+S zbBwrh9c3k+7O`{Q9w%UzOg)MS{$j;ghCbYn47^wmR^sO=xXG%@!IyWyHBZY=lOm!{ zVM=u%v}`y_yYiz{=M0fSrn_gzJP#g=aa?(p%pm~{>#sGc+U3TB6?_&gb6u=mkj_WM zuC~tR#$)5${NLNk&R#o@3#YX+U@iLx&>C-$*h2+m!jI;Cq64qI0%L)+kU-n;6Fv}0 z?tTWUQ}&M2y*=Cd{PZ_3EaEO3h)Kptt2u$riMMtiBBxEo`xhndAn7k{?K((`&XQ6v z64m7rn@=}~k!8|LSE`q(@Z&2b4;V?qdfQSn`QJ@hXom?m%Hb4 zf*0pZ*>}5VWubje`_JdT_0IKa6~JOPP(Fzx7!#y(A;eI4hf0$xLjPe~RYGZ^EG+d? zfT}!lu&_ek#+O`?Zu}u6Yx_E*p9WmE|NU^-w2HppIl2ISnGt|tuH50(N|4t{kSDqJ z-Jd`z29uG?@~tartOt!^A=Jp2!4zU7W>VlF7w8ad^?~EhpBqdqscaBfJ%-9K;}}_< zDOFvnB8*5OOz0eq^dL-8DzT5aHbRlv6MUy*PSzjQ%Xa`6)l4=TcJz3+M*FZPT%C9f z37-pj*x85K0~XLanZ__i4kG^O+QsqEFi1Km%rY_@Dwe8g>FH@|CL=jN&tzRz-|QO7 zZHWm^swFnSe`-g>CCyk3VtPSK&Hp(9_%)^+TCaC-l?#^#P()!g!BjX0b%)t-DNV84kpF@Z%8!8<6TT5SV-D<;}W&_gmR*+ zVNuK<7CLQ&Ddp|^ggAt2F7L>PY7Yj&;`uq9>{{v#*fkf3{SaTXNXP1BeMRfPa*aLk zB(C?jeF4u|Ygy2Qh%XqV##7c94QS~Uel;;us$ebI zp~(;BE?)jzZbAv&3$R|>2I0!v6C;_L#cy;Jpf?j!#0M)ly$V9(A(`6f)pq$#01u=3 zjOTu2qXXy2DuIvq*RIbwvJ(|ItazdGd0T~+6RD72>isdbTqtm-n)gBbe_lV}GJ9k5 zDe^`Xht|)!G5F;cI|&|#hjp>tfL~!BH@(4I;H_0O?d>hJdF>gx+VR3dTZml5vDx>; zlf(0Y#K!aa{RYh*!2|!yCTLtPEn!b0bSQWp8^E6Z#XQeiaIOkou9Vez$($1*Es3Bg zJlldx=}e<$y}Jl$+%2~eT~Q>G!=hSFqmnmjORSO1`x#(o4jXc93VV5;xeUWfTc|_| zS9E>ihCt^qsWM?{h4QN&6z~RM2+EZRjKA}Xf65(em!dC?o5#!zkqm&@9g%WQaUvS> zo`r8e#Prevx0q_kovvaGcOITbxn)!h*Uz zQ`H2pQ6irxXC=VbVUi5vsd8Al$R1*$vpB+R=i2-LgQoD<$24qxXKl3wDad94sZbd5+Gu~c*^kOUoaIG*@But6)Io(sPu2DXq2)nI_7`)x~c69N52;WR?K)Aw)Go2YOqo>aVO`InSZ(yzpohK8PrLODmRlZYPzHtcx`KMN9 zNTB?+jZKOe5Bs2LV`3j%5R=qF;v1gYiZC1w!T=?NAS^hixHgTEOCXgMo5rE$ime?I z+dIR6?M6&mGbp#yhl;OIqwhlFr+FDhUYDfBCOnC-A_*vTeEqrw&_od-b4(worQe0y za#jDwo<_?m?d|Y7t6Tn6SPlsQyaK>X&Myi??SGhwbGdkYj(=N|TbF%#0?O<5iFi8= zY%J=iWnbZ&cv17STT7DKseNR5!%bgDg~LH9_znQ21JBEfr>q2wc^u4Q>nQjRbvn$E zoX$^iM9GFiiO9PeOLjjs3|xJq@i9=432;pJ$O)HldaLTY3y<)^?bOH?xCD%?LmNHER0*eWW~-!SfGoSS35 z&X3rMdh(2XdJdYjQF+E^PRCUXej$Afg>W0NE54bz9~ib}%9TiQ_b>xPa{aC>-yn@i zv0U6*BV|ZdU=|U?^yRZEaz!gSzNGI}jt<@=!i=>;jU~1xDESeU1d`E_E@L?09YQoj zXywhKEW#Ss&iqD#Ca`LB4S#Q1+D7yfD#ersct?{ zKV`DGRlBh>(_A|QR7LuQ115d&l;PheXOSBP4VPvtQ%AHT2Z$V{Tg2BYd03(1*El}hBGWccXI#D+Q#_Yfs(#NCg{TJ2d2MwaV zezWb9cWFRcFSjH0Vl>f7GxlKdaq%IvLd7nN>>r}5e`eIH$M zm|67kjnqdPwEk|#Z<`wt?Tsd^L1SF3@%hQbUg5HrtM)PDsSvVIs_>Q*r4)xs(zoTX zM?@;}>zi{B6sH*d7;Y;6_9j`5gCzgHilcI=FAjLE0DYI{IsN@Mp_Z$lA86_!tYtTTkrME30=Y6Bx=TTd=61c|AGBW)J4d+sl|H?17yhMxll>5MFQ?YT91)e4m$qqN3zKL!bts=?b(HvQ3aA_`$wONOlBx&rOW3(y3 zR!0X=lhZczfZGD~mj-Gk<3bZiixLnt{gID=|DgW2av&u-nbL{a4@>QPdZF80!9n-> zBQ?S=3zAv}mHKV~pjW_<sPQY#zna3&y@N_0;RHn4hGInXwe(Y)H>89z2x|(B- zBE=*F%RYW>aG~f29!RCP6r-;-5y6sRdK6YKMrB%^ z$XN8yQBtoo!D%0f0mn=4=M%sqcV!WjgZgZNTFS#m^aEg!`Z>KjAiPi(QgjHJ$MIp0P0%cHPcq_F<)gOp8B}~FA#Kr2z z7bxw^9pGZc1Ih zvc;Bix&+ik2!frwdbm9i=HL)g#0L{#8b0XeRm4JA4sd%nMgk_!w9d_I$%8gFO+7wu zjV*lXe@t~b5S;Wvw8=aVxjc1QReI#B3^R2uEo~{^3s-?joy@$NU4LbfFgO$D;p1zCl^1wKT6Kv6=l1mMU(m+CXWS+1_wQIP;>(IL z>l5hT2Ao^uK&8(zZ}@X zR2`0w?Qb-hyV?F}kJf^le4Ep3a(ys5<@zq~r2bdEdnqhmrqElA3RiTobWk)FNm)J2 zQT_5CKe{p)yV9FYNf}vPQrV7GV>rGhH2I1bgE@!iJ%4MvX#WSTe(GM*@YqW}(T>gm z3&BYAyF`}|^Lb)3{`$fw9F2UK3m|bU>YV26sHw2CcJm%g@S3um`;dzwYQ^%YLJp*% zyT$a}DwL)|2Nahg0d~HPM5ML*YDk+=WSjwyf zC+aTS4!7`Pk1n%8cM`yf#PRZa=e~yNK%NpkR=~^w(?aB~l|qC1^njMuVf-Sd;lyF- zJWV+k9w~0^88OQErIY5Rk1asp_i`Ejm(UKlGE^TY>4-~xUnaKc^=`-SQr%FSQgf|h z&eYvC{$LY_5NBx&hq(Jkx{zDP*-(qq^fFS`x&3^fF?E-E@I>0FKorlUMRsClvxQ8i zvS(F7RLNFrl=EM!kGJEj7YB)(c3|mL-2xG&5ocOhumrwKePQ8be2qKOUPmdabnv2) zAyI;fZhw#8-=6_XjyLu4oLIsnE?>XVk;%EUVs*cYN&d>h5SFy2#n$<5zqld`=&qE3 z5%N-l2SWuF`)6ou@9W64qQ!`D!!@8gw~LM zg4&WZ`sO<=fOWl2>DJHU{)A81pgpnY*S{YVlKAt~6GMU#$`KcvYQ})ipq#DaeysrM69M263T;~3rn5KE zYy|PcMbr%B+OXZkd*GVqtpAIT2;aDf$;T$EJ7F#A^g0S?1d5~zd<+7rV5dk}-oY#j z9YA*dLU&*Oohd7}=_>XhMo$mvG+0+OM2eL|e5!)mSzJ7uWeu6@eCwRizbfmmSeWU> zSGh!*BcKuZ%6v2)Q!aSC7@h3O`m8!V2TFY$*ci;}u0zZax~&$V&&q+r4_arMvvu+a z1AlXoMP(CN_x&m>ZfvMq79F2r6XJnpbBRV0%TQSd^^xYTgM~#|bGa=Pwc6LKC22nsW~X9zy|;(fI0ZER(MQKB zO2=dQuUZh{HuVuiZZxH8aaCFhtZL~hVZWw{9)S?*j7^~gB}ZGf8B4zkrH=RmDQ1vD zqM4ob6*~8sEThhv{}>fX_Wd@fzhL;8d-M4@Xte`C2Ga4Q&LF;3~)Cp+6OJ*m*~`@I}6ec zBCp^4rBn?odG&>-0{oNVGlf&2td{V^?-v$hK#%QT&Xy4+lv?^4Ca^X0H`U)0lHUKX zqyVQUHXQSy{hmbR2sm8nlknk7Y;SXpIf zc~ejJ+0^^ThaJ{Deq%)w7Zjww%D%Ps5RwGmEx|v|ZHqXqq_&EG4&N4cb)(#16GobT zfyJ2`W#cW83)V~A-!(b;5yc!O;vvUSkhGz(${iQ#NG)cbcY-ae_EsokiUt0@5-5vx zgLAz~RsWAfQ6upHQ!clV;Dyiu7++o_r_nWK;kh#*MxrzloFZJijx@It#OFdu+VAel zjIB98&<$T6_*}$vCMYh$K_H~CRQQEE5wq>p$IPDy0^lV@vYAY{EfgHl&7G1OLM!z7H4)S z3cZvgx75CY2FT{*;}51E28>^Z5SP@C!x?rCMPasw!}!2D!)a9tyT+x-sILv=uMt(R ztqOLt!1#Fo9R8J8;hZ0?-Ve{@wmo!Zb((2bxOI`G0V&JAsdG3L8+-sv)zr1jo>nD@ zEDNF!ilKLvNwPVKt5}8OIJ~n8%3z=M1b~x0kfFKo0){YKZI;6e&SBT3WJFR$Fa>P7 z`?Hng&(o(emshM~lXv1D(*-}|&S>pYsl#bH8WLr$48lZ{v?xRm&p1 ziIsa1GiqNo+r+`h^{d>fENxL&8m0=OSzBefYodMJL;cPT3#IqdZ5Jmu+AUsInn$g!5+`}|N8Kq?6dXFwMgGz5{@o_nHMmo0$*nydE@ti1CD~jADRX%#AOJ& zmkOv3v^E&r#ghErzD)-ZJl~C}y=jHMV)GWBvFM7>aPtN|#hW&tz}!r2q=x&Tk?>%1 z2!coYRU{r^^`}4QI|*klZr^*ixJSq=lL~`zVRzE1GegoEb!H3PlgqJz8M<<1R>)=i zmvbEWfN`uScX~h3Lh!JA;ls;@NaSfZ(^m zdr^QelxP0gGk$fFL9K!YtH=3D{z04}Xof~ZPu7~S{g+-~pS z%UJ9%a+e3^$m%n76Vo#c<|@ph3rhdR{-_w5w|THi-c)1@i^Y~qm%@dZ`QCod$UO^m zhoI^=`A)cYM+6I`1Kis)6nK4@4u+@jXbRv1-7fFY4d^#xu~gqP*KlFl=ff>jAL>b zUzj`;u+g0yv2mLdf2t*FYbA=8J>N9Enoi0gu_Yq8WFX)dd>}a!U*Eb82<@+XiCpw8 zl-GnyN5DWz$+_a0y)tnJLBk8a84DSr6pmstZ~zVQn77!UBb*0j>dr8T z^r8#hHOXqfgz}OpWAA%GxgnLMV!*xb`57nj8k0G$Jrl6gpV}mJQ56sq@_DL`yj4sR z)u~klF~^~XL*>E^ge#}>wqm)uhn|-JG8eTC7=@E`^rk4l905-RnBFQmBck_d{%k`E`&a5v;-(? zU;RsO`sbL;Fj_y*Q#A0k0TJ~wfqpvc&yjhesbSL4pVv_*Ton?{9X+6oB+`7}Qtq{R zxfBVqiEmmA4_n3pH{M(giYQszccSo&>~Ab>yT9C8X=JV$gGVj;(2Fk#nO@5y#Rv?# z!v8+;>)&>ynvJ+gPcjw}yOUvkBXNgt_`8f`%H^LcFrH&x*^!l=v%D++>z@^hOcSq( z7-2V4lg(wBI3h^bsOEk*QMdN#{1kU%%e+NuAD#RGeNAX{<_EQoktI~o2n8);f||=s z*8?s4T`NHA=4h|By_Uw@gVBs?gvlewy#7n;eMFPblM2>4!X%|LlB&S00I(x{A9%_p zw0}f=siZ!8!AI==mH+n@TuPm1V(q|LR1ivj2Z6FrCfPFFPwniD1I*UnI6PKg#~7M4 zd)eo>VOFXF{3kMIqjIa-ppSx5^9awvn6wjuhj z%s=bJxGK25GjAYwTI|Q1o#obU52qKTw~m>WQKDjzg;Hn{MI_oM;>kNOVi<_XeT$OX z4T8}IhJ{G$B?Z5A2$$Y$n~Y9U33 z?pB2kH3dksnsS(!bPlLk)1~UpGy{<)8)^^w8#htwMa-_EZAO-La6oX|njyC;gE{xo zu%hLVO1gD(#DFX2V@jOluq@f{gOOXLc0Z}w)P9O*E(eS79SkEYT1vt{DI#3R6=*1S zv-ICuWnA@QyXZ?A0z~=Wv~@c{UuOh4qMxkJ-LysCrZJ4Q%ey(&Zk){ua^Oh?Bo<2R z6CDg84_7nLi_5~+>ulEIpgD97HS`!lH3z%)mWo+cQ3kQB;5(x3SJFhqX(voZfWiFM zC3WI!r~vin^5e}lqKPj>VLDj?LIz)(&vo*8(^0=u zgGihpp_|AOBD;bz=9&I+y)vOUgtbBS%*PCWUcU%Bc-PE$;S9@Q zSMd2=kCr)$Z@NAaWjn>LcA%`UlRI}G&U)eiz{~3sGAjSSL~VLABGTWGN>JoCECWRq zX9%HinMK@#70R2Nn|d3*B|)^T;#zGN$wx%QsiWujYcFtyN%|F6wy9HW1>fc8a%d3=ROfZ}l;u4^ z^u7=5=lvs&@r&5I08QZ<%f^z&?vby2a5o8ka*1pK<}mXHsm1G&dQe`#J)g0}=itFd zg3RWx%0MXdNO?pq&2}UfGJH)fcLN7$9a(f<3Z3A#8o#&juLC^)PK!t}nVHqLX|;0pBhE)q#)c37HC0{4Vwl(0sKSXY@&-L?!#=3Z&kGn1w1|`a`E6Db-M;)cCUsdb z^<3pBUI=Zp+D~WB!c+8LPR*Dr7R?4dM(Y*kkk+=g;f@xs1K)%R65w&Ih-LUaPIlEf zu$MwilY&1|DP_3JTn}lR9pQH{1fuwrzlD&z&p<>WJ>%cK=wW!CzXI|DesaSO; zhj$jsuM5R%TBO!<4qLV?TR`ReNW<*YUuE}m&nWE?Mb-Wn1*^XCUTX68>KObp(>HD- zGWmsHf&Sof-BDyxE>k9fa{p2{81McNX>@iI+g=a_oyQI)6ZVRZ76SWScosVRrPlOq z184ikN!$}~1=z$M@o8u{=dLL47vjaZ+p)x_t7%ow@L67rhz zydwmae3I5}-4Lx6m#McotY^m0KVZjVXYLKUZ6lQZ)88d}721cz3yk1p!#gC>K?z~W zXrqYTk`d)SVe#j`mVi`G^x1sNKjBmN132(s_dlk`oxlf%KcCKA>bj)Ui0xJ=)mC>- zJ6`!+uHD@3zyF7R_VMEu+7X;wi$O|Iks}#?P9@ww9Cub$@#LJNe`Za7*IYPWhA?fu zIB65j5r1AkKZKPQb)`@GyMqr|Z#VaM{RRpKGG!=|c-Qw86fGYo2vPS5YZ7WOMiH!d z0mtE|Z)B@q;QwORnUQB9>s8L__aJRj7tm&k{L9XYw47f|<*oelX3{OrFo$lM7?1pl z&sN~$pO1)1uZ?^PAYSbIOY9ebDTC}#UtOcrv&(4d9y}mN?od80%^qCR`yHc8t8{e9 zpdP1FR~9GU(_6cWijvnZpWqkZquAeImDmI^p(kvP_SRxtEZ#8y2|b z3Ao}=+9-ySq{5&mDi-7@Yg*M`N)+)I664-txtfQ>y|IbQvAQVip_>b6%9sXnIKt@# znu~n8)*M&mIEu)@z5S8QmE|bXsVi&DyJkjo<9t@6vu_R43P!N4hLWRovqxw2LpaZa zn}(5*zmxNYO!*>G-?B}gtbfo4v2OpqCQ)0=r!wpi6S65DtC!}`+*)>|$&^ocnEcP3 z*l-I8H~&j{IwM8;f-6=#jj&e`NNCmc)su-{2`DH~7@djT2a`1xy<&j&2h3>Syoupg zgC!xOQQ=uv8L+1V2NxlR0!%WOIE+of>@VeTGYyfjw*06@`)Syy!?&wz8qM_qvL(33 zrO5_L%pOUb;;6TVz6BL1qV{m6F}R$Pb@T9w*rtJiMsC7<=9lMzB||nTGbQ0;Tlp zA~)vHnr{Y+(=>$DdF*2&(1Sx;UuYKGz;pW?nGWL=NqEX_%Kiu~Y4wg~O4kUBJ^}&k z0huU3(fB9!@$BRI)6GWV2uJ;d>vnh)Et{EaMa3DqGz5iiQN#%H1f1#4PrKmsV*y&p z7g>0!ox4XZ40sU#k+Px*-gYN`}U`wm0H*cS=w*{2bb zPaed=;?1?BHZi^Ys+*^W z91@12N&Y;q36Sivki@@7H{e_$=RyCqzP9!6c8}})<{ttVXw{L?n?#%s=WSYiAF4Za z_Vr4r>3+ibhj{;wE#T^SLv>exM}8Dj{P{Fx^)|i5K4*A`Q)_M|Pu%PIRiF<6hbmNWl$9^|GqP za*tkPW=b<0%KqzzSyNo9rl~8IKKqnLXjX0VdV9>{kW7Z19{DpBNv1bA}jl(HwW!@eSFm(7`0!WFN2!J68y zVh@moh}wGhe4?-JL7z*L-t}Z)z7Wx8d8=m8rek6{2b49Sq-tkO?lX^pxk(I7Ri)tl zb-j!40~1zPF<^99(bo?Y@K;*XtP?g2J32|30vxb(Eq4xNGl2HMvSBwGQ13Y@+(+I3 z3-eeos8&g8k#mT{3(MC4sf?Oy8}a3H)S6~vr}FUf$q4c68HS|#YJwxIbd-_f@ctNl zqvB7tuSdrp z+Ru8pr@lD+*^V!^y}Hg|BIzZX$Y{t=@jhAWzXgHiG2}Ehp<(|wQcO)2Yp%4ntYF?| zpR-wh1#&qHrZ1O}9m$dXnf?#T*L$DitDWj35`(ye>l#TZRD8l{NMfWg2<&EUO6U~Y zvPGG;bPQvDCI2L4wcadd&#&BFe{b3vTeFZTqCjEQLz4`kP|2Ds0+&w#3s~&};6AsH zV~q(3Zr?;ptL70&j*p9%s%dtb#p>gpX1*bi`rONmcK%I0lj=2yn=nu}rWsLIifk`6b(r%=CMw9u+>NOhmC;M5Pf5;~W34)R zpqv5xA<1RENdlq+LDftX5@;M4!?0U!oBfpqAf880zj zmA}2`BLXK!M_9ly8?T1#U>L7SBp|1mRBE zbj{gssL{<=Iq*Z6a@&r9Ipw7JjnF>Ua2-je0Pu*xvXGa~ZlDnXuGCqUYzQrFg;!NU zij!PSIAefArR!DV9-8>wuAATAQ6_`;raM4S>Yr=M>{F5(pxm>&!{bU!!f!5Qx5B5&XUMh- z{|(RnI6y4`pQGjSprfhH?ek5jwoKDi5tBtC9j%mA$!eBbY{)AxK!M6g>U|lJy^wL3 zwA0oic)(580RHMHmw zn4SX-OyimH5Qw$>z+zhv_lzV;h(%8r1AZw1vUgJWRs?~$+k&m|e(joTQg^Gt+<85z zeg$@A8uqtHnxDv^@Hz8kv<&WCF%fH&;r+!NRGkj1%cG>6t=u)e#y~4*p zmxnr(-0!8xP+}JkkKjE2b1W2O%g8P#tRY-Uo3B!P3fI;j`8dCN2u#-fGWyRw@&5nq zZ{vI9L##l}fb7f&kW-uLU|<(lCZfvkjlz^dO~ly%BTKG)wGgsivq)|4-Yt$QxB?vG zX8J1eJOayRJRXw|!@@a5v-B%atA>kp%S%Mi`=_Hkfba24@NY}v8RK#P-)Ug~_**V5 zed1hk|6r!Kiz6xvtqd8rHP3g80QQawb1pVXRzl~E@WNT%Xx_#^K}uP|x>En?$ys-C zPWZ7_JxuJx8-2&g8uW49&d)1$R`pNd8j(n+KH+Ll|R7>pFxSy|g@ zP?S4qUJuFq`FOR4r0{|nR%H8|OT<_VFi|Ds_Sz-+)9>W+8OCSrt!(}MpZ`EMa<~dS?0IO zf3Zd`IV5+6au>ZU5&W1c&=+$VF+z=WmWii1`nl9U$iwwT+-plZMJQjP?A7e1={jePXFoYi;tf^)vcbL|M^YPUY&D9q?6;Q zMfBBH00k0>QoSH$f%sw8|U~@%#z^xF_+Ju0c;o!gXVC1wU)|7*y2PJ8x15V3P_;`kOLG= zmKQtUr1ETqBZ57q+N@?)(+KF~w5Y>^)&dk1v>Uz3R2?;}g53yY)5F4Uf;EkTiy7%n zIX#LJ%~UvzDj?TZBQYSS)&FsH)-5}lF z-JJpgf`oJne8+D_|8tztUCw#m=eh6ennyyTFxc+%!lF$uE9QL)Ixw(XK^2EP5s4K@ zcYVT3iW%jwXd;Npa;FH<&C-O}fD%b2>&XgZa-H@!mFYAFX7|9D9C-8;=`qouBUdRa zRC|tD*+pOwWH;k|Rec7;^--<~3YxIth9z|qa5ys)p}+&8`)qdv1`$XX7!O*^W$0DR zD5^>_x17<4g{CK z*@S{Fr&_jwHFOZHz?x5tyXT$R7oZM`;8n6ajOkTUw_)!X;DcTkQF%-7`qJ~}@o*KL z+ZPKwlQF+q5;!yq>q=K=K_c{}KY&jVePLdIf9x5m@xQgPl%`SCL9={%hbOr+CMN8_ zX?G+~tZ7UQ|4nVjH^6Vv5{4w7Kb%9>xh$6y>)h|1K;_u(vz~k`jifXOM3U5~Ep5-F zNd~&FFB6Mn!3iObwRmCT_p%s@nFBo;GBox1dla>D zR##U$dEFum6Sj7B3`~5hxwz&3R4B;Dk+hbzL~v}4WGaAy8BXi}+_Ame((_Di*zNu0 z-=k>G)of%*Z|~`eiJO|pY~Rn>Ep|ry4fo?WHFa&?@y`C4way~*qa_&10(5bDUwbfRBK=AV(-pEs|b`+&10nd+;@ssuAb zxFVAZFTRQWaJcfma-tx={>u$BP9tqV*xIT4bLhIX7U?L1HY{$RM2A?{F2A=;_ba`E zN>#CH&1|eN|4!|;$T-?$-Foo=?GM293*}&;O7Ez$d$OvI4lk zdymMfb3}&ZC`7C-8_vnMFKRLk=Tg6Zg+Mr4gOR_Jx21#|Q@najXv z__DBt1gX)2)ypar@$Se6)Bv{7qij1P=jG`0iF6>IpU(G)l>7xb)a*6exaeqtsDeCcFi9*A$-7}= z8OGauhPnp$BX32gTK&+FXysb^l#yL^RWh=`;#SW^@-aJviE!6GB0T$zB$cEvY_Rv{cXi~+a~tNaRf|6a4Q6{-UlIF!QP-n#^i2_rUqi4*GE!7laJ=9+fNUP}Wm3Ee& z%~HAC0YHkuwuW1uS0igO_lRl8^E2|P`#(~s5$C5JhqpTi&fKZmEnCiZoah4#_0VbS z??x`TbEnOugP_o~sEggltfwqC$zDW_!%n#mp^?bcXeOwz+#Nr-qxF_}Q#3Ik34g-- z*p1^=p6io#6t%g^Q-}l)Yf|Q!Wbg%xpHoZ}3>adj_j-3wX+~x_a7{#nDp7xzW=mO(G}~AO5XUOlZ>oa6HqeAGhd$XzFRy|fcSL6LG{-d6aA&YZ z?w&<4pW%b!%PNR-48@16>&$4z1U>nwJf-TRgM$)Nb}7Sf?8K=gXqiKRzF7CmD=+Yn z0O^M|eIU|Maj8BaK~kS#-+A1&`O@AaHI=K*2F*4|tiq-BfPx z{Q3pUSLtZ$?TKZXJZCS~Fp*@Js<+;<_K;J)Jfkb^z3e|up%AVVM%18MH5F;XQx+QK zbq=By0Mke3M`=Fy7BV|(^yq)uiDnlY@b-hHqQYClz|6tSM$uY;iRkBngs~UCV@o9h z?h4a___BSCT}YAs2-Tz_R`b$kMd(J%9uNuv)|e8cUn-axm~YJ{C4kX5EcP(Z zIq~=4*-wlD$5n$4ag}%WcLeHd{!NH zwjx+&%wcI0HK3Xx|08cp)73*!BGqMTfkgO>sJ1*_qI~61g$iOK?P73mRnzb+_mw^& zzT+}3tTqjFfl)`MoSnDeerTmNKW-qRnjDPQDY&yWMW}L;_imSH({S5nVgHfHLVl+E z#;|;AvE8pm#L?^ZjW;W>w+{CmZs0Bk+jS#2~5WP%6O|F9NB~f3tUr0dxi9HCS zf6l`xKsJ%kCTP{K0nF+~jr{_yAaVt{usP057LF!+N3E@U5I!7+?_$Kbi6d-yiEIQN zuA)4QygO0SS0LvTD5p&XY+Dqn8LudX5}6dJl89l-=RQbir!Hg&Vu%6@jTxtTsr@HP z=};Fl8l5Qh)koVPMV`>_D(%%evuGH@&bCQqL&#X?vh@&aeCjyGW2K}tb&CRJE}A{6 zQOxB{FEw%}p(eA;srr~c+9jkRGI0gS*H`6wBKl);V!cW|& zVeQ{~!sFiKr~{K3k&4cXx{dt*1B7hEMx#KAhrSGruULvWE@V_Wk|% z1F-s$Nv%XsNY$;Jix+KD!qL!i9mPM2@j3tPYfk*jB;4}*Wo_GteGlF|ZB8N5*&k4v zCFk%CVDg;fes3*nK=qzW0?#<*KoD3aA1u+Qz+JHnaJXWa;Olb-(?!Ra{qe&%S`U*n zg)(*?3S7~+NtGrIexRN;v^C_Zg@JjyQIL`R(6UU0a_UBAS-IjCTTwwLJ@uS*r}Q1= zBST#RL%YgwL*nI4ZVaR8^rw(_vQ_Zg_2pxsvW8}|%sZHc-IFW-?S=T{%rLQ#vI&4_Ju!#RPK zxRcLYAPYOJ?7VO?K`k^Wd!EAB?wuMp>|o>?XaNuKn5XAobHqG+1PB-Sn%czh<3ca-x;{2q&nJ5 z9ec>c}~^!*|(U!ge}$T6sZ4D(LJun+ASoaECi#q&gHWy?YH50A{nPb zQ>k>3psA*QUSF_*ml~iF4ZHnwhZ*p2ObQ$Z%$9pCF`eyr%7?y6Y0q5zEmW)BqPVy_ zV=dMiM-xNX_d>LBkpUB0Q~v8By29u8sVwYz+H%HV=K9|W=7<7QFYSSFm`shbH9qz74Uk87{PVS1)c zPZ$;B4{QG*ea?XiJAm!v(=+0}ZQ=-HBuf!|9mNe{u+ESvEx-T9KNfNIKq>ZvKYzia zlM-O>`&-uOFO@M{r!o(zxF=KvV>!_TlOS|A=zXu%X8|+Yr+*Ez*cU1bY(BYsngZUR z@hml$Klj)#=0g>E5erKk;-Y>DJo8rH}4}awBDEv5Z~FLWZ@>9mR5VzCz}$rAmVxoBc|4B zY>a8>DeIc${inmrCY@xl#(UK}E)MJOVgf#oJ%1SrsDx?iH}fjML>~yh2;{|@A&}j5 zkpDS9pFO=FBFZer@l!;ftZNAHdF>ec3~miz^0$y~ZaHvZ z0N)v!Np&tgJ)~`c1k33TSo5y{YPa;^Z}f~hzMz6OS@wG*fnqjAs)fGjtdZFUW!bDS zuyTXOPP>NsJL*y0#2o_S9Vpk1!euNdeaTsBCn;?A2q^~s{xkg=t%b>h2Yvw^Nrogg zrN{`lRx3^+M=K|BR#6G*QzR=d2CdNAXWu+Xi3?`iQR1+~!@+E_X@9ZaqS-!r)JU{} z1;&9!m3%2EF=-5;I{Q#CMqtNoLz(!nx!5*`Gb0Wm6w#xI2Wg@VZOsFffE`W9*Kgaj zVND%b|E9<5ElskJube8>1dR|oDh6LHDKDrg^%w(Afs#D?aWIiHj^(>CHc&)47($bU z*1tidke^E=p(&%+F{);gnX1v4j5R^TGi#k;IA!+Z>+?*aOUJ6U@-WaGJTC&lFsT?I z&h@hD^ohVMY|3-8(U9&xySg+}zTCu3t2}sN#LnpieJd5Xz)6b-K!#PT%Z3`@0jxQ@ zhW^w_FKCvqv7_ml%CK+jI<6LilR{O|Dv*+nL8&Z)hahFX0{Z_F+xTg4Fy`Vgsj&$+ z?ne*Os5#)3_DLqZQs@G&SWI`okmWD$-<^|jRo10VseeVprVaLR#YV=}fQ=dr&T746Tk!l z!$??I{~}*18`KDh=DO&|z!iJ@=kqs*i}<$(Qs3Jp4?s6R@;aM$B8Pu~AtnQyE(t&R z-Ln3nbmw3Qcj=uK1|GvQu})@rQ9dj`Y{+KNOd{awmEbIz{h!d?ED}YgaXVM&>IoTE z5#H5P@yCVTtc}d{M8n9iIh$+z+*1=D>UnH=BNTtj%r))m?)C3TzPSu607up!M`B&Y zeEDsa2txyrD?{MN`m$slTUp6yxsDVLpI$rM9ir*VMFmlaz!}zSG{7=vaqpnjIr&E? z!}%A2{ngSl^6~;7253fkzbPc_U9)!&M#qbVT}wchfp0-i|L*M1j&nmat$etYA>TR~ zaRG^}>NEfNm)D5Q4j*fuX26L2EWUH%&?B8np!-QwQatV`4Au*ZD@D?}D~V`X>12E7 z`SOc?IEagM+4_Ta5K999ftbx$BQ#|-!2nO-QX}w;Kvo}Vs;EQ5sy>moH-8JZvo4gh zrm3j!zg;Me;QTpt!Ves+18MNK1fpi!nl1`Q>O>_XgLLp?=B4vo-L!EO>G!B4DNN{O zJ;h@}yJFyn>*R8v$Bc;a%~m^dLR1DDdFQ09iDm-JBnWGbzk7=$zb70buDN}uw#nvT z`s}4DkUB+|*?XcL1-GE06jqmF_faw5?!QjIYrV!)Y#v5Oty} zYjo{=)SMM%UcnFt#MT{|XA6bWvX_1yXL{NU|5{J%g5)*$POgVZ+~f7IkWe%wPF*N3 zhX|~QZc4B#9w!uFI17W*yMxraqcL@?&?_im>UhD{}%Tu zSp&21+@E@cxLJ}!;uzH1hVO%Bb+;K0`F*1=Q)W`Q0(Lp@r?nyqxf<} zdt#GYIV3*r3Vc8kGWp&x*#nc)I|Zl|RIB4xng0pL`60*h?LDyc2*%+eL(DrL-JGb3 zfKB-l9>m8Jp|1|oAFTTgthfd`GJQJzT|zQ9fEmj>^X_#_dwi1;r(O=%z*FsEOOZ{$ zK%!U0&R&}~nZWCG;472>(gb%=o#(3ivh+c7jAE_1a87QAWHbzUg5 zWTLHEjH_zOZWE68e;UmUjHSUpi}D8LQ?)2m>c??XvN%(DL-n{5a!Y-5X4|L>%TO#3 z^iXvgboi3@emAUNQ1J%PeFU7x!((Hr7Zd(e7@j&Sx}U!1Hx(=w&jEgx2&bQ!>Y6`z zV(8vECz*$*)q1I(X+T5L zizDbZ&(jnTBXm0SfpgO%kR*8}n;3#q*-&+1lYFhL$T+1DIweD=_DnI4tY?8%(AT6F zDN@me_X+A2s}mqb#YjTGk0xWuqO z^`22ODH4ffptw`LZdbM2F4-8W0*ZuXCsC)n&OgkY7?hkD+#35DQbqgDP+Qz_d8lyG zu@;r%H2MU~mk7mWm>A-uA{IB@%*1}2#e?)EgatM??VVgYhIVHqtt=pNMEN|_yPTdh zS_CU%R9|^KSM~dzDWFKeYh=heF8Ux?QvJJe0~|Hn#uh9m^I`+yQ{SHBDW~_BO2!!{ zpOz8+?askWehSC*9 z8^E9jdH{B2Y3P3KvN~Nec3Ge?FUUT_$OKO(hfBktS zBBE8d=2HAG)*HL;-^V!G3~a2XH!7$uIJ#;0e!}=i1UC4%x&Li-V`L;5>AYF zhOZaEEU@pgR$BXO+7zhx)1-|I0$JQU7$Mys+)2wQ$%gn{B_i(~MJP1zU3Ifvj@t1S zwy3ZRx`7bNJ7331Z`O}^kC+W6u9z{LRi6^eY%YpIS8&tW2Osxn#;c$vORVE)02q@% z<0GQZ1Y*?^s2#I#G*tKd?q*=OP2f%;oYIJyLI3>$e-+Yz@c_)tu7! zta`I~!g}%?da;+dvPKWcvS=7or;F_^35VLRi8mQMs8}Ee?oleU9~6)+eb>k~dq=Tx zh7(T9C>Y9{wCwL)lv*#v*zuR$3-E5ljvUyC*n3waRHSDy2O>4x!xuOQUd5bFDMB`7 zSJuKb2@Q&xO;Mc1Mb`Vla8zr7ZD4LNQzlYo-*&R9t0P?(q$T`ad zmLaSNV+rm3R(*Dj88nMh;reA9ahGGpVso_uL7v;vDr-h$?Rs-x4n;Xrc``Zgcw4}@ z&?Rf9hulUiay2tAR8h7>LXQVioX2aEGyn4A>>iXQw{Z6`@bS~$QYAl7W$()s47_50 z6ElYkXnd)=cN9xaGQEF&R(v{kt-2R?J|=rSQTx09X&v8_f^kHPY{0eqisC<-Iz?iq zw$SSn5n3`$ICeGD?C`xys|RN>XUe_vVn0ql$%&H$Awl+AjR=wmNU&l&(%_9zn==fy z%!qF2vUYDnsoKTCVXkRgT5_zAx{^lF>=vh$Kn4cigt2Ydns48&=e`$)AG`cJYJ%#wkbc1 zNi1U3Xw>3Xf&|d4pcov8$%bt!Qx*BColWvs{FYBXQllS~7*8Ghft)Z}Qf&h$ILy*z zw>>0cF5-f0ldW6nZbF>Jx$EI0&3Yia05FtNNe-+uQw(B6?@ zi1bxA+;99C1`Dwn>rS?0n&2YKq(w6x7N@`j1~^9JBQ! z9C!$zx}Hp^vGr5Imefrc{WG`-bF(e1zK(%;wpF~!e3n$~=!(A)#+$zMk|-9xYp)K! zhUea&17?hgbPaZM?&LHWVVnTv-#r`{JyOgzs|NcauBfYvlSBb@9w=BPlYd-@vM}6* zoD1FZtS;?atA28HDH}Sz`8y(l=4aYJl+6(wv(3F*FNEQHffEy@DAWTU+dYyi$m+z& zhb2vt07#!9gpcr9I%LZ|eh$$og}3t~O3?Gb@6JUvX?NH)(zSv-UFAC8D|EETg@|wv z{EjB4U77Dom&%h`qg-x^xD>Fof;HGMYT5p0u5D@YSheTF^~(<{cENc$nr(&$GGNgk zYd#g8{0F3y8ed@dj?`0tl0W_B`nMIw!U0PEHy;3dh-9!0?0@ue3;)wzsTHJV4wsIW z-sqEiN6Bk%PkFJi?H5aF*bS`cd!vbFP}X>f#a?cdd@m1r`hm<=_}gW`(Dd5Z8J7BsMmOoMn(Ub-l!C9C0@&iw z`INQ#Y{Uw%Hp{KGNnhC~oFycwBw5$v(EYY=H&J}56jnn6%tCF4y|B(B7HXJ< z=$VofhI&yliTioz(8j<pybf_RQ{CP)^yYU@#jo}huar4M9aamQ(#Od!xRo7X>kGDdpWYqptTzAFdkWUqYP$^U)w#6FN^#H zt5^cbpA>7gWIHg`VR2|vFm+jM^s9(QT|%&l_ak;l5@=QpBM?As_z$@t)Byn#kmxQr zL{8k3XDYDS#nDjmH->svyrOIwTAaqI_RD=??%JHJ*IgWv3-jk zoDB1{LV5FDCTSr^3Hp_qWHm4X5W3^+ENb`BMJMt3N^$4-eKl4JIW9$Pg;%~ippyBH z?;hBN`SotJv^@OEJil1_xczh2Kia7X54~tx)zFC!cA=+{$&gm_4vQ?n`PR8>tnHUu zvDlMV&y#;m*7~Dxd5vnk7K8IsQ~CKFBFxsOSS{Ql4>|{zy#IAMoQ}R2te|pc zNN(I(ZV*CsB+@acnE|ZMmH*MMXd+Dr_6kA$AFfe(clG7}tnkexk>y53s}3$9M6KJH zs)~vv7KHHT@>!--Yd#j`>(z1#&7P~LjvfK=;f)^gJoVqFMs?p~MrxX+OtPvI5MBe? zw$5P_4O6ktqD4B3yYH1!9YF6SWRKyZO1QI03N)**mx`%^=Fl422`vn!{o}muB-vDP z@bhANyIJp3K!QDuzqW_5wFh44iGB(Tz3OjRiNsE$T8E9Mf#s=K(=|-TfJtD8Gl#1+ zN-3Y7DcP7-FFxtW*KaX)2=HU;mKbn82V}dvR^Ve(#bvG%UJf)V34ivw^|&}Xk;28+ zVHYmyi)Vw8-Y!j7p+;c43I~{^EMuFE6MV=(y(&R%#vmt==A&>N7zHC-+qDR-F`r42 zH7dGfy)2UVmcsNX_!e{JK7y{~SuQCuP?lP~@9IkgJ+x4o%>SflqJvGBUBo1qL~Qwh z@k!8iioI4wa{?9x8-g`k93~_hLqQ3FIAL{*+YIl7yl)Izpc~v)>hpc7WdY$O>=+26Z%??W+%YsDIVmb>Ezz`~HkQT~m zD#~QZ84i4&8>9^{xo?$hUC%Pv_y#rvU7Z>EL!2=}yS>Clyn4SQ1sr!QbuG`%>dl2D zwM5~W+~%fT-3BiTN8q?8%bZ#G>BksehHVTk8*&)rSXe#bMeQ&~wPnxCQ<85)L}^Rh zF|ZGR4uG=Ptp@=4aip!?BCp$`NH8a;$~F$LtOI&dol+~pF>JLIy0+%H>PW5z05gqg z0XYQ3tE5wq@p|At@$!dp;}OC%W!6wBR|H8;XLx>oqmd%#o2w91G6FtlHiI@~xkL{=nXQw1D)(3&z!T2+fE3psC!J=DWUwTWA0B z#i)l!AKX+=JLC&l2$jra<1#yhecuM&`#x`B3Gk5@a0&3hcR#-p0Ke()o{?bIbSvw7 zxBs35L`UBe0782D*X_65H=LfgEx?mQVJD4q03v9QR(?#IvL-Cwz~Gd5z}6L> z#e%^YPF%dT+t_{jt(Al})Em>lIqDnIy{*@CX2l<6=e6>fl zXK~zB8p4+l6c^T4Ud@dcPT#PW!VAE43^wws$`17+bIR%z!9A!<3wpFfhY)(WB)Z)^ z9^VM?IIfpYZ!E=t1kw=7mukv6H*$-Hw%U@mu~8HNEf!YgiAz7jCA18~KZ(Gt2tg`r zBQ)5cdD8L&+i(@ZP{v5WCBz1i>M)QJ8_nL*@@s)S<`aKB?rnf1ZDH-qgFM}Es1 ziEmn%+dt=qr%Z&vm>@JF1J+sA>RdyBq_4@STjUp9TKG9eGRc9MykSY!P>S?@ErI5R zFy)|n6KEtb{0wKLL=FQfFesPC3X?O2il|XKkx2xA@F&OTnu;-+{&a7_`^AR{URDJ% z*^eo6IT&0KwA3qTU$a>5;I~cHslErG{<`zbP6_dyZ4jT|Sjhd2`i{>6XYzyTx*K`B z|KQ6D68opFzF)@S{`(+*U&i$EH%Ec7>hz{L7Mjp5{bCU6QDaVTy{o{_e8+7fS6R+vf7K_C~%KxQQ# zu9Dm`R7O@NLaC$OEK;VvkP-s;pvdBoJ*k_gj(QGG!mL6L-~zwI}JU%8eKYetVivF}{sc&B5)bps!u~aAFba$Nvo`P?O7_ z?tK|A@t(B2-{^}}(6c4}W3tT79(;qa#%L+cXu)w;?(q^ssobAB9Ii?b^m-c$qs-ke z+|-4x;q?-1+e0^&pFGV{$w%U5phDbPB4~1yCaAUoGvqynAg!$sfQ{|RwwtBLeK8U$ z!-zS@#1ST=$l&-J`^yLUQ7gi0M1Vi3zWkL=%`#d7w5ql;mQ>zs2Xrpqg*i!3$5cz+ z=zQf%GA<5Pi0JQR@jl)gjp>{Z{fb20AElX@4J|0-3R=W`;ke!7z@Tfgi4$>mwCq4K zbk(^QVLXJWfGz>BWrai53O8`~0T9WcDKC5}lPL>hlNcO(Dn_6aauiOXE}^Z>^0gj` zSz*bsuD>&909>K5SWif|>W-$nHtGCBiEuF%({H11G^3Iihfp$a!gUt-JZRzZbxtC; z)~t~R3a*bxto7pHpZO8dHM2{bkaR}Bh9&Z4&C{_sPXjSkNGg%~dfqt@+C;|Ki|7Q; z-jk2F%edGAuz$e0O9j28nsx|=(Si+j@h5`@1FNPm|Ilk3PHTi34h)KQGm!U8UOPGm z6gE(@zl;SAf89P1T|?c0*q39K(!0~!4T$mp{t;RsG&I9sd7Q*gbA^;-wm_Y7zpKe~$1aq@CzYyfyvsg!z`jkwQG5qRi=}~QV<&oe7~%#p{3eDg5(qyw#dg9! zIyedN0Ph#byK`6oIzjvd{3xCgj+n+{^U}YB@+iLlGpDgSHZnJWn6r%^Bf9;u&(C1j zZ*X=GvO#yo;hW~`e;bV-n-ddy&$m}z?C=s1iSQUC7f{NmnLtjvTF0kx>oS0rgFrv5 zjx>O5L?(#6IoeK4Dbk2o0S#J`1t9d(!M8YY>GOaEueHr98XL06E1PdhXEul!fA0SP z`!*8rEZ6COk2(CSwbMVWAnPB!Br_BF#x(HWXkVJi7vQ5mJkGqa0=EJB*M)#5A3z*^ z4;qQU=7F(L3z6}nLXfuGs0HbzodIhHg(D`1#Coq;@RjBI~Fm8UJC+SIaj71Vu55S?$mHj(oxk(smcr#N<*FBW*giOzL!6A-xJLVhv%s#8iL#1fF}|GxRQhu zX4~%#o-dO%3kx_z4Oui$Pb!VJWTa~JQX$}ZrK%PDkWZlZZrR*1lPs-EvZk;UArgcl zOYhK3$Akh)bR*?jsk}2}K&t#R!5VBnEgwrU!|){;{x+aO0fJ}6HvTv3mlan9y)_mA zPKc?ytH$1AgAIThB?+Hap+iVFHVR2khgIF#Xj5-4?OxJz(ON=cP8xfvbpZNTI|HZ{ z#RMZkQlT0YeIBz;gVxYJ=Pn5Ymk`rXr@(6*#fG=R`;;LSLg`U&B;KV9S+5*IrO|EF zv4mmTH{){;(*;S%Vu0oWy*>;a4}@|q9+mmj>VsGR<#-bDa79u~C@EsWM3*{~ zB7rMw(?Od55UIo9bJHD&Ap^}D45 zT(uhZ%hM+`rMY;+Pm@kfhP%I$(e+tufOAnnJ4c?1a=#zr${;84Phywvg)SLSUr*>M z6=5}QsIFt0l6n=ICoEF%_a2O=ig6wVzK;d;@kZQ>OQ{p$=EdO7l81eW_Fh+8@SNll z0_g>lG6`p#G8gp{OK?dMpLpd&FAR0fM36!8Q(~`O#~(b#XK@b(-7;0ZGALO}^Q6^0 zX(td+?!P|iQVVc}B@s^Mxv&-WHgIO7YspPVu$aR59zElAf;!_QAE-=XMh9V4Jru2= z0S66@)Vj#WWK9*>*w~ydle_|=AFo>AWDWuoCL=~P=_HR4(@}qgs4_%O9aor$S|Y5+ z?I(r4$E(j$jO)az4TD7}e3!CXi5*#3T^LrH)Lq~r{kiT8rSBAJ*#k>+oRB7)U#L|- zAr1DMAO_Md0SxPjk^#`}H!x}wdjFM#Tv?Bi;LM`G7OG?)W87Oly4zWpO-u4!8>(5s znq=I<%-kOu4O|Jb(kgAU$7ggc32Tny?~` zSSNPi$?qCNpRh~3H!5g?rC~vGNNt&>(SRo2n=j-Z_IVFyKaTv z*_Cy!hr%HEnYTDE)N@kzJw`pD-QFAzZPtoS}>87Q1P7!)iK5n9h)%niDi$(+JuerwvM-#)#Ol9&4Xa7Q@oT13o8hIM9XryBlG?lal^&#UPChPm67&0_uTL+;+i+(A zh^u;W!qX)k8-#{^(Mff)kw&&5XjDya4>s&_!SClK$@P1se?1Sl_Xy-#B^UC2d$Bpi zVy*AYX!Ps;d-b_?_}@l)kMeZ_=z&rGpn{mRb;Ud9#GH*BLGO3doK80|rPW~1kKhW_ zey*Cmi?08TOgY;GpThCON`mXjLgQ) z@H=@@5BMVkuP}&^EzrSd<8G|}D-`>7y}Dt>39fywup_|-t3|NH6NdUxIOf3W012Xv z)hrI07EJ@cb;=oYe|q0%G>jOg8IMc|}c&M_cQlMI~NLzRc#Q12@7^8w$PPy;73 z1}$|*xHS6AmUo60<@8#v_Y1qj;fR1BG_Cqef^;N@+!qjJzik-MN9Kq?3&AV}q(Qw; zXqE3!3wR<0vJy0hK%l00oH_2%gyBVqb&B&#q{)E<7q)Kha9qQ6_CWRbzSB#n6HqlBsyACa+!c3 z9EbkneW0dU>1&)31GBkguNCcx(G95T7^m!Fj9OF}F(+M7M%lH|)*??^V*4zwV8B-g z9SRBbNO=S#J2;_>Pi5*;A0x(%u)`Z|FoBi?HzVgypm+KVn3X$P_#;q&)+%tbwhYpv zh?lDuYZ1*b4L9C*+OQwASG&pw@k%Ww|H@u=ZT|g1?t!B>mb`v*XY7`Qvdc4!Xr`vl za2gaOpaZe(3z}peH0dpWa!Iqvuo<^06v2DG;uRd4Vqf zAG%})*pSH9Q@ZWK6o?_=XagB=J!6{gVlgGB&n8@MjHlHgU(o-O06TVtUGyipZw#-B zmm#egqXkUci`Lr2>wuB^*}Tphk=m?5%R!KPTqeM zNR^-<#L5Xb&aq%Ft4A+W&>)r9P=RP-rRBH+!k1NLN}t@R6*p?xkYvisnPRxg#}*k5 zA|u;8SG%4-Ru!T>;9-*Jr{ZW}&dNMh8l@nC&)x^2njVNK@!ogV;B2b7Bz{OtLnQyC z3K=U}So`GxmCGbTv^E~32!~ZCnKAU`8SAzzzoeaK?YE|OOnRC$+h$70np4^7zBg-VzY*ta4g0>=zSO^ui`95UJN3{GF`275g8l?z! z;wO)mbVSux%#EGi^%SXJ{wSN`6$wm)qW^U`$=slvbBPC&uFT3lmZ|h0j&!HP>o$Gb zv8Ss1WI>F9qBQIwD}EC^CgZq+jLft`CQbzE!c*`5VFRk4G;pI=JmK;pJQ07RnhCW< zr8nFFO&Cz^@CW6+gMa%nN(n)ol{mIuldBh($&pUg5a;kJeC>;nd0eg$@Pyvw>S8z=rir|Cu}8vHHe(^_|y%PdS4^>3!< zquZ#X#it>iS*n;u z_=;$6RxD^N(u96eK1s$>BP@_!pXC@Uf?cWbwW?m<=^$QA_^8g{W#YSMT8cmCIE4d4 zLu3<67_x>m4-w7h*fe>uvO4$x8Io`Uo#zaQX(I~&^lxLby$=$d8>jyk)_YqWKKY!O zX3L964UfT@4IU^#0=LFT0QEXX6SNVB-ooOoqcjz5q7unT98+MLX&#dbN=|eZN$RDZ zaPIVbA^aEd>Y(`e@#DkI!VI?5pnrhO0wxgOS}ywU6TpmJ3Ap_T94C}(zt0JNFsCje zgioCSpvH(XOTcafv^A=SUCdGWxuB`MPM_uS=MZ|oIUP-A)C$33k%o|L8rO0JoCH+; znpp`W0(b0$&V)#&nz1281;r^8hm{f0x*VEGiv;=9g%xUmN~XfZ-IoR1Z}IFunAvg; zWO;>s|BjVDbo4w6`(8d0wRZalM@OTNnJ5x|yzG{wVl#)D9C@GKhg-1_Ax0v_Flg!O zIkpKV9ns)%6?UKOkVkK2gD9o9l{kfMeA2ey??#ZGO_Be=FSjU zf7Z^Yw2QpH2ePbqIyViF#~P;A`c zhME=&m2-_bN!lAdTd-XZM++fA~p( zrcI;{xB-Fgy0r%gEYyye)b%DaeoGmhNApvAOxV|#3$nWn8Td2%bJlh9%@yf8YRBiP zlrM8(ds1>KUxrPfyK4=Mp59$yyf_fV{dB1t_$cKJn%aD8*O?go?7 zvwV%z_zNku%xkM^OdGZd)eL7|Q&_5Itg9*~?$d9CZjdD5-KFv?+fq0#IU#}+DjB8^ z;1l(enKe@q^r}kF}@WW0`wYo-^+^zJ*7%3LPOn=4&`P#T7P!bv~+zN zRQhBrzs#GR8?2vu!@7d1xXQFU8zB$NnZpiEK*Y4eA9j*ixrcK@YBFdVnwlbi%9qnf z4b3^nQa8E~ooT&y$=>;EVTC7%(`m+MYWB-tp7$Gd9?O^vDeV$Y6~X~=XQ>OPYI{W_ z3YW=|z{+6*PGj7qo11aXe{PPSc1j!AKa+3V7%~bE^fPxJaD9Eh|Xk*RHUsMLJCCV zL)jts2Tksr1B?oe(SdabdQ2ZQ1}A@|a_BZXw` za*6h6xff^_1q3*&=W&)D9}0;Py=b4ey>`d~qxLs+C(%VZ40oMH1di|mZ4dVW+wY(@7ucb6RzNeP;#!t+56=76_S>IYTT0%&SW5Zgf zJT@DFqe!LiCp>C_km3fUC~^x=AV2}vKf2}okFhc!y;8V*oa{Fv)PUXVm2I!ES-cj6 zoI45dUEt_`XV>_ME@A%gbD~E|d&(RyGgj0=gYPQIOz!RQItdhKUcZZod1=J*-1WjOG z58rMB`rcme1LC(|?^+zE0k(N}-_{nnp-4bb&&x)SYy{3fGh#d800)o-Y0sHS#^`nL zF#kjxvgG`Q2v<-UeP&=FWbu|67z6d&N)I0C{ud;FB%x!5=Y>tfouy|bFgLMhQK*Yj z%>x7?kJ};quIhRP9ErR<=3~LPPB)ergaG#Q$7L5b9KEecC>J4{dN(7?>Y2wy-`>KE z*ig^Y+P7B!Cj@?eAgOVxp-mqJU}x~l#*uRHnP_wP@jTHYaL!5h|19rMv?ZVuqk%NG4rpC?5o-4 zO2AMA7XwVtjOL&w!igcNf|mgv3vAIw=Q6aATkEhT=dkuk_0*~(%C)Bv!F6qSlj%Bqy{y*5>W&8~}-~ zLQ#!99A(st?CqQ+{z^wBlX3E*s(tJlk2`7k6tNkQQ#zS})gElBp^~m~*O!75YiP6w z%Zw|g`T_NT!~`LXPMqdGaJrmI3}20ID%o`{%f>f1moZ7g2CQ~e`*V*YA!JG(DWl{ zxBmsJe@;rrNFpZ<3%WJXB;3oA{=m|rzVn1lpI{qG38P5u{X>p*pF=T?uTVbHT=0Om z$~=rs9>T83Hye?SE21Egv@q#RD22$KnJ-ZJUlRkMho4mhaIQe7nd}ZZW)JLEBbcD8 zN57Mfi}XL1&N?cJz74~4cP`zqlr%0#v!v33fPi!g(%s$N-6bF?-Q6iE-6h@i&3n#w z4*bs^W@mo$JokNFG=*G+ChZ^3=Mu&fYXebd(Ct!Je)n>6bDp#tt(H-jRxlXjo9#$L zF`bNmPz*(m>0^aiQ~UA30I3uka)UYyej{s|u4YO^INc=6qO-Jo4^IYucTG9c| zTpXdgP~+_4f=Y-*9zA?^l>*c0pE!Q3LB)U#*&bP`U=rsLx<@|;zo)jjGGNclN;A)* zLR7XB!7p|uZ7cyzEOd#CrDj(6t+Ou#G@C->+!F`HM!iwAmSG8h#JGOpDi0$V4mNX%eaTC(n`>7mzL$w&V zz_QFhjKTGK+jrbKV7o?KD;Y?)yFOeZ*DFXi-O0LjBo=*^7bg>R@e-vTY9Ht3J|VMn zO~W*sDYO21a{B=shc}ZPsDJ^TrQ+oNcU9|)&ll9Y={xNPk$LMTm57Z(aEi#^@T?^T z;IxZp*Z_g22$f()lUlq9S598VKBS&*>6Pjh@EYb?$TfldgSi;^1o`sHrL-h7 zFhX8%PisQR;3cM}1dZZ{iBKpHmQ_;YEE?S>*$T%Yrpv#3u|?Y?R)Ek7JFrbmFCK&- zVFbu5#AOVmV}#Np7)|L-3B~yd_rcC1=u}t=d9+At&CvL~Zjp@G2S1Htx!idGhWqa> z6qgkPlis)g9jLc%Mi*S~9x**dX;}b*mg`v_{#yhmzg1;kA%?%7I?`PeBYK@{?#p?1 z#}j1#!i+EB4{@h#M1l)_=jPUF30Q@IQNcIZ@0s`gN@DGTv6;e|pIB;L=k_%kwVrk@ zeIHKRE79~Jie7~(nwwsaDPp;0SZixOT`?5saPjB!2J z`YQmcP5Je0d-vx8gpw@soql_Vgx(xbEyn?v5J2hf&SM@P3A>BdKaJQ3^@p7eLSU0L zO&2EJ#alfO4jhiOsLHmLQLbwEN-VD8aY9^iB?F}nZOgPnod)iZHKSssp9Tq_3VPYN z`1N+v***ETw|{@z`s4g^*9FC{YjySOXOpP6*RxlurY6m8fVjm6^s1^?t;_HaK}F+N z7?SI~nlmTw$NkcOsm6FXxP$;ftj(1loxL_bKp`HesCV>v*7O1ACBW3TnLdzf@qt%2 z!utS6JgXFtwC@^<_e7R*UT?Lrm`c`jfiioYJ57v*+~e_g1zLWG5J8q9g4e3H*}L?) z0FDRXsn<8S-uxpP?CAa8>?H;yC@Kapn+I)T(y%mTN|WItt@fu672lrQ(EdBr5by==d0(f!YmO^ zfJ9_Q>SBXHV~$9BS4xg(uf0mH1wafVn!r8?K`Pk30+pG7Ox`6*1&smrfC__M_pFkp zrr)H3Je(TaubY(ojheb_fS#bbCAB~Rh$k>ZvdqvH7OXsP4;^%L->Ik*IVJJns1qoM z8?%OZ1)SO__4ymi9)A9qV72SSTGj=5%lJhf%0@sB>GIV&irDGOoafGLb9=Bn`dlO? zTMYWBO?x~1AopS&U&D&a^6nt;dC;N&_XjJSAWK;ME7aG}GV+rQ^s(}gG>{@Ag}ECW zkra(%ZB;%yp{Z2iQ$id{}f|NM#{mmZ2Qq<+U391OfK+1e)^;o5Wp*(_G z^hQlWF6eSX=tZQQRRw>oY$0Ta*+|k1n+sD(7pbBeu$}waH(167qXH=sO^iHGETqEv zYZC~9RqTOraJRo%;M`&~b~Jn+U!$(hAOf5oQi#!^lY*zzV>zpk9;v7a=C;~d}^s|Q5D>l>E!1aZw*XA1BZy#OtW7EIjI;1#MsJW^?wn&AYYx z-xPcgMpEetK^s>7ikX8TS1+Us6!GB6kNXEysq$sl7=ou_tYR#X zmnexH6e=`{vKu9KK87|3N_`1Pw|p;l^r=VSZA^LbulA7`baK&&`HVmw&#GG{Q03avI(W<&(C6MY-YwcR zhANM_%g+m-A#hW}Y4;N4Cv##fQr#YeWS1iW^3R*}yIBD}$rTq@7ngu>?-&|Ly|7bH z9%$~O2h~mph&HjOSHTj*rX+q<(KaAQ1|DjPnOki`7tj6ZV?^k@gG4Og`avS2b^Jg2 zyui*(^!D5!vm@g>&ZRG>7$NQuV-+9PAX4j#Us$FX{U#(5Tnl&Q-d(6c@7Mz7`Mb7m zdv<}Vu414uiL2{NCG3CYA3PP>ZKRQ6OgB%`R#m;k@47fea-&EmjSjw?G|xhn@ukTt zh~f07oet;M!;u(IRaVg+)x8|1M}XRxHGV+*5hyhqZHvYE+jpLX7Q+`q`|6B7r3fDz zgVzwI!qh_joc-MbAAl8PwjbpV+2_#PNKoqR>madvn%Wp|MQ-zI?1sQNHTOXx?^l2L z#C%!rM97!cn}iVccYp2~5faGE#r%n3(4wtbbC}8vlQQ2C%B;c0%KI(j_D*!$p!R5s zn3ww=G*Adg#4Z9GlFdJl@SmexeiD8qGbH*nFpf-iqvb($bA8XL91gF_3|K;e1adnR zJU}C66;W(~n``%SjrhBj&imzfef#(qAUVUz@wvdQ^T3se`tcviYS|bZPAb~w8TNLa z^TxB*?iNvXR-^gOz3D(-Tq2Ji{TmeSbAIqS8aLwxJd3AFL zx}GJLyk85af3qSWVF4v!eyre)$_~1 zuhISW)=Wpr{m#4z3g_{gxL@rH_$*$x*IBby*KyZHj-3yggx~Brk}C2Z6LFE@3~fWF z^Vl55_W5w6OAjt~?4u?{oF!lYkQ{jnlJeu#%Zt0q|>AkXL-~knd!Wb4J1ZnAR9@&TGS66EoHE09hEs=pM z;z{L6mTRww?F%qzJZs!=dLG!!)uXN#n**qMV<`tajpbVpcA=|KX|r15$;3Rg4Mgk% zh=T{U&nAe7)c8!pPq;X*fP;Q2%prB3q3&aEXf0bTF$sw|x~0T^GiO=ERj!nC(9}mQ zBbfOx!nu~#&#LLfwB6^1@`e#MXcR;>+K$d!x)Avt< zW48H;{fTJ$M|@}s&cB^8HzgVNI)U>1MBiHDD1_vn1oQ{#@S%atBW@N7*UFFNcSfek z%`TzjVf&;uQdYbi^pd4eLm50GZSFQ3a^^p(UxqF-mvj!1MQgp^d9BF~D{3VJY?jhv z5}wG=ipeCwMi8C!*;GBI1PXpDFHctD;S%|+vj3E9plI57vEZ=50aGiYGD;jtUscJr zDUaY|C{A|tILV{$_H>AEF62xS<)8&iE89rqTUQi)6I<xpw~8PtS7XZvUvpFqm5m`0)i z&#)*ToNB_W)0^KlG6?7Z^L8DL2|mLBr%Sx5IH5-HC3!?YoVvQ0mEff|&vDAfjln11 zyfb}=h<RcmqQJ6Dq;0{~f&C$b=5hUn@6Z!){HYyIW!P0912 zuG1eI_U&HjEi^^+*|#=(`$2}PplT0>H?zPGzW~&1@iSQj^_{?Re0&Z!<}k`ul$yM- zJ=`Kkq)^9tK0zx33N11R$_pZA3+%f06(P{)ThF(~LNVyutd?2eGf&6T{jl-#S7*az3MWnx{ur(KaBHl(k)N(`8H8a2kla$oQMHy&@1~aZ8#=_!b-Dte-y|{S zI99L7U0Q{$VAyCnOjI~$X+A|n&P$iMY%-Q1KJK)K%y4%HCQXF^$*d{t$iMBt;N+=S zZzIrnlP==xGAJlW@#xK;&6l~BAf7i;{}eXN*o;0$j1+#P3mKSXhS*(KFlX&i(C@w@ zVYJIFexNlvxIp(T{IZszQ*!Zsye||y1?`w{3H}$_LFf1>42HK$A3aNH99<8NII|=%{(IbOovp=lu z2_fGItP!k?I24qSRUB5TuS1lF<#rM9QOi+^5uKknTe{ZLDxI}2b=8pHdwForn7DK- zw$Jf7xscH&-H(}kFJQ6p>*p-!u`GLY;jJ%5?nBmmj8C@L<^2!RDGQ_Rhr&tb!cRcU zceYdTg?(LI(AmCOjU7FvyNoILj)WH!o>QY?)ULPLA7KVi&`<5KqkLnsMf(S-gnM^) z@ra2(25wv&-LU>$6_zEE_D|qGvq)skrxR&1K*L#nRg=jSWN?kCD$p>{NCY1Vd{X4P z?q>b&%)Zv)(e*k7Pdy3a!Av_!kUUDRZlcdNO`MX#`dJ;T$edT(2*3tMMf`F1Pr7Lz zJO)OMRNA0kL04|QDD~onjaYygWj~3L znfzj*ol&^nPAqLO9uEs$BCa=03n$9Yx2@`ymq|a@r-?-K55|MnusX620T~d$V~V5X z5TML9kc1HwaK_ScYi5}&(LLb$;(X`$K04vys2kF|DVC_AG(YEyV$x@j5?LO%JTI<4 zGNP>HfK##(%Cjr=Ez4`*Ng&k5YURdOgu0FdrwoxaASA^@`T%0GEB#)c8R;qP?sMoE zeL|+@ufe3mg;Gdu4*+--_Lc62cjM(eRv}T}i;E^Yi=~KRe zYV4rMTI;WxACt|jFn};>{ly=}?knd1KDBq{KfEux zl{g;?d|1&IzEL|5T;NfbEbIPb9|j~BcKzwK-QuI-v<=UM%WLy16ck)VVKC@+Bcx?K zj5HQP;Z**uV6Cat{SgQ$XZer2E5u>@U64GQ!p5f2^~xq-+%)EQkz>9_GUpPC)-15( zQfM{3M4gGxUS3+)5uIFq%0Zk^=2K}yf3-2ziFhicQI=Jj){7Z~BPMoebG<H zAyaTxvlKPadUhL6wY-VABA%d7t#oBoy_U1WOt7QbW6UJ#H>No^_C87UK5@sdk379# zn)wEFqafT81!Z;v;|a0L8?Z%e<@V9PNr0qnvYlGyqC*+Go;MzV{L&nAnvc%Yyl%y? zan<3%Ih$T>B!5VrH-wJ4?}>668CXDkHj%2V6e^fMI8Y{FC~pB25Ww9x=by7Jo6Z;g zZf_OUPiYzND7qlxb%c-6hC}2#v&v)ji9L zH^RYw)fK#Ql7(uYG!#)UQH;{~!;Kk5#4O;g(EqOgnEoAL{Ag@3leuGzC&C^wtN$rE zZc7tZjBfY3`+6rpQ~;x2KZl&r<~sm4f!UriXj~sGdtDvL{zPTCx=AFw-LJvl})McDVwyl$T% zXARh*FHQZ2KM$WuFn8+3U++~Ea~>|%MH=e1iyBUumdiLyJQ-&|ON*+aR}P|=v+^A& z^V4-VpPAS8=VDIeCo---F`K4Gnl>Zs7a-?{G>`%gXY!O|!r$0;kdybNXc5Oh36ILf zvMriwdf%^mMlJmMhHqMipz+J1Fc62HbwIm?%BsXc#3$~p4`luslYSI5;QJeU@!yBP ze`{V#EM)p*!)gdN=Agxjd58)V31WWK*AtG8yV2qi*8vWZ-@iD_Ct zna0MFk0^}ruhztGAvA(Q#Ud%Sr9kLlR{%i^NF2xae1BVj|KJG)MAU^JL+SIG(MASA zk^?GdDiMV!V!_Yl<&1lG4k2;r*%iY3-reSHc;<(nv1ra~K5dk7LAig<3)wJNw9e05 zMEBt88w(fE4BW8M5KRPNR5)x4PG~F6pF64MEV?8DRaODiiub|Bqw(8Xp#fs5JU##X zA&&E)G6#A$9E9=@D5$Xxj@0(USVba=SE1N~2MMnYkQV8Yz{EMTpPvg@bH0S%q~l+w z3is@)LCB~-&B`j)(ZxljEH8l$IXPEGpOP4ozb&osjGhqL+C#Dm<_lfOL$ojcj^r2C z@#8HaPBDh}yb54EujL8kA8HHwP8(fg;f9lZ7_OCx6`Mx4qe%3}E#XGuhW%m^B*A^7 zsA=Vd<_pCOD(oOSj?#L~yep`ZGe(#$qL7wQN}|0C@zXU;DfJpXX><8xY+l5WAXm9U zO&{%++-r&?f&iol^GYfcO-PQ)C3L?qwdx$9;UX%;?gMAdG?AY1jNe%sTe!Gx(s(~X zble#=ym?l+Mo?3?D4@)C^$^MZ16SwF76 zfoYsnl{MK@TyL*Q4CYXsa)-q83^REZsA%Zwr6VaU@y^=$G=zE5Htc(itE%wDfW!h>?JF#hCGwxlyl;tR5|5+~y{TU2pD#4%2#|Ev|x! z%fAvAJsjtfHgt``RX-b&;pdxAj2W#eRoa#0}Th*ugdvm2kJ&Kb6!)TX`l^< z@hvQG4bKu@_H5o9H@e>agH5aC!ovLzsP`Q5c29M&dbdtJ;A_T_omXKww)fHTG<4M& zn`yfFP@67dJqy2>kGX|u_T3LOkB|B-W&>(1siA5zMc(r4tL7a8+hUK|*wRah;ZsOW znj9B9!|vKUEx&t9a=g&M`i-kw!wFVEh-bg_nDptzJO3G(pkiF*3vjYGns!~6l)6f>#UDHyHV4j=uB;Lb2Dj9*S>RuWQ-2Q)&)7L2uit7z+45zP z8u}EQPG>aqObkn-tO7^@LnH%w{oJeCc6oyn;c%2bwLR~TX}Q0}`Rl|K2+b~f{AE0V zC3bsg2W@}8irpAp^Y9xsM#)|_@&sx66d5&=$RiG8`>!d> zYxCs8cdG1_GGUQMQTJkQ4MOwJmcy!wR+f*KN)$U@Aq2J3BP%5hTv8gUZ$&prB&s}! zS_Q_eaFJn}6IK|y0WQD3(av^7n0;x|=7=TX?(XnTo@w(|dejECdC$o+WPU=NT!wTe#c>N`5Dm*enEiL1$ zCj(cYk~%wD8;?P>q0?tt2lUo|)T~l)g`Na9knBYu9s#@NWNbs_fLgfeIz49PAFkxI zhPiY_h@>rg0C8Sh!YclEVBfP99<~HD?(3WrpNZF{&^{%#qNWPxvE=Q?s+wL1t*a6o zKDa7wBRkH-af+s*mP`7618@_?H}3HI9)f3R)RiTE_j2LG1)%i~Q5z(-9Ho-0G7DFm z%@7C7=@nZ|#dj-UbjjEKi&1?i$L+Tbku@Dghv%dnp8`6&3&YeNCGqasvM(mOxGDtk z{JAEl1%$Fc`O_ze4>B2>ic&Cs;#I}iCZh(A(Q!Ly)e%1#%R`Z9q{Zbg zK-yQ0G<}h2=3nBgW#gN5O&c>b*k?XT*M4s~;AvYTk;a;E=he&(YGX z%}O2}QbsjN>Zc3DIOJj7nrmbg<+H6TPC5qz{!1E!3F-9EU2y? zR14Ou1IiP|m4IsUIhwyM$M3lP>OY?xeEnY^37fP^_MkD~RPAUTQ9HCLEl;>Ba9USo z4Oo!;T<}z4i4lQ=_WUtA9vD&Zx08C_5PQ7}6k>sC)gTrfWG>5f+@i^5P}vW0tl*2r z^;$6CkZs!0^pF`;Wk#f{cII$eCReNQxv_yJlNiraBOra|W~KsAEWY9^0*;b>FOmTv z*6?8T0v;GgX;{5ml7}q`sx9m5Pig%_! z^wF%zyS8Vx#Hw^7x1bj&rh^14l0Whe(rFbw`Dwl6clEntVn$RIAblsmV^KO4_!o6Z zzuqZ}+Lw8@@+sR^Qr;@~zT|RwDQ``5EytV+QYatxo(&iI-QT|1k|F%NZ_cik^4tPc z-+Q_oi>caf4uY`POd@dk>E^lVHJ&B)q z0R9K~y<(3Z$7SSca<>mEQTlbUwEu0ZZn7hgi{zh8W8i~?A}gc$yEbnK2zpLw;x3@%G%HI1&N2H;E--X;nZwr_^^;d&I5oA2XrUiV_$n#ZL@O6#z+8_nfUwv%a z1Pmko5}kSotqrQSbaXykGX{)-k+zkE1xehG)(ZxWE8Ri9-BIR`SSkiACzIUoCfrnj zob~qUii_<;-jLQ=BC)ZY(YFw0OGtFVT$??cbXw`KvLbrzG-_}+N+%bQ2>81T@->AV zJxmV|0bH!5teuGP1X0~}BO8L}!^yZz&IdlM_gpQ;un3R|I=J09Zc?OPh(3Rgfyhs- zH(-*IEX)Lyx z!*_EeJNwTOOdFRT$e*b-ppScV!pt97NO-yO1(J7R;?}1nSO(9e%Qol15#(GD$8lI~ zDIFcQ^Aq=|{t90W*ohlZ2$qSuA<$Fa0@`^>*@hjOw9Z?VtKAwoOh`U&Q=1L|^$YaN2n|lO zz@(ubOGqwfe%eEdf@HiUFm zg7Ljv)QFwcM6Nb7o>H8=dZW1t1HQo9`< z2SFKxq{JJ@zQqSfl@X&reR#0@`dy$nX;j+~y_HOUJUCiSWePW@TT)?3IynF&E>Y9T zZ5oF_m`MJeZa8o!)FCEb+k7}Tc&Nj1B9F=)q`;{5{!cy{{x8~ItUC=;WdXvXijU;y zU=y}s)Uzi&O&cx~hxR-3jO3fx{CzYUEZR8;O}Hk!oR?D7X#v%A(RQ>j(!T5?of^B> z1Tyw}Ri+N>52oY|(#&^UDf)ag-HIq(uCV~N%SD)ayZNltZUUx4di@T;J-6RZHH~~L8^wxi6Glo2t`I|YZJq#pGxc&PS+>*Jp z5aL1oI0k`1>Cw$8j|-6tvj8ctjz~(8SA2$uokwDn#|qbf(4ceh)pkQ?f|;y{+Wmwf z%V=M*&mb+9ghcX^g%Rw#ebHsd$SU$G`U|1A`MerarKUxj5!VB;QrQ^aCk7`GS} z`8GefqV)XoDiU^BS+}5M8g`EwBe|svxD3bk5UYN1oSz($9!HQiM=77%N{-q~Z^~*_ zCf{%FemuF85wifYD?fj-0zGF8$u0vWGB%_Mm7YH)?THFGogUtm_VcR2DYpf4#e%AC za-Z}>lzuOKn_>*%<>UMFaY}O+j=>h7TS){~ z|NQX}JLNx@zE{>z9+n%p=qW7;C;0sDg4#q+WiPlP1T%xrcQ1Y!)IB9#T>?Uao8$0! z6(~av(qlmPsqG4Uj0U7DOZ#X%E~e4VE2n=8i@faMi|ONSA6(SsybvDM_5f7e1*PoV z3i(8JK3w#Nu5tQFbf9K!dI-(lmRS6U!yJ zx}0e@j&P)bLb*m{kA=0J&)^tm9w7#AY-$i0M%1M%f9P5cE4j&j1nf8OXMvl8j6?4% zT6->cQ=`IcdB5Kd>PedH`=z6J&2xiDepRgCo#Zrs?-PsA;bM_!_{4cy;pu`iJ;98Dy%PSg-ADXGx52E%Ii#dA z;MB`ZO~G$y@Ymbt51nhG4}=deXTQXpP0nDb{Xz*0Oy27Hu}R`5(p3*X@VY)|yK}lz zb?-}OgvADsC*f*Ku@Uj*Q>hS;h&&#Up#4-KA~iAK#9}uDab>7$z9R3XRn1J9ZszAMQU8eDg;m*~D8`Xng zRsjO+A2>UPj}^JbBmS{tIE;faB=S9;E5$UOeumPCLlmY2N%OR*(^;!@q{9^yMR{4o zLB@uV=y-=B0_90l&38na@Ako?@j0+OhSm#tr`qJv6}?Ph05b8#f{sBz}_Br_yG3h&^m`vl0cLqPIRTe^ zbpR`0oAEgEux7ExucBKga-guS7 zrW(h9|2iQ5??;$=K63c?l9RqF>gqtWAXFbloH_b9@9c2L(*1*;KlZZum}#PyfIMDz z6x8b%ee#Ik>Vd^B!EZIjWZKS#F1{c+j*pm+?ppPFah?F$U_ir zeN}?MM`2DKm6)mY$yLrzzvXEiM=#0i+=KHg z^y|>9i8tE1sX88E0q{6<2Zo!4ocz4hugZe_uH-Y4HwR*nxb@3&V9~ypi7QGtYz!{;q&AHp;AsHEC=F| z$q>pI*SlNTC+m-zEzfJl39{63igzjrwzbzWw&|IOj|B+Tsvg%~sAz8tr|=;J3DXjE zoAsLx_zek)ixx)0Z#pdB=ksTiBEzYKf64rMSwz0Cy|OWE5BE3eWQL&vR>rRm04CQV;bEN2 zF8|q@T*j3NJpsFdIH`h*aZpY1{U26gZds+2L2p_3vllYP0y-~aZvA^5W>O06*_{z? z=@_5atIh$=Yhb|9x=IPm5^gF6cHMy(!3%+j*5>PLwCzX)dWD9Sw4g${3|IvLv?w;Wl+6p!(15)uJC zhT5(JO%KCB6BRPynt{_hk9z9};G9qkW-660Pmr6~=DbFsK?zKZ=K``QXyh!T_5@l3 z?nE-Cg3;@rCyoB&ku3j~1RM^RJ9sHySiyutpM|b{mA9?NF}Er-3FP^Or4=k9ZE0S@ z9(dD+FnIed)Z^XtrQkXJu>$zeXdpt(ZC&XT0phw<8& zbeLCLQR20M{!KqsB#sqb8vBDH8h5qI5ree8$o`(H1_SUZ%H4yFJ{bBOOkoH9Gq-jP zidz@HnLBLZsv%+HB)sqwN(GrSMmKzXA_K%ssv@M7HjMJB=V*;S4*?q(i%)fusTDDD=c!+)RRa^DF1nv;TB0e8c?a!dGyku z=GL%1r>CXksl-X%Eg>^!=a3lsPUDjD$fumY0R6e~kgtUY(@sp{dGzK|w>kwFrhZN8 zCa?~;nab%0jNpw$r&Lb_$FM{K{$tGW+P(|hz6;lQz6@Z74m;2IclG4_pAE7VZ~E_G zR^FCbp1s3RXLWs-27d=MK$~o2yb`7AE?`=c%Grflcc=PskTO%RR$KlgA`#CZNfiyw zxQQuC{zz=?TReBbcLKZ9UGEvb$ePslZ^q%oGijdhGSXb7?nugllyCxgr(dT&V&>xa zMO3fvcaV5)J6L3~4Ma2`LA~nfSUOfnjVIrw}+41Ot z!YjhcQrR9*USA|b3 z&i_DxiU8Aa;4BOHsZ0gXk&oG0W>HmYQ%zK8rI*nI6&%(C#6_4MD<8n%=ZlgUSI@1!r-eqH$P(Q8x{>g+rP8-*^a^4Pe&hPI-UC#b-M$<(P!mj}y&Jb*>^W9hU<>G!|zZLK@O8HI1r~AzN zu5n7c8%^q-6GIhUd?wZVpr*COpRhJUtF+^|xZk}Uu1l~>%k~g=#__NAqCakr1?i+h z0|Pe+Vr}b+t~gm#-Wk_80X0GV$vU4RoY4%uRB1Ws&)-s;7?GS^NMVXq^Hz!K3~{R@ z+kMH@?Oj%Q6M;nXtYd2&Qm-Ee7$tI-D~d=5arqOVpa2}&;J5}_lJYKoB!>7{QLtOJ zh-Aqti0*i|5iVY#wfo25vL2R&-lCWOlS9*b%XVBOsU?=Bz0R`7#Gu*UFa7a?~& zqbjTulBQt=oJ;MxgKpk-BIu~Z%{?%jNdqP7SaQfOx|l@bZR%2lL)Pr?v*dF?g=)BB$}X_fpnVM+xvYUMc;6J zo*I23Zk*wZFoNy;`4JPDr?T7~0h*&9bkWUhtD8-px>Z50Bc&*f)?jG#UrNB;$EE8M z(fi$7%M{TDQKqRCCBNODC!P|S?>pr32};?T&I~n2%-lw|j_uWm{Q?^Ieb@{1ehBc# zQ-?GAyknsBB+}~LCst|_!h7AQ_(~mnddau#BBGDUBvkIELervoa=h4v$ zcrk@dqK#C%-&-Yo-Fr`U-rLyd>f?eKKGa7d-LEmZ!^MEOS!0w$Z3~bTt;;F`B6&V2#N-W>Zl!$~sTHd_< zuU8*b$D699m`8swWY+C2Ajp}fKCjKnfDOkw&Z#RqGzp~4G44p^HUh4MW>sKUz7R01 z7_%D-h3&l8uF3uZDrHK_7v_ng3pU8Tii3YgIu-m@>ztfsLg!RoMUAjRDsfsr-(y8% zPBGmcG`BDSW23z zLgplK@>!kms90S0&z5F(N<04;n#PPzTO1o!mYQi7LG^*IaZ}}W!@Hk&2{`~ooPw&- z*2yWz^pBVo=GSU~@FGNw5F?@82&}3g))-bAN+tLM7SPBsNYw)1@Xb1DA2e;(8VLl+ z?rSDVj3C2^9~HS(s?HauZGH@MUo#hMQL(g@+hOoBjQd)|>87eqFK3u5=^lWVs9_Za zU{`O#CyOjd+fKeM0{3OL zvRIa=2gj*_wvO&8G??|;E2g&G4*^`XglcfGi8ks6E=7X@236v8!_cq$wjNJd3U$&8 z3QazX+ppd+`}lTImS-jq^o+(5u%jau~%V zyy3J1mn%3)zp}@4MZbZ?uHkF<0ZIW~c|68Q$u_KaHsH^TQ|AJ{*=Q2odVPgm zwZNI7M-){E6dS|;+J-R>EF%ho z8D(~g-Fi;o{l%QP>5a*mBH?MWozyw_3Z2wxgGqX);N!C>22cmI4MuKKz52>N7=UCf z7{rN7W}$giiFy<2@A>#w*a_^d$oScj zyT)pV5#ar{;fL+X0&q|o9{#nS)vQ=g@$;#s;`E}J5zhZ4I$K{iZ2T%|b$cHX7A&u! z&HI>YGX035KJKu0THIIGprQW-F)h)d{sV$wkv1!WC|%KiNag0WZmlSScI8Pm8th(Q zH5cH+RIm=cV?&Tp(H92_#eOOpMi^EKrli(#mj10Bk_%1;9`lW#(!AG^d7YxpI-anA zBr{heJ|$(gErfDYQbHEV3n)gDm)-X*da{4Gk1c?h2TJaD;}XW9s0?hSW_7+DiFsQ; zjo5s4{lVYB_WG^u@=u4?ZjK#QhsqF|#A|!36e=-R`B>QK=}D7G*2N>sx6!h1e_^Z1 z-zq$+AxVZCtP)x&A6o9C&A#9{HYYl`QH`jw19VA0Y^LD9cUsr6Iv$kAqgKjC@fVqQ z>3Gusldy3fs+-7w>fe^*`n^bB*RR|%FS2*k4|C3pDlaLh#*s*@bN|;`=?6prV8|qz zuJQ%x?2Lc03L{H>A&%pL<1dgpH!eqA3e?@wXJvV4%MU6|4yDWj zh*(nZIZrg)6OvuwFk*u*1v;7Q(~O}6*+QM1EDry&Nla)Ms2uZ2K>X=}5VM{lhe^ds zHwp#yf-*9gv1oUtS7cKH)D>Q7kXq4u^A&#dtMASyNh0{eyHCF-#7VTQ&{9iC24_(R zw_!`FjG|1bTfL>}qh_g12+}^wQ+K5|#5yS;X^Y7CnMrW?K`SvMc{ronb)3k5iJbNygv$gp0<(H$D+p`f=J0b8B(IDWaVEGQw!gDGvT>p0r+p?l+M~lRFKI z{MNOxL|G4^Z533V=Sj|Oq(vtgBQCC~T>d-%SAf3^(xf8ugfWy*(J)_N1y^!?qRXqH zVY3ovR><%EEp-kH&{>SF3DY2xS3QBB`Vg~dtk_$;yOgMW2ChcYi|z6qvhgAb`M-^e z@f!AAIQlz8pGML{0uactk*Q&SItSIV6>f{?xBp(tulfQi2^=i>?|2(FQHq@SE;sV) zGBaF0XPt&>n!-IT+lzcx&P_$zOaJ=l9r0saj?TX^2W5eXs(8dgb%~Y4`+uzf6Q9)l zG_D7O{rMd;UX-1eQ;>_x+4;kju<6-F?+@>Q^_NvZV)CPN@XsH<=n||PQQ?ili_k>q z{FJ7cy2hwL!8vDJ3vY8w;x7ffA5GO%dLb<)4`vxM!}_m;E8k9I-N*d>J?SDkT$?bAiVc3zP!MML&!M<-@e_;>rF|5-z zB4vDD>3j*y@%HTE9GhwhSHNr**DWOzQY6TCTB^Q~iubUMeU$ab5+O1uUo$%XgJ z;=v!~SBr|CEa0DQ&2v!V_;}ZRqa~*neHM~S>6Lpy`dl2vbnTRV2m(a#&*!}W;2D2e zJ))fD;`%;xGRFrfx#7Q_etRQ)+wFWNetx~{90YXD-f#Z3Y*W}2w;}MwX;WFw4gQ3A zGK&f{)fU`)inEbHvbOIx2Pp_9;@DTAEu<43HVN5k;_F&#Orc4&D4Q=147E;CNh5)gaqI z&?H6xwOVx!>IF-td&$HGxB5$OpH1hQW7<@X4)-UawGMCV zuN`Wgd$IEKGLaVT#<~+DI}IlfyHAZPD_(j(IzK}n((M@yhNC5fx<{{c$dfzAk(`~O z9B|$bE@7~s9w!C}xburd$uD|NI#F$MRq#<>qE$y=bA5$8@bLN5;x~iKh4Z-TM1eI3 zFY$@9s%r-y_%nNEuW)H#MCc_}I=4>VioQC_GT-qf)|V?YZ&-fWemNy|f`w41K<4#2 z$rT|tJh|u~$xtCx)xrB)^W_wZJroqapg2T(+MjEr}eXn86oFpQFfB zm^d|uiS{Klo54MV{u_O-L&O+?Rty3gl$LG1X1-g~o@<9x+Ir~mt2%IG!2I1xF)h{K ze8vn@&(34LG!+wPdnlJ`-fqTzC^VUBFI)k6n%B(Fr?r9@VSt|eIG2Qo3C=>S9pE(0 zy4afH5kltEhv;_bk)Hfj^=2m=tEfAJj2|l;N&#X|9QS^GH*b`yyE|Oq#<8Pdx8<$* znE2EQ!k&QUA42{NOyIl1f6T`-27`92-ylU(t+7u|eG|`x%TiIVr>r?qn{&WBE*oa6 zW$Gmd`Mgju{yElNi0fQU9-VoeSK*)~n#2{CO}i!$?1#pHtPwC~K$rHe2roPyHe~f5 z+WUpZnZ|^rrxW0A9cdS@_fIOUg(XjHCa>x^S-^~97&B?Q9<^TL53l*M^RUgYFIFec zU%tPn;>7=yy8Uz|%WqNUqgT1WIgtP1=Kf*U?D_h_tS@%zH>=J!U7DiM{e9v5xnNeQ z0~akK&0h;mt?m8g23`8(|KsQ^!=miEC`^}hcMdQJNaKKXGvt7D4xQ3S=g=L}-O`PS z(%mH~(xL)V()B&>_k;g)am}1__Fik<3j;ye^iEHPupE2!3R!2Pgv*dNiA5q17%4S0 zd;&z_IV80;MR*fr7E3ey({HH^vf}EV24Ckb}SAKD?SgMk+9!d7YFhM=yKU0ru^Z0$bW9zFs3K1K_aGu`<~8L2 z!NjacWEivYr~w!(Q$sGx)5B;0`!TkRoBlxbez!ZI`=HO9D@-Pvgz?SS2W1I{SM*}& zg^CM;H_y+@&#~Y967KK)18yI%lL!cW{DS0SiS)X-f#xG%bE7F575p&rj8-0!B>9YZ zcQl(MzFt6?FmM*_mg6dx@-yJ;1^~bQa&(O{1roIG+F-;9)l7|cg*8{|Z7en}ng3Eg zIIfj7dJV1{5SyYrhzYCX;!Pm=QfRRL`@5DAp-f2I+no#58$liZ1`pyt?%;?Z+T`?p z2u$jJpE6};tr?$=)e2>M>vkR?^@*NP8UOMgU568vK+dWlf^+W7l9P-v%mhoUwZhF1OS=)J z0oz=cg>9af>i2c#_B1fiFs!Vxvf3!-c|?as778GWK3GRoIHZ(V)mKu~T6C-f zl$Obsk&6qUYrMaccny-Lj*34*|0spZuehZBHzfzV6)9$K%+a8bmL2`!68|Ga(rkm= z_UvI?eeJx|?EbiLy;;U*H~HtYSpg4?qr>ggP!C1(;f%>-dHl|m3j5Ld%|sIqe_F#; zpa6zT!*8v#{ayInYr(Fwv8N5;cNzc>OaCz}_|>Iw-TPR;l5VJvYD_wu8Z3+7qVP_Q1Ohm9_BImVSh zt`A6~QmB-vmzDXGB1*Rpaa1t-!ESG{G~`gmOAt+0-*+|mHN@yu-ZabRbOfmR)*av$ z3CnD;sOza7kW(4j4^jdySao)0(STDK^@XDPj~B$F+)`IQHfK2O$5WtiVcgn2vpU_K zDkUBr5MnTc?qc5Jr*TijBq3L};(70eq9u>@UcNlsQ$FtVJDRnXKc@{oXBomzP3I zheEYNkb=bi=|W9C5Z34J&tZ}MPq*kJk3?=)N)qn)?c7CzKc%z=3}`P_?^*AG3y2XJ z#%4iDXs1^*)Sb_^q?*B+UHa8_B+|El&_ZsLz$qzHxdL*Qad46cpEW~sMbXp&wNFOZ zy5-m{%K%N(qlvL>t5#A6>E34sBff)6#;y~XV5&ZXj$0kU^jJHH<4Hr(|5Ya12Mi?tO zh3i@Q*$V#RjQRTODel4iN%rcS!LsSY`DIrCeF4iMVaT&+&3`qY-s{Z6M1eg~LOIF; zQ@HOJh$|j`U$Bcwi0}G{ZJRQFhLZFxT(U?62ZiXes z_qI15krpnJ{%now(|s<%i5uW1c|K%#-qi0f`W_tA2Xto%sE=R=Qka|IRec{(f+;&h z6dw|akrjr86=L7hsME0oF$t_fGhQF)kcV@aQ9W;!j}Q0@g<7X|7!+NcT!8jo9nfcp zy-Lbw34x|yYbr}2G5(f<8Y}&n0f-Nz<2o^fV#a-<5xa06oOcSi^pXM38}o1e?j97P zKgqZkD%;(A8TDgP*dfjFj_|$m@m-a546m*&)0O&@ zAjZ<8oL-X}7Dx?3@QWB><%PDjMsUvJq1Jjt7tMXZ3;SYVNm-5`nhd_3HblijBPZt8 zZN{x|>jzTk2ws2V6K_C&0UqJvVeD2NA63%JEjMzt><-DT4T=x_#?reZhj*tQKIets z@=U{@A~lDIbEhIN`E}44+@I&DI4}kwr7yYHK7&#e;6-J^d#(^JE0{d2nKcbpIeD#I zng8RGe!6u;{~3_mQUuCx+=`gqBno`4A30mxUVMMbRPs`Vnhho8ull3RL_umludk|h zFGQf1H^FJs5|=65)Q~@4uOU9fY7}C}JoEH2>R;Pw_YFz1ZF2eEx#O*}>4n+z2}P7? zdw}!k`85Up$4}pX%LwdQnoMdN|H+Kw8#~-S&X9Z)e7#0B#e5PVetXv(?mN8{?96qc z>0$P_@Ok>46I`bBb`<5?2S-2g&CVuP^89I5S*~eyQ%O3O78RFYu~rfm_0q5S!^8oF6RV-6K^|c0_CWwxbN02 zWM{i`;3ExhB0B`tse|)NS6BbLu70tE+Iw$w8MF!!_!V^})7I~g1CNg{B7dl$`qY&2+a^Y92i_U^I@Q?5|-`6!g(m1_^>fNjS|;WRm&u$~;l@`1)~xW2Qlb$2$dh1mT#?~xx>P&CrGnv>@GnNF zq@kIlAcp#JM>R#8aajbVXwE@7rz&Dh5c9zzHWh4czNTazm2A;G;?5PpsNsPBp~8}y zG9~?6r4 z1gl<-_)h#f&N2$I6f~&YJ6RO$)!UbYd@3<}!S&$cIs^Tj1ilx2dtxo>EwxamB^tX@ zK3wsFLbJxr6DnR2uV}s|xQ1SRt82pkLV+8Wdt&BS%*B!m*CUk|Q28 z{>?(vmCSWVlhPltkNXL~$~z>@ejHd9nn5|ncjWHNz_{-Kv6P&ePxbVIQH%{oXQ-fk zn36UL6F95^h0mqu8QIHZci}+sVWQ`W=IK88nL@1R$j##de|qWW_ekN~_2bT4hu<6y zcoPK8T)Nr3Fj8xU0_g${fn_SM3=*${b+fAq_pZj*PY?f{-=o67#uWwv5OtF zsF^dDM@qtoez9age1j$4j*{6#hc-fX4hE-IJtYN8*LFOuLjAV z&%-t?eY5WyBZfvaB>O1ij^DjFpnY-hnr86DQm-)qzgj@W>Ze(S{B7|*OInN={Q4yE+=OPB5VT<#y4e`?QmV+~N_#pSQdBQZLap!y zq920@l++^H@cH((uuFGD(sIfBQI@tDiOB0dM3UWkTjKuQg1yGGfc|H2=0FSWqJ~kg zZfh`aB{XH(kf%D9QYb3DhE;o{R6u%o^Jj> zRwG}VT|wyC(Plh2l&*}k4w;hS<>!W5j^EN(oOLyovC@7bcrh7c#1g50sE8LATaF%l zaJ)vU8=a)?pKQk`&Poi+j!U`B1@@fIBk%H&H%Hs;`On*O1J*TuZxP;X0G2~lYO zFg}gDjJAIXYI9W}fsPf~B0FMPt1$+As;^>M|CS?$oXcJB;xhW~^D00~Ddz)yoa?0E zB4wOaVXuR=GUuN1Hcql&8&!E7oQ>OIwC6B=ai>)*BUR=Csdh{fs%vTx|T8e`~8&y#~OIpUVnt2rruIC zNZs(r%2y^4<2N0L7b3!=Dwfz<=Trn448=r`aHDn;qf22{{=*fQ31}*y0j1{RdPz8~ z!aoys0}1}i149)#nZhsw^Xf*yAISV3lR7bCYpwvp7!giiBzw$>AAVXQL7`I z)W7yq2jvJ@2Nx$8T$UW(9XY)=@xr+#V^zzR?oUN1Uk2?9zCMFgSh*50zvJrNpb8=S zmak*bjqCK5D@U(JSH(T zZC*$7&by==Y)<}Ci+T%kOO41newK%NJiTg&o9}Pw?tBOdevldI(IRlKkL$Vcn@_E) zf<|4RoS1t`p{(~n^h#bWgH^owDa#9;bo6+ab~<_<@#E!vo@O0++fd|<2%pgc_kP4Ywv3!()C{B7RSqk&EKu}&X zF}r_kNLcY4&sU91to9P(9>La(kv_8FsI0>AbI%N;rv(C~u@x}%S1T#mMHeaS8aPgw zvz^v;x}Q41?H6nbeS93=_Kq-Z1TwGeIjzhMZZs6qWGk+H@$m4QB$e>e#>ide7c9fV1S1GSP4M~_>G_2__&^mG_0 z_JF=J8+K7W3~W?`d)isutGs(%Dg_E zKSWspYmsHO;6ZDc3F4oiKdlA`E5;t!IXDe^FKn&5{B`|mRN82m)66cKt&{LAR;Va& zQ`Rw|q!EcYUeJdJ2X5Ay$KJP~%w>#hOIt#qKrAnRBH9O{|v*s>@^{Hj-)^BduP4k-^t3dhGu^W?NLN;9$^X|HmACVX#xEce|-D2 z%En?P?BSh=@v z@*_k}_JZeCP}ctQe%o2)xo^GOG*lufe0)Tul0Q(E&biM0>q!+j@+&Ew7r~qZCK# zEST`tm7a`><#LTF(``JIP-X~4;4{?WuNI0-ulL5*U%#m8veHF7mTs}5v(o@6RgA70 z?(WCNfv#NcoN7SYSArGS8miL!1W0UGCM7|DS*?nQMEO0K94(hqJXBkY|9NKl19NV3 zgD$XDz~F1Pg~t;~V93eax}3A9Zzv}d;@+ugM^3lUWi;8A(6d<$g;1o@OZ*h;fKcSY zb4hsux#Gfb8*ziCmHMM4;!w2!&O~fvwqa!c11ceP@F231TWgGZod!$qQ zw1{0PMWoMx5|Skzyv-164>;he;6M zj8PpJIC%YD#KF}oXw&tKPq1)t12tX8hnhN3{E_%$@yCPR*=9UU8n7kDXOq1*){my@ z)fDwW1p#ivDL?MIT(M!d!EGs)N<>?gZjAeG$~;5FY6~&)NX;gC!F^lJB@uj zaT;n^poqaxi zcI$Xc>y9^7r~7AA&*%4&JHPj%$JjyEQkYW1dNF7fF>+q5Rg1Kfq(njR(ZcJLVDv{8 z!(TGf+E;r6$g3&hyRFmrywMG$$I5JE%;V7ApWb*?DNjj>E6(0N&wpvgUC8FH>C!RU z*M&v`a@@qcZf?#V#a^Ay+{Wpx7kVk_c#Fz^VmY(7W-9y?WaS=LI#`JwlIRer_SNsx zEgJTV1tvnG{#L8Vcw`yc;@RSQvhL??ah#E8T^$|G*_+>$8vp$P#SU_k@w8}oQi{D+ z#Zx3hqoW}dO!1U_cr5vI$wjHeN*$3)!VF4zux!EAUZnt&C&lnT{Sf~PQI~+M1I(8v zA5smOsWxA0B*=tg?%v9c9{8c2rnc# zHCBr9q;RG@wj)<{SbVP%mHO}zi=boTVe@cMPn0gG3d!9yvW(G?W3Z~I2o~)jk@VJ- z1DzNvUC0>5%u38B{pVF&vz!w0Bg8z5O^U{D*N$sPRksvjVpvX9uC3`NqtiS+LCJ_9 zS`d?}M9W7iMXp16o0G!aQjn*G5lziUT~@Y*s!a9^p;#u!Qckt*9Cy;~pOjl8l&9nA zXWOjdC|?x?i;p+5gz2DHr(&Q3ovd(2oakcy1c8zyuv2KiJ|#GQ0EwaVug65F%-yAd zD-4p=8q5M!M=3 zi>PD*ug6<2?xs>zKB6z58!9}x1AB757gt|qn15|TqT+A^?@^w0M7G+*W|m`LP5gXd z3J-E27o$GL)s!s<^9Ow`!=Glnp-oI zS^*P`h7sHvDnJfTgm8(!3B_tR7z?jVO}(364pr%PHzz?1|Dn7?nw+dluVT_bEMyGM3aSmq9zCTh76!nJWi>fZPqPeF* zn6hkW2^1%H<0}lB>Y{h<^z+Q*E4%ACKlNLjvqahxM%Obgh74uA?N=0%q&|j}6C9;*bZ!~fkoFE4AF?M6@ zheT=7ds(`AeUti#y`+#{KIG6AwlFmRxaAr!ESTiVx_wMQaJ{G^Vew0x{-lsE0U3*$ z4_sxpHKObkSRxSL*hHgt<;2?FriEh|5WD}hkJEAi-3S&IG~Hl}3b%atInhFMKXJ_C zu5_UQySU^&@fIF^g-5P1PK?zx_jBH7cW}v2;EpK;qM%PTS5r+~bBUn`^k=NR_X!9X z-kvQ!v8B}zkA%ydk`}$aanh}4B=Y-ci>Goj@I^C%O6QMYg4|9~8HaawW}L`XoSty^ zd2f}OXlk%S7p)o2KwP+)asMsa0XNM^va)3>p{E_*p%Pzxzyd2TkixANv0*{odH#?zUx?d zw}klhG6L`kPHanM)k=v(+8dK@AEExKCLbDG%lq=7v!D;NeV?fMjF#1`K^avd@ksk8 z*P+j!&ly$Rnh;{v%Sw{$)$!C-)sMh_4Srrml*CtZVs8aD?>jlbYMO>sP-0(@VVxvz zOC}~Z&ENXEdGW6ShcuZ{d@VZ@slK)=GV$oPkoAF-wB>ohcv)HKw^r_W>-G+3nzwD? zZ8-Jj|HKE{-p*_02pRvYUX|hKiN^pQktdtLyYwfHvvz+KnvxWzQdKpMwZSWxW~$A~ zP^fvKIKPgC{m0$%40#7fF7zJ|4a!PnCNv<RBa%d>f;wvGEzzN(jYGC}1pV#y6mnJnV@!kzHUy~1Eb*6_JSR#L3Gwv2r|T}CseWHnM~ijq3x z2d+#YJW3ndfv=;CY7!pG$S%(Hf%vA;qCHx*(~9_txD3=p8v~F2M7)n_^QP5`TDu>e zh3h~cI@wAi{Q}mZ296^>{04P+o>_>w9LkH^<>f79LkJmCerdDV90u$Gstbq;drGtq z_tv@uvsyfzqh;loRg(;E8KtgZTuY5gRl`0xw^v#gKLsPBKUZsh*q4zj8;tf`A`)R8 zZTT{smv&_uOQq_FC)m6_IXhjh+MHpG*Qo}DE^2V_n(uVxHtnn8J z#;sa;Vl8&dW0d>+a#CpAqb4bOY(HPAh<{lXVE0%ehtMYa_4$E1U(Yx^8?b)q zlQqq6cmI23^_4GA=K-|NufmYGD4%uke;2Nuzf%#mo_O!log8z0IB<0r*Rgy52XJvdh-vJ_nOIr)YurQ_HZOPb(qTzh(6U{9 zRi%EtygZ3Q9llPJSm#lj?c?WbGm%=WYWX*Yj8BbzBgN;DvaGYcqNqcwkdqioUb;B~ zfvB!;{877&LybHzT5<(HLY``8s;n=a&CDUP?bJk)X$imrj}xzH!d{xgcXVRWub?D} zx}>#3Kn*Y>yq2SST+8pH8|c1!1mJZo;ixTG-V3&t~PBT zDvQ-``xs&M%FOnW(vtsf&a-)GsN*{Eb85@ek!?xkC%N@W9h38DE4f}`(BfPLe~TS{ ztreECB(1gp@MuyI_P_#JDS7Vz>5vxC6m$>CsFLMlq|BpXSw3W>X=k)OE1|Zk zA(X3`3}&Mf6Ml1CDy&l2hkv;6Yg2+yu2!vy`h+3c5;PgbIU!r&g8;e*7G!9i z#MJf6Hl z8Dz^E(CSt!^H7Xo0BnzF=w@P8u@2zF6WUIJO|@|}IeLGgm7^F$;We7Ht<)N+?tnyo zTUPC54-qCOqpDAOc7E@cUm~PaZeJ~WsA$4eViXPq$)N1(q=vqocl5&-T={zK={Kmb zm7bYFUayXEzd!|5%5yIMqK8 zDQxYYMH4drx7iK!Qu}2uz5AxZ!=L$&HO4EBdy&XEu8g*$M=lJu{3Y6|K~_)kW~V-C z{#6Z>rY5-FN=E2U}d?exqXb^91w+*@D|j>W5#WM0R06(x=zh3c(G z)2bFx&oVQz?E{plz6Wa5qB1G+@G&Rh3SFkf_C~l1(e)=jYGDWgl}$KCN;pNNF;n1q zr&=1X@WNS{Go8Ch4U4EW_Uqvz0|)tiMl66x3;RQsz!x2QmxH^QF~dLCJ|9*9=ERVz zuxAzwoE9b{BEb!)JH42>z8PSU*zq|cN|RoAH`hv2yYvQ4<6eVf`h<`&YawUfcNQ8= zpG~XXEUaav;SICt9TJ;)ad$LoBZ4Z$!Hme%34RLRSuSA>`km}fhqS~Y*ft3m-GqBdu||sn77?~6SFneWU+CUM4W_a z>@4?gwTFEqNrX7gIbCQA8(h9{c1w{U8G5K4FzVy~(C1YB6-KBDeQbDBc7XhoL3KN> z=)=sb9zAHXOwmHRqguXY>!@MeVHeEQ?i#K zRZNqSiIyVaC{Y8T*#*z(_-T4r4l7FwlpA{dLsu{hL8PrRM z$sg~0Wo)}5m*r67M@o??BKY6jApQ#W&)EOI_7U~6TPFu<_;N4FE44ALWUv7D#YAf2 zE+d-e8Y2ff>uDb4?L&GA^Klpc5~b7oH&PrgPY3PxX_a;^zH9>jBdSNiMuIAv3YR?g z$-dGzO|Ou&l=B=ZtDEIE7E$onisyN8m9%DdBO;A$Ast#-WqR7UM3oCEn&=~un>spu z%{N-i&4Q$nF`hSmAKQxIFjDlT8Zv-M6Wd?xJnCIJw4EO@*Yxs*-B{4+7?Fce;_m#9 zpGR4I{i?E3)Tsv*>j3woRozh`VdmcL>5ZZV8ar16wv&=6Ik`NtJ}N0XO_WQ=n}7dR z@5*8&dl46V$-o>I+vIhOj)Vaux9RqkUsT1b&|gFYXm!MS0$`l0if_zs$4gMshtE6* zd6VCkaIHp4b5I*D84jjnZKQmz0B46sN0)Flt~+nz%wNhT6N!|pUgjrr$fb8SePSxR zTcn%2bUJ;vx5{&As>`B4P+snZte-|M#?pPzHY1Y0+`c5IXH}X~!#%-M-(V(c(bN6a zQaXX#_T*iFe zJK7z$&b>NlPcmtj<2T1pn?zGgN*Ff6OT1IH=XamjH(p)l5j7}GZ*A~@-{D`_zJ{?z8OG>q%On~Ymi>n=0{3LeexP$~zJu5kvL z1@zbFf(thOTx#iirZ*0NZ;luR^@Ti4%5g}wJz3M{Tne4uh=w0|S?z_h;ILaS*L3=a zS4dta#m>}D!j7aFa^XpUsak{v zLi#Sknz4=cNSaU&wRjdS^OJYe@27PRDQT5B`lw}F2fdW8`M)AX1jJ5enz$zGT%Qh01 zY$NT(efJ&RlGk?y>C|x`~F72>u7Wfl%1Tsg>#2C zEh4CfuJl{id+WYlaWe_4Z>#X>zGr756Ej^0Rqri$9K)+c!9<8M5~dkw;bEO&;!KEA zwx5Zj7>z|^YW(zC@(fpa$~$z_wTaH^ECyOyW)}2v@J=E8F@H^w*oMZYBy{jASy@1D>xXHG0{GRqvqhh z$2$6$ON1b#o0P*p;VjQ%n!1{C)WJ3W@oQbp^DCs^kS1eJ$)B71xI3Qk&m)gWS@kDK6ByI&|h4vf5EAO%%vks^VgPy3&BqYr#Z4n~O(gSP6!^wsc z`&{;DB^rqIS3J!g=qJk7fqf5{M0UQ+Zt&>-QHu9&1f=t~Z2@1L;$W52_{YnpE*;B- z`_i{-?_Drywh%vi42jOk%7^7RL`&0>h0qCbACbTb2bH#qUI~CVW^?=GKNQ&IH=*u; z&Jn>xyIftim!$`M%}F|^Fxo&-R~&@LWRQXZu_?bANihI8`TRG!{teS`2n>sEIEHJO zhzRHh@?b=D#zIb3&1nPlJZ{)XvpK=|QM}(r4f83j{(MHn*){A{_lHM*YJ*|_GI4l?Mn%MXQ z4k8LM!zG#S1Bt^bvw1&Md>pID0+Xf*t90QwW>M*&h{UYgFVqewZ=JPjMZ2NQqm}FD zZnSfcR|7(^KtW-W5{IoPaVzrpe31#T*>|kf6?$n42gPZLCVZ~&uoW~1S!htE8Z?i| zZ@UHts-?b!6aMw5#+-CV%Ts5MU)_G~M8Ky)?%QT6&0*dXobu}>dU1xKsU8H#J6LvY zFf(o6-l7*u1`nUP0wj-db82?a4Q!2>q*J(pPUffXA3Jw`ik4+unYZ!i%CeTH$D(Q! zt3BXV<9fk&w_QC}_ZNpgDc8Ys?MIb2J$gM|pXzIcpEHHmVj4Q)E?%-iFORe5Zw=GG z(>{wR${MtLPlws;%Eicz+ooV1?9ASV5o?q*Gt~-NprrG^@UV)nMK-C!F+MgVm6tK0 zdHW$$7q~R(cV`DaqdXFxHB0{YSWU^H%xk zFZ_?=e{PRmqsUk3v)z(#wGoG(R}wuJaB2wyopMGV9HCkrYc_j@+@SfyQ4eACxVyFzsFXY}uUU5sZn#14G}F z=OeO+D|}^Mdt#k`7YIYc!6G(qA1)yc6XCQ{o@|{1+X^!-f92y`6C|r;+6+xI)RRn0 zlA@WK$7b>Ynn0Az%X6nN$~gfd=-I!2XwesFZhG;$a%)xtV!-6EDnZPqbJq7N?^`_n zsI&@I4I0EzlWb@Q_l=`Ds3;p{8DH5FOKq>(sxy{+mxKeeDMC)Gxg5HdCZZ^TRJdv< zUkDy6VnSAE@_x%5`4Zh;xTd)_E@pnDlUQCynj_p78{@nn+)7V2dLm~AITmec6aO)! zo8;;{C0_yy5YZ|yE8z1_@@`Y;GGrNyetZgfJPTQ!;mxq-^wKV^{dMHD zmNA-#Tj_04>L86oRq8X#Y{D&>a=A!HDuk_8m6pW0wAm#G92dAF;9)t#UH62#@iy2f3)gGb6YYZ zG7@W~8d!viL4sqG8y>EFbdMMa*xbO2F7O3Oq z-cj4o>9XW;OCnlEKh0rm=7NmoBiSzkD8cBGm;s&7VcjPy^)4;evle;DCBwfV7Ck_A z1l6=4$;WTSvcSV%DVlb#jjgi^EFK|3Z^gw^L;R9RzA8R+`WNgrie`VKCh0uTDi@k} zB1ViW!*3^=kbMKadMq4EHpM^7ZIFWewXPfVb>YMtWty`zMPkWUAAMI8a(L*7Cb?_& zbX$0Kdtr;a3x13+WSqMxWG9epQXoPq$rJ`Hph-3jThZIz#MG98YV_}-xDI}Tb~rhx zgwgF;Weyy(xhSa8JFchbrk}g%S|r=P{DN1s)MBUEIaZf+bozv~OdxrG>d|2V3eKuimJ|a9g)hy6!egIT_jGeEm`D z7WiK~Cnnok8rLL3iyupNQ#$k*-iqQ1V=s@$pTnF1e}#NR^fz{cWc`W;mC}x?v=I74 z)FXau3^&G>AlwZ@+32Wqr@0a&OIjICKye1#_bF7_L!Ak;q9v(*ZS613g+i2?ksZhK z90xzy$|YE;DyB`Fz|v1I5CcI;Jl8-5wgCFBO{U9~g_XJ-ib&HEydze^D?Cg}iYmpL z9_=n!v*2A1j>YUiulr7= zqv7%GN3KA3wrnG)t-R_`Fj3LutX=3oxSNc9vVclzQj*@?ZnGV8+yGZnc9ZSivdF~K zXij33M+hIX5=$)}7$@R$d!tM|fLcY0s5UHSU@ikoXeL$(0JR zrE)K8m5%M*!?Pfb5|pHk7}7r&3RC}eK91%aZ!C+OMk&tp?`7|=kg4jvZ{93zwzlo# zKng7Co(GUskhBK9JBGep0?9|RbgPF1n9>-F0!Aeu4*=5EGye0LP`0n@&W9bHqv_a#hw&DtFT`SMvgJg1bsY zi-zzSU$eFJyOU<%a;`4*xhMA*+dBZKNxP-}dU+%nHkkZZA#XQZ`xO>k;lG>uHGryv z@|FH7tJ9Fg#S#!8^qQLd_<>qNZ$8C-UAH-k+)JKaY&e?7>@VNHuV@RTi6bQR3=HzY z^U?&XR3B>VGp>C0x<;F&byL{_M3t%1mYg_jaQ*$s#|Gjho(6FHtzcR_NuZ1NV(GBoM5PxE_w+sc@j%Y4u`@b zckxQ)Zi>1!v@xd~n!R3RFc(?m@e<9r*-E5Rsp>smBoZps(UO>xA3DYSb)lSULG~D+s zuq#wz>^>At)xwUUf_WfdB!LQn1(#b33j#sU_mW$8cQ|V6J9l@~I?ASr&0LvVn;^7U z<+Y7Hr+4foKt1_&39i5%L-%b+*ZY&AHtEeYU^fk6l-sUw!|9K}4(WT9p)yOQg9BE< zWVuXht?@VxEZFd!;LpE8Jt%+R_ERg7EGg_XZSm7jY#K%CUUC2Qr zLxO5yuim_wHfEeqGk(gBlKTP1CO&nBDzBYk%c##%9c(T9A$mMuR)1+5qH!nt)1#V;&#=TO4zp~>W`OPhpi zh9A3s{@{3hV;n+M)P)ZI%J)jd8+&cU_llCcJ{JQReZa<{fIVI5MJC8VBV;_NK!Hl& zKl;z-YTke1%q4Q{%3m~fSl7r}fJ!&y5E-48oeV(e zDsA<{k|;VkZ?mx5g$9kCnovYmUg1!9ntj2b+76PZYwJ zKO-;1-JCv|JmtUU)|?FRg{JtR8-%K$J!&lrF!m;8Bwbt{toL9M=BQS~@#0}f%<0fi zovS;*IJUXv^7Qk~cjJaeLy_7w6t(?itzI!qh+bbOM$~QykJ%Lf$2h*iSwGfA35eIP z6f6aE5s%(Dw#siS0lmb%5Yt}~V!s+NOljvPyE%^%5!&;k`<80FY{>SJ0=>t_WbYap zei@UZ{}(XN#S1~y9~SBKZ$3YsoIc-;1P^XZ302tlX3j9UiAl)z4P+taslI>h8ou8A z3dBb-A`*Tj&Oqo2Qc6Z_Hg*QOj2=!OUjt-|>rdTlC1k`brDU~BS(weO4y7<%^j5Z8 zm3p(i0L@d=ywM2x%o%M*bQXL|!=h|04T38=ZsVqOX$0`HD3~P>FCvS#N{J0K&;$eF zpOnmbOl>}rD&jYF)Rvk$=X0vA7|Z3{1sa1zRhXHJ49v(P788jc zjY$Blk`(|Z(Hwcd`68A!>awk_zaly#O(A92ip7zVDr&&J4{YLl!HD#GFKDFJPvvde zwThqOVdeC?O70e_d-}7HR+{oLGL(BMEpGEUJQ!o=A~s8(+U=hw`%3`|-VSKMtiuspK6_vG;^d0 zu%Oa3GWj|Rrv@P{2;k|jZQ-QN7y&=Y1ooYrRZ=-I!bJRkqMD7 zZJC*Ee6~{Rv<>+o3c2y1KfaT!uGZ5V9-Ml~GY%{N`)m{t@5IxIno%)WaH$64xLR6= zlroZ@hll4>qR3uv34q-q>68DheFd38ETs zupGxr=dnrs^b8i2=7^}SU%fVc<=hh9vBk;%k(5JkSSR7-HZOS=ZdJkG8%j)Cc zX?77BD%#oygP=zX?TIQG<%ZD*S&7~+3=vpw)0JH0baYq#w$CRU-w8lB`LN2Y=nWte zNhCjGBEDH_{PB`hiw?3$2?SXOkITvbV2PlDA}?Xn6hNFvQzxd7|LhoEJdU;+{nhWD ziDeBOI`wOtizTbMyzF)vIlH`%>mhs2q*G^H9y3;T?WA~8VX9U|%-5pdolf}!zgF1| zU^NyN#()jP|6}L3?|$MOSNC0hBU2y2pB4d7W~k^2%gFujurz-GV8qYWuKxajmitEE zc548*8k$yXw=H}B=Q9&8H!N*FZ)_u|Kk-i`zzWcYi-(P(D?j*3U+~CU*Kp zFag(2)yh+a1O7jX&N3>hE)1iz3?q|z-dDJ25Z z9ZG%o`_E!6W-;fU`@YY!cdLncv;M&E{s6~|`)hc)Js=Tcq?)-A#sBQo118ZPgIO4- z>9t~y_ZJ(tBBbKJO(X~XQcokoM(fw}ea1yXwT?Nb0Tp3vYZ{~|2rg+`eO8MfZL22M zmh`RlAUpa&rqUI8*UO0l@b)Wnl8Qq$tqd0wB`Z7BGV4@L^QWZD0pEHGHn12fwc-xg%Sxb?xe3FCSP9GIpY8jDx?7?p@g` zn8BGEPhbS2`uPuwO*)zi>Rjcd3g6vu{(saA2ne*Vwk|t6en^X4)1qWjEU)mjq0d>xFP1@X_aJ<9(}h3Jqr-R4Nq*VX;B zvaiJx8VpJjy@}>|i&JZg?kIa2rc~+j`kPoAP3m!_3HO0-UK+pS5|TtxMn`&wljSzc1C#v>MCg&zGbEefG`PkMYp3ekMEJeO*770T zZfyWGg5duPR422$M?f5KyJ|4_v3yoA+lF0N=bb5cYhSR3xW3$2tK7$0K_Zh*V542e z`@o~DA`$Nv+qp3D>6$r0ppm}X54JWLR~84>Ib(FB$R0Iczj$d;$DnNRCb@C#N` z841vCEdAZsWw0auJn|`F^YJ!-*9%lj@HOz6bX8u7`TOro52H5#ppw`yvzw!><{_Q! zXjx#bY4gpK5`~WrOka&zB9K9yq%_3!+XL{Z%C%;@2J$y90TJG>br!faoTYUcf>0;ik0eaW@vX?n=F0`vR=`0g_dZ_kN74Q`Hoo$yK4;L+TKpsoSZ zCG4+Hr-r5S_rC?<@={DwtcfEt36ln(69H5miAyIZ%5Yx61UzOghfyc|I364%%yiS9 zChP0!f-&sh#Wq_`Mr=D*{)r~vx|TPNyOhJ~znZd6KJIe2Aw+p+DPJ0XB|vXconfXO z1Pw!Kbl6H(6z9i8n#wSo;9YwM1{+xW=%X1{&&ZGc}1?7ARE(Kr6z#grl}d0EZf zIrAihJ*ubdrA^t9eo|79`g?kZoD<|BRlv*o|<=kjaDIL zKz_r;$L^3=rK?X+RWM(8uyo6E&;L^%St$VA!`42)M8D04fAm?LJQc~h+K|N4U&(1FX62x&1LYt_uj(7iN#edXK zTzAVyS4ua)XXdUOqF07uVC?YHqP;G|2d;p3l*4*XUw|iu;p9B@#2Yvk_XO_Gw~-Z# z(h`zx299os7lrzVYUSWOUjzTb#UJlq0UHV6cDDWRkWBFnobE`ud{i&UD}7P8Pvb|FAE@|OFo4~l#t|&kVWnisIp{Uy)3o7LHKY4?sbh0!|HG` zt6oZFYGRYbz^e#Ciufoz)34oTxwLV6(b$_S&-CU!b#7j*a)ud5Jc^%L##6v_Uw=}a zU;mVJX_{2!gUOa;4TZjo|<#@cq-XxTUPlOps@A z0|V_aS$i1gyrO{{&;_bHx;N6Imnt;tigwQ~#P+I5w>-@C!lTHuz7+vD#`!njrOq>) z`Pw%1ODY}F?4RHqKxt@SO?+p2+kC9lj-M0=in9S6Z_fBXoxp!zsiYE3eLnaIZ)S1u%x4!Jl&=W&(t7Fu{l8Zu3TcX02jCf z+l1Ntd0Q&~@ZRy(m_0@c9F>JW$^oj*Z(S%x?)Ylz*wfv!c&2ED`0bZ#(}qsSq^`+` zzwypf)H}O0v(heENV`P{^T+zd+oY3?j`vUY+fU*L z8Fns7#S@5KdUYAqh<{KW4_aF{eb2|p$0pRh6>t1k_x+LTA5|@Lc&vO#KZ}2H|Bw;B zi^`(==pfF9R|ytX+|Trz%SQdnwGAAxXTp;N2em+IkrOME$BG`&y*xBgDnuQMF?nohUs=6#o)+u$>NY;c;;B#+$X zjp>>vBCzt37wzM+Ve64UihaDwK*CjZmEKFrw!n%#NXqdPn)X9~@l}I&r34ZRn#^47 z`~^(I?43qxuy=8}5W?Jp7E}0-TMQb;N8myR9K&4SYqV)mvf+tWbLo*;xmCnf{|LwQ zz_f~$THHw1m`S87ZT5HshKG{>L8}t_!iYj9QA}Ztu~FmQDX1#bE8N42k#udG}dW^ot#-3aBxWz?8eI{ ziSMdERkGEuJsOmzjH@;Xnv=xfhQUXRCE510(h;HUw3tt^8}^R@LQnNBuJtV6o-^8V zC41CICz3dDrW*Hqn9cg6FK&m>e>er0v5)p#a@h-NOxs~fpn{Q&OwZ0wPsvnv&3MP+ z_Uv)rO42c4I+9`0oj=Z5X2VQ4bq2^Hwq6Z#nsqr}06*w#*sP+7R8=LVAy^8Y#irzl z${&=7mSeX>K%&v+#kDZAS%>tJ#dUh?eZg^d)(}8lJi<8JGz9>xXKq1&cc9BK(AOtQ z6U=G}2Z{wLElBe2Qs;EV6}Fv(V^%pwOb_>Y>2(+%3Tl)JtnGI5@+aTpdz)a&D`WDY0iVBgJ%%XY*1gK zx5nrjP;%o`>oYNnQO%qtg0TFO6`#V@`(lT+vdOU`H+==8@XF6~}cRy5b=G8Csoe8w&5*n4WmX6-r4$Rm_F0G&5|l zI$uc9yQjT|l1wM#*?OngRl1XLy?QNQnMVBaO+3v_FJ}XaCAr=do;1P-#+?!mWuXi~ zT?yZIq=`yyWxZ{ue1^no8IZwe$S47qN-)iog?AL`_0NfqVBtaBi|12O7Z(@AGGO91 z98Ic=#zflgGnEXlG&4*pE+i1Zl8GaA%+SoMqw8dTRYDBPi0-h$dFMV_V`)eN3;tln zKW0!2YvFIG>%DL*Wv39$&(FUA?$F-=FnFOo+0UQH>gmKx-_L`$gh?`mW)WMmV&)M0 zQB(|Je76WUNcCK1lnU(j3J2{3I;W}1aX}?6_2CK!8JA$yCPK%dzaXD#`-#3! zzL0fPfhSJ11&RL%?FfJzw}7Jv_9{pG*UefTX1(ab3e2#8UokuMj>AF#!^7 zLBrxBG+&OVh_Ltb{FzU1U~$SxfMXpesgbPx{ed)SQ}WFsX_I`Q)%Ah_P#+mf`DMyf z=;A=!jER_(mK|1AWya@-UGJ@HSLJUXLf#D|PdSB`P%&9bz)gyWo~br1=Gk%>!77KR z)K6B;{c51nzzlh>?M!Ee+=LryIRnI0Shyr92 zlX#%AEzb##1aUkd1CE(1-T|QzWoayE>ihn>Lc+9(!QlZ7JqMoaMfsd?2wGe#Tu0b2 zQMnSb#o8<_D>;;gDv>PFE2skhvwM&t=q2^*D*q9S3bfuJRq;9`Nuc6Dj~HjoE4;1A zf^(_8vl9{FgEo+Q0B#9HF0L+(`aF(2amm{<7Dtp+iTGJZpL_9ZJZfy4(i557Qy)bJ zAatz3R*zQzv1+(%#0gyp!8{|selbas&o^OU8#Zu3ErUVm>815QXnMe=*zy865d-^AmA+O+sK(@buBo*Js zm6e`?zm_kJq+33Ye=>-FXKHobgl$RA2=tESlnJ8Ms;YW#fL>h}v9saUKZm$= z?;hL-;34%>Gy96x9#|E6R*>|Ew(^E%n58euc^ZV^&vlf015$R3Z%@w@r>AYpPRuon zKpO@4Z;j|=RnLfT0y<2Jh%}8$`yz1?F?xJ_RWZ2DCZnF&ZIWxeoN_4?x`#W%<`OZ{ z`iWJ^%30QG;!5ZYy}?s*SR^cx2)gR3eq)a+1P}6ih0Cm^or1liG<GJ^UNvgh9l9FRe+1J+q#wC4W+z3a{Qs_df3;l<@)JZh+5yb;W}p(!{R*fq0Q=P>}8( zZxMn3s@TyWe}R?K=Jq;`Xe7SxSdUy#00O9=Vggl}5TymSc6U(?@Gkh|!(d0ja+^xn zw#pF2Ha9N*fe``=YWkc$#)CQ<{T483i*TNN{yeYMDa8n)0nh^hc*5`WMmlVv5)%Pv zZ{+16wdF051)>GI^n~K~01P2X{SZ9E%O@7-n{Z+iSH-NMYc-xs3#@%8Vm=xTZ2zyRI9I+7rn6-fqZ6^z;H4-*;QFOGR*LF^`i)$Y%II|!^oGucPO z4|shEcG(y^ZU#=9gmf*9pR0%vV%_0?9!R6469%4THj+|TRta$FS`^g>5jpHo#_O7E zRs7mA1xP-rGmaZeD}0RBUyTj;&L-YGfB_;O6JuIaIV6{u8b%yR8Mqjy3Gxc7cTyyu z9YRcFRmrC&w1MC1N6YPf6F4H;D;k-&!t9*K3(lS`5Y9!B%SOVME#c+m4KR*`(I@5Q zHWr4Mzr&)dbSx8ER=hRO*5jGUe>+j|wYA=<{?oOi<<;$#>2Z1b%f$)D?YF>B?o*E! z)$73M>X&I51Q)$%cfe+_GtuHxggLd4Mx=Zmz_|vS5vu>DOzC&A$&)nJ1^>f&crwZU z^s3+G5uQp*LlY_WzdPFiDzkaRDYe+_qKn>-F#)h1d7MOQQ>Dgd+eV*LC23oRImupe zIu~O%JL|lGgd%Fpb8Du&eG$ggff}+I;SGhfm1x4xsI2XWwU+}A*`0GMj@xn3nvYsFGvCMo3fH}>M3SW>W6gVm*Gq4k%6`BI3>1`iOznD!ab~re%6@BhT$2heWa(y z&#cKtI!gD-UImA4O#!9}-7ZIsZkMrDJe%p7M9pJ`Op00iZ28PGzO#uYoH2(sR+v~~ zrrA1@JV3%3KIjcDX9DPSv4La5RJ&?0L`$`i;-i4$*RRIhd|R*`;k91N-^kC;@Be37 z=duCZS9|ikofRY?@#rg}SQ{_1@2(@b?DnjwXiGMeO!1vJnq*|+ zm9EgCQeQ&R5ho4>U|uC6n^ilznoQpx(m{!SoF5Rds2TdihHlO7!VIsX4f)OgsS z{NFpSCK7YHl|=ALK|2I<5xrU@63tqYQT1(5DNPmi*k-q0+cb>X9GvO3FieecX^|~z zU_XzDyZ9M3*r`?;X-gW~NUYKRN|V00tn+i%jvf&t7oh%viIG^~NLn{x_hTM{&?ON< zId076yFVk8B?V@LhHZM5jV^|ZS{TWYLD(2Uq)1eV5Q;J_rZlymslLvP&OiWD7OpMz zKXkUEQB34-ud%EcNd?d+J#L*Sc(LdaK3L2M?*mi%Hbd@CV1w&u{Nr;K+C~8A!`?9n z53%FAoK-1RmPQq#P+64>zn;?P^}@EL2+W+lp(xY~&xDS$3_|<43X9`pH9oYs4&%`z z=TRzT>SOQA!|{OHsaW7WF&ATZclVZ?S;A}vKo0vRva|aa)dY6i`E_LCImF)L^_t5c zkafX|Zp*tH&1qpNhC*k91){aK-OjPx2=aZ>`D62%v@K?yjGf+9n_AxNDoJCFO>=uc z8z6TG02W0o!Dv4>)*GD4n$X=Nb@0gWBIf0jo|v=><6|@jNJ@Ic%Amb=HdBeNw{bPje1Z-5Ywp(li*h|PS`BvudH@FW*me#EkGn-k7Ezj8O;X_v3H0BpsxW$bOL+`JpGFxV_&_BGSoKLd0=Z1A z5u7W*VmC6t#xr-SfdRbc3X-cWm}6SJeI+$Sit3e+$*9lJGxvFgCWwf2>iDQ>nVk*$ zG&yk&t0XjMjlzP~u$?d4n1y!cH9>wpj<4@BCQtVWFDgWjdRGFOKt?V+|Fqa+(@97$ z*Q;tFdXLSA>!QQtx)@s-$E>4RVtru&IXWMPuYm>PwtXvbghEgHC6Kku%*f-0M5uHn zL@!r;Xw=nPz8Ps@&q)NraIl)nnIL*Q%|XwAFYT3YtBOB@HVs2sA8SA!vMj^uNh9GY z`g>-iM$f^?lATB~|LyT6_N6IM=kMCp#=e?~xCyh%DdO+E>9fuFi=(^0XS&S~-93Mg zKhBj7qRZwRDQaa>GXZ4=N0#d+>QMh%@0=0RMKZvi&{;Vu1xbqW1KvD|fVNzG1#+sU zUcG^yBc~cY{G&CZR$`A&*E*}BcQ&Kl7((4D(RM|Dw&1O2FZf{g^Mpq&Ln3Fuq9@9< ziCxEg9sEo}9zxI3;_DAFp+TwL*MrJZ3yJt~sLYHu6d>ecGmoJx@Q?z}nZCh1VT2{I zBu_a1G-%x(iofcstJ6>?qiF>{QGH)J_<7U&yVJPfHD(stK3-m>Uv?p%ezexFM_u*I zw~NlIbdDimcd-123PL;r$4V(Pr5O5Fa_9su7Xs&GSuZg^9-abnNrB%f=K#9>G(DPq z`{$CC8fK>@(s=nHtr+v{5jDpM$aM6q?rlTZ;!OJ8ud)+FY_9OMmOu7~WV0#lO#d2W z;3ebAsWsa1p-JoIjDFhV4eUc=&D}UQO=|0)MSZ~4v9;di!_Xvn=MBTk;2Dc%!Ze&MmHokyM7xUm7koqzitrgbau16o={G{ z{-fx+{FLtT`0Kt~g6v{{)7FyuB_LhvV^i!>!Q+`q+vUk{wO@dWNK3L7#7OX-WHo1r zwN&APZQdpFA37`Rv`6s$p%e~7a>-w&kec|}Y_QiWge1|CYB zS50v?jM`jg-FK6MCW7|3Bf1KSQ|Q~nysGL_4aI5rdR%xA6|H7|-9y1<_dI0LNktDO z>YaVTSq+*1CO5$*RW@LGUT-3sBfVyA-5#c|;>b!NHPV!jioa(c$pz(E@0G>f6+ixNJpV5t!$o*yHEyT|2xF*hJUeYFG*()2k@?Qy2^a`l(lxL|svB+5XGZ96f19%dB*9=Gb3VS5LbcKhf zgG9GzAhwg5SZKy(ScHo>c=j=XqAbME#*w5giSA-%BKWmLk@FH{0t4W4>ochg@8@28 zuN`X|puQSYLj)>1^fgES+ZBel8{TgMbR0O4_XaW*Z$4<#ArdCzedhszDw3vruzrta z4uiPlQmvVAHMwQpgc81SoK+*R5$6D9Z)Itm2H=NlqmF&EkO#j%Jh0COY@5(ePhU1I z^F^}Dht}6Ayt~+He#{8>lcAP%xMbqlvM``FtuZFWlOs#T@N^49q3-0krQemOrikY( zgL38Q(FwJ9d>fa^@!My!5t+~Q%L$}_vkpI`=m{sZWB&%n4e8B5>(&!iwf!elah}3L zqQWwk@D?!uARHJY^My!LARnLe)oV6HTJeB(pglSJvqDd;D~NqsTAjrvz5?Jp!~z+jiB zo`wUQ^b#!N%9i$8EY1LR0a5(v0uu<~|4}8FP)RoDq z(5)LDPqFOtvh3In?5^)2WS_cl2>UJFO}gB@6oHra&9}AQ;CbZB|I?Gk{lULOBc>}; z4{md*bKPsNB(jLkSbO#|+BV!&QZLJ|c+sz6`l4c2+3#W7B(6U(9?s8Bk zhGz%3XSP^$coQN~_sE>Q9V5ffuI4K#6)I6PR|+qN*trd1J;cosEHs;H>(3%$hGGQd z+O(XY(In<^D8v<|+ua>__KQqA;mz|x@*<=LIkA#Mt@h&3K+QdhSk6t6$!7NW%Q=fs zz7GucmlMUk4%&23d9@I%DOT3fU6JpcUTnttuPT2nSK1f8eRX46V^3fdPYwTl$DD$L z{tJ3eTqka{5F|k;FJ_u=3Ln(0WBoSq#&x^ie|P?Ab$HxYkJx3 z&z9sx+7fHT%Pz}EmH6JX;LHO}7`plJ@3;Ky9K73ACm4!`x$yv`sGKs)=2M3tT_oZc zfj35`wYcRtUPZGD@m5ON4a0<_iQ3$eE14`xQN^BaLs^;F(Q=UonHH}!tE`1hKy{F~ze&O!+JVU@tEx}-~^pz?wt~L&FLc^-rIyWqXmSma1sWq~)Z3Zi#oo)BIn`R)f%t=yjq9q( zxc0Jj4l|0VF3u%_fg_U>M>I?@RX{+XVbMHW^sp+F->Sjq*Uzr7DWfH>%3_2|$`3@@ zopRa&f4Xqiqfta;`*hfLL@YCH?(J=iPdIyp>fYE!BV@i!&{`^@LL+}o0XQxQf?uLG z2f*RLbD%rmh0=LVUfe4A9Go{=QVgcAj=@(&A_)m=%ng^}xcqBNn%yDFU(E+-rLsHq zw+`i@KJ}|V!dStmU+Y?>*0{m^6T(q$rdXmyeUgV$af?v7=}9EVgO@6+Al3OnVY7Wb z%@V$<$fgm4@Txk5vKghEHtl9W#KISR{|ty1>eSO^{5%I>`qWikT6CzC@9JAw&onJm zs%EphsRp2(5JYV5?Add|8Q z>%ZGT6~(-?gO3a!P1VV}asy=;7g7xZ5YCfwxfN5|`BBtR)Fk6WMdUI%AGlc*D^mMp zEZ5dQ=@`@*)x|{4kTUPrNHbvGo}PM-m1=uMG?}$5+jvt z7)i?ug|mEODI>j^$jTQ1#~kcEs{48DbL}9`uVjy)3Tpb4h;iD?d$SD-|E#F3{++b&c0r0IFH?j*Xy?!s8 zJZwiVE3L|6<0t6C;?Buu)F<=~i(*(=F~!aol?u@g!Uev4u!YYfd`7pngXwq;E%IPw zK0(coK@(c2KtdO|y!Xw6w)}qyE9vu(eoS{wf{t;%GqUYSr74+o+LgCboSTw`8){(J z^D`jQKwz{x?jW?Hl=1o9KMr37lU}(#cRiA~yFJtI{EZFTG?_7N?@6|eeH5A~XRU_R zU%Ge#+<~bq3DO*B^S=+#jj{|}a)<*)8%vitGM|%X5pWBCz<*Tro~)DQID;%ZD3dig z>!f5rhEAN*#NyAs2~iI{U^YB1-v#Yx*NvWm?|^@*SR#gAF3Z*ir;slUN$w194}{M1 z0R>*m=@+-3L1}!3M?0a^qJwTOb3j=41-tDC$;-Zwub_*CJXtVND4D_{j2lDtK>Y{( zS~hQBK;A&CODg$y50J+Ayn-wR)Xu6~zMx`u^G z0*`l0VL5qvIfoo#xm+H$sraNz3R(@=;5kj_or;Y zljg|mQE;@P)MI0%!&Qc2t!Il>sg%bN<}RzDE&!@xw3SR6{X-=i$=oP?nTwNOFgt2n zE&R5&ch5eIi&a*g_Vs5Dy@Yy{;6rl9{48e+o6%(vF{B`^=sglz0L?%kq3DUga@%#o zWd?pPrbY9_HHGn4#ib%GQzQTFBu_L=-U6$Rb%geOu``*VGjJ@cjv((vpD4l0k)sL6 zW-Ae7xFUB0Z1n;%2OC=DnunL{1_}SnylML!Vxhv=yC^olg~w=bUXG=x3;162O3Z)v zsqLVPtIQ}C)qOs~v#S`vc&NwL{Oo21RKbme?zTks+MR zyADrDK~D*aS?*h`osh&*hUoIs z1wdJOiqYaV!Dj|~%bq(>W&NfHyuu-7AK{MUyF%p_pPVX(5l05@L@c+>KPWtPo|&8B1Sa48c)D>B_l; zH&1TJ->Ox8dfqP*JZAnEKFx$~9i-h@PkxlfoXiqRAdn&_Xq!Rn`4&&I6xvyd&gKzM zN=lQBq50Y&PnKnn4j6h^a5qY(I?`grI%Uwv%7jWq;Ud^C*I}FMgoLG-SPp|B*vh}! zNu`G+N+=MpvBRSt-jn5XS)}qqbPQ$*Bc$dzHS9JzB5ZY8OsD3V` zSUni{pa|mBP!b42!Yp|=k%WXcNUIqcs9-P15c5ifWn1@g9^Hlyd;rYN+rV=#xKjahXWfuQeFm0%@jYITw~M&8t`o^GavpxtpyYk?{E7$< zP18LRZ8DUn{(~u@NhhH8$ql#>J|U515zG%>A-Wspxf%0N}D z<1H!+zJ(qc&_rdwb-&M?WkTs3-T9rZpgM{Rac!}|F4LU5WY)+pA9Rw&!Z*T{yk=J7 zOPqS*4#HAmGoHGQ-+_HS+Lql+&Wt-3tDWY5k6*q&$MvQR0loti@PMQ?2X_ZPB$01o zTRC&Yz3~n~cyk|%l{CHw#qUa**PvPU=Qh+H*jP`F3K{k~j3npUOKIuS=R_l}AHa6D z5za(u`iH4Oh}x-SJDoL+>nG|ud;uTdwUGw+`Sk(elv>SnZvOD=LW&~7XsV-ZQa#;< zy(NRgq0HqszC9+EU)B{dX;9w|xA5UydD{5uB7M)ZwGoXi4p}sM7mSm+4-n}Z9SofW z4E5ZzM?(3!#2Rn}2VueFV;l8+CMN&u(smxsKJ|XO-+V^AT97<~HJMd{0=~KeB)5n* zmsua^Q+!G4_um^AnmJD|4R-}9$yO_A)V`D&E`tg)^s?#**@YFlI#%TYpD3SqCPz;_ z1=Q*7Wdym(ACsQkPPKUMV58&Aga%}|-O89gx>{OV{+kT@`5sHX&p8a6##susW;-*M-vW#>XCuvfsaI3xA)Vn!B_Jkb_N+1mPpj30ip6p*7 zOYBr6DIkMD>0;x$z#0l9v=PvkqLmiq{K+x6YaPnKfd-h4vbIdV5Y9yXdR_Y9b4r?~ zar_7sH}Ly*`a1TRFcdCx^>J1=ZSBvFwR1vZH z4I%`b(wB)ft_KNKsMR4X6QeMM@4z};fF@;)M*FIc-jCcCt+NQ7$0=HlE!!9xlHxC9 zQoSNV$KC;xS8(9P)1jw$o<-EYqHV}$Gq{Tr>@ZX{E||!~JHghJdpFFhf}Yf4J1K_- z-NL1@@?EZ+zR_&T-w?i2`cD_rCqSXfk$$)}h~?b2hic0lprT zJY+s)Pbu<3;2m%FNWN@#bpG@A)@>F{O5D+2TGRl4tAtdKN!Z!`N zK;m#&9OY@yZG|L}pen4DzBPIC-2rYf$Ee8Rb8Sv@JleGIu}>#LWTJxtGzCT}zkMYn zkbK`1smecX9zsC-<^Ot1>AHLYaPudrJQGt)t~n7F`6<42dWx(+Y}*!w8z%|#>YQ;& z+AK_|y2+w30tIp=6_i=x(EcrNO=qSf@TW;kecL=)#Zx(+!^r-_cY{C-C8>}$_A{UY z3c2!lgG%;v%=K=%Qc4+_#$Lgx$#YyGljj|Gjt%I9ZYg<86KyJM*_VT81uT0tm&afg zCQ(NdZ3#oOvf;UCmCqf)5X4i{9%>^NBY>LgTGKec71^`@MV=IkQ>{vtd`17m2V?WC z&9!HZfq`dnZym^Tk7sziyReadg-qs(M}Eek87u8i5ZakO*OZ6vd+!Bz@=}NQ#4GDA zQCp(pRnSFcvD^Yb?myG<@Qc@XuLUWAEn)H;MZ#Nzq^E>|kl;UNHB#Cc0DHS8leutI z=+5M_pgjwfh)%|uMxEvHp9AK;NN1h2w(jSg$Z4ft9k`#UVY3$-m=z$3^CkDDl82YYzLeRaKf*n9yd2b7AXZk=_uu^+5{ z^(#rOj`7qH1_Wv00dQFf@Ko#hsBaR^WfGg9L}`$e@Mg^~eI|&6)u#~N`b#0zws+0M z#%k&3VC1zN@*Qj{bdak~x0v)M!PB;AlSsx_D{i0W?{6(yS9>$DnqvWInV-q8n;hMS zbfVQepM>R;R|qnR5r1&C9wJ*vza1^WkW7%H}H7A2zyk=Xiv^xpX3&@g4;+qaG+?#Z9V7ZaK&38o^%oi zEftIAaeA`lf=d)U$EnYW9b4Qm${T&1$Pd_r%tie6zlaN@6Fh#KydMl^pJ@nYX(hJALm~&ZC>`r88Gy=^Tj*dO}13Zr?tVTM(hnVCbS% z)D`=duamVV&F_{vkk(D{LFT?tZcdVtxNTyzX*5B%L9I{{c|4%SJGvp$A2um5@#kpH zRaIvPr6~W?`&en^OY;cY#&WJ=aZsA_P)wWwWs@`Qw3>$vDSd)8=VB>`O9;bv2exH6 z<^!U3w%fsi)aJXgRfVICCMgCYzKVYc{m>lwa7DOFA{xwa!|0nns1mda=6S?Evww=m z+C!#sVbZf{Gj2}MW~GhBfVkwv%Yuwph05`ureLK-Nktx9{C8N$|LSDn0ON&hNtciC zGm-pdI+nqKY^HIvw{d#o`{4%(#asK~HI9v6x2W6V3Oml^?*ZSzvCq3h0*CN*myyY5 zuOYmAF)5ZUc0Aq`*wBczTnjEJ>5!qufcXZUm`z~)QIRQRf65S+Yv;1zPY)Hbmqd09j8zF?%#ZE8$AMlCI`t+ zH-mlH|6aGZkm&JWTLo@#Z&?~XIF;I-jd}0hT?dVM8-H~p<$WG({~7r>z9rzS^i}+c zvXmKB;_HsZJ8nsieI@^b^blF{^sVVqe#N}3w(t-6Ek)-6=Xe!b39o(L1-?AJ3iN$} zwdHMhOTp0)vM6f#mYtT=F$5`m)Xzt2BjtKUa55|KK|dW=)uZ|BSJ^82DVQ>03hYpj1ndlyW-*J!%TM%Nv0N~Cm)EoRNwRcV&e zPyfY=cfbYmY;kc|@cM41{ckPr4*W_{rj*{Sst!z}!!&{P-J$i5bcS^VYxBOX_5nYWcS4u-*{0>nCGKl21mEUmwylgR? z{sW#=F=OCs#kK*5S1KC9!+!aAk_CnMzZl9g)v-5rJVngD0V~V*R$13LG1y~Ga1kQd z^2uE?Z_(s;^G_0Mt#)e!k>=1GCT#&ME3-|f#bqb{_MRR|Mvs9Bk}v4_X{{m?4e3{Y z0Ukj8#;|6I#mM!`{jU?l$6qAhdcB(?3H%z@U0&A`)%V@-3E|Ky>T(OrY6|@U}Dy}SH*{Yeb{~_^7H>5%z}2rQoRWc$H$fmV3@9z46gmN8%#5jmMVCZnX`Q3Jc$yTjy{PBct6e-^$)iv` z33)0S5ZDY(V4ctqAZqF_K6!PI5ZJy(C*vY6CuM&#^mt_@{Ppq4FYx?#&y~6olJ=tM zo&t4PP&*fz(Wa4>U*8@WEh?&uVpS_)iw~Eudjx5zjBTeiTB9yn6I4gvM{nh~DzK`^ z271T#Zn`w&v)-tI;&BbJxQQhGaAh%B*&I_FrBql%@8ECx&R!b1Bti>G9yx_>o14S4 zks@0j@1^3DSKUVjmBH~a6SFVLcy#1Yl-JNHSes52FNpP0Q#zGl4fECR7}3MQMMcen zxNYv;{*JMd$+PgVACo}5hkeoo{0-NYLcFYds6UN zgvQOkJ>r*}Z;!gbdii7z!*A-)XcJok3#pO8vm#Z2WjMs1R$0zbRo ze;)D?%eF3~+^In!R=bLzu$q|%mLZ8=$oSBG1YQO`7@CMGsP+-2hEHjsQ)-yeA&}yRLHHT z3_8vifhD^`d>D=aYO*uB2;;O8%0M3KpHkz^*ww*f>E*d ze^|$c2~A|k$iu73#|DmAx72w}QjT$aS&c*nLEK@qG=I01aAMkOs(IcfTXkgq=6-xo z%L&vTsf9Vo7CV(47s*Z7>;DRA{0OCNN9cFO`!ZKGuK9KmQ!4S;349ubEqOT;q?zl- zv4;%9zrL|*Bvr8^0s7>B|5f%TP7CH8?sLfZ#}tU|TUf51?blDZ{ zHO#y<-KL#+8XOkVC{KC&V|H+ly{82flu|`tl$IvIh8|s4!oRjX^Xt?lq3iX#V;|9B zE~!fL;Z#n>D1Ix`ygkG_pR@Cw*PFkdpGCc2-~H(#i2NFHM{qe=h>Nzmbh^l_6rJM;;3(^;sKw8O2`wls9J%jhC`jw`lWK5Y!1h`lfhMo z4wX1$?%X{njwWDDQcuu9CTE)AY`$myziH#m|42H^sHhrt4bvsvB^^Vzbayv0NOwz0 z$I#s!LxY4gB1m_4gERsHlG5?*_ng13g-d}o``LF~w;4IIs~h4Kk>oA`>IWauhdAML z&Yw6&%K+}p6l#NCY$r6GHax<8rE2?)3su=ZZlRolkzq}(FYvuoO7GQI=G&4Ay2_;p zuWx{(V4FX<+@dqlA|@=qlvgyW^tVI>ZbV0vGy1Scdz!N|h~Z4acLfF|^k=SMcRJ!& zh(EHNb|Axac!xamOlmU=iS$FbE4iRL-LR46#}uTpmeWYqF|Ddiky{V+4rg2hGy^0p zh|1xj;FK(NBU)zkU&nRN=4+Tw+~|B9@pSY<(Q~9m1^W{;<#sYr$)KY0j3rb(&J?!G ztIis1Zj^W~^ILSwra0YY6}sp&f$|NTHq6J3-Q7-UXlm(*K1RVv9Y8pa&pH4f$u}O! z2}U$w%!2^c?H{R+T4kZgbVKJ_F)NdNQASeZSNczI4w% zgHjq|VvT7Tubh(I#^%QE$L?1G(?5;a2jotK|vn~T_7%u|<&pq=y2ES{1HX}i3`UaRDbSqWd9J#fY<{-Pa6vcy6a(h)<0#6pvjsnx>A?qeN zaK_P33ZIO721MsgthGNp4)}pOV?I`cY6ZGc;${!JcSr6Q1RD$+P~+2T|~%Cjy1uz!S@CXm_{1(gqV4U^K!yGcAi>O>A{xZ; z7i5p?;9zi8#9NIFWJ33>F0ZDWtP1Y;Mw?zxbMG!wuJsur)H`6*s@#Z-9FOMMpIz6l z+dft?8`b`N?s}#jQmx8%9px4mtvdX!6D?h>{f24_pMCF78YhL@i|Tu1Ek9gB2@I?B zvVhVhE92@N&A#dyj808T_N+hMWm$AK>GDR1>DvoFo z9E$#i)5hoR;}>oc_(EtB^nkVwU^U2p`}FYQP#2b-;|knmAs!ltJ~6H3dIN=Ro#e*NAZXw#kGC=n^0GG76*BB&ekt_ z0m7Nz2sa7iMaqayvolzAK{Aw=B5S|}YLO$>%pB|UG3jWIC7u)n=|-J2n(MAwt4KwO zV$SU;?nnA(3S=`yS(^UU2j4i)9{%>B#vxCwINf^(d6}yW84J{{G&P8|`$9Yfi_@s0 z|7=ke$1}+ zFo62B%Nq${op#p5@0%b6YD8&TKt<|&vvb(FyMJ*py>I}(*{ZJt_-(HH{`F7FNJ;t7 z{QA)yT$mzFz7j%y^v=8VX8Wbn0p=XN(X&+W7eO2(zg}=c%;nEyRXr56FPmsnNeYc;}sw4Wz2t(kxO5S_dfzXkpff=bHPc z5U!!ZbK(0Q)@~fybhr&2M6(DXc@Jo*6Hx*R4bKI3F&Pnib?K>SwoQsSG31S;f5PYw z;?)!_J7*C-@zt}PG=`LQkKIHODB3g(JWCwj$jk|}dTYZQNOi%56H~hrYLBMHJ=z1T zu-KyC<8Vc|5d2?aP3Fw7SB%~Cq+sCNiqoQVQWPc0v#8`IZEsKMhV60=5gBk~-SWR7!rJHi9a++An zej(Ulm8TpVIifvn=rY1PQ1W@i6M%QK1JCRj3wy z9{+#7-msUK_m3^$4A=1tH+g%^y#I4j$2E;}=Os*z$%sIijM9_Utms>sq65#NtI%s( z7@(5*xxveg&2HqtOXU5i%(J8L#dF&$US#|86yq)9YHh4l!CLDfvI|#A=hFf^^xP4O z1x;-d-6!wQ|KwQV$f0D-&!!9;0>^kpysI_Z^=w~;9~K#zPQvM;QxB9*UW!oqLsnF7 zyAX--Our4;>+URfKhnScJ%6R$?DCPeg_cu%A61gE+6fst<@;U8ISAM9=pyoEMf5M1 zI&Ez$+4F8S|NUTQ-R0Gn(DFu3Aqf_a>@QLi`t%k-#@PB*?uScg4s6+mk~&c#8{_gQ0<4%#S_=r)ayg4E4o&p+S=K@;s9ZZ6==|4DHvF{H?{uu9K{G66BNujI z8|b(Qn!(0NT32xs32{(^e9w3BiUy5gj(_ijy$_jCt&YODs1CT8%}!M{G}iD^IG7b@ znC*&w)Z|3=Y^rduk!|7?lfkpNDLMK+vSU_8T#OPuP4CsRthE!9xLD=JG}rD*I*r1up_3!)NM?&diOXzC3Rm>XVZ_@{5ua6Wte> zyG5X%X>K+FK7u#~4!dX@X+Euh(;3AaA=&TAE41wW+_a^!{}C0`sTXfLWb zVrhjNxm>eRq#4!xXZ$Ry6geIMkSM?oYv*Q3JtOJFOGA@zhWa9L8{o9kXqGAx=g)x0 zj%>`*H=hpor)odX4n$xbFNrUD^Yqit!zmUUzP5E4P&y9C`Otw2se%?qtYQx*@`Ykp zJ9hX5vj+?ZI_~`784q$VPw5(a*$MW^VUkXnYC1})SSs|Wo18}oK9d0o;DC@Z+QpJ) zr4}Up`(c4*kScC*4a_?fOH(2Kn?XeEblV15rV#Xww;Bo1FOAXQ(^f60)@n$zNwY5C z@VQfqoR2Clg;&LMaM_cp=uKq2ClUyT@HYsp5G~L{6Be!od0dt>K-X|>R@`7^98>6_ z)mu)ELA{k`pFtNtI()NM+E}V*%Lf5yf{SyX045!5%7Ag2{?Hn^m2L@hrG>u$#pO<5 z;?ppu#;L{RJK!T14LFjk$k0QjmmAJNs;Xu_2?&zNB-4iz;|J4+pocWAW?s9gy|)^6 z!Vqq|9D>n_yy4>+N!fSe@)Pc+o!D{)vf(xoRXKJ|O1Q+&#`NEv+8(B!7*GD}pTLaI z4#pb0iWRFkm))frrL^vguCcN?9&^ck1?{)wO`6i9R;5wV=Y?tty*=qT$8#qmsH;jT zl=F3B_r!<5s-V@znd5m0CGFdC9{K2`EpbRly?Gf_;aYUw>cLh4(~o!SxX@K8(A{#j7kQaN=+nKBN?LMY)YiH}7v;1SnG z9gj@otv%g|v1v(wJxw4qwU!YV6k!!jPga`>&%7!gtUJp(u8}dJz)~OmHdvjBzXfHm zRivSlw@JGW6rpexAkV_V2Y7az;G%`Ao}b{0CukC(b@kV2>v#yCj^O=Rsyj2Ie=w<@j~12giG{Z-FX0wC`=lHJ=v^6$@YA36Rc z<}KyaE-W-9uq7DvkVdLBsa=n7v*9xw)w*RI+RG7_UwE-$31~^9U1ojCn+Vm$sCQ{oTUMiWvvxB~fGhwHqLO4bdGiT@5LGu`_h z3JNHWR|7uG-39z4P}yyMMbVi~TNJCVTPFy2Y9Wz5o$R0k7Q}#lGZSY z$S7sq=@fSKk`id3VjVH_!cN1Ln(I8Fe2B}-eB~hUDBHSIS%N)!O1S7u&I!1d5fE;p zl0!}LF37ZML!fe62JSV^cd)pHrreE&L{_5%#SKSKlD<#J-sOR6Y;%ksQqc-p4B4^Q zSW9j#8S1BrY0scKFgUb)F()}{P{Sn;N|J_SWno0(72GYsgSa0p0D_;c`Z71f{b8+$|c+6S&f*aO*3*XR9{P|0x$nGkCccsW;{Jt z!K`%~rkqDf!^r)OKntVY7S%&8VZfcrlmmYJFV|8FXN*H!6lLzvQ2eAT^1&X#N#Zr- z%*PVi%lLyZhc{)-loyq#d1M3! zu{k~7kG2dPl2;^Se?(l#`&v1KRxn|H3DE0s*{Uj5JaqQkW&?fNXAMA>mrA~ zS#sGkik$|J?E-MUzcfKoo;cC=1*hE?%-?y(KXjylqyO25|BFFL4tCK;(fp|7;ZmSL zF@z8`gT!e}g~RiGtz4cWIy87*fq*pI32#nnE2Jo+X!Ib0xL0n6%ZL5>*5;eE3yERy1rVq^F&%K&kdL?wxYmlP6-p+pwM z)wCE3mTC~URGxQrvdPilvFn<`zgha~=dPbty_VAN^`0K0-B#%YuhrlcmnfryyK#}? zHm~uAEB5@xMwm8^R^YXoS1TN@CCkqNw48EN9ja0l>##3xJJ#LD% z@bIB|9mIr&UQ=KGn6f#z9?o8RIaN5kRwuWU3i!J%`ts@Wd$L1mI_S=_uc@>B9$Ky5aCa0=1807Z)#ibrOAVFM> zOz%4_u(FB1Sd{7WeK4@du^~@D7Lb=JtEy5EphpM#!7#hzq!u%GqG{$xIrV`;iSr7L zR7f*qt$S4ovJW@~Pqy0WGBikaJYBMgO`>3OTn0ud&}5PH4{-WbirnAhh!owd5l>9*c?*~U9u#g=H{4x1W>B;t z)elMLP#CcGu$if_WJZzGr;T3$J-qRt0d@jJ>P%U+7p>b^#YIiKuq*{{bVKuDBBvka z;9dhri7$YB>L}t`D@x z>7Y-dIx2&rG(e0?*)XV3mErceV!EKn0$mFg4<24b^`14AV59cKMxEs{imG)8ABr%4 z>R*}d(p(2ZQQ6x&b?$R~4J}Wu2yS0pa53vh6e*4%BdT`glC{~CC)8atW8YHdmL{rH z${tHG-H3ibPAtg+Cc0H(ts?JQV~lDV<&ZrFZpk`}0axo$0yPCRU72Bzh=(zV>qzHT z4bruz56D&0uAcKtsVBB$LN#8wyoQSk#$$(wj3-5Z_cE$~tljsyG1fP1*R>7Rc)YUDjV%B%!ioG#4=G>lDN*0*5#}`bUQB_onsj8_rsB19(HUl+yzNHL| z1t8Bgxd17r*0r-!Dw~KiM`b+pMxI|azKS)2+5gHejfPSNN>pQ=uO_9Cj?=J@aG8WU z-ep+f!$8O1d-iQMt3uJ2nGJ}PH_Y9!8nPa*TJ|14`*Yfh4{Z;RJx}9IJ5#S zi$2gyx7w5L!+rLeN~SkBMdhFP6L{5H4xq(4kfkmEU7Y2%dSC7$mfH>Oc<;Z!hL=|+ z+Zd`dg#%L?83fG?X4)60s$ax*FE7KsUq>b1ey!p*G}5LwJ(6$!754P>zT<92u2+!e zxw&y;8Bx^pvS6k1=2?_v+|mcyT}&lpt~3QaBbo@Uz%&Sn4V0Ydv>v<{*Mg%%Nhjnc z;Yq%79PmGQQ{Wq)TRJkR-5a?aeNegTJ+%`YF16>Tbpl?Fep(KU^mq%pysC(Wrx+=n zP|FeLF9vn%hoyPWR@UvJow;W#FjJ$Or0^s)P$Ym$R6&|%Hgnd-rHt^w|og{*LaUpSXc ze|AbW8L%bMg0uqs&WS*IcT&|Hj%GVFxv|7t=%-t8?^fZPmZpS}+~-Q2c%$iqqs|ry zRgI(}E)hO7xh_T@fo7*qa!IX&#P+A_yho}j4I&|kv3~Ti;{}e2i&sx{sVWLYMsgTF zALH1>GQ&s_$;miG1O)==4wiL+zh*I9)_3hcwq0H=!aRJ284OuH=Mm zM`VHCY*oieg3Dw#kJW!g;>7D0b_F*)k7LYTIOT`UmfNog(=OiZy^-%???;Zwb{mO@ z8Hs5mzPpgHa;7doZgBI0o=bo-TS!SB!L+@gdhgQRABmL+KxV(6)AU)Ba+nzJ9E`J- zR}Nx{`vV}E<{sKkn-CeY+r)AQm^{kE19ep9%s5kD3!jyJaN54HN=>Iav!D96@^;Sk zaqq6}#H@q@|Bv}+A;i%IcJ|P^o9A-?F80buYdN%?7iPHyO=woBTrg3Um!ltXZm%rx zSEwy8FJ`hz{>JyCv#oE@I`;d?W&a(3?E8f*B1VC-o+DB&Xqp2*G;4NCH;twVJ4@RR zJ3IYVDR%t?U-HYS^umUD)vZ z8?<$&yj4LIbxIdzGnG6t9Q}Uxl^eCkk}h%0mcqs@ig-n#2P8?I6a&+|Bl)^t51Z;Af^?Y7@6>$?o;;aOVThIef=WzCl3{aPpi#$&Dxeb=t|PC{V&mhuCCc-8Awo+Gt8)v}f6HLs7>d?jK z_)tGY#UmA1mew4kvmcv8@xg)3N~+m9sIW!9PVZ|q@WxBswAwhW7)eg`arEC}Ivos} ze&u$i6=cG|QO}_!2Wb;|p9H*neolGu6G(!!O+PC@@J0XfyzCo-4BlbFeZ*oZ8MoZPs28GbaLFCTe#0T z-f$d0_&2WYr*E2>e0u-TVAkUjB5BLbOg;4|l$(Zk!e( z=n~5KGKKZX#O!rC%7$hI6j`o94}AoOsOk?+s#y%3>XN{*MduG4;07CN&LZk)V%o=w zv>n<}^NUmdU*~r}es=fIB-Y&OrPH~2$Jbb0RXGU*X(MkUnNQiH#iOuK0a)iN-}OF{ ze9tAd(nM*m={e>#O))+Nj>Rz;;)d9~T&T)Z@Qr6VqCXQSURBclqxbpHK2?;uGk%+D zqlokcru4G;(J0j!1D3d-qO*ed?_InBp6FS;Vd}}C!+;&>SC6f1b&p#D z=yZSP_2RYb16u*v^cK(1Qc$;msoijj_2hw?c=pEh`0!5_O9AhB!1s8zs+U;(3{XmoQppX3F82nfmXT=P$t9$SCc|9+s&5jXUu z3E0g*#0KU+3Q_oTe;-c>@#CI|t63H((;|}F?KUk%HOzvla|SSC?i|O&h7ed%<2v9N zy-@JKfxeb~h=Y$~K!q(!T@n7IYnk8iv%BI~au@txtbAPSeHp#pq|IDOmLlCDV*Tvx z3cEhaz&Ae;F%fJbw&Iv{yji>Sv~k!zeuWBm)34LX%Q?pM z!%}0Lpm#jCx~h}HlpRs7*M=1nEe#WM34JN#vf?cuG;}F7ojQ9N7=|X0gVK$JHr8qX zFTnD`S~*J;IQ``D61G>_zq3;81l;3*1q^KEyuba4*B&_V>eBc0QyvJe?6{n|h|fYp;g^<#ssG=lS_*)Lz`-`8jdm0O7*$ zD)n%haU`ebhDeI6>uBMMK)Z{oHxmY_h-g_hSo>nL=-gLCj^n4?_IPGZ=XoABGt{N9-oBEe?Np%@x8y&iAx=?IYY^| z7ma!Vh$VgHIw~h=qE#|qtReJ?*4Zg>|C(w1ywFYD-!=@*wUWRoTid6DQ4MoZN`^I5 zOfiDzjMhxsy7ykt!4t>jgHU6o^e z*|vz&I_1ShkF$H>f(DUsR0o3JW)#S&_8R`TD`h?1^8w!mH|MA=Tq@?snHE*_kdJLE z^iq5n3847<`*q;A82lJYI?CegXQ8Z8nSWbNfUe$c(|9X^hhAulCMQ%DOCVxNFLKw_frv6;+9T* zE!;?nHUIg`6zE^H7yv6PnH$xgB%(Y7m$L#9?qicsE$WV%wpkK<7&9cxBchX3Ev7&Otkwn3a8?##R%9vM`Ac~-iP|c(p~jqbAa3Fc zN5gXAX;i}QKzz zx@lPqZVI+#^;>7aeXEHdPPY%+ZX9zLt3ZkKJ7+&v>jdu%dM6@B-$CXBEt*iaTxx9O zM`g-oSd)~c8g~Q0Gv+^6r5xhBPV6e;BqdDWZe+|S8>{M#`O&|ZO-4Eqk|zFq4=h=K zBDMgs3^idz>%u8bQgj7bGSn(7IV#=;d}-WAev!jQ9AA3-kAi8IK{0WPM0G9#9>nrU zi%LwkRyed~)9SyEVn@&1rgW5k7Y}?@t}uPb&xrdl5H+c7UeJ-tm5A4o`|und?6WTz zp4DP?%_Su%fCN1qy)KwGZiF-!+^A1|;bRq=P?yiCe)X1k?9h6?L}tGmvHkh_grKer zIcn5qvS5)EY4sEfKJ5LP68*<*^}+M?k|W4a$g;p?YVQ5N=w$YNn_+pfCm&kXLi_BY z>2;+~9eK75B1AZ2*hnS#)zVJOB`1DJO4J%UtMvty4nPh>yzggJag}MQyn=E$JCgkl zHPU_dOk>e`Ho+GuWOn|aI9k!Gf@Vf^KPhQ=qJT63FfP~1;hcOZ2t3Vz*)A>&+E&_y z&EY*9ue&?%w;jykeocg?Hnp+M^y13lYl%Jt%6k|V*S{Ti!8boyF>}l421HW7v3n=l zk(ZsvO{GnKwIH^T(Im{%XvYMMPHA*l>FF_dx0PKj&%!iChL?|Rd7+LF`B^Ff@x8zO z$O4D1?g2owWs>=1V6?C{x2%;1N$M$%(_Lt^Z)%QK8)d`xOF|NLrAMYzfcPYx!pL<9 zX2y*kfk{nFFqHQxE1Dz!H?hH1 z4RQ{~OLsi6czQmz3bJ(R7W*vB?zPhv|4{NlacDmJ81Kt@Vq8JD5F>f5dhVB3RH@2A zSbnWhCGqq^KY`4$^9~U)=R5K^W(M{!hzGfiN^0ggCvbV!>Css?Et$5^T&|0FUO3Ab z!F1p6A_iWcm~0Q85z5IA93>xkEOZLkO!2_I#%(3 z9Ssn!KGsmd(n*C#Ys5|=VRlRT@!2X z%F;OwMNfapz_I_7MsGzbv!x$hqth53g{~IY;}~Ct2?|w(M!M3mFyNYL7K*ZsrJ$$c zYJ8&pFxU6Db})kFTgIP)JBq1UaI2IrLZt*W^wM2fE~)Ap&XK!No!uMoHj49W3Y*6I zaFmV=#(~?CWb{+BZBL_puf=k)xDdK%$OQdn6HObq4*P(@GTl>-oek$tNKN8$!U>4F zb3RAoP>XIhr@V+a5}~Y@QO+1Cr3w4t0Ng;wW?rh+GE0}oHPmA*SP(m+WYoym>qo^5 zbpKh$xzu?gB=`N{P;fYu^*n3B-vu_jThjlkaFwF9eHiivNtQwU6rhiK!|erb|K+0hIlGt928b}3z5RyguR;s~4<0V)K&Eq6&)0IR$UI!LfXT3bsU}h zD{2#mjla5D(9BnEGPjk-lQzL|XqqS)gbi1#yd~-I9hMYw{FEJyMgX5@TTdf%Z@0Tl z|0c;g`au7gJ#?#6$A)7QyqSS>@Q|n&D0iE9Z6|f^f(ibz%ZOAW;Y`b%m)h4zn;EF# zOXBn~sJjMMaP_K1lDvj7Qt4CY>G(t1m}|wI*uTe*JWyc^b$A`I?4iqZ|^Pca=QXq;(JY)i@m=)TQK4`#@+%Ha)ekOQzBnN0t zp43)di=4ANf;vj|T^^`}lg;-KWfiUodM#p+Cr3;@%M|88HQJ6ZI|wsDdSk?4zKZvx z8`fp4$T1;;XN*`m!oV1x-cv82*s*1IK`lqu+e{ZHpL_@ewPz|nDv|vuR?=&8w%_-W zH1IyG-*V^99YU@6ZY4ps@+PF*jYTOXL4$<;t3PO_N7p{!eK;CKZ6WcKusOu0p%x93n6pzD5=Dp<#3@q{&t5|F zN#0q20y*vJ?jqNJV%y$Aa9UPQIY_eLorUiJ2|6pkpL6QR&#j$H*Xa|ua5GD}C4J>6 zLl>aC(%Q;#@puNL$UjX?S$x4+Bb>>&01-u5L?>VA;NYlg?|kfjBsB@VB;``6C%iw| zdL{rOR>}s?MWI}l&S5cG;X)Kdop%0T?icbHLu@P*bFO%Jx9w=mIhtlGGhMSa=TaZl zNjDY_TT7rhAr)VCcDD|@#VAJupKDyXc3$oFM3T!!^Q3QeOl6f}n5Pr_hrGb7k!)zE=fc+WbFSQ4kII<4=zw$he7A=-0wVEnLrhDK7P;>zW8$Qm#1 zCXqijh5^HulXgjGrq9XxDLA7!pBNM|D{q)Dd1N)S%!n>%C&zSLCUOw7Alm zlrsu1Z|@%_NhobCGc-(1tByrIgz+A4YS&?|rYz$tiQYfDrTs)`L{7K)TMGzkd04ZSGNpQnW^wx2(SV6IL*oBJl?kiACC5u>eUZ(?OrzQ zi6LP*z*Ws{-`?f~Zs2pN~(@H3Q76_11W8t1=y~aPcc}%_vOk+|wEy8M+)+|>j zgK^k@J|Lm0LV(dk-J9tj6%8GsDqzFDGjS8^fgNqDA>0oOZMz1g_EDma*Oi!nJn~^e*|%6rWS6YRm>WI2tyo! z8GID0C}E`%A!5<=CZIy>`$s2Yq>C2i)3(TTimaL>ev`G+ve|#gJ)4-w(3&qk89b?! z*=A$zdOFJ|1WP9bRaJ0w(zOGFXOXZ^FE|0>Gm45ig;EryX;M+V%{4SG*?NFJ9g!M~ ztrpgEYFt%Ftc=m}%b6pWRnjkh?RqLY)F<)(vzZRP%)^@^N#lGAIB!dchu8NM%{#{z(XqHq56H^CowcT zADTworLw3`Jq=5ynL=5Xwk7B}r)*F@;3xwtw|{x6j!Wf!ZxY(c6RU)Rj(kG7!5 z6h7JBTb2_-~TW+4=KM*r>o*oaA0rMnxp%Un|1o z>1C@Wo`yqEnJGd_3B9+{dP#gH_?Sn!%s82z^Y#8;6Z+J(?!K_ycWC$M<#E~Dz@_Ex z{epnHkrHNJuf>|Wpfy{&9Z_UmA!J0%h5nI4DTO8TFzNeT9=w($$^*(hj6kLaZU^v^ zv;7O91g`c2pK*7`P;TbO`>V5e9X<_`=?>@tv971dU}gPoD(tu(?D%E`VrgMBrw~)z zIW)*3W^sL%?3fsgzpdISmJYgl}%w>c_;BVk3r7e=M3)y!#Nm!Qjs&@t< zmsa5KoNo4tP_FD&`7O^~bh7&%nd~3b8g5u1RO`8>oV-J-M*3vD;v0f-(WJll-==3~ zZdgHji$ks{ReGU~tl-rQH1^Oll(MMC>_bIne-)S|K5A%XjBWm(iL?Nl-_`Wf>HB1kfGx9Dzc4-0&zl{+xyyB{xHO&V1|$$B zOgG9DjUi$CNd{adD1Tqc(k zc3cJmfz}E9Q1&SDV@?b=7p|?lb;^TfcBGH^(D(<~2Vqt>Q9I5eb#s9=o#1`1YXMH; z{K|NY^CET~Mwnu;q%|VKldK`1paFAeQ1{C6xRsrc5^pITW8%*7K)&N|^>{0chl4BH zg2xUW1&#E<3sb#dF*591q%v2k5=*W2_T+q8Qcy&wN@ zvMA2+kK!YHS($s{Br6ZnI5TlOYqlI+cn**I%%p-W?qxWR2dbG>!|iU(sKn-*BTJtI z#X=|GZ$IKyJ$l6S)ZLvt`MBb^WUj;ehxy+sCJJ<_nhQyCn@uczhrB#FTj(6c zOI1`AD1uC>)}$dJw-DpQ6Un5$16rfX0u%Q1hq;Tc4y$#*5=#j2R5okJJa0)A^M;`b z$07!_l^hJ6FPh{AQ5!UJ`}|zBI6?-MHLM!%{5#=~(%f-v9d-`t!4gjq`0Xu1Gycy1 zVKMW5cf57QQ4chR?&HimQj*IHN5dIeV#k^Heb|a_UQMv-di;2x1K}89?Xu$ z@zgG!|{;4NaF+NJs=b;9==MkIj$>JmdQc} zT=;Tw0=}R!|Mr)_Mo>;$XAb$oLci`S`NxGwu+`3W$fre{CQ6a_TUK*b7{ZvKyiB4C z#f?#-$n*+7OZpbr7cR1>Vq;kZPe@=oc-K>Xz>Nz8N~+}6ee1wF8irlszCYwU^cRln zq~g(Ev?>&)jd5HBX5-ddG>RF2d5HobCm=_E`J?2N6yAm+^cvG>t3Q%zYj{5*@jD6Eo8Dw!_z@aYSQ2g(XXQB0)J zC4Uog;|&vQ>S0)gYhe|QB;~JVIPvd=`M6z)h7ApkxJxS*6Z}a@ngU0a*H9VdR7oYF z-P?Ee8LU{p9Q_CHvNkqLRE<78IYXM|Dcp1%VPEIv129r!jRwtZonG$%@<4pDLX=%t ziy-j0NZAH-XBX^W+W_}6UIq~`>T7{a|D0#6tD+c^`qKU^R|C1s`Lb=}hfkX1BW3L- zE9mnswFx#Eon?~D*_sNiR0{NED|)=bk*pk?syttQib_QRYj4uxFfe27Qea&as>%b- z{MG9g23{|6`L8JW;D{r7+l;_dyWcPP7NyVzi6Hgiy|&E2FB&;H`$}|gpnsud-Ji(Z z%=Ig=>y{iqFcr55-$qrc*+yd?17-aFz?K2hYs0GJ(QpFohjq5sm!M~L;z*MJ@*$Z0 zGQ9fpY2Mej^m->qF9Lf(&xu<*{gLnyy%uV)m2+8#GBPBHQaQihzp6mUoA0A<{b6bMxdH3F81PSr^wDkiIBXy;QbQ9$DiybB9E{bMr)J!ofV7b`L&nCYjRuUrI`MreCziPvWc%Fpo+yC9mp$dh`qJ>=6L(R*d_{HBU2=8JhuZ6Ox_-0#QBq8>~y8@OQ=)kxy|y zxIEHMwI*rFEaQTaNZ=yPWVD+qBv=Na_zn$KWHtOJJk?Mub;#@l42xL;>o~4YcCTfz z_#t8@$00A`&Jyu$wB-VVYB~g4i<3q2k(1^=YGVH#4kQ;Cx-|Vw*i%*M>gOImxrnqr zNoo@Cfav`Bv*vF>FyF;rRBqF&vtFDI_uc97dTeu)jkkB@qn16_c(^X!QwMhxcX7As5H?`}c=8sRTqR zT}e?8O#45oS~RM_f3!%__lkxi*$VM@cBlK&Z;iFx9ka;KT|j8sBKDts{QnK34svu! zfQhN5Mrx#zN#dm6mC;;Hm_xO@vqM6{-GLk3EJx4`VK%fR^{fb|Xxk;gXm7l=btEpb zH?H-w@$RjCtU=Yd#nz68Nb$+2&W0x&1?BlFON56Xu>@F#`a3minsEc%v^2WM6%or< z0Z7?IR|BD(K0o}_>FDVA$L&l}EEkTqs1zJkyxHj>Hsq_>51By+0YDo(mDT3cWwKKY zcJ3XjFm38pD$(@stC&WS)rscpo9j{Ma`n+K>_zg-b6ipER02}y(ib#!QWX-CG+AG# zV7rubn|KdpVPH{snsYQWf!b8Wi7I57z0;MWG!+qEtE3M!ao4 zuut9&K~-dv(NcRPO1D0sp&jJ(poyGEgY6KPx|kCOiH1gu7W#Za!2w7p2+S5-Dm-ho z6&_g)8aa zS>{>0sc|^48PjYrT-+kC7i_fEhm2M2ZW$4fe|=iNPU-S?5v9E)Ng~Y+%s7AvP4!?E8B$PEali@^4e2zgKq;`>E!d0IIX1g zbns6#RliseMpcip>YWhec?qD<j^e8QeFlIuraPhBH7CAbg+i6Bek5zikK!Yq<35NNbkpq#SaP@~X0Cj(qjp zz9p4n{0g4*jpeV~f}u7&6~3Vjz;?o*xD#%cj?5ws2}jI)>BQv!2sGD`dSxwrsND%d zB?4JAbPb+KR#yvwgJqYci{xxNi}nABbTaF~sU#j(6# zY*j-0OWTYT^`t=;qQ!lvSdDr}hEziBJ;2L|Dn%b6<6&SYGn?3&(i{!lU?)!+QC z4zA42lj;(^WE3SHi6|(8CI`vh?1v8F=MIq{6)RMS4*Z^9u1|pGI|fz3i;hIjX3Bwj z*T-8UrsGF-Y?w06pD^?;l;8MFzfimqwb<`vq9*TYPe` z5pv+n?iO>@Y@;S5!s#t!Lr2kadx{Y3`z0a=NSWp<@u$I-Pv|=mSE73YjaX7uO)otZ z%XU!Hu%TbJ_8oQ*Zl>eT<919XyZt_H@FENF<0>k+cFAVr zWxw52!b(`PJ^yE?2b&RxYtAJ7TJ{T5pot!il=nUd(k%|pj~}~%ongLav?%lDPJ~P) z9-bp3Y#NM45h-xW6o|Gak;HLG#TbRofm^SrHte6rPq}PucP{0)*}@Nj5sM?C}d`_MCeiJ6vnppkZJp5ke(42eCYC_RO5W3s**k&dwfx z(5(WbM8r3~W!}FhyCcA@YNb8=V|El`V&iJ|> zciD`)en@KSdyDrX3r#B}J2F!9#oc5x9aHM0%wlRiTp3$Z?XTt@lAImW>B5BWK@57T z7wzpRM`S+=%8lVmG|10t4}65%LU^;%AP)~;Hjowwn0jR@19GmD#TMj(fE~GN?Seb-qWpw?DEa! z44XC^=k*{!4u>Dw(p0$MX2Y~nK<0x(3h#n5(101<0QoslH*AC!ThNn-TN2$#E8bvd08Ykr^6ips3ot_E0BF91heWK&Z z`VLA2QGVQ3oCyVK*(rWbPT|P2AU}8hwv%UqP5JW|W@JC)^oN@oZa**ymEPrQn6-VK z2T{@0)ljk&4yzd{r?BE|>!||1jfDHgNyZ;(d#_LRkLl*3*5yNzhuuRGjtKR1TSf}@ zeG)XI(*9GhbeC(g!eMA%I%KE5Q%ueUP_GOCEWXr=$~7F^mm%M zP4|<|3To?U&eBP2HhbvcvRfP{TcTy?{(7$6*tAfKUql=I+JW4o89aeOZMa?nC9Vc(uP3A=-lvFpktv!~>Txlz$0_5#Po@FPA(Setwb#}L;20Rr4OL%YLLEiJBA z(kjuIA`}mHxTT8OGnBU&_9TS83*PE-PgGPbnDml!mN0=}4PnM$xmc9r9J4)sh{3Os z7+s>7!%4A+)<>@SCMqPj3+8~T1I2*R(08tgImj&mhMbttwCq*A(Tfz&iu1E;@G!3{ z=790$w^!?Cj4Lf9x~Q~FtpL1 zN-!s`bhz;uX7EsFC038@9hUN!fo#+T{*v<#V0+9mXEFhG5|$62v|qKmFi{tS;#?8)yD#wgDt1sAGo7Pl0%W< zwg_P-kW*jINh#g+nWUtZfi`M&oiex}q7=(fCd6hkdgv~=HCK(i&omby%LrcTrbqNI zV(&BW{Rv{e{r(=q*K*WECB-U58mo5ofa!Jjqn?J*))%;v>@-|>vhVnV417Z3sNWEx zs%wmwStG3;_|b(g%#^~U%zGdub($EsT)P88pdscr@1@x_Jk#7Y)GsS058p#L{bdSi^Y!hI(g(&mx%jeO_FpFI_2?& zK5+nVH(sMBw=9iPDgg{^QOqvsCvtoxG^=Xp3t*S;*j)R%0_iUU?Tj4U)=c3{?NdH#K>ekWMZ@Im~1!K6h^s9OIqEiwF(+D z_*J6T zD-SZcDw{Y2CjJ%U-ftPx?A5rS>r*r$&F77ynBoe7C!pSFau=Ti6O-u(+U9%^NY5IT z+9IM1w}|KI&xN=80ulgDBEXHRx6xVe89QD1dbN~c$O(#UDcbU}YyY&du~o>7j5^fN zub`YS+e}2PiogBEd&dK;fNRPa=I|MJG9eWXz#gkX|$6 zWtd;)XH)=wVGj{mk;G0p{8wCEC1pa3a4$Kt5Gp*WmP#A$wBL*+C#Q!Ge-k@(v62>yG4H>>+G|=H#*6HyO2v_^oy=2kPchVKJKi@`Wn_NG1G)n2XuffIN<$nI`?ZiV&S+GqmQFImw19j|#{mh# zB}W`=jWMxmqK|B)i-|?HMQ%Jx{Fu%!N2=H&64F#jMC7r(z%C4*jm^usR_fI9cTjOe zV`$~QACUDZ>L;_h2GL$q`E3QcxTi`HC2?TK%G^(~L7xVn$ct9e;I$SH&lW5GH2Wva zVLVjDS5IGn_Ph6O`1odqgn~uy+R9(nv-91An};;NIX_&uNM`v|{ z*k`EAtpjr)|5O?}L4>6?%I@7V-i|H198B=Bdr&OgSL#MnL+tDVg?OF+Q4ZVL^upj_ z@@l;TU1%iP!_`iK8s)Zg_SoG0O%lYFB?PrBEk-1U1*&G~NPMF!z$)1Hcu;?}q-)qX zqs@Jn$~hjRvFeE?NrNoDPV&p_=ou-YOQbyO&^vnqIj_o2jZ;FtS(WowO=m8wChMWg zcomwehBqos&7qR_m6JGQ#@`pE_q9E1@$8F-yXTvk15vSmFPc8kpAiZ&_KpV+*B?D2 zH~$gZ8laOYKE*T?QzTlm2)endMOn$!r;ezQe^IF)grP1j5w{;~qA?C{oUaCHYA{kX zBS=s0e~9u$OnVrN7gVN(MXnroy7^_;`)Z~QSPz!_xJG2)p*gxQY;#lGNnqX{ev-0Kp%a$4szU` zyrH4Jx>+h(GzSoZ7T>H{VIMU)dJfy8YA4KYl5}wSMXoHBqN9L4NyEMfQ_r2vqPD;d zjhsn}bD-poW3Q%*cM{!MakeSaN{{+60R-DwG**&`RNf0=ai0grRZros|3#1< zeT`O|Y>YTEj!iG^ZCUt+cnBj;AbpzoK;-jKB22#A(E6>C$@7psj;4qinGXIo_r?=& zs4}A%qipYa+F^Ce8t5%5N7YaatZ@q|x%3;0?Y!+q-g6HK6f5vsHb|20&bf&Mn>vfZ zWs}hI{t}>r#fsvMN#>_U4t|fy^5IOjFY${OW{YXTSNBAw$;&03QEqZ!{D(fF`?63z zSs;-A_3n(#j4%m-L#>8)%|?ps++}5_fb)%o;j82SD)MT3o+8M|OHGjj{HiR-r$n5`K{9G>DG*tQ%d0KO|@ z)Ws9sRQzV}rLbyZ`B20-J27JG!+im_GVE~R!Zo7!fK41wJ)o_rn4a@mv!HZ+&D?yJ zkg7yYFECgGaDROSo1*D@d~1B=&Bb$ZO;@>gNzA{7r>dtjRxZ=*vg@;D+bDbtcDA5u zW*#~_PL*s5gIGX#aFOs4xlyjW$thu)O|`FHfg|T8u;F>wevJh2j2e#$f3V7ok?H1m8X<3^s%ep_$XIkDHO_mo-uB9kUOE7j$B3_1ydjlW|g%YWs??t z=gqJ&Pc={(`birquMN$7f;kG3X#3G=eFZ>YtV|tOHFMl^Ert<6pZaC7<=uu538+%r zK;cMTn^^XI6q5?8%n>fo1Czs*EuXvO=yfOm_8}^1UZGJM0}xkSR?!7hHtX34qj^bz=z@ub{}$B$|y5ipY_5x;ge_3_?}GDS952 zlazBJ_louuY0;7`!sR})JAj1mz{VO21<#vlkjiqpG({woat*DTk`O*J266bPQZ+7I zM*{5u_pVeDas4W-nB$&EbT}Ld1TwC_1n1E35WfT$F}PWTgvx1$ihm>A?c(B`%paCo zb?KFH7J<7E0>BH{So@uGb3vcQ2Kj;zLn4nzM;m2V+G_L^Xjv5k$}q5g*`(6S>qQsS zYzNU1BG27#khA&ORcOYv*_S;jf2&LuH4?l4N|qz_cOMul{qe>*nY3-%cuN&pIEcI) zjJV$NSAR6eLN`Kt;h98&Zx!~{aBC(CYX(UyiW5rTStdC{#lO=VceFHjx9iRE1S8&X zK{Cdi%z`;Lx3NQ&_YkFim4c8Sc(6C5=7K|yR2j?Uba+&oRKmb!VJdn$wGCai@}L>6 zsDD3-sZuV_cK*1`R#GvsN<)lVO|I~~YUkh}i~6QL|3%U=fYoW{M(lHh&z&ho zZ8AyT2$)6~RRiRCPDXzH_!zmjOX0T#on;XQd@wMrOPly+37n+-$LEtLWUtXuuV$OV zRv82KqY$|iGwFCL`Vx1s#D0wVjOhM;>PZ)XFT_3Af||G^EB||4KRDF>H@WB#df;QuC;5*>PK8d1nFTZ zOV~E#1)XmPP&=?3X6H|@-^J`60aI= zuwjpyqKI9OWYHHDU4F0q0=Z5=ma(F3__kJSMnJ~j%4@S%rl~vAQ-|UENm@ zsw(>JPoH23d2j!t9o89J@811OT+Fg(1qKUT>)8Pc1}V5PgB03A?@r)+zjIr&C}6bz z8-`c|M||iY^wX z6$wyqy-gKF8Hb%PHfCG@&kvE0-shsU0SckA)K+9b^P$`>1spqvgtOMtrBdlwtW|MA zxAAOa$n^WmdaR$!#Bg!cTWV#hkf4fyZRYnh4I0KQpj)d66*5ghJMg|I{hKzNB1ksX zR(c;6miTtxpgDaWKQFQJucTdhGf)cg9qOm3(LL5IKJQGWJjq(lpOAXD+X1g=?n;$oZq+yiNf84TB9k5Z{3L<5EASj=YXaKvJ9%q`xovRf6T zq*O8vTHL8aQlTt%PL@S3QGmfT}NAvCbg`^$qd4yVF#xz8gq zO1HxX%hvs~7?~TWv=V)DL>*HN4mz_@N=QbN>Pmt?mDu4g3*+?93?h?eZe5qTECohN zsuXI7=(r>iK~Lx%G_K!cMK(nn_?~v($i~`6xEtSB^kbT6#G)Dj!3#JUgjzL--FZIv zNAxC)+rgWzWgz3JX$jPQty5p&>AuaB_E~)9lK7&K427jc89kuXc6&oxYiy!^@F8G^ zVBJ&YPI|_@zCpNs;zNbVAB^kE_m<-u%h;HX=aK_w=Hh3iKlT!YBhA}4$JdqiZ+HJc zC>J2ft$~NSZYI_XL?0)KgZipwdPSR&(9@O`1Abg)h#ob)9&T5Arij!hvg&{0euK!o zD%tW>0jF48CA^nFxd(YqF79W!HGgB|pD(G=H9QCk zh}fS`D#p1|@t!SH%_?gxpw4OK{!Oh|-c(u3hQK7Tc0 zelLfnmE!ZXXlc3IZYYR&wN+?Z#B$x>N0O@tfs8WJBFDINCFnoO_fv)QJT6uor;CdS zfKX+4aA9KSphEAYgWWE(it?p>-19}q$RCcLgVNNM=}hhu%cBoarN&-yH-Blxkszp) zB9U>cpaZU_Q(1t5=ajn|L4>FBCE@iA(VW?!+c)g|o`_N^SB3PcjR0Hid*S@PvX^xgok{6fL^X=JxMltnCk{96wt~O%9BP zXo;tW@hdfs&eKmZr>kdkvG3+tiwkY=RHP{(1BcwKJzdBOgp$GoqGPVuqfW!ep20Y~ zPvwkBhX@d=ra2-ReMDTuZH;JjJxCKRC9-^k$Kn%9^x_b$h$ajY984_#-^%($AwlCB znZ}6b@wKt`O@mzk*a?8ovM|H+Ou=c`!CJQpi)i-bga-2CoXT7#W(l7ytn2kCP1O(t zBC@m|idQq8axqI}S@FaUEq+O1xvc0%^;Xbuz)PN*uVdap;S!opi056?hJq8N;(5+8 zT$?|p<285%72BxkFo{EySWWJ+QcyDe0#mkn$6m>vhoD&-s&F*wyW!L+6P@@7(A0j( ziY6GC5p>i10E~H4m6r2(b8y{bD689G;xIj z^}}j)L-G@K!*H%PA?2~WNFP9ogGvuf^=m`UqP(r;ML?9Q`Z-@v(NE@mSUFXNdu|T6 z=sHKa*{>EAG;M_}nPNFY&qYN=`$1HR0Hql*Uu`vOU{{!{^0T(a2+le|XtlU)oJORD zbCRS!QmK1By?kk1(qY)@%zudTm1f5LKTdT1TmXR_AU?NLP(RhB{9r2@-(%l-0`kp9 zJC)d$gQz9)YQt4r5ZA6c*wWvt+&tmNX03}vp5y=m7g0U^#0VMmqe>q}862j$uCR_Z zW1Mad3Wv5|`Ryraa<=C4Sr?CY3VD4BAF-c1K6HPXhg05_-&n6U8as=U880dJR(S!_ zq!#g-ZxpCFb7ffzZ(aUo>&y@AeSj*}ZtuU?0Cc+FqIpzU*-DiKu<|+3C4{|FMr0G7 z!!6$)pPquUls~`iH(36xV!sD?zU-&Jgl$mt?X7iZBCEXL9p9`ac4%HdR7^Imx(2@f z!z@S^y4AcDdfU%?{hy{tE@VHMNPO!X68-Th3d6VMY)?D=dag6$W7!AlSBAa{>FCK+ z6Y-{+US><9G$_Z!T)aF}+8!!@6teAc*02zpJvoIY#Iy@ zDS{y^>9G;&K2GIOS*c|GC#s!*c0w}Ad5e1zs9|Zv`<=_uG%!re7 zQB(73--Ow~N(J&WN&1;?$1T_wKYP{Tlf6>~jLnsx8e|c$k8F*%HRqX@7x7{nCCM)# z@Y%x8AEA|+LmsfCA=ml1EUZMb5ndO@X!O19hQ2{fRdXJs7L?&Is~N;mjppo3j)t~e zHGH}akZ?eq^m6}}lg2-Su*YxOzHUr1N{cCz+Rq}gZOz<4vL&RR8CRghEU6JF)lDVx zLtPHzJ0$57^mm?r-QGlE{@m$-XY>Zv0sll)+wWaBRatyG{e5}oe#0aadJP`X@*c$I ze?bV*{pTgX+NZlL+?Stl>+DZDvwKqtKf_xI7k|Sl2Tzt3YX;vNUq;$S^O@B{Z&}CA>2>Bgg=84u2{ab7U2E- zYWj1tjFO~mJ9i8f*#30ZVbOx5t5hPyAq_R+aK!1v)t3?aR;H+~@N_imO^|I=a`6v{ZQ=`czZ^WQ4w?y!)m6%re_tDZvnGqBtmsg8LceRkW+pNv`~1Y7YQJR za;pG|h*W1R>!M;tX-S}4%7A*3x${009K;d|ZmLoM;Lw2ft^nP&2cQu~XdXHU;Bw{x za_WSo5Ep`uqBsxx1ThsBg`1`^$QwMBUL~(z(6S7!j$X$p1#BbEwvK?&u=wZPgNS|m z<5Wn)a}x+_)hR5}(p@VSN&y0b!_@s`i8cES&AsT%M2iEmze zXDxoh_+RN>|1LWD@#YJ8i@C)E!@Kjh3W5L#AB#STvJ)#?n>2lF`_{qyokld;Dy65@ z&=6BJ>bhH4m67Tk`#nDiKji*PLKXP><{qBQm)CT{aCK+YIuwQL2bJu~!}u+UKId!) zZJU2SUF=XO(6n&(B}N0hdfFMzLBnc7*Ce&MI1ZPblZkEE?HQC&Z%|aZ_AGII5iBK6 z)i0ug^OWybJj9LoId+sK*qx+mTwgj)=U4YblSTMZPXox6v0)@A&K zhA#n9x0qR8tcsrv4R_B8zN+(~`65292RsnJM7&=C?K_ivW~LbE%xSN`{`0r`fQUyKxPOMC7T|~bp_CZn&b>dL_?CHYRYj+`q_g#?=rc?>a;6|5 zUEtu3eLyPZh6UI1a1Plf9tyj>fqhvW=DIeq)XSL z6-TyIP;Bdm2x}r5|5vf<|C-a69AyK=>J!QXs|NIzB+E5^Fw3U9dkyrWld??Dr#}Rv zxd`X)e5R11S4OQA%qHU)5tnfw3;NBBflYy<5vhUI^DQ#0-=O3+`p_`#H`KZXMu0!Y|h^%fDCt$T+O89wCTaq;=B% zASzCb0uJ%N%k+gy9oUCa*$gz!#DvzXOi$jQmSjL7$MaRo6mhik=?01oBgikW&L6~p zN&^ggW+2Js=;jwEOrIfsg%jNWk1GeufytR_T8Pra^d>TUmgfK*3bxFqqhf`7)LP=n zwm>7Vl=gDFh0*Q_LP5qz_~3hc4)k*EL3f3W?eZ6%%A8@y3JYHp#tj(0F4bR;WPHU6 zh3BCvtU(5SM9ONaQNzaz?;ZQESg-EV(akL^r<%zueB*;OLlYw;T({of_axx&)lR!= z9^%&c=#GCwNb9~Xhdl=h0Z~2GeN@NQtJgvKBt%7e0mAygEqpFA@=)Tu;K%Z*g2Am=okM}uW9fkA1)q*)C{!1LK?v0TL^aIOG6x(y> z0+of(2l6db5*gqZ0m!Dnywz?{iv=$uj2c=B=v{s&P&rdX+6IM;irrqf2yW6HM5Z(Y z1cd!#{Z;PBT7)1cgL)u4q<1G0GOQ&}>zdW$FX0N&t>)3G#sl15H~9_Dmm-Ch>(y<0cAak(g_u>fBR zcq;=@K`hBeAmK=~eh%oM;bva~SF`YdV5yBVokLk5u=~I4eI~oy>Z4E9=D=($HZcm5 zs$xdADl<-{gRPq?q>6mw#AlUx!VVq=Bj5PO7PI6aj-W@ts*K@p`2dldrtt$#+p zD_ON@{dJqB^hP*R$R9HQ{FbkDb}MjJ;N_@*XCjK!Su{-H95>TF?;{rQKLs^T3_nrS zPgA1qgnm>ue!D^!R4XmOiLp4~a3S%!YzDyssv zZeOn$=6272H}Jr(7Ym-THjOs52Ha?~tXI#c#|NYvZL#U005wf_ou?`~>jab~EEklL zj@q1V0A*ma7pedgjOA(LTer6Z^X6<6XB0*s&eEf0hqPA zh5=!QZ%?|OuTMZhs((}!>ulaVqW|dj%aq|B(9NgKX zP{!dIhnk=FA!olUQBsN@_@)pl6YPnJc$Q+Rfy$lt>=Iyt=z8D7E+k~kbO(b*6N-+q z@aN!>zx4U;Q7h4l>^MtR_1^0X?F`|(s({#x@>I&J#s)&dJAE(yF;mC9EFB}u`!Ig` zgQsd5wxqirys`e}d`~ z)*>iD1t)4Mc2)Iol|Gx%5t5HIkdBQTSl;8}aGVm%E>!LwZ5Bg+sK-MnyDxxrc$2KX z8=4K3IUW3y`yKuqS?5)Ed#h!eWOmRZOzivOvO^p*gS7|TbxB&InFA6W<7?(At{Ms;@6aEoRUPf zx6pB<>7Nx!uH<3*_S^IXFB5fbUQksE;9OI8*2*x|WD_ZWFHvaSaU2U4D1SKsH%8m zjA%BjIhlgy{CjCpX-1y*HXNajk~<3^T-1x%zeocn`su}#>oMVs0QEi7h;w1qt?zpB zBF{dMH{Z3fYUaHXH?}dZua^w*d6$NQ4ys#&3xTc>d_3cLXO}MsrP4{poBQn1Y4z45 z|6H;$MVR1#1QKqA1?U6nN7ZrtFT0yv!Ufm(`p2?Mrh#4EqKy_({#!v1)c7tMI0YZH3=z5hp$3$y~E zm9)(8>jj0jOqg{(Fm6IgnPq`goXi9s%Adnti<1yrbZ+E3h;)Lm+CENnMy0{yq~<4sX-8yfluCM8g9aW zi^BqsCT4x=Fg+jt4gOQ@0a;&Cwcq0C+%@0tCVVI*u!n8R*I`gdZB2iezCWk87rZiy zNdBUZ4RU^ZT2z_vZkh?u7xxa|ql+04QEJ#}+3&Vbqf@(BJOIdF+mT5ki=SyGJ|rqJ zDI}L)>U;7TcYQHl(t@JO6>rF+UT4nJq$`Z2Ys7-{!wTiL$fX-b1S(nn+D!E;>xo@n zT>N+0F#g--vZMayZjRp19oqFA+!Yr<(ZK^~4MDB=CH>A({uCWK%Y*mTcog%PtXK_* zzC1IWTC{m%P9XWuRD$tcV|j_qSkAczW>9$Bb0O=D@cz|L%^}3SF>#M6spdys4@A;Jvh`@#%NzxTlQR%h7 z1Q%fSge-|WpbflZTM-CUmoBphm1}-Ao!%NX!x=M%Dr_*o+0gOyWCV&sBLKXK+L-VXxax33G{F2q66f20*yKy520%Kk%U8&Zv{|DegEBT z%tEVFQ-n}~V;$ScIDu`bt+&Kvwk)p5qs2fc_Yv{v)1YugmV9_I#l{9A*9*6b600KZ zI8ls+w3Rcij43$m)j?GS#h8dx_QZP&h-q7xEwOX-Zn7JpZULnu;KX%Q01@Z;UtHe8 zprT6Bf{SxsFru?)wEe;N&vUPA5`o@VUhuyELF;~Q8g~BiT1bQHhq>!k8MB+xr}wuZ zU~fZz^5KjP1B*Xj|0gy-LoEQN^ChZm%~!*d&Nn5qlp=4~v;#nhSSG`jmw-T`hAZXj zbsdxIauh+Pwognckw7I;#-qo_@DFRP`It}*XAZ&BxSbq%r{sUaR6ts!_<6T!~UpATG-bR0_@$G0_r^W(&$#;KS@ix(u1@7PE=}otVMb1F4U_ z6A^MQFNWU#J$MU92;yh^UYy)lMagC^GH2=$cg}|M2!vm6oqby_4!+;DEz&Q);=s-y z@TVFZF(#Docn6);>B49KpdiRAUN{ads-V8TxyLs*NF-IU#=fwkVB%DA7<||cNC3KR zB;(-74!VanUr7ZgoFS&{aX3%uYg*%Gott+54UzK2ZIrVcM}B8# z9t4$f#?&K;II0|Wq5JQWPcYauqaex4=wh=5EJWxy$;iUcIk)`7gN-JAg}vc^MXcWB z!*5mD*cg%`Vly?!#B&$U{^dFu1sqeMNVSs*`8Pnq;6X^A47j`?6cr@IMWCCH6kWg-($Xh7M*se+cjk>~Vo^Iu2LWQpe5 zKIE$S2n+j)Z|49G>?cotPJ$TkJltQJ(dYdg@5%g^O6cQeHo0mkBss6O;W@R?ZG-I51m1?+ zgj@gNoqj%R`jk|`#6{5b{sKxbN<=mj@(QiKn-%Wu>u zgTEj!9saw-1N2LUlv@Kk9pEpC;EaH{0>FKZ?0OC#FAn~LGUZA&kE;PE#)K$Gq#wak z69vkE+~ds4*jW9Vm151)9h=}_|HeCNjNf8Wtx1O5jaqmiMCOI$o?;fm^_Y#6k(pC{ zp>$n&Mm&T~oyII4xtP@q2MUCoZX($MpW5YiK>vT&(f{RI1c0<_rh!pnhAslTo`LkE zY$&EN*E9es&p+R)iF7{=x_2o$?I3FjpzFgeQU*!c0|Y~o2vSm@6^i=K`)IbZaQo#}Zs%K#4w=9RW_ zl+2$d?&zERCIP|#AfB!F5xehYgl$%>*gIMqFhM zfhqfSQXZ~BwC(#0+-fB)N>UqQ8>RuPLsrrqWQyUQd_en_8b18<8?XbYI>+^4ww2V|c+9YV<(pJ|rLEA<+gRZlCl3z{Q3-*7%m20@;1E+(L@? zdxTM8#iI<0GM}IwjIqtUe`t?fn;c+1oR8#vO*B+V+1Y1;+hGpAD2-T3}E#EUF^{BEV$i82luklu}H?v=$oQ-nz)I9>2q4 zt_9>+{)CDSFD8g|NFpeGATYH?Z7wNeM=Y<(!ABddK1aCaPR0)a%|7HMQnH7DfnZ^aLg^?1sreSwxok`x`lvI034E!(0`E{)4?yt-yqgETfj~doHh|g{w+;EPm(@6e z+}|^Tyf9CLy~jWRzgNYhX%aXXAu*A}4&tGkW6yC(HIt3Smu%#Q|@f0e+w z{8e`6{-207`LF_W+OTTu0pTB)=dquM6)-<<<)Gb>JEl(!{6kMm|FUg84)6RidoNhc zP7oWHc4j`-?WKMX_{}vbCdMK9#Jua^%DJBxGpwexqLg-;e zalt0)k-j5m?C~_okXqjHTWk)Q7W;^YOEIJN^#KrUN|Ky|J6Eb8PIRLJw`n#K;bd4S zE#iR8iLHjBNgS^jyzLq32ji&QSc<5s;Z?q_2a5UL z!uor9U>xGLOcc4X^8P5a)_MGWp7FTE77&$lj!cBUe3Nzd3{44T4v9v^Gfv7;4&keJ zaCB*vNh8+#n1za$#jT*!8QPv-W>+JhsDA%_nkvoMKD??b=>XmrQAzkIa;S1>Z#Q(P za;!3s-ADWshOXL(xs^EWM(sxlGg`|%`;WbqzDMl$zweI$d#7w$Mho0(9KXMBYjRS9 zLH5ROKny4ZnBZ!3Y|Q{)y$`UT29CCuSHNULHN$DgM{Kv8if+ud8`x%E$QN58OhV(@ z42dr{URofU43tXAm1X*&ny42hAFVY-MBmib?9njn&~7NV6&;Mt{=A0-kc6*-xwFHu zWS9V!G#%xJQgLV2{uk>Wr))>THpwdwhXYWk=6^HP;-AzGwi!gyaE(mMWR%UV4XS2B zAM_sjXGgfYFoxDTMxFK;XL()(sT`0Vll?^elt&F$p0-te=|X%?%BHRT%Q^csco zA9?diGQ_pJ!jOnfVd|OHOEh@O(;Q6U!}iW91_7FLVmmD4Oj>B5Xu6pmws{`ep}ad5 zZ}bFnT*@$=mIB)MD%Hqz`!aIPE7cqj9cdlax4OoLpc62J_zyFW7@ccYh@X_Q2Mn8S z5-kaDg3~q-<%;9%rtBs-#+ei5^katJ`txsdUr2x|bZ4B=B3ZGw_qFFsR{3P6Nt_oX zb(=-`L^CMlB@yLv%loq|wpByNhg?b#O%gdX83Z>IrH;rm^2^E&X&MF!oNx9T$=16U z7F9M1p~BAFJuLPsiIpsE0qizIy&WC-wWrJYyqf-ta0{|1XJDl=IKyn?uIA&$>aI zOGP3%IdRlYg53=liALirR4L{LQ8cG%EAv{NLfbl1O{?$)nE)v<{@-9jzrRd6G4M1T z&ZE|)$NK1FB3-ZXBPJ5-Zu=d~JHJEa=;o>i=wL-}Ue;V{l2Lu%)(-V-t-8_|D(B#v z7K*(q{ai<}mVO!SP=(Lvg@A`rebB#u&YiG zAuC!&|Ni_b?C)ZXKK`MxaB~BsWS&!h4=>~h+dFJ7HH}DjIyq7Dff+}prx=_XD7#bl zycq=GCR8fI7u1_37zpz>MfYN6`gZ=@3#_!y04rAOSZ?}`4-rF23ysia1LR{##pBXP z`pxbf@N?NfXQqY-YB8H$I_+N#o?Tq$v(#wACg!M!F`qeo?eXvY9xz_9l)sxlpYXKi zE5)Xkx|wUZtbmo@A}}tGf5o5cv@FP}!!4ag9~1+{?kC;@mB)aJP5R)00raU(m`S1tD=cEs+RI#9`QuI8Jbl*=TF- z=YvLe@aeVC@ikNJzA2Qz)sD5ftE>&;24l7yb?ateAIYnO6bSxG#;Q*-7XF--hG^{5 z9+BK$oD2EC|Go5jxL~1_!B?!bB@Tasfv2zvxt63?&yNu$&YLt*GO;0KIzW_zsyX%P zG*;v9SqxOIG8e844FTC}eAUA*Ztkuju!My8gN`DS%1JxA!~nH8zKvLVdcq>sltw8@ zm~FMD{qwe5o)NN$lil@nqGj0lrd|E_j@}|2k(KK6=)-nhyA?&w59xAQ9Vqs)$D|B$ zZG%)&s#y=A6s-fz1J*4nkO)Q%a%RMop~~IUuLjqfryc-id=D;@#1_TGS*e6Q--iHL zE`)Et{b4c?-oCl{$J6(A;?nzgCa{vjGviPPS>{<_=eWnAgLJ2znJuC=FXo{5diLmF z_r2A>SF;leNzhJp7ETL1)g2CPl6Jkm9e0@Ux1#ycE7d^K$53aA1FoSEBq~#$iziH}q?(&X;b+sD!&Rp$vmvDOZZ%^!3dT08Q zrrQi@RyfPihHnJS1So?v!?Iu2u{5cqD%q51!kuubzIBAkti&?FdC~2G%cK;(?WHC% zTb+9&N}Lf;(@GmO2afGU4ZTquUP?Wc*VsfC{DBiM>hdRAL`%rG(ipyY*v}Ym=>s{6=~bpCilGklmF`9-x200rzdN`FG#>g&A+9r z(}(v5;GEN|{-YOrnVZbB@13lBxZ71d8-IwaOjx&TvFY+vIiA4ed0KnHnR*q@a*?Sy zES3JLj!@7V4npYua9G4F(!Ro!zwH32PZt)wc)YqGwO_b;`4fJ6p3WXek|0awjsaBY z#VZ5qU#b14y0(?yi^ie9#1P?1EGi=(llb7G&RbDVkMr@l&J#VJ|qh(X1w)#mOpOaA9I0W|(q>? z6Bh;ogY(R7Y-m4Mbyc$6Fh$GVTBvfE5st2%l%Z$>f-oP2!zmep8dlAW^u+u1NM2C4mi^8ToVQ(>X109_E} z!cgOS!(0xIxv5NwGAs-j{7#Q49pxS(MG#?a1PTQsOJ$p1s9W>y$C>H*(d|$V7sFu+usw4Cq z5LSL)L=Y2;jYxVrc$V_kne{LrrFY+Jhb~<%fVMjQ(S7YtaP4d#^#Ew}{GY3=r_V;uWi6JqWZ0FIi6oc<7Wr+`X4$mT3Rik1Nk^A2C-h72#q*w z#L{d@KisaI4xnF}Nwr&b4h@@HX;Z$ndFOjj?|9;uFe<=E_TTWNB6Gm3$Sa7!>CwYd zNDpCN1@472So1oErck2M9R^|>dP8Y%;yGsw`nJ#?A%7gfm2w=H}&nAsBJF1>v zEY|FmIlCXqtLf$ZDViTEVh@wx9TJdnh8$7Zm!O!@VV8NvuLLS>Ip4gQ!$|gF>`bXl zDAjdvDEZH<7RXkP5I0L)@eX5_69#yV8LCkI7g!Szxa0JbEEXz<)cq6p?hQAwVGz|1 z_zMPk^sMuBEatPcQ5FUkqVd=g7q?}+%?0DO@1;lb=tWTkI7+Z%-lAWM>Z!iAj=r#; zS)DWuNKY^@1bn>K_bL+G0`9o#B}UrYPtG=+$5vOf>YD}Vyq6szpVqyyK=2|=r{~tB z%P-%4>w1wmkW5MS=FQ8zC087o-5ElQg1)RAJ}TKHQBpD$yF58Ueba{J4`sVBQ25ZX zIvJ90=$i1U+}!ghnW6ZJ(awbzaP~0O2JMH$tmZu+Ee?$wBy#iVQy=qcWAz%;>+k5?;DCB21>gVD{^%fdo<`L9n z33{e^5ZiY$1j1m5WA{Zib5&&R9Z)Dn4t)8_Ze2PBM%n0u_yoka^g<2oT9b&2l3oA( zi}p)?9{Y5vB5ZH(WoBSHFnH%^5;BKcP#9A(p9}IuDzALPv(&9PQu%WVZNe0ut*Td@ zKLpmh#&2Geh~(pDFXZ4(e2tUBj*MWZaqK$KB@p<}kuVc&R&cEHJy`LN?FOHWP*Oj` z4^5}4D2BQfI)_^#Yej%JHa{JpK7v9 zdLgV2NrB2c-PV`B9I$xeo|bzlFQ3@7Cr&h2sQ7?wg-1gaKq{a@Wo?s;EUTXJ&yg6- z|29$)WSB}Zk)E^AzZCt7_%ac?0Wcuj0P3`gMo1M_D1`smQ*t*>lx#O0Y`+Xx?pkb= zhC<2u9r%?yOUJT22EQca`b88a?*5DDVPN0mjrq?1F{mb&&jKn?kvCWwA;QAQS;s%M zlhyc5C0Ofu;gKmpNBn;`Cp3J-X!M|>V1*Ok=+NCm$nj>x!YE%#tMB+CBKoW8T@4D{$Ax&7o8Ka{ zIs<=71-AihU^O33@2F#MNX*(5Iq<7M??ej|seNX_IwV6d6^uTz+17V& znn4T9hDJR6X_O{_S}RKXx6xJ)lNZj4hHKy!@|_lKcuedL(nIKu1iVG|sq(%ieL(OL zCBgoYykN;BGsf)1_n?ZDVbeb!A0y{7dJmHL9uwi#%QFeCXM*mYY+w@=EHE zc$$;c*#Gvom_LfUQiG87fL)v{!76I&>+cI*MlKf&w?LsYyHrNl7M8J{?)-ykc8?a zlafiAx`ZF#RqxZf9}c=L|1~Z1vdZRwX)XhQ-uCouFeN5N3x=9PW;P>D5-+JhkkJxQ z{c=h=%dB5k4H;E){O36S-fVhnJ@0(7s6ng{sDZRXv!=sd>&2B{s_u&(J{PU{5_Ww7cTKZtG$~Q}M^?jh-+UD<)x@NqjM4^DIP)DOp3YYdqCSOC=2* z>{f{NY|CkgW$Vbuxz}=rBB4kxB9WIi4DlT20nd9TzxkTDVkk1;i5(9U8>NK7*bD(3 zQc2I9UV(?mNp&IBVpV5GG(ewF+bgvpV{3L|rq*3#Ko&FuJdHe7Rp4pAWL@t5R$}B( zaEmp_pCHyTX<@0JQc0*dqHh&iV~uVr4n?AGt`JT0%GaS6HXC<-<|J5zC^AD4_-WR&;A0ZbCve~tJZk1K3;0>y)r7N{H*H_ zVoVV|AR?jQRHb2)*|#9CPg#|Qg~)dq_ONty$x4~V+mv9MM zKt)B_USyAH^_Cl0Szc=(Cca~Jew=XeJgfdlVeqxOm$lN|sO+@2B+xfdvlsaRRrSa= zVWw{o;aH&i-%bVRaD3QM6%|PSCq#H{o4wu>#-B-Eq6Sl!$&2qwuR{&@2z~ZW`?jgR zElV@+B!amK;#V>K-qd?#^p!$4!-4n5AGjsG0>f_74R`tL@dgZQfi|AwZ|beyrYAGC zT{f*1?i0V8JaRbH39Jzt8%*s>Obp6;#29<$VIj94Lq=zORP-rKOh3kGvufn4U@lt# z*Q+fng)|C}Y6by~WOo9B`<`!^iP}u1ki7iwt%BFO+nyb~%EKuzCT6)g{K`W<)&foYZ z<8_s{DmW1_Uq7u8yvmXt*pW+PpZ9*#h|Uy=EZ(ut@462Fb2Mt)0m*>#;*8`3FE zMs3n^qH%2&Xp2sE1;*~|uY!s4-JA?o9XyQc8Dse)7V9;AQYOsr%6NDw)ss<*)5-*vUeV3_dX(KEzm)f6Y+1X@m-j$LF zg$EQk%4drL78t6*WOvX`wB}Ht&20K!(~CW3K8sWhu&IK5X%5)Bh7jx7k44Q-aA!Pmjv-`PLCHPYI9o(`!nn-(B4Fw~$ zw_VCk)|dzoSrqm*g;D4vkTITB)N{;__kamiz1TAg#_WsOn z$OrsjSq{nHa2d+_O|Vq!zzK{h&qy7{Pjf12Cg!`!#;Qp(Qia!i#VX{uh^||g->dm_ zkbYJhM;#wTm=4%@_)VSZOaUo7K!a79DjJj;pZCXGncu_Cnw_M(S} zNAm}tKum~{_obMUUrCg=T48VfRG6Ox@&1dou^?btGZE(!>*9}-v#zG+6SJ+8q9KNE z_|AF*z8g>gE;&nRgt_U**3Pe8&ICD{&la|obsTF_N&SGy@*cYJeIr}Cqr^oK&hR`; zLb|Go2}Vu=<1U0q?J-Vhkh5?ZiYgE(;tt9un!F>QWvx=Pz!;W2s!{)zs7BF0D@M^>RzZ1n;&a;{zIc?D~K z?9v8PDKdF1e!6GIXY_=Cz~4o(x%KteI>;3NZiMn-=a3BwAO!N3 zmh(aq8S0E?ZESg_@4~?_zdT+2-mur0Z+ksh-M&M+$O>LL6D}U4Z8`aM5o;EcKuNK` zB@c@twH=u!jTj6YCIpBWJuURIPI0>`iolvqMldm1=HVfY6!~#0^0Wzm?M9>7evZke z>S=Qh9%(4k1a(D&1wrpJE>Zs1z^gjcVIMGpoZMX#8X7u>#_!lLWHN!G@&=c}b;h(X zu&M+ekdLQyKiiBqXg)MM&+Zi~evH)kX;#G^pEX8FZmW<{(9;S11xY6P7p+ae&P0+o z<5V5r^ebins*;w$#XwDv7hw-#inboy*obYvm8>;iIk{MR6%CA7nl^rLO7q}f;|JW# zmKt5%A)D=UAN_p)Ae*0>N((@rJ1Zn8WQitn7beS2yT|SZYI53>g*mXmzs)1&=T#aD z1qDZT>h}pkzvAk2J3e4|_k`Q!1zQ|;fFGo#nq24kyVr2Y^7AA_XBvIV6FRLDeL@aYa9#UlPzABv0cE#8b+#7%RBa?N$m=-pz z3-HLpeu-wTEHn?cLIF%OZIlq(vj*8uU4p}4lv7KE-AC6IJbDyz8MmRW9GF9Kos_{` zDdR!D1+#=o93~JH(yJA1^Czv#Yi~*f1oxevzi>`|n@37EKu>h)#h@K7MytqDULbpE zt(s~(;M7{g`MTOVC)TW=UtL8&9Vx^aVknkwMWDNSzrll8DDuUoxGO9C4A%^2&9IOk$1#}pFpmPX|ACGYWj_ePwpr$n-UF+w9tFk5Iz~@h} zYAM=FAT&EI^|$C#c6P$yGRVP4TZnc#%d)6JC02gO1(iEBn8t@72wy&HyMJlvSu*2J zgypoc8YE3e#G~e%G+I7~lcTV;yB+0z8Pk|1fS^(uKDAXHdh_xa$xJHS2OjE(J!LIB zv@MsH4w6<)V#0z_-D1gO>93}3+I_G??u452_o2vGt zRPV*^bpXI?o37-})jMX@%>oA7SpEhR9;33VF{h?pzz@U1VD!WI(@xGmqI6Yep~O%} zYKN?-CD+=_9T>lI&x4ypLqK4^<2MH6H{-_6K?4+Fy*!W@8#>Pl5^SpK}Txl_oe5@eUma_m6eo6Dd_XL z+N;CGmi~V+amS6C0z>Pd33S7sI@oo*1-3zD&Xxd^qKpC{LC*BUJ1)eD;fiUact-*y z{IaPQ)8H7)iLwdD>1(|-YtzM4(Nn7diAAc@=!ZKS$p`C2KgmbW7PO`P`k)}(DCNJ9 zt_#WNGo>$y=6@cnfU|Y}|IgM)8l4&AyXE(kPi2E29mquKz{KyAZ`waNd=V?+SnU*5 zihD5{$0*pNywU`0fwPdwijY{HLW+{;m_SY?=bTKy8UMBA=&N77`zg}E$&0X>tx?|Y)kZ|#n#9!@X<^+iPda{FN70cI?crrdz+-614wzQ+ zZbSMZp}k!^O>L^|=>(=$CS@3Oz{=e&;b{hZh)<#9^Q^bsncU{#+R$ygWMVtnt(@8% zmX$|8dr&vKT3)yBuu~^1yWdFmr=!;H5E~F919j*&C#I(v-#(;3LHy_Jer!D(6ZHugnXcFo$Hbdw*5o&$;y-scrG-QHO4OpgeByZC$W3e|I-{>0d~~x-QgWc8Atf6S zk)MAqtZqj|%*Q%bc)gXku!HX|ud7Q>pS0%NYn^Qz&Dc!_#|K`VptPp8(DsVwLWmGV zx7xPbgTNkhk4~DX!p@MVntni9C9L68AitHlYAurOb-$yA9R^cWQx9VEb(KP+UD|=q zu!nvMMS`tq!%~efJL^zzIoMgvrF&2N9CpNf z&v)}`yMz0HyT9kIV|xM#YlAw@7PCP9zxHIV*FYP4Fvwvc<*(ptI2SgM^pD7w20G6u z!dK!G1V$`0WsTknAKO>k#_1SJzDx)4Um=9+fm8rDe6JA)o-$}M2af1(5bKS04l;?0 z_%@CB(=$Ntfs*##h(~IFZ`M*2j?o1}nM~&d3I1~fr9V&MlQd={`LOnv4Aph??8eoC z#+C+%%!u(jDpuPwiKjN;U}1~bpJr7)4?7J6{B479#IB)GCX?nH{N5oG-eO662 zoo3qPTbbFvM2Azkoh)s&1Q!OW$Mw`+6dzC%l}g@jBn1C+Y)dFP$Y5pY-W{Y>w`wwO zFyU@(Ya@L&B3@B3Ydj1C%*m%F8Q#`Vu3aqi;B$%zQK`Q{B&?TayG*&BvYd@3NqS+` zE(5GP6jZ`kQ!^c{L2xt*G2Ed39KwiVWLC$h&Q-GyBYiV|@mU2{ug+1QH@~FCc6fBu zl;F)gDgdZ|fLkv0D`unN=$7azz)$h_Y#eGkrI*GwyQrv28IX$tYwZI&Iqk1Spg#wf z(8AOno8`vkDjb=!`OEhEYqKHWuT4Y7uao?%ukn#ZR1)LC_M~3^zP_uAhPD5*3-s~5 z<9z`H1$mbcKv*My+Jhui|J+8h(hKJM82R#3UY*NZ=8sKfd+5%J zia7Uw^K`VLG<2~X>w=cI=gaQiLE|1x1^TlOmL$#FC8FA!zyrB{ohNx4CVjU?81ne3 zdt(}!Bw9-6rlDPYj*L%$omS2}13ncIF%X3c#TeRk8q~8nvlT6vj zKPZ`}y%ubyb5nj4INh9pDEYJi^{|zPi zh3JM!nBK9n8E`0qkJ$c| zroG;7Z|Mj|hu(KlYy>DX)67yD@xEJYjhZ!9L;e8nkO{%lB=ze=5wZ$MOeW&tK2^bzMz=PYs#KAAkRtBzF^jD?Lt_pZB|TQ156<>2b60XvR9+we01~ z?RFlGqfY(MYiT=6LHknuu8kdzoqE(W+a3oOpESR!H_U>TALw}ry>r(*!<)2orp99B zvf}09GWkT-1>+H194cSx!0O2r6Rlm#Zr)8ctyM^7%`bhbMXw$7i(!c^jGJF6}w%gO=M3_Q##uWLvD%ojd0vCPRba< zKBjuwB|(P993?q+3Yaq`LDdiwnEEf*6*mbHbwF8!m)R1dEMOPm5jHK=HacHU3Q{tv zFbi^Q9<6>SS&=@Y8_yw<`*!rKDsrHq#25z>_q7ZIDa4T_Z_&cuAkMHGq?xxTwCgu?mDHq>p>0iKhbnRW zcdMCKOghE=B3_WP*Qx1$N36K={1?O7PtK9Yb~G&FKaFc4H7}S+mX^M=k!Dy~fS&dV zg{o}Ymeh^LAUvTb1bzL7b@m`^V1(Ms-t+AFSwl(vCzW0h1Q^Shk6$usAOY{E-{r+C zh6vAG2Z-w1+v%JMQg=U|rqbw*H5xZ58X{R3k{ED8zaXHw2)MZIoZjVmVQ+-?Xkspw z_auF`^bMv0&wI5>HTzej+KnYbSvyYAS6_`pyhMJnnRAaB@(}%uBcCcdnTyi*DrdL} zE)W^(PP6mXrra?>r+bIXmLozjv!J^w^Lr;OQpjFD3Ms%)KN?1Q5L<;P8sseBy~#Ph zfWW~jcEA>RcL3u^aJQltgt=1^VW&M>1ef{tdjo7SBlTfHF_EJISfk`-CJzGoIa^%8 z>cu=agS-q5SPLm)!KkpK09VY-wMGggz&eA@cg3~!-VNt~CMe;9}{=YUur1h1Of&C%~XZ5aj){Vt7}cMrY-4^OAkU^9V8k0ON2*h?&;58 zLl~Hq1XCF?%hk#%v&!16TwXu_*TEifX9+X@UZilYS-$fn)46{eSMku6yb`z2P2M^( zu&43|^ld`ev?Y{jmO8mQR)%R8;{;gf+T+vGz3jTbc(p+f$(X6IYJ{wtG9o1OIi~hI zh9I>qcqylWz9ER6=_LDB`H!O*C@h_;pNr_0klV|^%cYkk9C#*G6-7kIp2kIIz($F0 zu*Z@~iHmDpBwYj=@(9Hlpm%F0VWf|ECiwbr@6Azb`(pXFMX0+d+{Pkj+KpN*j&C5g zMAThE1lV?+UL1%skoUwJd?yQ|M%n$Wc?(7m{R5YqgxM(A`=WGH>|KCTTRRiM`jl0n2ITiVy*l|rM(H=kSi}}a4i*83L133>^t+t#$^)AQmS^u^d_I5}3Ty{As{iK3%eHzEnZr51?bc{*tQ+8dSSpVtWey%aGo84)3D z2KN=9cB2Rv7gvi^u!2!f7TpiG5jYE2@jk?d)I?hybfNC2h zLld@f!k+MVQcz<(DT;n_BRX1=_)=Ust%_t@uN59!bD(V5%WP@X9pp3GxcDCExHIB% zdVBa@e@4%^#j$$&P;8I=l+;;bf@-&|H^BFHTm0rhK2N-DTYgapcCf!aR`~Wg*^UVu zmO37w7&GK6fU5t1vgi?7>nt{#<$8fHOVE3Nd_@m2tuFr1o~G*wAl>7fvSx8U7ktW8 zSnzcLCGG92zuE>cOTy=H4gms;?A+od%{Gzl;Cn@z_Cq?~^Cf56!^2o@nmuJ^gopd) zEfI=lgLzA!rKN={O?F?9;OT9r^2oUyVrC|7+%DWRjF0*z&)U=KpVGte`P|>7CH$Q8 zoa+5QM;8$s@5r&T$Fl~k7+|6dF;SHWkkT+08+cAV|LeK^W-SUa!Ltoo0cibZb# zKrGS2`~5osYzd(J{{>7XmY66`>yroz(n#h|Y>+_t2UH*1?4)>`rl53gIZzz( zDnPs#CGf0D903f)vgyb73ROJ9hZa+{IiJne=`4iEibt!C$Vc2U4J3R2dj?BWMfFMI zWJgkE-<8DvC!+&#yxn&c=7A>^6EE&U9;F}Om_I&HZ1AlG#qyicC_3{~e+Z`(UZ|*1*tPLgj&BYrg=MeZnOc^Ue%kpUhSiKAzTK)joeKCJ%QXC33o>*6TdpD zUbt3GYp>a89xZXcaZq{}p6^Pxh!X-YDG6^J;gjTDLucLFe}Eezq>QgaCP}UYe{}yD zzrk%hg6oUPwim`-*q(?~3D66()7> zPI8eyU0d_Ylru*Dz{*|iyr?1;3UAJ2#l2}A?zW&7ihX- zl439VI+9icDZeN@GB!tI_05dSZTYuPHOUKGn5owUl18hDeJo7#ygI8UGL`%Rh-i1G zp1JyJOccAlH*VN08NRFMaibg)5kjviZvSiFm+%$I{G>v@4lg8+hiH?RA4 z@uO&7#FKw$Ue~LYhnC081`L)t-RfV;IFsK0*?T=rK)@W1M56-WA;=VXrgw zOcR1X(1g?miRFzCq6Z`8IFZf0k<#AEi2DN zM|&`=!w#iz*o6IrXBJdA**kiaZJvHm7_@C)*!`YO-fq?y_B_hKd0>860Qd_>A-a7h z;wcTQX0ae?8E`WaB7S}+5$@#UR_F@9`T{YH1`_El>yd0#!08$H*TSWT&yvJz&_qt7 z!6-ex5B7DRnC;=>=ppv@Rw-u`M+T?6#KMZ@H^;WAWqiw)cMCB|?0H(v6j5N%77UwcP~*Ef4DKQww4)EkK0>G|u;46D+y zTIQUk0!~Fz0*sAJ#Nh)mk;W)`;yD`!9T&em^J@!;V zZ;o%q6GCp5o<_@QDI2$~zVZa?(G)RjItfLn{4vYiYOb;q(_Y~(c#tf{9!Dj` zgkj+AQb1SGd8nn3ddhz(YaK)GZ~OU^GV_3f<>ANM$Mf#vJ%IIu=xqYX=uzwKab6c$ zU)SWmLmI00?t|dhQ)Tc=z)09TEkjCLQ^6%lOHDKw#V3Qqr_t*qHjv!x{5F@xIrnWX zn;+o@yLSt}yAyRnY1BZ2UE>m;I#aOXe;N%J6MR!M{u+xyMXCM6UYY`t9KdkVe59g1 zi>^6xXeXOh+-AZr^ZcH%?8p7QyAOtHFK_*^_L``3F{j8h;mLtyf z3=3o=C(9{6UbNIWM;5ET1&T`7tE`)hb6**Jlw8L3`+efo>o@4sYDHbF+3YOdAkk-^ z$H=S94>;1l-JtSwT{0p@>imYenyZs;KulG=*m9*emA^yeKb~)IN1gj?5QO#PF}OKt zGPVk8__F;L!BBAlBL4slM>+P~P9vj;wTWGI($64F0OP%g;-so>hWslAw9SN5RL5XI zXocFVN@dhOQ2?yrMoT6Pn_nKN9*!T-5%}CkKRFGYYK1GyT;stNDz6AZ|<(MN;7%Vzau_@}?! zy!9KU1HZi_+RPl=80>o+2h2U5RzpL9<8y$bd`p~2bNOrs-}AGOyiU?;hIVm=p9S8n#)6rFRvYsmbAZ~MBIv*R}8U9`}|X(amk;fmvac$~^SB$Yv!5_>)$ zeZFD?4C?o~bK-I-`^0|>JT1A|mTq97-&3^|Mhp)#L5i8$cjW6JD zyxlFWXtQXoP;va`Oavg^Nqm}M=Xz|~!=wMI4;nFSvt?JkBz}9#CN%Dgnq5G|d- zIr|2BEzVV`FHDL@?^iA*fI^yzH4bkmhA`P5Is#KIq)<)*TMiP74JSu_l>)=Q!N5q+ zKDyullV>kS_m^9_w-GQcl%pBtzSry z`I<~#4!Re)7+XPM+%--OW9yyP)Jl<`{1OHeqNAU3;Brxt`CiX+$1BL-z%0MW;L4Qr zPipjA0Ci}son5x=ol-B^XZ@|hwx_3>C2`gA0^)kLzlzQj*fdo@xR~Wqw-UH6$s_IS zxymV7;@b+iJfptbPJd8|(T=Qs)d%u>Tnp{{Zb{%-o!nYDJkrL_@WrftWzSi~-D z=CEXh6I)j67^mLXBZPO`V1s2hsFjCbjqXJBMJ{3Id%FtPjiOnUIO;c^7>?xczg~PiN&xYMp{*_XI~Q z?t=Z>KN^PkW?da?^Js4UtrMx_-$Oz^5h^1D9l}Or3>rpcZmd=s^q-;xE~gbVO}Du! z!g^o!PR8&w>i>K!vw_6@_}7-KyNLWDNhc-Y@#*rdYJz)MSAGVoZy@-1ymBt^_TVLe z7x!=0@kmR{F|3?S$LmmuGR^v*78G#d6Oi!}0&)01TnecZnZ_M0Xc##ly*7NTOxS8G zxI$X=Ik+gnUh@8b>Q+fUxu8F@DrwKGixgc*`xdAfe0JJ2>HRrKb**RydrB&%G*wqLa+bwdFz7=CmfTwVTbaX$yTS7ICAyTZx04em{VQLR3IaNS$ zo7~!V8BF`~@QBWFk;u7!t>e)RapK!6hVbt!u6WUp(?>tg^LcO2`C+O1_7d2e4hQ-T zg0U{5ndGElB&1Y@5KWz45?q;GzfbMC%Ub0-iToq}q-2?@mMpfS8a;fNMA1x0K>H=U z{B%@C$%33lFI9f@3k+O6Inh2;Gl&T_on#xvQsi@MuEhhwxw$YSF-J)kWDcl} z7M29APJ4}K>qw++@!fQ;e%|$ZJ)ZY!e@hMSxb6mAp?0(&U)6P2eZl`r(Bw}m7So2L zo$O~$$BFF$A1=$rB^?SKV&gQdPFbyJv#_b`FC?$I_gM5<+%6c?Z$&uCPHC=k6w8PA z#TXoON@BOCErfdZJLtc$vY4Ap3zwCAOr!KY8j1&qB^mYPW=AT;R$d_PqJu29oll$B z>Bek7YvV*2sS0=35t-{cg4CoHVn-WfL?6xt#n(pIID2zN?Ldw1{%|S zfvrA&s*o&0`m&h|zw2%tKeF2X44CQh*Lzku;;>dlX~oP!F7t?wfIH5?%R}k?2$O>j zyI4W7+9NHlHm!?@Do4t_W54q|U(J}qw|>n@Z?@ZbK1yR)Ty30BlbaKrdOKKjAqN~Klu9ufr^E$X6|Is;7XNYN8kg7H9-K&e`O=8Lvc5n^Fg+u zxnD4kI=MD?`JzaQG;Q#D>C2PyWHQ~Y$-ke1o(fzlOTs)8OgN?@V-0C^`C)bFcv^s8jXh=3F1!ND&E^Sk$74L; zBVyzxO9e3jViO)&;aT^q+ORmb|w z=*eqey74Bh_$fr5-lU(*U~AwCG0k3z%0tJJ->;OQ%}X>k>PyJkPYF|aVqnFQdGO7d zL_wF0|MkQ3u>sQ?>jkC7iFkqDqcaU@he)>g54XH@VySV+*ATn81G ze4iFyJdI@sI~S*=K0Le-(qLv`JMPI`GbYVWvI!g@!StYhx(xZN@XaC%n<4wR#nj*K zjM8LG`d?e} z;{K3b0tdpAxyE57tVXx)TT{Gp1T4x9UjHx5L#BUg(7l%)CaRceVyz0*wE!{yQHkpZ z>%0(MR;gQa1Cz>G)EhMze;m>m^zq?|cBki@pX5^xiBXx$^V`MJT^=GH!aTCnlZ0Zg;x>FFX!vLA=0B8imJ4>Zb+HZrXr`A-Xu;5l=IXlkT7Q^4 zjQU+@xj~h|>r>eYK^D1{PhLT_39t0@Su#g3M+amvSgCO?jVarWZN7gUy3s{8-!eD|fPLZ2p^eSXD*il>JS36iB{4Cuo|`M6=_P4(yR>Entd5G#2!e?+b0weO=uOH1^(Gi0^z_8Fk<17QjqpkHHuNq;Bu%+WvH zY%OB~TH%Ca7wuaDuea=-vT;TA-kb@rS@Vkw-olQ|I#CaROZK}THH5>V_AF$n!a-*6$BwyEVAHJClzd3g2d@Q-rB6H{#f}|7iPm>0g%t8!(eh-Mg8>6Ocq4M_X#T@aVH3G zx-V)+EH)VTDLtyn5}I6d^fl`*nea&NTSmBXH-H9*H!M*(WAO-J!Q!lm`^r9aVj(`} zYdaqlUM6f=4Idm3Mml}|YO9jLY}{hRqs%<6jK}q(=5>yz&Po>MDRc6^@*JUhip|5@ zA#jdU$j%bkpKs|_{_eBP=#<}80W8m*OZ9dqAoRHP$x_d17fRRf6rbbGm9c{09BvYT z{ZZNtysyG>e7eQGI36}OYQvv^A)Qn5c_0}@!9fjIiJ=Deo-4pY`LYG*7Kn?!6_>>^ zacQ~Rtu#jiVLm$gdHqk+#j4|c=y3LhB4SD8rL_e@PxhzTY~$47DRmYeB~O6t+bkdY zI1uyf7*YET+ZdU!MbV>5+8ff6vh|sUll>2QxfA62-yj7(r^&D9}(RtQrkx` z&&fAlV-g3oA1kdnsR%`%2_}}K4YD%t93-=lb#_u$2#0jfKDLC70lyG`ulc}<5~-j^ z8Y=0JUU_tR!FjbVQvZl)9+BRcJLtslr)Ww3xGb=Abm@3^NL{`Yog}5Cc{u2bBXmM3 z7Kh_q8darj?59}w54b5fX@m4p2mVc)+fIFe&G`kbJs}c2nX7r`694pt{(xN*Q1}TG ze=b@ZM^I&(gZY(DgHcJ(06zy&FH-mt`g2B@TzNUSo@S)oX+ZyLfMenKG(8l60sbt5BFFu+KVu{B$0 zE_5_zh|X4wld!KhNwUX?gsLvDr&jwCae-${u=@aa%+2=p2RF)0hZkaOP5G8_G{nGv zC4nI2mzZU{h6>G3Kk*$(MVwHbeh9=lhK%Ej4Q<0%5-K4z4BAy;n<Q`2TV zZ`WpJZP)sBJgPve2HFDQK^y?hgm({@=AII?5k+G-9g7fLOkPU04)0#FWXcZTldy4r z&!~LBCd_xXUX@4w+k{+)sp3N)NG_R@`fa|iuU_Y*s*^Ki{8sCQutFvR%{52glu8(D zy~DuLAvOvD{MrS!VhJgBW?1gF)l)t0PeCJ$YzTa-IKU2-J#H+FDCW__VEM{eC$QUA zQsWFP1-!X4*Y4Nok1e_S_;N(~>`L!_#oWYljcN==nzN@8$$+Th(mnrbTvHuq#g-$n z>RSq`G!=%9KCo5J*Q(};_nNoSHk$eY)8Lyfdq7Up00J+@J?e{&ScZ75d4B&Ob0G%4 zGK)aq8#;QfBj^)?oWN4x%(Uo;l|gQw4X!;&CrCWt=k9O3E|oO?kf%~*)*ye65bHW~QFf6sUV#w3bK->g5cMF0_7FM8 z#&)$LEBH;2Msv>^p}CWPZTv99a9{qv!LyWTWza>0HKgnwBl_%_*iGVaS70EQX%C^X znoxI$c1qT!r+rU=T$;VHk}baqO*$iQnJPy|?Fe4@NFh6SK>5^9ci6sZT0jYVTgvEH zd8AfpRLNI=c=H}m=Hs4`5tek*Z!};!sxo+e%W<9LpcL;kuH)ATNbj2Ek$HEE9%ja#l19#hENfr$>KdzPxYW*7pa> zAd~bHC1-uiivyw#j8WX~H7`5e^mu5}gv9gdI`w9^Ix=&5{A`APZC+k)ddZKq$2{kT z(<(aCqx_o_7m&312~*Nt<9Ta2GDz#=B1;J|8ZNLkn1*)6kkv9~0;S!_$WZZ+{^I_e{Nvv~KL^iyL(e-Qqt{s7=ANu#m? z)idWbSY%_`YQHP*7!XQ;c7iH`q}~1i4zWaNP!AOw+?U6#ecb0MoR2_Tn*cYQX%vqy zPeq&X@>2XJScj16s|G*makgc;XL?G&^ONN|qf~Xv&AxVGd!GdmVbF?)1b|48WseJc zH<1?zR=59v*O{bF>#L-R#xeEd{H4mPbqIwUA(D)u5CI>TvS zKQx5jnx~+z+QW+pT`r$z7ch9oqA1)nwZInIph^9cdbr~|7Y$qdEAmJ@nShjN3+Vc3C);8Trqpfu=RZ$6>MnkT7A1S*Z@1+4({3zgBpA{QvC}0PeRO=8hNg>~tiMyxP8SEo! zrzL)-r@r}WK5rbyT?CAuWmtExu)~I^UylukCpB4s1&81uFVjO?NqTa-ym`ZWb=O#Xwcf~k1$@{~wkY!(&A2Hv^iP27s^e?>d@}1*H*nn|ox=k5 zk>t6R41}D#Vlh`pe5V@xD7RwGFXS@1bW3dH?00g9rTD7Q9+8JzE1&9a_LV|K(4PTw zp?T_*WJ-$A(uxKyIC=zzk}G_dd8ME;kcrR8#IV;{M?{bcF#x6#p-PpYeZG>7`(maD!_;QdR2 zif|_=JuRzkHXU|yCa(4sm&eS)hlR8yOGHueI|gM93G5PfzyyYS=9|Ur7ACx@z#y{3 zzCS__0kA@0lE>7*40vn@JA@}a30RyYgBU@f9a>ZFV4{wPL++2u!4@szBy2-y)#rwp z9?CHU{_V=;kEL(@?{##hgqX(bky&0$ z4%Hkuav$4FP+l7CCUl5{LczAHJLJK`o~t4*5=!bpt#C5FcbSjm@Sf#;KyMLdyQGG= zNO!L&qwdNtnDY17Z@%A${OcU`5t-z<>6(%o@%(yk+c;`H{4LF#_e*c9H2YcVdjuK3n%cp?IoAV9%dd zoX3j5&wK)#ePV0H4Cdv6a^QZrnMc2rdb|_$HjOzJO5+>mZ&csq(<&wVxYD)Jeq@F| zKJEd3>A2e$?S42nyt|n*KikIFMy5F~UC}tL`jED@&EWvuQ>j6lcLI@mFTbXqtZ~Pkd z7Yn6=-tgIZ60$<2%6x7iO--7$4O~!9j?p+4kQd+=0jln>a6+2IpyRN99+q*bhK@*JB@S7 z5+5Dl2IZ-z5Ne}Rn3dxN@!?A(h10{A%i=N2i&a)2Z(x}KWoL=b>P#L@nGjd4n&aaz zTsk}Z<1%Yk&Lxx`7h;V$qQ4J=uyd(~a3=l9sUZGgtEjO(pTdk#ykyGNjVrYwc7|zjfQdlkc3K?V73cAT<6|l-mhDG~+Z*5@f;NsV0 z+`$T+WvKiUq!=7wdV+LxjFi;HNfeg^by@f&ZoVR+iQCF7W_PJd)Eg&dD9iF1{y}NR z98H{S!QJV`7KvY07p(?+>CbcIR*NB_F(`Gm*>V?!TJA?vI({X$xCy)@i0svL$VLKu64B)z1g{wBZ-Ea*G zPxNLHl@0X*YX&I&tE)kgNpMAlWs@GaD!t0oFM?q6zUpFXjD?#HW_-mtEQ!?7w@1n; zJR~>3wiuJnpi$4^M`x>Lll}&5snRPBGr8OB_?Q~a$xK?YnhjlZ*`4mEmUik+5E=UZ zOxB?#qM*W}8Z#;TLiIw~EQYs~MAgpPqC?Y*Gy8irpOq+P@NZUaZKeBd&b13e_B0&) z@L)@Siz5XWmDkTcc_8=BtB@xrgckRtXp>;K6vYrgipvCBTCyY0Vd)%3|GBHYn?!pH z7j-a`uI@xUu04d8fO{U5!0UKP*J(Fi`?m*YQ76uZG*wfiAn)N6{3-dG%=J95CPCZl zFDsqJ_Q2waOQmOV9p*y^;E?@Oyt=*A45JK>g_&Y#*LdPJ{G2tY6RPU+U|?e{fCM2= zw>I5Kj9X6^$QKiKcLy9=mnV5exF~&f6k8;o1m}(aaK$JT7O=aY5_Iz~@3pPsKBB~8 zMo;u@>6|Av%{zRxI|X!^$Cwq^J(r>e?B$$Tf$?=aaYck&%%xF8Jux4-y538CWFRYFR>z?htVq>Dow5%_6H$?sM34X zPj83a@J-U=FGf2t<$V7yt3RoNLWmW(ikx2CYyph(eiS;V|a z#{`Dbtzi-cwvd&;%Q)7sY~1#F8ayCRC;aJyAhgVuljtFce0ea~Ph@lXLuNHPq4(nC&6;rWJ{xM^dPVckN?HCMes-NP<%u zjUegCR_HY5&;0m_gYu7o#XB3@L`?i9if7d@2p)oO3@DPu;-YfR5jpW)kPqAHr zVXd2swnED!b^~jd6}88Q71+fz`|;hBPdAlbMr;VP--u6d0sHT&^bf^@&<~ZmTTes$ zc;;GNWwYUi7@I8Xg|LjiZrS;sj%$?D zK?f*oikWbrfZ1u5B*s+Y9VF>dBwk!}yzl(qr@gD~EBky_>~a%YXW7WTvdycmI?|T?IVe}Neu4%gH&6RG zd5Tz9CAfPK390Cd`)^_A1=qg`ocX1SD&A56aD%gXlHM~&tYXj>Fa_6JEWy>OqKeO= zt?G5_0elpT6XbxGo`adyj^X@sDxo#Drr9^mjc;E%*Jmof?6#%>c1wr%pLJe2=dP!= zre%2ymjBUDNa5ooiqNDvv7d@^ zakJD(ox`=Mt%&ljPoNpw?E}*8DvKMi!XcM1U?rcnS!^Hxtt#KU$pT$Ianw~S_@hg zH8a5h_>!}RF{UR+lOmwhEN{lOR+N!7?Rmb}wPT5jx|D7F$r&bmec@M&Or97c=mi)L z`4!}@_T!{GB*F)jq;kh5_}?AAt*9{V zSWfsOpt5+fJ!aQhQz*dqcT`IUy;P^{0EPRfMRq`5gn5r9YMp+3pmLz}T9f%pcDF-` z0^C~yqx`%;CXJUwus6t5{aKz99jkJBkz=(BUKm@#tfG5gMOs09!*2-cB(snW`!+xI z^Yb1-yM*gXMKUy$um!YUulD!nk8B^K;UxPVKg-AWv(4(u%153}+tkf!kh-X3)TLwp zlMBtSHUm9V5jy$n2z)SCPL7u8qW}LDFt{A_!mWw z@YokDuKt6*QS@RS<&Ss!OCM2_Jn>-&QD6UE(A`iy*ZJ)23X|%zSDTtYQuV_I9Z6;G zxAWRvEV0MQp*yXGelOZhKYz8^^^3_pexucSC!Nf6FQb;m`9Plq)P|k7vR$?m`}?iC zRsKhBcUC^l(VIIXk} zPup*Co9o^F-{}X$4N&GQUn4_klzR}x5N9o3)(+B~J-&`&HkX=Oem3${!VJ6)%cMS& z49PwVVotV^sP+W5;_DVjEmmK8!s z-awgf>%9_rLWwv(zyFjY;uCjGF*p_Jv_p}CShMvRBhL-!2g+~!<|cXN+C9M48aey8 ztL=UWhiiEk;oVlPGvHcu>NuhI1&ScEP*`sIE+t+0vANw-m=BV2s;IdS9mBx!xF?gy5P0oHT@Bz)}X5Kz7ADUj$K3nT}$f z)fD*2kZR5Aee1){~~ASC0}8g*@- zI?1`%nwL-CaE-gb7F1^nFmQVz6Yka1jTlb)*~#3`>#5O_*a`JB2kEkIMsYYBa;CLI z$H7xys(N(;4?dw-DioicNbp7#O5T3c>fLpmZW5n;fub_p|5!>0$yVjHmjm(y2%AO2 zVSJY(>Nu*DOF>2jY~|jsO`21p9CZ!cL#ql715<)`Ttx~J5K}vd9mRm*r94y3m-o^n zm{UWZj4*f+^V1m8!lhoP1aFO`q$-LKX@$LC7L;=>|Ktv?;}^uvPXp}7^jgS4EMjok zhHaOgwcL&sv3!AV?;hZ68{{m%#a2%rD;=zYx5F34+p)rOyN*9|B7+YL=UQgB!;QGL z##*D`^)>S?(Po@N*|%+M7v}(&T1^dER&NS|zF>*%l%kt0^-_v<=+~w{EC#JgC-lt}GUW^ylvyihYAY4Nf(Al{SfUr>8dr`vU zHmXcVV(nI40mg8{jhLSlfqJ1%=3T3&;a|E;ut}iMI$d^9Y2y95_>_{$9uN-11Q>bW zSGn<@f8_r!;9SnZ+2hHNpA?wQSl%=eElK{2Wj4153|-LJlL&Llo7wzi);Ir+UV+6l z#myr}xF3uBEHy8aE-+^-(Id59!E{vDZYcWZjl#B^KPz~Ld&hXIWss(-G0Bf`doY7B ztul&@M9;hQ7wdU}Ny2`31Yg{xceIu+HVe1PYbd^U>Sp_NXXutd4josjae55b<}{k> z*bszKoGwFyr$^Q<5oM!n_={ZTT-jKT8+V&|Y3Yl_T?&|ob#%Xh#`nTo?@bPDM9q-8 zF1>5+0QXF;fB9FF(*Xh^ z%)IUoHckGRg@mVYL?O=w5r0=P!#?WL6QGn&{+tTYF~_GW#ECkHihH&ATGu zPhM$3m2Cg=cz!iwU^HCiOymbHR++>`A@y0`F#TVju4LJcEppO@AUjU$0 z&Y&MXk;gultnE~_azTg!O#w2HD==bON^qZ6(Q#+nd#tw0d-%Vf=tVpv7{BfLSUG)v zW}g}H_6an=iIi-}KL+&8%s?T7hEYmmOW)|-d{zGqg1Z+2+i5H0#CpXX6+=G$g;{A3 z;s!}a^DjMj)@FxJ+tHX|r#0gU9|;|K;2j?mw70Fg*vg#g z@&kW}P_L|NZBg*geX4nnlViX!U&BpSoPY9EGM+zCMq8bnA#*m)#5HF`SSCk{3_yg| zTlQrIUUHkYmH&3YcBn~TGOYcvGIDCPQq!`MvgDBN>)vJoeVGC*y3>j>9A~xCaVl(C zM$49ITH#p&d#!1N^iamSBhq&ULJWCg%6`?k~PJlk5SHjUIGu0E`xCIWo)hWbZa zz}j!#i_H-2$Yv+fo400cTxjKyDw4NmvF2S|kyEGQQ!wz9@I?`*Y$Rw@z`ac_?(Vf4 zbiKO&Q#>c0ZWJ5J8@^rn-*Rfa%UF8`oC-oznP_~Zlux|@3wKEwW4no~;5_MOKuogmpGE@|57+xA3JpCg(FdRAuKNg~>>q)L4s6f+=-S7y%MVdG zS9|J(0d6RGQsfS=VqN#-$$SP40KJqD1a2@>_S(ueGt7u0Bs-B)~l2w1h{rJtrD*|ng6W@wQ zBDL?UTjD5FJHgUYm2S056jg(AB1&iQg0dHkQR@pKSTZp82Ccfwb_PDkXzN9sasJ zk;tsi$!$fQL$Ueet36f{O?sSfhhcz`k2unV5U;+InmH=zTcur1t;5bjTIZ|znE7akV^KJhXK#g`Gi$;H(djzr)?sy1`SiVRbs^OFwWX1aZ!8}hz z=yWO!y2>k=Yay_InbmCfBj5*l4^`nS&@_>sb41L`a24*do+3LwrFjC8d*z4xc_lNv zOkz-EU==>9zw?|Y=k+JEM)jp9LtHULWhoL3h1RPHcBBScO@FztuhAp2h!j~&H?#r> zt+myFHSusue6TgFm{}c{*h({8!i0~7qKDTcmKMQ=1lVLc<=yVst#4Mk#GE}=>x3?- zR82=?CAjnH?DLU}%A)k8O1LhwT8+jsQ|ILmAlE+%&%8Qa^@$fU0~+psNU_#N2c8Wh z@{F9F9>oNYZVFqF9|p2X3TQC3}2UvmF&LD$eo!Q9uHT!{pB(~KJ=xJQTDlK6V9xHC}vm1m7L?nezoPJUCJDPvDMpBH8ES4@ggGg`!JuOrvUY4hD9l8m(*Y>MC{oN4P3qQoJr|I`a61wS2NxKVTF43Ru z6|JUOjDY#_en-F+V4S@1T6(>E8<|nXIkFLAOPC;X=f6Dg_f zEgIl8_R&bRkc~=e_4Mx#l3T z0oc#%`4yXg9L^tKw?Cc)h7Zc&57PJ2fL-@z0M-6y!-zsY6E4%nG^aaLNj`ljmKB>e zwBE29_|lVlMUIDZ8Dvbot#s4Z{n+o-GWX88t(r)!rUZLUp~)~455XuBOFYD% zp#92sh<@U)o2N9GB~Cq%Qo$^WS#NpCC^tbYQlK;FU4Eh{kct5q>?$r>(=Zx_ii!=} zHj@rR^(~4`&Xe0qAUt+V5gzE2((Ry~@>%CCz>+%KxWQ@Oe@6zoQ>9Hw;(K?dUpx&? zp5n!`U^rvpF!CROqsF1t|DB#HyhH2bY_I`m`H`qEjj{yaK3zG?OP zwWBG@;pvWU;stm7si%ZO}6dfwdNeN%~qM~?d3`kU_ra|h!Hm;ji0 z1vsUfJl+5#Nh9NA+&&#=t*dW;cW~TVc2QsI_M<>LQ)bk02NJ(rusDx`nD2;J$^w?^jrLNh zwlb=9WT+kF55OT902oQ(u^zBXwOQ1$b=u34>7WVu>OoCx3!S#rpVW0-kC#5Q<@UgKp|)n1*zyO!$E%=&LR(!#iXqQHf%4zLpFMcO0{okkxer5WGGkj-M{k{w*x-q>fq6)z zLm7xWds@aiyV3=o&~ENRVk%D|;+Pg$h4gMJVv|Xd^Hqs&VhF$QZu1a&a}-adhS$rP zgygiYzW;IXdqkA#gQ#T|V~GT}uyc;aKeA=DnmbdyR?jbndH(J9Soo_1O=?#!t@d|= z;q;C-=Y@0qTUF=#{YSqZB1U(X%pbk1L{4r#4%;F{SCfyK7RT_*X0ozc0+3*I(};lf zG2CkvJu$k$RO?jX=b0kgxcnLqbT$EeE)#a0NU_fQY5nWuG5M2W@91+)J$2F?pm5=` zwTC-9vaJUk!mqA=eDe2WYzWY8;^w+EKjn)5@AIp% zPp!>X6RmvoY>wuvp&NckNW|zM?~C3l(YY;GL7x$rp+U8$yH7s^4>;ra{#bPqzUqU# z(vQOLmQ4Cer2ys%(-_c%rlwdpb>4)V^{zhNAOGE6wa#M#6K}f#iK4$?I0>&MN zySG|Ed}Vy0K(dvdv)7Alt0m7zypc5f($$a2+ZM23u?Y=^F<4iMRX2lS9A z=&p3$b(in%+(w#Httenj?lj$B8a<`~@QoPK=Vkuqys;Ms;p0UP(}Lx0jXJ-f>6I@L z{eYpbg@Qt{2X~>lf?z(`w7`%pk|lC_5W=l2xkheA!}>xRmxNZ4rjXg03{ecao|Q~l z(}OV%_!}R*2>g=9K&AvusUibFxT(`lmK1)KpZjPP1eDT%jGaB@!nU+}WL@We{p?0+ zzIT&el7JEvdsx+QYf0be{H$N8^X~@WB&s=CnIaIeUnG?36Y|>LgiO32YhhQXI*Lr8 zK>+_+YEq(tJpj*H2zYjPPbAN_M=1}C)YoqV0ThZh5cN}{C1g{qs3;h6F~y|1mUDVS zeYERCE7BV=unkdhwU6ckTmwklQ}~b{L7%=N0HN&O$4UAwf6!|%ntc2eD!X_MLNoZl!4E=3VyGG@DH9o)n?o5X z|7g*0um)Z)#(b<@JwL4c4)~}OZCu>n_pc}4sPJ+Y78Gsk>6T8am+z)DiLyG|8cs#9 z{xqj8B0>@Gk4cWuv=>n5%f_VD;NbeTmrdomRw)`({kDLiE{&%B*N?!a3<%7N~=oC0u47YiF0T`hknlJJixThdkKgVbI0Cc?OVtKNh z@(CbKJ$TX}TxJmrnb%eu`D`SmaKq__9p>sb4c%(4G{RueY2sL**kuG983_ zehgG2Jd>*MEF#iEGfTRZvQOAam&v;yj*35X@F}}6&LoAv6s*4}>``6xii=_HXS=C# zH&S*aDOZtb+}!Y#W(2rFit)u8KXhDs#^OiwfFfARwsX)(qlB3dJignRl3+$D#T+N@ zcAqZP`a1YTpMJD+cBJ6#q(*)=LB)-yyCf>T;Y{SGK<@Dn zlpxL~=e_mudVOjtD4*pf@;!PyL+SZN2Zez>AqBN)l->9XVd`C`MGk26wv$zLg6`kZ zIzw%?3fx~2*Xm^RE$oYeay7W6G`P8lKUsgA%eSnbjlE}Nc~w2le|h{gcO{IoujrP55*VLYm>xnhF zbviNjncM6^FT8OtY6$Mdr+9honQqJ2H;*0?R|D=9sfHbT7M`Ja7MlM!{^n7Aep%2X z*z4a__@5*kX)xdru+_Uvf7h#ETul%9rlGAARWQ(|OqF)2w>}wJaq_`J0w!%)$h_1N z24{7_#j-MnLtUCW3TnvzLX~(bo^)VLBV9sXIwuN`vqV2T&TfY#d%ee=b569_+Or;6 zq8~g_y%3yS6x-jA1+Z~$IztOpO#lYIT;NIMjIB&WVDGy8)TQ!M_iz$`D)iXB`miiE z;YyE8F9Lu5vB^uURm7}h2#_Bx-Ji1%GEFA&vF>Yc(Oq-J6JEY{D-}LiytmBMfFvqdCi6jI*kL|1UeQ@ZV>7J7P}to z9`-(VZFs|rhg>QOw!D2pzsJ!fcgwC`_5AjQ{PJLe@qM0s1%;^2Tf-oE zIGRR`0+x?p0Vxr-J|7xDRQG4P%oyxVG*NG$#oHbL7ij?OmIIQ==(!kJeVA~%Xs0e4 z4MUg{&A1DmtkNtyf}0cIO}n~|3myj5QHCdW9)~0_Cx87)lPUeHm>H)kIZO9AyE`a6 zr)Y;63yB%DxwjY9%98DkePEE&BRBv4QtXl&%c7nX|0-{J6#N$SyCBz6-KdO5zyJcbi1ywq{O>XR{;{9-&+gBF+Iym_CAonT*>M3OnAj|P zzQ5@j?6ui*<`7rW%F@;kfvMFx0yN6LNWIo(3z+OeGtqBtZ6_DE>Jw@Nf}CTx9rdt| zuh~N>H8;}3HG0r41DvN*TqGJ?k$R%-kKLD-e8^9?`5$dClniEgRf74r%ex+q_yCEV zOiHS7&9u%lFie%+PmEBKW}Ii1l~@EfSlncqi)<&x`XaV)=USme1AD3C+FYh2(LK`N z(h&P3dG;S;=qP22S8EHN+eHL7SziBNWr^yS#Mee||FM-6}x}1UM8(b@@{rE-zcxGtH z`#68K`&W^C^?umNRr#zO!AHF@*f}xkvxAX7uSq}eXtw2t^=8=ga}^qcFJlpO1?Q(s zNm%Q6(eX$=D(f^lcOiUywRrmO97{~%@ehv=vJOdL?>`(5e*Cv%fjlfd`sYjDdCiTP zsF8F)BJIlE9F2w9JfSy(}49-Uu2AI+Nj*&*{QG z?kW+91RexSKp_bur!0(*Lh1}{OTjw3b*0#e*z#xs1fdd)L7YPKer{ zV-8iVSx7Yuj<=tiAb73fBWTr9*=pWo2sgx{P+PqQ*lT*~f=Hsl?g_VopNnp|_Jh+n zL|SvMxYT<@a&h7Zb0cxodh-Gb_pQ`z8f=KqO1&QT!UGBER}|Hm`v9c`Sim-`7AkfzV2QpX zYf7NDd0pJ3Luios(GWLNC|bC*LNRR*z@H!7uHcw`=XyruHmf=FUjvD}CdocpeWI0s z4DHja2Ie9vI*bv(II|3Jspj>7=Cdq?5j&!RL?&S$vZ^^!JL0yPz-t{ z;p7kEsu!Z{d2AtZo}-#CudRIw zc!q&H01gl!_JVznnW90Z8h7Y9`2l1=+;+e7|7fi0zhh)z%8f@2$7m19c4NbANQbIo z8_Gc6OJcXq&z3ou)sT?n9{XfU#q$`En)sXVGxKO>OOFZ6P&;E8*il5!}e8})3hjfFzdAmFNuk^v?viX zZ;#Da337?5-XAd~6arK}N5^VF5!~+W6J67!JK>5qlnO`jS{X?@_#^iak2aS<-!o0k zB+59r+r14+p&F#$&!KZS>xK?}47oU?yh zu#55NxA&0ABTj_&}4qM!N$$1 zo@(6-QAa zo(wB!KZN1UoA{7~M&(aADlrnq^&_T+ABn9mRezyZ_a`Fl)Ork%TSvo_+;ja!>$1o3i}g z*;Z9ICao#rAc9Y`g7^BS#n(#n@F=Co2rNzgof`auOSus3eQTT~7Ikz(H_EW#tXDjO z4zcY!41vCJ$9ufE`*`5a$fW%_uUT@CqIOUlQ$h9^{dC2 zCZ-*FYwuzTV;Wg^CS6Wk5x>O|>7e!7+pNk% z9k6s&FXTs8*Yi-bQ9d;m#+m1-n3>%+O06|!@Z|)}4IoXxsbaqJ-%zY+{sc(PNt&kh zW%HkbDkLN+llvXeyojJH!Wg$~E3RS1U@)trbaG+EIP@#w-KDh9dN<>X470Vj%qTK8 z$}2M+VnCzhwbHD5DTynjgs{H)wf|Msw)WLaV*;)y46B5N;*1MV?DEuOA|~(Ys%~5t zim=4It(Q|^iri*9o7=Pu>2y+h9KO9D-b{6T!?$!K_>wQx6s_KUFR@`pQ0AsCEgyT` zT?KmlhpNERWNfli(ES(G6J(ZZo|bGlK2+zABk=kQ`ZdwQ*i^evG2MEtHbY zPBB_y$LBU0P@}pIN5z%ayWW&`-dyYx99F2r`8Z8d`^7`(wyCt6pOH? zF1`AK6*1Haujfg&&+fVswi-pQ`cj@Zjpas?__}KctY!JHRmW$s-KwoR`Tvx|zb@sl zlkSnWefHWS^Bm}17|%7(`bZbL!Dgk)gfSel6-9-)krGTpzQwRf$G{cUe%+SOcuXi^4G7R~PE*I+P(YN4u@_FM?a>wNp& z@v0c-MIzxlP$)spF@h@M$56_?KJN<>Q{}(y#w|m}I$I zoQ+D$nFeT_c`Saq(}##4EXFPYwx89wW2P9-?KZTA0YrST-|y<*OYC%S=EX|D@A}1T%*oA$pbX2LC>R<*$8-+39)d7bjr}A8rRN@|{At+k zhuf8peF-(9>yz%`iX*JYm3mgFH=x%^b6$&fBysT6Zdm{+z`-B16D2*{K`K+nC>c<_N=_4;fKSsx=rx7X_c zsV!%79Vnkbjpt(dTGs<;bQeFr{_m@u855LvhSR&m>7tKwuYDJ=TmF#7bWD0oW zZCtfmL8xsEo5RMB;m^MBHBBLMwG2&nqO?UOiaMR|DP1}ga5&$&D3?kP9gCApa1J9N&FYT$TWDrvsvoGO>-^f ze`DPXr!Sb78lH$K1j44R0+@VOe;9tGBvEpXz|wiSMXsSJw%JeR`C0V8F==OSuJYrh zufHAd-()J*3gzy%+;@LUw>P{%J)jw8jDsB{N zDe$WNa`Y!CG}1;EjNH@#KfmoP+($n{`APKfs1ha@Q?S_+lo2twWbNF$8F)OMO7-HB z9iE0(&ToO$yUzWhO+Tm^(8M#EeD3iHb~A-VmXw>- zr|7{6>5f;IPap0@449HgHX%939@8|WSY!zF{XfKZdHZ@LoY=TOs2MIysJJL3GX|aL z`XileBlC-EL>BE;po%O~IpiZfEMTtQiQMdB8=%)S(g_A)ERTolY%|$ao1cAHkjiVZ zWv;l|I-r@K-?@gz%p8y^*0Bvlz==H%!UONxe1HY60@g@_c^2bB^As2D>UuWG3lZ{7 zKalj9UBvRmw!5CL-Cs>Ac z%Ar*iRgH0tg7iKGduHQqZp7U$ds^@Agi@)UNWB6-hBpGMfo9->;$-}XbiDX2E!rVR zLrsicD=h%Sp}*6W3~|X_Q(4^`ta#olR>){Oz9?pkcbJD2I`Tn11JeUKR6} zI%V?ErD%u<#Wb*7-a>Ct6xY_S-Y+vhk1imLXm&%1*CnWqjUIDbN|Kg;s{yQI4P`2e z6PF^;Z7juE6i@uP^xmH$Wb3E^-579!1!1go0d1|2HP~pI)T&7=1Hy%Zgr~Qh2=jth z<*#t*A*Dny-@C%Jk(f>SDL#}yw~yNNF%KxJ0elYZ&4K4;H~(t;#*7ExgA#HSjKqzu zuVDJz=TL9Rn@Di?oJE22T@1#tk|ZJK`D1*?3*+=pV+EyOvXz z@5ApmbM(m$6{K^rXGa5%q-C-J(2&=RY7JG3i{Q%{G+_w(D_I} zCUJdu2EB$|2XphQ%}zeuOVXJ2^T^3HPq2VCp$`q$gDnf62Jz9hClssRFaZm4y z0>Q6OR15^>Cun@BX3&wM$lsm`U zJ@}&4mw%qW?$kHG;QBfvQCSTSnF5zNEN6*n2Or!p3b%buBB#U~WQwFs@vYChsk0tp zky!!CZ;@{wUo`?_7WsH*d^ZhL#JX-@*$iqP&Adoo{q^Q}pPYkw$DzyB%kdw9?{&Sb z*>RD@&5z=ksDFGOb)csx!M~7=y*=#c{%49$qf5d(NcKu(eT0EqM+7N0z0Z{VFO1{Y zvB@!8IGOb!3JUgN*VEftc}Ls4u@EYPzq_T>z%Av8G+P!%I(d582=?J=#Jzv~{lnMe z$A2P>$7{iI2K>y5lrWtO&h0&?$=#i`gT5#N|A}R|d)83GB2MKS($~RTDYE5CCSB=1v_v}gJLZsMF8t>W zu*L^k3~nk}Y*lgwJF)CSryAbq)D8WBJ}U}g`j`PwibbS8?|4ix$uXm$)SL=uvpBSx z6SsTuyAZBf9?zb_lJwvW?f~v7!}IuPG_~xq>_1cAuTRAqd>h~H z_~YCEqN~{O=0WJM(n?!I_}lEbfUB!)KXu6KJ6F@v0Mt3LG#=?ZzFU${VzL@_GEW7h z^t|QC`Ta+_6Nl=TJL$sDhrPYIj%WwoZ+VDnP!VefHq-EA8dCS>~ajAaQ)$T#7oS-(r2I$}>JcF&f#> zf+`}DJmo->6Hk}LjfobXT{_B0-)n2@QWq6|8svnv$xv)mSa6I4SCTQx^I%P%Fry}H zb{_URHiJ+?R%PT=Ceb63laljl3%7dit-gWLI&k9*r#3Y0vL}+{#`YYgDMPR3t*DTN zrl@Z~gyfdxzF9C=Qo40WYv^Q@e63-4@%26SEGyf`m$Q}F(K2DeAJr8vQe>1Ghg>io zx7Nc_erCdAs4<{9^c;#9Cn-VKu30=-Z=MK$M3uB`^Kf7Wx*<(=Uc~f9M94d{NF?gA zq+-$<@Av?mCCt*_~84A)cgg zWnnz=miAeajMw`J-FJ4r_cP=_epjuP5Pd&hG2Ib@@SC(Pnslx9Qbx}>hgNL6=+>m^ zV$!q2MJaSDUp@)#+_#iF`~60P^aduQ9H*c`I{JYOogxT`S@Upe8ba{tO)JGXGHR^K-(VJbAoOke2vxd$cU1 zoZOqtq^3c}fRNc*A@m;eSiJk%Y{zx6#U?)A zA?n_uTBzC7-4!WOF#jBaJ1iG}pTjLEUCr68B5PyW(^k{VtHRtsHP}mJI8;G%7emY& zv*CzN@yg>)q|st^c9w2jNxgJh;T?y4vI%HsB3eZH1IhZ>mzAaUqoW8yyd_d1y4NNV zDr7}DO~*bI9eAdkRd(bhU#eeLG<1*6pl7u{>FH~|hpC&}vynx=gvCRs^dNFgfxP$< ze<3@*ICkv6W7d~sRXl4d=~@IDU^{&Fq%j)Au0{80=Cx<~CLOj3e<)?&>L#0HJu~d; z4E^>M^v;y#lcyt#`rw*jR_m6AFs#zw{_a2}z+WmgK_ts1ij3EA;mlW5)qP?7Jxl&C z({RawLtc)6x=4dw0im(Qcy`+RchQq9Qnz20{7*w4wLfv|Jrw%2XVdvHp=hAp2|FX< zUkYZQ(hBmr1&>+w;=jOu;6nRh)8pSIm-t7Q{iAr%Pr=wKd;NDGe}A4W+oP0$(v1Tv zast%rGhw+^g5O8(E_k+c?to27=42F?SamSclS-k0M0i~_a}4Nhl%{*l^b(agPo<*u z+}PErMc=eupN4J&=p;2*G&_rF9smIX@km2Z(oZMQ@IxgZEp%lPy5%#B6&=RK^o3!I zJ5u2{DER6(@Uh6VXZe9|jo;9dCnWGfUUt@p;A?Q*7&o&_FhVH4Q*5SfTcE!I&em(% zQlwg7RrE>q#m2`cdmrS`(V01uKYTRr)6(Qf9kn{99~d@+eI;Z&I*#}BXdC48R3^#Z z0aR!w`D&Rx9>7mDe46R=Yxup`{pp%e4$5ow&XMEaG=bREgHCYoya{z&v=x476|b5< ztHSpQ-Ct49*2>47@~kXqw>+4=D`2>)gT>K9Rz1Tku}_`N(V4N5Jj+$iXlXF%n>7_< z)H_KC7$FgGH^b-ueq_(Q@UzZTdxpAJq_S&y(eTP?Pje_ejwzNHhdGoG;>234KEptU zWBW%&hTaDz?7QZ>PsPKtB8NtuFMdN%jYk`eEUcmwx7rzu*mUaI=fD2Ddns~dPk^GZ zR(gEq`U|Y#x91SqqKo|Yon@3lwR`-8kD>3iED>w^idw`bMNs${E>M#Bp8V}JP*qLw z8Cp%|d3(W9Q^O9F60LO%B61B)eY)gg%p0~I`|1)7sx&a%WbFHFsMOQY_bOm;4qDbN zFDx^hm}I#*0%G1mqgs`av9GNob$aiBXIv10BZ*1!!p^(^=EgrCa>8eq+)eM9N3d1k z-JwI>5EOvG!fnJ9P>moeEOd8e{RRpHN6OgLu^}>`Ni?kB=QSY$O*M9GB(55Ri*I( z>=!%z&uNZY@mJy)tIPh;hweDkyP#H^9{2Cr&+EK$%#!rPzdqHe#xzg?dw9u)BwkAt zsgbtUBsZi|A!clm5rYjOG9db zUQ7zuK#xfxt|$hHrgkDcZ7D&;6CUq^T)sjA7%k*OuW2nzlO%+!M$u-H_vmBmnMa6a zbJWCe9ZBGYvOI0}7M(nK&ofXV_9(Bo_Mv=U4OJwO=u&hDA?-5TCQB5|Its)UM;~X8 zVEdGoI7dr(L}6C6$&U{jNc>sH7EE+#_V)5ORAUrhDvbw0FhQ%WXfnx*S)f))daUw` zI#yj%Xyo?Me}}6TYk+tj&H6VR>Mz?r!ep!2MFG0bGd6mwutNXOIVg3#LfhG)Xzb*n z`lpS%c@aZ2jd~J4Cum=$q-cg=rV>u@zGUZ^Wp;Tk&4Et`82KC8GwfQkzfE{#<6bbW zJQvg;=1cvlr6iVL$cnE)*ojq_)6Tr(YA0pGQce1v+zy0io++t?Vs;K5eKNTDbc*!! zYV38~-J7oxj!{>yN!!15!_xxI-t?x%jGb>?>@R-#eSykK@< zHn&DfxV?nv8z`*}^@xm5K!x1Ibq0t&ic9e>ckG`Ry_^T+J(w{aUCVWo{6YUfd8}+neh#xvrfyq}zG=-iTNX&CU zFs`Yo0hC5yg~ULiq{}ozk7bw_S&$+AMY3|Ux4b8{Gy6tYWnT& zwI0Psv^UWD6Wcg$WLKzZ5lp~C1LhJ^W7mv8N@?U=fs^)<6n$m3Q`-Fy@71S=FBgb& zRHP7589O(C`kAZ+2flF}sm?5P*o}NrFCfO$oiZ=!1a3-QNmZ#pm17JSNS$im{J57A z`Yn=)WK5W_@Ggs5&Vte;CG@Zu-yYi#CJPxW4D<@Kwn0%NfdNJq_p~z8pDQBBc8d+L z-jh9ccuD9@h;8@n1!=#%IX@r$ewm>ZUl$kq{zBSR-`^F0bsZ}P?itiiVug!=C1D=9 z*s~g`Rhj(2=;4G6J2N}8_w4H$J&Q7?PIrIF<3jX|H1*LgpS5x4=R8cVM3*2bY6lKI zR{hS1*yDL`4Uh4VzBWuE9{XbKeDmaFW;e^gaGO#As4l(1YKHal_8;C?qe@tWXlaaH z>EO8W7d0nY6bxy$RABNlGVNrrqn#>8O(!6*XY>eM?;6VOdPluD|DF~M6Lctp@&hh) zfUY%pDS+O5j1}Y&4h)%?7u~q!Y{#V5)41ca83_TD43AqTe|qmG_}(6eB(_$+bpzp0 z(wbH+t*y`~4x_x`bj#%nY@ju3=-&ThL`j-nE240&)Avu|n!O~6)4wc%Ag_qQ0^Gw< z8n2LD7s*vjFp}`4GB;Cl9hftkJhaxjH8j~B10IBLFq5Y;X^GLZ7t&+n3Moj)J#^2z z7Cm(Qc!GZNQ0oX1ouNL(pA9Jf77X5k8`5FyK!7UV^Krymy0=wQ(q0bkh%l@lq^yB4Su0A%fi_C<3-I~?X`5Pqs_bq4AQIq2_(I^4Q=U_JXr0m~ zMx)?#&l!U?hP>~mygzv~p)P$+-Th9@VK)>|gFXE~aF9)O9e>A(2#lmA;qZ-_ zd_T?#g-dN~-`_iJ2X^-SWcgL{?JTOkNQ?zsZZa`=#a?)>x@d?mK4^{?f@T2gw^=|b zY!wkx;>W|C7LPvO2-C=O zh|&?Jrm{FJVB#<`dD#@s+~I9>b}|y{Pg^Wyi`EzU|BNK7p1Ulwc$0onJwJNBSu?J6 zaT24BnC*P|8pivFXKHyQQL+6w-OyR2md(ppIh@y*9YQDR2CbMxIfMs_G;KUD&rEBH;EU#>Z?gyQlnnoU zbMEn<8W}MdBf;?g?v9HX0-~vG8oq{u*2HgqWMh$BCOf2oGMjW?OgCXY`^DumD#6j- zWKk(@QgID_y7>Syhq;wAc8f|#Y8>!djSEXrg(iF+C< zO?tfTxL}`biA7h62#Fg%pI3#?B<42c|G3wbrj)^*L_LPi{X3Q-Y!~vm`r@iz{o?Xq z9m`Pt{+Nk14c`vAUM7;02bURELwbXo1ELG7EX1^**BCZSVIT+oov<9ur#V9#jJgr0 z5$d6(Tm>|aap$DaSJVvv6}^L2L2Z@JYm`^J*b>|8t6#{l*-B<)`jyWDSM9WDf zgnxP8XNQ`z$n`vP2?xV!|I8OJVZnig@pM@_X`v zESRD#;$mQd@?Q0->O4?Qdw0Ko^I)bxHORcjtWj2{*2%rofO-t0ttw~+SWF^!e*=Az zfM+A?j~K-lrs7(?Dw99-?XQyjPc$4RmA$o&GoE6=))MYcV%+T?1cq~}s^0GG_irDZ ze(>$Kq^L{jUBsaot?RRL3;b&r(&hvVvUKnn2k^=@z}au2kI>Ry{NFpowY9*!tSpVR zQ)cslCqPy+1*kO}C9&5_HHgPywzOZZ0)7uNG(2oDgnn(hLJl)^dC|#4bK+`C?y-bLP$#J&}GX@D40u6@ ziOVeg3@ia89@xBUa6Rq9x|hX7Nwxld26NP#{-lQQln>7*}o zQz+ez?V#P{Y0FX!8~pqAp>)lHsmTLnL>F-ui&lC4eObx|1u8FAB0hEw-CyA~`axSn(aq6-ViS;_`(13SW)B_GMsLYQiNf_pPUR@Ib+U z>V8iyR#Wf3!NMXId7;3_=qr$DjRZ7Gg@dB;?PGv`Sm2L#JU4xV+H8yXgJ$?h4nVt- zHj5JzcwY?-x6d-00X8~}3u$a0ml^>>Y+E`@FdddV)I(;M7w9Bfm}#}G(*CJ6%%jzc zCq6i$U>{Rgkrz_SJ1Uz(bE|wJbezdh=WlY)I{>k)&!R2Gc>>PNwxOiJq9VNw9&H$o z)u{QRX%+($HI0Ur00BamO>`i^P6iE!CIOwmZrkwBInYMj7Du{NL5??%7SVZ_8D` z+m=@`#or&UN*Cq^@3&QO*!GI)AThbQ)@nf!GYsOQSLLFl_aqPSya~RrP^Q*zJYolD z>B%H+2ON1#h%-gbXurMU;)9!`kuf1sV7TnovoHVslpoVN78kgoxZmoZN{UXPXtT4^ z0OxIR0jfcdB9)STNZSWZLW1bYvMc7viPv?)bxvv9sEhY&ytmZ%i}%>>mq#ROPDz5F zoFQl`D&;8S9^3Pr&`KfYa0e8MjhOID$ajql)_54ey8xh~+zcmxqREh^j~bzCk%1+! z%te&!>S_NYkg$rxh2)@XU-{V{AQp$hVjh?Dy3TO2FkBeqq%uXKEm+}# zRq8~>Khm`4H5fZ9z*;MpBjQB|W~4eA)0_GB8vJ-I^ygkkz2J$W)Z zeLiuv1qdoR*1%m(oHE7-OopDPmj`EGP9H>Uipx>kzA7srWs{m05fY=RYMUSVxDUZs zS_RZ+2rsLu%CFm|;rI@?w$h2}nlvPl3Nd2Q;t#)wtI|RvCW(t2ikXgVgb%r}u%wPz zF1~#OaB-99!5@Pe%lHs(C>2!lHgKF-X>mo7{6Y}JnSEHOmJEm@Yt$XSfm{6S9-3Jq zwdrA#f#^+}fmBEe{IRo-=h({ncp`#ht4cq0bS;K+)T!F#_FfC~y<29I@y=3{U;~@) zZ5a_}1D72%-QQWR+TuGI) zw|C%R!Oz?uYnz=?38Y{G(@Hr3gxmFCFdwv+)+-?aL?euJoGAZf>lzslgz=AT+;8e# zDXI8{FV~^2nPMWz`Yd%x5=1Gy>Hd20dTF%l%XU=ajy?D7aPjh@IP~^P#_K)MxAK)6 z{zxKYZEC)C64T^A5fAXaM-?RvO1EHBT2@klOVq@Vz=~mgNEN>B7(LKeqw)@){`1{KCDBX1)>9Uyz24S;H;3Wj z^I~JHKvDU&LW%{6JP&$7BlK*YtsZ7Bc-<+ie_ODA)GlJ4R!hBx$rXY6KQ4oQw41N& z2;}MURxJ@~2FG3z9WtmOO%eu%p-LEg-N(c_LJP_0U==a%Yy7c&*U%PBvBr+NEIgf* zeRsWHSZ=t>$-dcdBt}<5Ixk zKj+<>2iCi!WYGSjn2(!nP<^-hCQrSP&rfSS7}{f(Nv50}G*6kOrAjH10i^^~2MPiU zttix9{QZwyBxxXQs&|={NO=os$I_{uAx6cfxuq)nM%O>ovVw+BK`ff(O`j4Bbxh8b zzu0^n{*5d6b(I1LiI00seZQJ|9E+34I}-+*9^X32UQ$fbzkUpJ$)m1FmY-vF@$4RY zzfuqAbK2}(LYqX_l8$01`6>7!wP($Gy$19Q0z-WTO{?N)QB?{i5DWx_*6r@tg-i_M z-WAAdT9lpO5)l!3-QOY^2fQLW<$RU;2N`)d3WN0{%99jgDaH@Y|KF_ix-O=q-4N&o z+kS>+xJvsYW=m>Uli5XficHI<@1o~4d4c!(x=+yxcDiDK7gV?Ef%i3>lb`YVco4Co zP2NY)giJnJC#Il`3o9x5HF}tpM)Wz=>*jt1Or(%Op_a+9q2L)6kr&J6YG!)Y3Y zPfO&}aq#t-jiM*E!HskqTFUtsJ`T+fOWz)r&hCMn=F7?a@{h4fa6@r0A04q2qG>Iy z7}C|FXcTDgN_BMlkmH`&sK@oyP`Dy8mA$4~f7^?Y#j(|i;>o7SfkP>D^j%p`g`@j}ZLf#f;DvSt3(l}1v3l&JfC7N%@gTEW z^A{pk7|F9_w4eerYReR|^3BEOFg1Ps_qs*(63HKnvmMNH z*IA#o?k}3%o_CWR?@?Q9ysbCuPd4m3jGthIKCFs{O)VDWsd(^cFBkn1cVzW7dfp3B z$S4B(*;c+!Hu=_+V@rhO+UC}dY|1^)XFq<@7Cc!N+y?zsnNHH(d!5f%Nz`DTCBfN& zDMkW>nr<)s624J1al@<{2Sr;Fr}tj3$CxGleE`xEAgMnO)aTS=sC=liM)2sd>+G}Y z3~eNQe^Gyr{^tKKvZo)r+Ah-J`yXD8sCQ)PRE`wO7BJ4BZ0!E7?hYNncza3h{@-E| zAW8)XuytN{Pkf;f)75pXdB3385-*Ut;j6s^RBrn`I?~Kz?q3VQKXdLiuQig6=!hcx zZg5dnyTFSX152PEMg!V0B_noBF=#gh4{TA-t?%ivXz9>L*2yk=XK0AFsh#{O))jV_H!=&(V=r2zDSenlGOs^<1iVfz zk8oJbz)4G5V!HRmnvj3Wv>vw~rNeJ^r~CaOpx0D_TK?k>Bj>DbLqY9{)`1+76tTm> z#Q>M-=cLoD$Z-lWuc;~VTp8J-?7M|2A5)13%l{_Mw$pC6GN!2O(~QS&=Q`L_e`F~R z7ZD~)A?O>EqFNM1P$``ZHyu8xZ2i8z+P~H?n!z3-QjStRR}p<2zCya{;NJ6Q~qU zREU9R=l}TCDP@>VpNAHV!$WL3uAI~XBxNOu5&gsht&gi5YnO+N{NTNS|LQy(Nw#7! ztP%^b)9c^ETuxnFYUOo^S~fRK+c(XxVWG*>B@k>94&%=LljaM~XuOXM+)?{=y>;c9 z1jIi{an>PgA7ll#m**HC*Dt!{o!FLhKgnZsNBu4hD`; zQFkb?+^zJr(|5P(2eJ){l1^blAtKxzphKM|?Q9Frm= zxAkYsh^Ps~Nba!69$ptLBX&YbgcH$14Cr+=o__?@wZJHt_oJ02R0781U15PbhSXO3=3KLBF9ZU1EMO%H3k_m^8Z()mGZi~C;RhEW+oM4|YFb#Jms>5fv?<866MWP?5 zL&Zz|swN7GQiL1RG?YdHghg_P-jWmd*Z6}@Z>%$yUQ3g#B(+iVNi_Mb+0Nd^l@_>( zrX&>c=t z9;<OFe%{hSnF1l~Zs-fGEOr8^yA zHx{QnLbiL3R>dVcvMt#`{Ah9sg&*v1&EsDEkuTt59nt^rRaGfL-9^bvf{DFwr3(jO z1Y>FWGhlU7@7Xm0+-t1OPvuvAN5Bw-x`LfRS|*w;j~}Ok+>_f zBWir?P>V{IS)`ey=nz>gLj4j>04aCWg%b|CK@tbAZ9Y6MUKsD3e~;^WDCi^t!SlFt zc~R9t52ON;yQh%z=BPf{`=44qx5lz9%R)}N1g!ijvv=6L+g|%fHQIdrmb*8nRJTtz*D3c|RLYb#kl(?Ng+laPWlY&r7{a+H{ zGSM6Rcq(-3`j})YM@-6D?EGTGw0X6DV^$8FL@gVlbnD?=t>>1`Ii7ys@^#Vc?S&XX z5H&v|;=|EfMTcTr43R-yLJvX!|JbMDNB}B5qJ>u$`-IW5=AiM5AiAlhL{b8-`GM_i zDA&Jd?6c<)atIESvwDkr;#3}9b&;BDhWs%Ge9ek9BBBH;#x<)(pwRVX7eN7SZ5SF8 zH*N!yJz%-eU_9IwHF3l;XN55xiar&XOfYSzPzK|2?G zxceP&hCGB{+7M!Pd0k-`2i(!KvoCNeo42p-=Dz(4*y51rDwr&t)#C-Yvh~Hs>tzC! zQ?5H7DwW|nGLL%MPg$86ZIBsX|FBnBBRbBX^Y8izbfk3Xzo64NWxJxSsH*)AX9ic+arA^bg6CH$ltV>_`fsQ~!ICV62v#fR=$Kn(^-v;?oWc)d%R93Mg(n84WQac> zfakrO5fzHP{ifyzi~404>*&HS<n%9efb3rgAMD4m6Ubj=}XHV-X@?&nh~3Hjn(Eb?i%?0 zxtiEw5+h?DcX3f*8tB3$8pnO#52M@)LskFgwDl6~bTrLs-|z}*@5eG+EMWR5i@nFM zknn4|FEMkOY}6nbljqOsD;7JP_O#dQ0fofNCE>Fnb`M;_v_IA(cfJ8}sUKtp%>dCx zEZ>&ZNOW^+B#8i;A400Yn)(qK&0SEu{6u!t-=7F~ake^lx(Z9&bxQJ*YrIH%Vql#R zxV0svsG%So$C(Ea--od3t20mIo@Xq%D$ZN-jZSY&0^YYd%6Igq?*n$;5nxF7%PrP> z_4~uSXwn}+6nR7>5O-kW0_65X^(3 z?0I9!#?Wxo01FYIK;ox`FPW$mR3elw(y5Ead%JSRH*n=%B{p{f0GKjGZ==ryXvD$4 zD}p^?SI-FFuO;3Pe-oG*wyzVy0QB;@Q`C1dXBU@1%J*xcXyA1IW~og1Xk$w6KoY6I z!p7H_5$z5$W!=3w5&H2{A5z%}${KdRN*}@?k!lnO?rFqAvO5 z14ztcE85gijU!Po-iAw3w;KgZrLucVo24EjY7os*pBe$>)VfDdg>#e&FYt+VES@;h zLc0%%DH20Y2c8qGpoZgkShGsbg@H9EE1kGiIKO=oM|yOi{b8BtW@v8n#r=Rx+*R>E^(W2my{SpiNLd$4cCQ+W zi~nqu)aV{uzPCl5T-OVF!JXx#DoiqwXBjWh$zE->^L7|O|VuIW) zrn)}g=pl07+I2A+;34MoDS1)Fo-W}vN!*h=ecLqc7U>C7B!-~Kh7Q3_FPr<7h5eP( zvGTflA$h;d?e6#NekacnZ5^=F1fq|D{Y`}h-#hegUGJb3z;5y+X#?XJk={Ig1-F7e zK2sE2R0-5>X3MOxXYfY^_ZZBGxVOA%u0(6N&r%i$s zUmDIJ?a$=?Pgex~FaPMjKf~u{%+d*yFaW)80H#bB@OEQ-d3X`fbGA;g3+5DBDAEO> zjUN$mhLRzuy18UoBi_L%;J{QUm4!Amp0ljdgmAtBXBR=kGyQ>v2PyL}oU!i}V(zP1M8$_0&tP*x z@4#Z;A%i6{Wv<=K4GzWcQwAc7wpjfT7c!-{f|&S0oDwWfk?qc*v^_h?k-~vkimxzm zY2MeUZBx`D!9BwB`-!vaJTn-}`Y{tQOoEitP2|UQfLfw!V1JNcArteY7SUt=f!qwG z!&oj>uD%CY>muvowTMTfF?PdkEvEVFiGNy`G$$V>Ga5SEd$GeA{uzZc_)UC1wp#+U zMIU1V0gKn7sn1fAVJ;T;S-G~~EL?NAxWQ_ugwiT=o^!IlU}<6Ro}bwu;lEEzY9BH8r`nKr|ja`FiacMB{x=TR0Wf`2*q+h0S6Io07c+#8U;9vNID6oU||Hxcxy!NFVs_{4SqfA>wv@y z1b-)m`W!21;pb;1^{P=^#QM{DrJ~7Zm5sex7g#`ysKy97NT)q~ZVk~3lS&+7OVy1{ zI=dilpk`0xjvsEwjQ7!=vOsb9!Q@%5Tu#7$kL|`Y;`Va`*u61AME-(Dnd3pc-R~)c zE^1VWOf?8f z7nlHnGl8sGKtT0v?oCzg(c<#Ag$m;reK2O>(LsnJ9Ck5`x!!};B5+mc&0wPcceaz| z0s*6tIWNFj*`cYCIHGYAZGUsNq8~4q5%|oS-QQ!=7Ad<#2v-2tRQ$cX-XE zl&LFd_h<$i%UoS315E#zVmCt(jXkoJeOML-Pc*ybasN>5Fmkj*$sPLIcR#lHBKf=) zGeti8-#lfu1oE!;t9Oh7e5VK?+jeR#sf3xi9!ie zFJCY$ynE_%k+S55-hi78MdHdIoJ`zWnZz2iE-WwBMoy3**b~*075QTPY%tx^#Jq^qUFFYMG&h z56J=}Z2O$h{Qm74Yfjaq2%ijwTk`bzKLkQ7s1#lTKp(G3^SWvCdIINAJl}GZtj^qg zORIr-Ba`VTNhborsElwNM-$eQwc)zaAIf!$b^JWaTRa@Y>`pOqM)=858o?={lJgO6 zbm@h7V^8Au>N9pJZF=ENwhSw!3kHCEB{P%M_i6`SG~nKW;WyCiS*fTGmpJlCIse1} zV5x!?Lw_8mC6Eq*mao_XsMeg!#iIY^RKL!Q5Pg5h~@bo{A1kM#*v! zwzz(JgH)lpiku~lrlFsPGwY(YRG~N%TV(YszyG4~*Wc*%oT4WnMPv&EOLA8P5*r;d z{44C?jRit>6${|#XFj2sxKwh|1aYIf+GY&Tk6UB7NHTWmX-yr44AfMxkgWo8&L}Xd zY7X5AF->+K3exYWpN*Adt9rCwbO;>e6APQ{^(73ax7|0)0sJFC)H&9el?#g&Y6_{P z%Qaw6S)#;Ra(qaGqUxR-OJJt0g*VwpgvHmcgwGY{#eXR%PhN2DEj;@YJr`WYd)_4S z@*f9>i%)wZSv~wvvH3BEv^fR!56(RRI)K= zRYOjTz3nK4O!`UtJMk5G+nI2hdQcc|D~&~=XiN>ezWqBuDA3amd*%{XRXDDha~LkQ z>ujT`6YTEU4>>yz2jncA(UqnTM&Mn7AfFqR``(D?#s8Mi>iPG5neqp`W37ynVc$E2 zTsCfRGLz@CpFN@AmHibMTOd+VLh#%0i;us_e`)u{lkkUIFXj%lFGJomAJxiKptjgt z#h)m_nHSABcyH~t-P_6j{UrgJ_upLmMobdknZ>OKueoJqN$kkH5tLz6lJL&B;1SD( zVk9MMLT?^`&QkcAp4h7DYPBDZaM-LCS`q@GPhCTRZtV4Y6d=b-)(L5=s#!m)`O1Fq zBi4M?tbLs(e4oIq=SL^tHY@v0;$*>QW2k%7PUxL7(YM+^e6+uJ6knovKxct@coANk z)ssxa+AG9(hv}OOS0-lj$CB5mphc4^$ipzfnQHe!N1ukSsofU$$z9EL63;5tlF(AW z4;&+Pdzr-;D@Y%Q)_?yucVJ)9L^|KvJ*FvEVglp8?o?;oSyFtsk2 z{aY}sR5Rl+yDAKC{2$fVyL=vD>=#!`vm%~SeEr0Ipl!UsT(-d>*?=ZjT#&xGS9qn2+4eqUt%cQ(w;iBs%=IkjqaO z(?tspw1KndW#?z{eZ3=U=`xZjhnOCruFhtt?H5QTSZmBk4MIvjT%L{)bUp15=SXz+ z7L4X?ZLOnR$m^M&7|vUKSKUop$Y}Hi4cC*&vqT$)?Vdxerm zCHPAAFTruyoyL)`#Lg0y+Kb;Yi{nvzEVj;a@~G39Lo@x6n(`B7S23-W@K7)ql22J9 zK{nm^$6_{(1}kBu=+py4-auyP6M8MW{*QmW_hS2l86~}Tt#lu2xQ6R7h=@p8ga3Je zk$~=&waxWDRlMUid7WS3T;r_WAkd^butyf|K8nZE);mf=3x6G~X`d>p~^eY!K0LE!x%jTh^0R*Sp&I8+C!JZVV z^^#WHxCrM;4#mIZwNd+P72EF|!d19fJzDXC)xjJEf06rP@*fO2*#y_ohC zzP{0*E+u&1^?Y8rS5>XSEBzPw5Gd?ET*jx!_siwcN{*~TLNPAL-RgHqC^yn8=a#=` zoYt*E_Cw+yx-Xta_RP6Q3Y6 zz(Fx679WVVK!JS~)DZdWa~h}ca(m3T(bXE}Mq-c}K8%vBj#VBBDagiyk2o{4z@ZC< zh|VQ1*pu|d|N7Y&awMCY#$cCu@m&mu7>9b45oWYE4Ki5Kx|M~S?x=-PXg~S$8 zUoM9}D$n4U9@#Q^8ZV6j$4#90m!~8Hj_a%cWays%+vLhO!Q#!Df14$*nc2?V?gN(z zSSj4x%7GeeGi}_^KA|{K7RB#4f#V02?YCIonu?g1w6ozL;HV{P$x8o-=DNhqr+~sf zujdSLlK`!cgJY=@y{fX{Svr{9E%!#1jdw&bR6mlNaBJe*d|YhbDJUOgHnZ?kCZVr zE)K&~g3L_F)4}A99}OF9Ghn8-0XM`#q8E@8+(ZkK$@x-;NFnULPM6@{)t@e#U|v+O zVnZ?_N`(>Qq0@VSm^=cb_dmypP_%Z>)e;cP9roHKxA^_Y$129!nwQ&70a;;f;)Z&+ z_wtGdex%xF1jjm6CHvFCuUv0x@z;~7hN(5dUsB_Re0#q8*~;(YOQEFK^$0-+L|O*X z5&u%AsKdD;nD%5!uZ+(pMwGVQ%yn<~$|CuT$r#R}0>f_C=G;^$u)erfO8jkUa-d!O z!?&N1tQ&reFqNI!^Q8Kn;ompFTU5JA@8yC(=cw3ZSS2i#r?>)Z- zJO$nR9b~f4X)(jyzo`cXX3C0=MBA>4h2;{`ltyGOA3X2pQ6aXq=VATKBItPhbgF3mobeG|7P=bDV*UCcS_do5ShcL;lNyJ zXc?7ac-2YG`h}N2+_D(OYWih0;m|!mRm%0w65F$uxC~GW{kPFi!o40Uc_?SkO|4Kq zff3l72P{1KjPQPFBveQR-W^F6s6pLxvbZFNM__s85Y0&QltildMDYVZ!8=T*mMu<< z{*Lu&Y{4cr{WMI|b` zE@*QhJ-0SWpEG72*1-xXGyWbznm zU?IaI$MRW`UR{TsRCsxuV_92wtX-#c z_Gun8l`tWTINI`J1WhyT7DOjpH1qoSTRo4f>SRPEKpmao!skU}aif!a?|8f3q4KvF zYB!O|iMHiBjLMKpf8p|fkK6&n|G7#qBCtPrw_zpy8VlI-9Y|73*Ob>QYKrkW2ni^7 zKQcp+e&&NkT#}##PN0nSmL<0sP!(%FGGY|4gH$=6C@e zh($Cl5?P$Wf3M-DU=3Y@X!>pSW4Gsikdz74L_rSXQey|0e++!b;!5SZwU7attNWm- zTNwu)Lbc4nQ)XFBm6Kx1z<7J6CFW!d6ktZgfd4niJUd}PE3cG9L0c&Mk3jK)gxWak z_P+g9;jUFW0Pb#ks)*jG-|W)ZV)iGmYi zxl&`QP$!%ttN~*|H;s+w=jx@&XSyQex7q){&1S_|X6^qs>O(iV)c<<*?HBY@x|iBT zjssI}Yvj@NwYC zI_=c+zrMM%0}Q0&N$d|^Pjmrt(=(c(QSmP@?&C2?pWJOK;EY8BBBP=Zc|{u{dF?XL zQZxB-#Qc7i3M{thvANV5>^!-~OjJl29t{8ase{H9Etv)|%j^rlX!X@ZvtD;z1nC!2 zIbL)iRCvIfTPro=(Bi}?!>WpLcS*hvH*=p;KhS(}H!Rm^`){V_kwRPTelW! zzt7VbyUs&}fY6hDyK?{J$;0yZtf!;}5?zy*Ns(K>uvh=Eb$^z!Ux2>m%i8+48Bcf| zzT`TLNI4`tSg}RMlJQ1mhmbmx``f|+d6Ea%d6uzF>f+0s|Vd{Hp! zNYIN>o7XSmoMQ*%mAEHWu_i@;?=^Ziysm)434a!BWvC8|dT1eX2y|e%czDoD!7PCA zNG3dFFv5kUzZ^5%!7G7oXn=`QUZ8;Wqb#C>=a&XQ#^s|VgmunXR?|8pOQo{v6bzkc zkbeeFLW7@DT^bQ06-re_`7|quh0wlJsA*myMS1H#@&tU%;ra%?8gC#J>FVH&ZRI;; zRtSR8ODb9G1P+IoX`qcJxfq|qh5ymjp$AN@S1*HZ^Qx-IVjnu%S9kna)E!_ph=~l_1IZ#FqeY2lE=M`aBWkp5j)}pDUbz`2TZm)pn~#1 zVj*WVEMN;yWNRU<*=zn57N4+MNUgK{?4bP$-Hl#w{N1zF~cKd)DQd4lFJNoi1s`w~A2ZR25q-;Z9 zIBsEyR^DwwirUjf#cQbc6K3X{<4X4xYUx|=TXC>u;*5g58`H$N%_T&aFo_mb(nl1i zQ|XOzYucpTdJP691)2c}x2h4BNv&R3JQ!}` zsksNdo+=VCda1n-E~bzmD2HNCM!Zsp&$-9GJH&KC0IE=B6OtxHIYXR}e_SP;q-V`A1yEtC1!SjeQTJ3| zym!0ag`M#Tl(C_*(QW*@kH{s4e<0vq@nQ^wU9U{cCns z%726(gy~*VjYEZw;<>jE5n4z76KUjC^Q~jfsv9)v-hRj`@=_@e`h}sRqCbNyZCUCw zR5+_?X{5njl*r5nRXih(w?spuP_O2=47=!p{vAZ~uA=S&@zO+Vl|_<8wMpyjF>%L? z!?gajsgUlP(jY_{lZyZpFMsU<+vwUoH$9dj))d=v<&5&G?1T~YL%-JHdu!%Z9^>VQ zXL3#$^r4M{Wtm>~hf*I81OCHndZzW|4UfdKZ^Nu-PRyE`-=y0mrWdKeZ%+Req$Lp~ z8Z|uW`qLpOzRBxgSXp&#Pr=dYxD$ijz~*Y{KM&*|?AD2TkjC)88IMZXb~%PIrF z-tOI)0H6W^o>hdCNjAYXXONQ7tGypVjEkgSjh&o5TmnlfrcpQowZ@;oGCzgwQSB${ zFsN~*9pvKbl2=+y^LEWEInmIg>m9#vC!qxzCBrzl(qy}7XtkrdOyetxyVowmP>&Zg z1DskrTf}`vNrJHW;A}MQ827bkzhLb_uG&28g4P`O6l(Kb&OTU2XJ=;zcfp`5EKp5q z^C5WlM_dJs=pqH0@p@F|XOLCdOS2dY%m$69fd}?49Pixk^x$7k=Z68$k zAs;h85lXTYy|Udeh|*psc=9vc_BisQf@?Z7ed{aSzmD(y!X}DHYj~4cKaKTs@(t#} z45PC;9`KH6x1B+5XlO!abktnBNuSwY=5jG)=B4zHN36`fvU(#w7oY zL6DM56~tdi@f#Nl(ov&VO$vmZZ0)#)3>L^5rlJJ$TP!xUw0HJj0oJ>K9<$nk@9i>+ zG0u3GsTTo#W4RmKfQIADPryDVmYqf(kqB;0HUtJMm`w23qts1Da%lMj$@8prGoX7g z3xVl@XpZ_8Vc4Px4*mDj!s&e+UYYXXHVeu2T%4Xo2IVp-2yVzG_C^#NNia#(Im0@h zEFk^kY=Ohg?OF;9PCh~B8qOmeO=v42vK#dFqI<$^quS9`LEL(-Tj%-I-mhA0W2Erh zWnrnBrU2}R#!Q-@pdVBB0Wie{pAvTFHjr;=%DJQA7sd!8h3tg$jaX}pssSAW)K+#CAb|*n z&QSzZd2@Jq`um4byfZFsgQr``!eG-0^oi{`V=5U(qsS!Q9`V|`N)Pna`cXiaQgvOH z5h&BdYI|tZRPu<0ED;5XU`UaoSTun&>S4m+|007Bs|ex`>D$D&oXKYHX}jLvIJ`W4 z!f^1-=(w~c;$eb_i2@@SypDYQ4lA=g3$d$8CUp}7KL}A#ZotIDs*ONIDQSdy-QpeJ zw7PPKj^p@^rW6cFWCL78Frhb)mq2nR`uLQa)#68qV!b#||J0V9e{B-}lOyRqOS8nH zX}PDsj!wVg)_?g%yIDKjwV?Oy~DZ}T- zAR9h!K*{P-;BN|YpwJhWA7TEIDb~}Gcf+>6!*v)y9#gP(p0s_;j4GtZLrK;W2#PpA zKc8+oBSRRjl(Mot6co79hqc(5KxZm1J_#v`*ku?g#gaiL63ZC;xqKhk1f6Ci_=&NC zn<0vUQ5UxxTvC-_Ij{NWgaioal1s_A_i?x&4qj9)9CqF7yUyA${jxWFf{Qk9qk4qQ zNUs4@HC%*qF`?JVvlJ_e62M;4B;=wgUY#XZ&$y!5Iy?cv z0ny1v1WLfV`Z1ZlIHB$P0H8O#Ic*7|)dJeFD>^kAP5%KRziGUUNb*13dU& z-?Hoo@yY2}oSJ{G1E||#ZiuDGT;ce}F41xaV?xaNb)#zS&hCG*0~=J{3c}ZNElf~A z8%{sXhZ{L%*70Nb%xl25tq(ZGf?NKt(TByf#p+QdKV1bGxV4B3veXl7nW zU33cb)t>B=Fe>>0u$D@pwFeCOJImA=F#UzthUqyZrfSaoCb=c`|I|;PHvbb=w|1-+ z&@d-;YdBf87nPmy$nBmU;${rN@oJ@!^-HjEb_|EXGR7ynlr}!C6UhJ2-_zTr^o#$U zrddDU|26#s3~zReAFY4efsgm^Re+C^*u~wn=bwcQ*ER9QIe(frhs>|b2?s8YA8)-Z z2vWr+39nX!OJqdt%lt%dmAc9hS-vVTwX(8kTb?nFv&X-V3w85di7;HUY0wRnOs{T^ z%nzv`0C>N1f2L16*MFd$hJ+W$Y<{oyTZPY3<7I?X`>oQCV=o>N zk8y!m`zCM>-zR(K->2C z{bf3!Kj7ih3m*{1X5#v)1n1vB&(=*U(3jvA;T)E67MQNu*hLs5d#v4PE=JMHvpQ6+^MhRVT^G@U@p40f)%7-WF zj;DAR(_JBop#@LhFu+pcNd>qg!*jFppmx$C?`?HT1=S|6>Z(0sf+E3ooFtP-PzoSo z%go1IPe2xcq5%lSnSv%X@tHP`aTgDTbw~lLka(kiW7q|*fEn|WzNN!a`_SNE_^&(z zGjf=^w~r6HokHS1C7CHH66&W865ty|;)|oWIVf9Afe{cFZD(UkkfRh9Z#y1DY>RQV zEO#=WE_=;DdbVabS*V#G+MYr!X8~C#79hxWc<&{@Y?DM-`-?hZhF%rL;8XgNvoPh+I0!qFyCx$u$`IQ`%zxMMW(^xvu z7W#$eoY8s=Qh~)nM-tZY=%6FuZe}51`f42a#%s@luI^(p1Do71aQT^&IfQCK`ioAT zh~yASk(iwC5dm?d*WEc2K-P`fO&WNA2&Utek+bR8TlP?x8bSyHE zuR%myxa4)?7;!BGa2_}8Vzog(bdvj|$eas>KB2G_Tks%71wEY^Uf+H)&K(x-cnVhi zvW&yx6Bv+k83o6pbwvn0IIur*OZ3ip;p9B|H(RULk!F8ve}n)!=ZZgsb2SCbZ>|lL zSNm@zHbnIzku+a0&UwE4w+H$CzdeZGW#}dx`{LZVsBsDsa24cWE?kqB?`*oPWTd0Z z!@I7m>F?47XtyvU)*z(I!(fbnEQ~WnSf}}jRHSD$4?w0@)77MHjHO<57gMeT2tOQ+ zfG4%O`82++q_Pt5wgO=?eF+lJk*llk&AriBAV*(&><%gC4mFbQi(kK{j4#IDv=>;m ze`9?LCE&UAECY>69IwQhRd}BpC&ZjfGvIIW`vvn8;Pn-~ z1~m1(7s5VxLM+u8JMvo`3`JfY;@?KQ5O8xpTk@2e4?lc8Cp-~-6^&lh_UK{TZTbyw zb^62cF3r3M!)k8AF`l04r=rII>hj+YD`)8*e-fuw#l)K+YD6@-lykyo5%3y{wv&LBFbc&Rd*1X4#WopQ5BGxt$HC z2pPm;PUhs-Ht_DFXm3o}(g?&U;08D1370OByJVyS(;$Y~Nmmz8AD?r`V6f=ZVOkKi zUk6^-4Kw1-a%0c@0%&oCFpfbs`XsVY1&*P>%GdRVoSIzZ(W}bcZ~q^@$&HH)=mdKQ z2T|`$2I`MAb%?VD3DhvOL9&4#kT>QL$>d7u>l1nPhd3Z`Vg@Cpizt@RS6X^H>|h*g zDifX5YF<`9GmgS&Clk{r-_Y1Q$TdNNGOO)H zU-=GapGrE`ItxwLsGl4MzD60UQr%1kLZkGhjY>K&jNc9IG#0bgBm&k09aKzC;m)$T z`+<61H~&Z;`Vm!)b`R&RfHj%s^2$*qbR9Ai%}N|-4!~%UBf%*C*%rcjRs1GhKuZgd zAK#6{ASo%g%=)CF+A)4XiWZg8<@0Jc6tMnF-p{?|wKjf%QEm#_*j>11KqN}r~Wk_8jN0Tq)R=;_Q zT=$rEh5=r)0uG8+HsFskh#Ol<$dwVhRi0+^S%IFee!E0f*5Zd6Wh1f%RiWd-(HGp~ zv$NTK&jwxhG7H3AjZ7$^L>6%|lQ^YG{DmjZ10COQfXYJqy^$4om{!USy@=0?21b+p zr^y?4AxFYg7DQq-W%p)v}vZ^8#fM!W~0u$2}y9Mj3<4cEXk;C-qV zqC0y8yC0}ZokKkd+iQU=IeDK{DFa%o4R0bQzBpJKrXzJZz*otWkk_3XX>D!o5yA$@ zSP|iUKYtQ4y^8IH#NE#4Jri5Nwsy`5QnLRAqX#1GLTcgzAf04{9=2aag_lpYUHDvJnpQyfY- zi8rC=gRBFJeg8;Hgd|!c3*bDe3=I=NJVTNN$x{zU{301WL>dBSnJaj?-KFU4ST_NS z<}4UUk}VpxBGAyAZn?&v<$Qkhy?kCv`%8uK6Nm4Z@v48gXydTlwcBqib_bbjp#Q@6 z@rcWDN65GOM?lx8vl7dA7K`-{gz?)->q^0=2r{vDV1gZSqUe~ z=5g)S{8>7F2Z2sa@19XlcTP4<`O>avpvm+PS;@sn@R%CzMrL+YXu)qB3 zaAu6cBC<35aRZjSW>7j2wCi*w(v=&Ul`P^_wDy{wh^k%0X4Hx4Uur1x9A29^oo#uP6-(~ibGp(p@AQ$1#l8FW$kK!i} z&YI>_5Q+-k0-zua|Ilb$s5fo$AVgy{aSidj+y=X(Is}0A&VbY>M$Tt4RFk^CDdzM~ zSA4TOl&+Yb%hwq*TiFA=;YddosBs8IMB(w=!^QBwRItf{K(p1!%n>3<<4vKT@<_HG z`t9+s9wM+#a($yfiX>)82p!S~eQV4sGd*#P81`YS>v_RXn>#0~p4RVq=gF0AngF-x z(>8ZwJDN${r>yYm8i(Pt&*WC|A&S`6HJKJZfaeJ}f}y&3XTqytbL=zBk*5v+;R$yh zGTS@GYW|?J6gh6axzlv$YCe)?x=ZhC2BzG=RZ~GViqJ%i_GE8a{0=I`CcPcCwJS7>C&s*=xI)P1 zxOwBWVRrD~9sdz90e%x4ImiC6>?Bhx`${n$gB>v3Wj8Eo>ifj;xbd#)ZPn#Oq!iI0 z^UVx_%?oWRWqH}cx%=(nI*%;W`d*g=K0PDUKm@XJDl7Yd@RhiBlQykWH}Hk1yugix zcuE72Ruk&ztC$8^J^ekhuQoMNSdG6D{Z_zUbW7)Sb=?Yea4*q(8YmjY!1kMQ0&$e% z8}wL)=0!3{vLq9&g(yP)pL-}n;(j6PK>X=NM^cVn2_VNL=zh3Ib#$x+{MIcu-?{br zI|2dL59ZNN)apr~8x-mE_KWH7>ffFLsIx;Ref~ZJ+cR3~@ABsmq85aTPyH!`zkwM* z`n*!*N29~r2VP??d4IlLcw|M0S3T{h4!+44R@UvVOgdjARskKeZnzdwxR~0cpPbHHWC(aJi}dfWz`gA@H=?l#qLh{#Mnt zQS^X;O$Ec4GArno>okn`s8rq=4}ZKacPz%^KqjNDfrCA~Hr|)G8w%V%_r&ujDZ1 zmFWw|kc7$VBamH3;Qv2OIM4(mGM{h^Q--&$kjzg!G7@yMX8Nc@^C+v$rrcL&bjaRec5YVJg(Bff(_k(#)@kB0MowqKnZ?!`Xu*;|UwD*b^fb~?Htl>lIqk%e4d zNyZ7nIDl{L!9UK&%0xh`MZG2alC-Ob2QQae`A&78RxAZj0$#I=`rM;@?D7gf8t0G2 z!tgJC^HH0ga5VWqj9Cz99yIH&2@KQA(i>8a0~YI^C8i-+uZMpR5=`fQ*p1m21ccMF zA4npjld+F=WrMBde%R2TFzGYdXY!y~Y8AgfT^Z-$k6XILR^P^z8`inTLs&!tRxnkn zA)?x+gxd?N51geY(z?39h({Aq&0Ih_^}e1XWU@HiKAd!}$Lynt0E{gRfV-b~#5`?F zdT6J(<>54$irL*$GO%J2Fq~H>1~T%!^Zo#|iv;fT+{mb1OE93wHz=qcbCX#f{?cdJ zEKS#(-p`#6he;<}v9JtSl66{_;r4AQXS~@iiNdybVWfCVjjKVf&p`o5k%K09$0^Jt zHTU#u^njJ|nOD!Xe@w@N58!~StgZh5OiYNONzR&}VHwPYPF77KVqo~X&n#hQX~qoS z%^{^fFjoo}z;aIUtX>zVPOwe@P!d$d;6n~Iz_vl@oo8OFyVIIx!Bmtd&Bp7v$ZX^s z&jTgYO>J^IJmmvPx&Ssg3<(cuq151Y@t;k$aVoqiy^YukY)ZrxZPf2t>7{!h-e{ck zqakZTQ%@5eft9RsxLmYemY(B>2qO>Kc!JEHcC(fKVFC5e0-zSWCUDhmK%^~Y$6|ixb!fUU1b+@!RY(~Nb%E#28mmg_=+NbSl zRxf>%Q8sz}^xBi}@uv1&=_qohZ>pUs{T@%OniBqnOmoM5J=f(OQA1;h8;S^sQ6(&z zAmj1>MTZJUPv~*p+TFjp`Q_h_`Tqks2A1l?!f6`)jnzo1YmQ0bnaHZ-PV?7(X(g~fz_fFd#O<|dV(g{UWPQZ?7L;)P_VihqUU9GGP%@#Tp z8s;ckB=?iZcSy(xtuqDYaHn}cU4W2Y&QqN*=M0qBg~08lXG&D376LMT8(%%DLI^^C zw-|0oR#Z8!V2a$ged_|U9a2GOp?fAM>5-6<^AgW;L7<~;B&+@Q2~a(As}cS}K72qI zl%lZAD5}dM_6`EjpRfjxQVxBIenjPB`&6hSpN`gh)S!I}Sh)0vcBl41J7z?GyV;X3 z0UqTgUemnH!HFA11mQ;gD~JIzYN`bN!Oz?GiiyQruO@IWl(ABW1{n z-H~N$JF)UQyA#@f*pZIR;*r#~XzkSBy0;DcStzRum{@v$^;gPbBLaY8hgE5txb_N7 zETujXbipJJX0B-O*&$%F7D6kCm0k2&X;B!8O4Az{FFEz&=HNbe$_85_8tEUT6CJGD z-v-BgqPeFA-qfZDWQf8-6KT`H=jQ(eCVJzjwOsF7+w`|he+;A?u|NJh;yQcy)HMXe zn*%R&q6G<$7hM>>ybiXdIN?U8+h#1Yooy~fwH{!I@QC}=^^6p7du{i)FX0~{@wolo zP@+vbboi`pc;-d}DdAGQ@6`$!VWCtLCbF9glo0z}Z1r9$GsF3rp^T@_=mWmy9@>$6 z*j2l1rX3O4ch{njMG_-*u!CiV=jdDiw|;Ew1Y+pq4AX;(+(`zY@1P?vWkm(Z2ThIN;avenZFnUZL+xE_ElC@4*a|#CJ%ZFm$beU!mV30o`nDi z8MVJ09W8nM{4v04QZP_!`NU({!SghTQDawVd&a{_ya#JGsUG;?-&ZOqy!djOCiVKs zn%B$Hh^glFsc39fSeeayb`Htrt{Z$p>{3>CHIl~f(VUs(D+pw6>j+!ci6A4qmZ5P1 zBj-8ORrD)5((Z!_Z_rCH6sON)8~B+XaPtJoPK%tX_fYwgy+8CA1kowiF!#KbV0mJ{ z4Kx88*9^|HsOJ+2vo|G1;3n%%HN;wnW3-NLKR*M_FQUvekLfH&y?z7sXjDoL(!?S! zh3x=7%U{O2kDkaxJw7I!O{Uza8Z%gpdJc41Et!*}wN*sY=5fv{7w=GpdQDt%M=;2~ z5g$OLAa(N@*xcokt3hUs_zE7fIc@X+Nmj@j_3v-Av=0vO3g8T6h#$sv5IMcGMczlc z_eVj3eR&l~?U*>#U5K*|VCz5TDqKU(=>jd$-Aax9YE??m;2kGuCEde`*N8?-?|h?y zq^c?Hmimb0U~#H}HU1Mx&Jt+!090wjk!Ss)Qn5@8g27|I_H2qa5l(g1L{H4f(U4$7w z(5?^N`tnEl+dy4m7bzb#e&~z20E3OD)NUxWHxvxBGvizlO^86o!HXKO4Z<5#C}LG6 zKQv z-(WRNAUZa~hF0|GV|V3CPO~>sN^P+sLQ+f`gUNV;0eRVm$e#%4N3uN{{|j$URWOYW zyxY#k_xHZr8!RjC!KU|z5)=Ajztr2SSGddrX-nd#MzQb#pXp_*G2D zMV5-=AvX|<6G+_>w$(-oCGBrbxQ5^qUYpMq$18U8hrXB_oG&& zm2u3CEP-=v$8_F!cCQ>OMs&W;pa2f&-!@FiS#-1_a$}&*xkCtM_(*XxD!hbmP;M2h zEkC5OHekOF1f;-JEgcuhn4^mYyTIydxiiPs|H7~@sZE}9%PLjqRuRs z+J(F&c(g`FO;8c0jh6)N(8=z>!U1o^{&X&&CEf>=z2OD&KBByKASoF`?76$=s1)nC zAydt5KxlmX2RQf!FDMKhN%T2ibC3|9za|vMOg^&yiioH&D;Y8b5m5*Xj##8NNXoz- zqs4?&Wmf+sy2^`+O%2Xn*NnF@U?*xD`mAf(JfWE$n)1QuL*a<>Vsy&{y{<0i00ND^ z;9pUTO6KAFHlhiY-r+*ldTSE>TD`i(EiWPZ(8$6Orn-?XeIhq;g7Lo);Z$9@V)Zmv z|G-WPB(@rgh9V&7R1)#wDOW99A@n!_eUGdWW}&G?4Yi3SY|InGT+-qF(U@x8zPXcng^r%GOT5h(N+XM&NOux#~oacUH&NTnqKAu-YmcHd_e z-miovI?2(m=rB+uLR@{{N!EcnN4^h&c;X17J3;yoD*dktjfq2+Z&KMpi z^^v2aW8I43ski!k&eu3obZaw>G$vkUvI5%750<4Y<$QBwHT)oYU{dt?hh3Wy3)rH2S_T?KsOQ0k zl)6TA?>p)^8bpn?9F#(+U}*(M zLznA*=LFjQ69TgHcQFXq?+kJB&%XY(U@p|sESr~b?F;(^2vKr_Y<7UZ&8dr{19y}I6BKP%(^SsORlbO6$ zt;E-uHI8TRYkxNPUz?pr5nM-i0U)dRB_;VYw}r+{Y7TfF@6zDP2c{GzK-RrYSglAo z=a%orc@DoLnBTvR#ZuFYx9S16fav9dGW`gP8BKPd+l?x`OU{ws@eRiZ;tXW0)YJWg2%~4t-&Q*YZz0ns28p67XjwI-N2S6F{%sQ)vE^C zVOr;;-`rWQ;O(8zAp__5=GmD=z_(ksVejPW83RHFreXF_E&6@R=;XJVy(wRoz;X0t zdZl>^8($Rin~)kNB-!I(-b2QfJPSrw6}8yrb2vPGe@NtXdo0nIzjJ4XO=8bvloj_k@`icfCVi)jL5gke- zU7)ijzfVgQqQM9>;3lmto*(I-=Rx{*N10-rF$6J#1i$KV!KT{Q4oS+_VknDMc>meX zw#-%ND&|mR(VqFL8S|>#aW|8su>!ph%1*Z+G;mf74IxVej|(a7xA5czn8V{Dozc-$;Xxf5-Ha zU)}odmuJrOd5OHA)bM}lZ@O#z9)m<7dNeJOcsV2AVB%GZoRe+ZpIdw@#r|n@3aBQd z^Ux34slcZXbwYymNH*q;VKsIfSxC&uTL+UzB9EV5F0DG-PG(f`VX&Qh%aE25(eXWb z0AKfg)u*$=Cn7M=|6r@L|GBk)k9k2CvxX>IbQoHASn+|CF!_~qz5)>dOv)z;E}|QW zG7V~|EbfXSTNh-yXMzZEdBc-@ zB8YpSn}bgGCc;Z6h23q6~JODAliUttau$>@`PF2_1#_qO{W)dq#TQ zxgu~btoS^VG4mjVw%pLz0oj1K%6#-wm z%Q&-c$VB&2`@Qz>lIl-??mwwm-?X)*6-H-|iN@yXH?d7GP&a8s>9bQZ*_`#9HnA=W zn*y0pE9VwfUIa;boxx(-WLm|wG~9}y=*JH>sK1ELVXh4VJF*mZh&9GI8YJZE-DsyZe*`i6~;aqC7utUI0jR}^AL%!W2cN&rC=!V{HxHT zDy;68KWOT;c6-dUu?#yz+>|0s5uBw3VYs-uCeE%udgrrW>3osWWHmHg0Mx2`VL<}b z>%2os<`P)S^%1j@ngH4r7>SS{xyM~KNGDN*4q(+H_VjizjIEh9b2$0A2VJ>DiLz__ zA%;LqPk|HKsUBb)R&*E=-A$l%SbGI%#Ra5UU~j3K=cr~cmt%gl{ zj^2F(Sm7vWllLQ6E@1|jjZu!yk*7}neL}d5W6p%IXns4S^*s#|rmU=DfyEhToeHR~ zo$TONlq>GAObiFRY~xvKR0GuPhXFv{-T0`^%K#S+2UIZq&w*Q_If>N7a=>@9gj&w7!6KNY4Z2 zuNm(K7-HlTPkc%uL(+gv4ztPzA~|*!Ej<_Ca%`sdxd`ZkG8EP&uVlBlfr|{py*zOn zf8SKLQHwgcrpCt<_a`sY&#nX!bH`3N0h{Okq-6d@(6e|fauN>NX18O%<36DpKlZm&EW$)*kkLKW;d9r{Ga@ z+7*-K|M=y^mn(tvK8W_~cQ_x6bc;fB47VyPFI=0Va1t8Uyj4)bg%guOHQz zkUgJO-xhEv>EFllpPEQ(f(<`9*_T~?loU@vF9-_uNlKKU?+Qzag|N!j`>AT z|BaqLM>?zW;uKkh^G&WAEEel6n)ON0a?xwzT(LGuZDIlf+INAjxa&>>{@o>uX4tGu z<>^)=)4AfkG5gbJ|G9m4?p#HEK8FBYD0)6gx5khhvasKUee*}JMBBOsKEnXb98kvg z6;>GQg#N?=P#flGg7579n-QK~rE{HL{vnTPhiVh+FA$eH8!rk>gMx?szxO+K6GpON zHblox%d`{Inx3biFxoRWchgVKLtX*+0wN2XIBPFa|alN7HI zrq(M|)QT6pz--Zm>K>QoaDEa$i5_sw#NJ3uvMUzRP>{KbxEEa}&x9n}qKVeG?3HDc zgMzrB!QZGPs>pU6xP8IoNGsYMwILVOPzr2@{V{NmD2p?0>PTw&fW304R3syzb{1Lr zi6c7`H-EEX0${HCDFhv3;tqVIo z0$Efxva^jM2a%>>wFXDZ@1>*LUiN?lm0PKX*;IBDue=fqNLc|`mxu^L&K zvu?+Q98T`ua+xJS0?HErQ7sZ{soq6~nTGTnHHyk>ruLc5_O%T(eFb73CF~BQBe$a) z0`aJa(;f`JvC#>}5dz!haCGbzY|9ijQF+*2xolBOZR8ej_-<|zxdA6@G)U3VHqrs5V2lWmF<%G=7q@VPvzvL_SIQ<+fG=X9h8I#0 z>`1VR2TBIW;^%k1WacVa;rI^^RPheO_KjsveQ$N%ezkeyE6SCGd;$?HK1XnvYw;B! z(~uA@ZgN$dp9y&?75-}$@bZOR9q!vVa40@CW#s}*aY&oGJo5;6xVBT@m!OMHCOE0VCvV zJ$ccQ364{}L0@^~Pg~?{-P^;TBFER9@kSBpTmgNy%{}v0>iNC&?lr_~5Umyqa6ZvC z+YomLjD!i$cRR6Unere+?BWBqo=+QH7O8XILI92KpHufLpan05Nm7J#(bR3iod9ar z(x(mM03qY#&m?e4G`jarxf9MXOARiJD6%sAAuSz0N;LA0q{LN@ao7S^_`!b}MjYE~ z0~ifRf7_9C;z9g5=!UeHFq>Bve6pa=g+xa!toPO1zCC+LoyfG@h zbSG~NeOVVPJ@+;8PytJ^2D>eNj5Zd6ckX-=yGzmpZI)!Vtj-X&Z1UhK(x*jJYajLN z8ITu{dkL&(H1&w9>o9%P>AyCqr6L42Gq&?AN>gmGvaIN#WhDOt{QQ2K3@GX$hLH}b zbNX*cz0UVAb0q@8vyT9~twUDmijiT2z8gVM1I3%E85m3nM9b$bIq{vqiyh{ z<2@zrd&&f#SU)^FjD9;jpH>^$BnyB5QY9CXeWWZJaE~G=nBLm9wl&U`yPdu17d9F0 ziIxpk-HwAfb@*jZ)Xpieoa>0)ewE4r4A5vNj{Z`AKY7wQFv9{Ui9|EA%DRI#Op5Nk|anbCY z3W$FlNpes)=)ihk4wutRrIG=UXUj=QLy2+v^v@(ktfMrxn*ePxr&8l0rGksvPHgal z^4lLN7b7tQf`aM*9a75rN@3r*&7dJ(v&k4X-v-syb2@)R>>XcO2~?Os1DwzzM(>p{ z!TWGRsaOWx4$+6ibk8B+WF?p!EG+1b3o-wtGJF8l%Q5PcH)2PNM&Pq$nSi&<@(CR{zq+9=$AUcL zOR(+D&mAv5vzf@~*Y-g^Tg$0xiU+(^R2s5zSpNR|Jz&zl6rFiBtKmfLU--7~Y{v8e zZ9_iqk6y7s+c0S{F;2YhWV7Mv*Zdt`#AVS*$a+qk-%b(d4-OjJynCG6Rm0=y+gTrxlP!P77)I#7tRF`!#Vk@3iCcs5V8XxMeis z;^fo+m5VDJ;fY74M`ETkKj^^UK-G8EOL%P`oSy!!wY^;ybW+{U?7At0jWGf$#JAEx z9+S?*hVF9^Y})8Bf0yw|HGt!z*tQtlO-wJt z70MdnBFR@meZs(;+h1Ou$Kvx37MK!ea{>k(^@}u?^86TmY*3Eu(hUkeM7gdat%8EJz zh&~r!YOFqu0OCGhP6F<^Zl^c>VgS?Xo}S5Zg3v!W4-RJ~eg8YI+})f1lvf-V|CFX))WZr<5mMg;78?SQz9nWV-bZ~#F%H}OSSj(Q_#`g65=CgT{iC6+pbk-FWR)q_rjkR82%>xz zh@TkyBNsoxo05}5=-_?4Zjw-03ltS6j^loj{+~1xzhqe#D0tb$c77v7uE)ZbjF5Ec zJ#hq}nBSLa62L>$7P?YF=gJRH{%PTuNiGUe5H_zV`PaPG2JiT@04tSR>Gl>fy?#RW zRKGCq)wRR4E4JoeH@?d!1lh4#V!0q^ml4-wO@37dlwfi_ZL>u%UqS+q&RtcB<*lZ= zz(E=x6Lr6PG=CVr~+{1kc4~aN1?Rr{+2PBX_)NA`s=e)~^Q!SzH659Vpq{U3f`?f?U zRI}O$_D!(73U#c#_hcRS#s@cfSI87B|K9}(^J1cMy-iS+# zbD?Bw@etr~S&nPuPElVfRYf+fOzYt&KCuLT_N;6_7+M*Erzf9n?bQEaZmq z!Irbf0IS5Ne2|aamr3n?>hYUo>emPP=e?z64>Y)JjLR;6Uv`p5t&HDP5bd-55G*tD zt(-knVK1W%LcyX|Dc`5aX}O&-0ox}&*{ZUrm=mgXODwacqnG9Rr*BSWeMTWxOMkAL zHJ(u_BcN%E&`M#K(pw_;zH__+?^sA-pa^|9KIFHm;xhk1X- zMO9olVZ@>VTH67mQ_hYEx$`o-Zgu10Ui9crVQ0a( ztvvH*=gQViw@*9}XCU?EJs4Ffn25M~(z^4F9WX-s`8iA}r>lWA5fm8R}d$8l>n?ZzB<7yif|`2xGf=+}_ZevEV07!iiEFa#kF2tGA0T^HN!* zWJ4wc+sm}+Mj5%sXL_R__*P;>8mH_Gw!{ape54WjeF6l*Oy?hFMI3WQ-` zVZ`k95g<+1|0JN#k+$d5j5u$th>lbWE@QKEe8`2i-+UNS3~MpFx6dWT$ep#h4Fr(* zK%AbA1*QlLpqK%9L!UK^IM@Myj?E?6hc4f!@9+&5@g>>X=?2Q-U3{Q^R*o{As8>Kf zaNs~?@V$*kYyZ3y4HJrjWmfP7WeA1}+aDL{UC0!CAx>`7iF%hC>l0g0l69*R zquyman9aBIkE~`xZ4RJ?8{Vq8xQ&bhsU6WSoyxz`G3*!D|Ni{w(m+-ivVA6}K=DjG zw*TShi-1D6f;dEa`eR;l-u=_&uBC*ZDvcnAI2Z-%BJkY>w$t?mjKZ6ZSzTrCEu+#O z+aE($jo%W9nQ&EO`hzz54>AoGn9g;2S22w?8Imwi7zkCgM=x@Uw;AsCn$+?Kl!dU7 zdCfF*nG6(H{F8dSvJ11Cu66eF3*#6!W&r|;>NlyJyTwewQHk{>yAjc@UeGN3Z%iX+F9-Hn@kuX)PKo@V_oQhkR?)ko%IX4S{?MrkcJC1}w9 z&I+9E;|-4tGlt%7qJPXKnZxss>AM)v_H$B_L*{}~n^jWxkyUQ)?#7(zpA8QO?D}}i z?T5ep86mBhjVU?1W|OLcBN^pBrl8uX_eAS{(?m;{Gs!TESS1%k)Ad09QLGzk^oMn@ zAQi(14aJT}m7q90^j`|oV8~aFrh)<=dvajENb>#r4Pa4AFEf3jR5;P((%2JjfP^*U zc08%EzAC3=0rc~FSj>uy=M4A>QTVT+XJ9GLajfh~^6VHKKB@4aCH73>MXiF3lNKS$ zYgZI=N_p!V7|nYkj3BnFMc$vJ8wC^E)g=6LvUHkQa%rZ`)lPoR0L3KvqNm2sq&aEhx( zG5*ZE<8+$su}!<`D|6>eFwW3w)#?RO$ph5s@o{BIHlPgw`cq)Ao8J_qhB zK6F1*1EDD|6z#KxwMr^7^2mLzaTy#8W_|z)9IcowE~tS+GY$2B7);{|c>*?Pg#;9D zG}ToAs)hAOYUuc}KY{lm%k#oL- zOQoz`MuIw49e7kphIf+=ztV0Qnqp&Bn4m>=Z~e%dU-%(XqKLj7lT(UGjc8#c$wUqe zM*_U=2msI`Q^u_M*>1wO)9cCitRN?+1`_c=1lUEV>ac1Sd9e)|N?0vi;kP*p(jrPc zCJWn-D5vxr-uPxUAR`Evw$!bjoc)=6|M>5wI~{QTQ6~VgT@b@6g7kOqfCF4M(cf`B zwD!cfM*c_n+3`Ku-_JpYtVQj$^156aKVKpAJUu-b##A-YD~VfUU#$n$TE*F+*t$%a z9Qa&5NixiKtl03!GR((Gy-lmEOd@r&jGZ6w7pbRGD6yFJq}u12y!ru0heA6@=n}Im z8)5Zuo5}lmj<95v_yNZAPHlaPnH!SbEd($E`65no%eXyW31P7?AJBj%GB=;!6j3+@@49KnFdtEDcu|v|mO$t$I>+({ZXX<;iL^d(bmOvJ_ z>{SlJ^Y&Q0(+NO~I{F>L&-)yHyDm?17$ASQCZOcja+}_|s*Urs$LaqM_Kb24cN$Y4 z*=JkbmzFyqJdeuTSG!v{(iV9x&bfX%Js0=?h6Q>Z-pFNchWk9Pe%5ijgQPeh1aD=1 zji5nplg7Y~<$JU4i4a)okO9TYcfh^9zax&OAD&4#)q?*HO@X+)YjKF7Z5F`KDF32h z3!Cj&!@G=plg@s-rAdSu-4J|3Jq#s6H`CxEsmskN^vKeOGga_vAVw+H>DT`w0-mN< zDAtV3ArV3DnAgM99RQXG;P43w0ycKEZyTM%j+@2-2dB?~$h1N*GTCb;FW?CpQLOBEGXerlSCp4=b1GX+!7 z`tR+4hJ{~p9T-0Cdjt4x$xB=B0Ft)YsrA;`&i<9ni*a$ED*mGO3rnr{GM7ty2vsby zUuE!f*V(L!8?WO|5T{=0=&2=vr%0=_O$o==6`~ibCkDO|$PGZ{*ku$;9MhO)-qNay zcHR9Ydp?8*#Kl}`A-L-cT5%57A{ANnzPGN?Ac6#TvY09re7gQzr@$y>ICkI{i$)9^H&Q z)D_}c+``s?f@LH2P=G0@T~PS4V=blf`pbs;=fIS)$+R%joVO?_9xVf7--wF}ZS5H(*e5oPA3x zsy5RI#Qu@D{ZiOO`_@A7$ayJvDrS>>&_AuJfr_qfA%hPcoLP>cuP}ejnt_q$ItN@} zCYq%h(T9MTwuf;~QH3GewQ!~dXUHZMLnJQ6hTJ5~RTv0U5Jy4WMP%b)q_E6 zGKUSs4o}TyX6=(j)92wlI#XuC3e+RNr+h8GL|6HazCXY*4nlw;g}v}qa#`q_{MazA zH=N6~j}=M-{$Da_mH-bCILjnqdf@ORH|yS_BOi0v)IkwK{*~An(@>J%?fE%Y%x@(4 zr;UrO=B%SBMA~szXX^js>8!${dc&?y4BZVQ-7)ka-Q6K5ARr+zfOI!QcZz^CLrSMe z=YVtwN_U7#mxS;Bzh9hiaR4U+``ORE?zMg^RYHfu3tPozL5GDrtYoy&Y_XE6^-vel zH`Zik;GOeFS{t-Ex81;!g;6iAPD-1C1qxd|Mo;r#`eI?UM;(oAO@620A1s3sEL(hh z^j+rHYy8K^P5%Ojh#n4|1hI@KsGO$|B5RlEKAY~Xu&9kKqZ)hBf@R1|9w=;w!up&$ zM>@qwo8n(aD|Nb2=}`9j$Ne#87rw&x)H}0r-XW_O?@#;1|0xZOr+I5DO$G>OGkN(? zaM)ztKemn?wCSf)j)!i&btf&0brjPS3;bE=9{oZwhtVmKJl1aef=X&_nO~ zs3)`fB>d-|>|>BeXq9Y0P!Ews6YoZ0lE4$=O*v~YU&vD|HvcBXpx*5-XGRRZv&d4i z20=N?fD^H9nStp~&FjNxdjGVopN2%fKtO7qr1Q~&l0Ja9_2mqB z)PNh2pv=38Egqy-Lp6u<)e$xSEj4@5k+jQ6%I(>=z%GB^gz|iWWcqiaTQiq__fM3f z?UISl`y?zwf4K$rA}7~SQE^(H1Ic!C$-ZSdgn2!Rx)oD3!*SZ*5JZNY;I{BGi3IA; zFAC`m!P4X-vn9V(Gd(j_D+?c;7t}4HEie2j!0>^8h3D&s zDWXt?IP|^#Z1JRKu_v+eDdf(NUZR&TaS3#L>^(K_$I&D<9`By(PmK&$?Dp5E@89;H z6%tQzUb;E4r7d10d->E?1ag!O2X*HjCsEEYmsL8Sj;8nG!Cu#<9dN~`8)9mFcFTF0 z#dwQjDrsh3clL>)r~lh9sd9PoroAQU#5?fJ4c%rpiqFupPD$`Gj8v6E`TB6fQihD`-K1{K?ulv2 zG7(Lju-II3lY-J3O3rGGmgm@vSk08+PnEGg=2%4KT@vzYzwZlLy{(;-cVZddJObul zY~F{W3~#aLbTtHO&1e#WYFhBNcV|zJ1SppO`B^QP)Uk;dS_nqcR%^8qo>PyYny>T) z;+0v`u?agxhkKf)LWpZAgq=xM3TsO<2R_#_;E!f1lXqug0lz`||_VY!S{AA-uJz1_6r*La$wi#0cJ%({#9fTmk}f>Ax;pv-Ab(Nn;ri=iyU53VI{uU+ zDoR1VAvM0K*vAm^p#S%E^f$*ShMs@)ORrv?PT{40QkKvl#NDohj z#mxzR%dYy}2;rare}HQ1zhui>K)K(HE0WX(9-^!}PJlx%@B^oFjb1(7GLJob!SXOJ zuXo+qFENdFM>)r)SGG@F6JdT(q>XmMtCfoue}gK&+nz;Oxvz$l*Uxg7khT>b%hn`S z>1Q%)Lku^29dhzk?euLmaKL>T(Y(8ji#V-UQu&Zr)11}k0G0v)3d>=eY*bvC=h~s0 zX=7RT0V$x>MoH*=9<>d~r(3}Vz44kF^v{BE<*bpQ5UCvIXEKN#5W^-reB9sR%WH^~ z)X_Z9`1Hr*h8ZNzjkF#FxhEbQq_%2AOrSkbU*!n+0^H2gO^VE=HLHmJIEHvjmq zb!^`E++BUnTBPFF6p_kBKUZquF~az8`tzCR@UIQcCve@C@E+OHePgo5-9X@;sbJ`) z;O(o4CEd}8eA_K?b=uX3q$4lW%4ZL>vs?cRM@2FPcXynV8(ySbH31#77=K&=%s{Vl zIxEnR;ND~mF`*@5*7gY|lGK(eW1Lpjpt6}T`)HJPd3!S$2G!mIE?DjM`HCfJm_jMa&aN_1BxL&c1kBB=`#qzG>Q$m z-%jEv%(#&rIj^90K9a1gk-QVNq-OV`D?W&^Vy-T*j}-68R7%?|c4yLq3UFvz#$7pv zS3^*?^z&;5x4v7`(n*mss+Ctf<|x!gGWSbzRCb^Fe=RAwMHD}MW={C;teVcxcrqh> z&zFpv{Gun5I{(2upXN+fm%c`pXx$SfN_9h44DgFEBrakNUN88{@aeXn-O-Xz`GFhV zyY)PiIE+%8FR&eS)4{;ZBL~J-nzifIL18MdAkDGtHYv8qbaRPpMW+Z7s|1dAa$qfY zaC_f-&lYmg-aEASCAxW6!OI6tNuMtsO}zv-v*5m*pA?w&*J@6MTQkzMc&gmJ&24~p zc86I}T@LfuIeJOywK>uNB;O;V4lm){cgP^Mgk})GhqgJ@%%iDoczAk70I^9Jvw5bk zRv@h^^Ffwv+(N3WfWZjuN0rYQupu$zN!to9O6m)7D#S!&ABhIPy=f;tjT=0ZG z^mpSD(0o?F+Sx*hpGSr=8E-|!Ld|XqwznV$o+AjQCUx-+JQGc8kxBc7!KYZ@wdQ%q zs%&9+cu#V(f=)S3abBXN2X6OG)Zx$4gis+G<7SJLggriCd`BWcE9x)GH7d}0UVNh% z7cf|yDT76qAR-t+i~1OQ**@^JNNgjZDt z^OMYH9d$-O>hdI69nQ88{CeAHR-1YdCFUmt$wOdXTHW{LHuQ0+Uf+nK z=kZ$7`S~+)|8SL`FOjhA+#DK1qohycnh?r_jwcaN$sYIQ6D6ooWD@_JSvlPeA0J&l zfEgvD6@*)Q#(F7gI%}yzmYtclV}>%+vZw|<#v{v^k!RV7zra-mUlFDZ9sZax5QGEx zuX~*-ZJRqkDbg#y+y*M8gAnS5l@q~47Bs2cHq<_GTvBuNu)!^W*pF?59e%XT!jcla zG3YNTxt-T~h;=?d2wx=<{29;uA=f@xyVfK_J<~h})}+8oL2}kX|4dP?#<+rBL9S%X zTnmdfpUQOnGd-3ZDisxgN)PXf9o<6p@c=4%7BT$lXIfaU?=j5}>zIIW(fQELzr)-MH(h!4c3PVuIeMA<&g`aBd}%)hc1@21AQwvw)#b!j?V4>3rY4-Fj^8Oe-LZ*@uZFE*p$_NQJ$h^4$Cd4 zj(VZVk(((@Ca-S%kys#^jLNN6aI`VEJg15Q+lr4XMuSNmMyxYc%)p^Vm<=HRE&(tM za6ffF&rK>wW2F9n%G_k;@?RB_{OT4yEr21*=u}rbjhSJG=Sn~^v$?7tMWMD^D668f4|fm~ElhBx_kD#vBU< zCI!HhFURI4Q}jDPj0oW$2i!pJ6(gEzfX7@wToc{Ek^H{L-q5sUfj9oK{YttO<-AmFo}ko3e4UIaUqV}bY$~83(6egz#b);p^;4q11^P{DuEijc zFBaIhgs2JGGUJd4s4cnlw5OSwMNuVgSFeA{T1bpL7}#~YxSpJz?=b+Eqy#D;UeUks zBldd5TRJ+_>)SwZ+}Ssd-i?<8C1nS-U`OzL|y1u@k9yu5E-i1QA?;W?ZbUpYB_ z%2B+<%;fp767EI|SG^^XtYeC$-N+oRI3^IQ5Xorcb5*4FYGjZiMgQlFd zn?lJnEzC^qi8Y9g$gF*oaI9?l9pCcuuW6!WB=HW%fCoWn|(a_&V)MMDGky zP_a)6vmC-wLx4@P-DDg?`Zjv4n-ncz+e$0vqQq07#tC5#W6hd1cB10ng6bUkRpcm8x4$+G1hkF-te6D*>4M@K z$Ch^~H=^y-0UmDPElMTCFSkAy)rHB!#9WBJD5}7>Z{kzo+btQmZ`31f!RA1n*nN*O zze=cr5);o^WEmiyjI_PL%`>e8uVI_RZN=-WLW)5?~QGFM!rRZ41FoO((Q#^5Z-lnz$kI zBUi?;5fU81*(Oy$0j39>?Gzi`y9Yp!M!O@xBJ{HM%TrXPq#n?^F#>7^JJ$?PnQvIw{>PYd_v`jFhhRK zj<--YoKj%v3l#79+|%_BwE6ml-qYU$z1GBA+KvroyZ|x*sArgmCnzv~(mI2};=cia zT)Wgo{LKp@Mzr7eAD^wRcB!tkT5AoZs5hK;d;&$;StT~t57C2OnK(yP~Itz_1Z&*vyT@T$3a#fm*_*P zpt7ExGNR>#nwZHtMQF#H;xW>V>{H0l(`$a7e=ZzP*`pUB54l%)h5T_EpF(jIdbgDO zjneC=u#^ph#2sWpaCMr9dhXmVDpSK^wog(-132}o0)K8)yszMx`nSYa_<0@c>ju{O z-p$`F&jgPE9bL^|L1#OI1V=lPfeHt`$T%oiTpmcJ$EjpJGc)6BgSlYP#3v=R;G$(-u31=7C!^@ zlWDf%qb-e=MlWcAVjW+xl4C6O7q74xzt+6J9CN2Gj=XOf#bX_@q-93|!*a>cQEEB~ zm>8$k#;nsp>H{{P`H-zlAExr~B8Id-v+-Y`+e`YI7(+;Fy7Ri%oo60TrizYebvV5ugAQ32o3?ZgBudtj$ z8`=H-C)qDFFr}PEAh}@ma5*f@2%boPaQpc!PKx7#y8?E)EoG5cm_pcvmy7lbA`TSi z3shp_%tIOXR&m};dzHJpWy+;zJqK*VS6CbZI^t8S`zU!7mutoq0etpvq|c7us64Id zJY?p1h(6M!SGGKTFd4@QS~Y}xMx`)}8+aHpp$BU*2zz`lGSmwxIP_cRus8@l zQ@k4zd1(C#On6rJGFkk+OZ>7fLBwY}I|O@MLDd@*Dmn@ghG`x}buS)vTtmX&1l^#$ zk?tIsx%z&RjLj`CEa2^u``Oa}1lTwj*T0f;qpq+jxNWum$~PYlRCsm0HZqwy{q;CA zFZr>I6+y2i^&7pr&$}DwD<`l?r#XzgvLF#87BE3g0lB*V`LE6<@5M~6w{oPIeE?1I z2!LfIT9!#4c>IgG4c=CT zdloQa3mo3#+$+Yod#GuRV24{Ts{u}5({_g*kk%GuI zuS*7lmOM1WF0{dx)}q3-Ad@I0s`~3`0z=R6#?vJK*~4GbX+F`>#F3A$Li?;jQ;t6o z6qvtjuvi3qP(bVDVj9)$&%ZQ)m*;fdsuKk(Ej(Lcgb3klLnc#>Pl1Nc&J>=j(-9M7Y10&;zE%m0;4|V$ zjaRCa{n-@x5_cXtwOXZ8BCoSQ#;Shy$1djIap(i(iHnOnVD`46Zm4ux@Qy<%uX~O} zkM6Nw;m@ie(t06>fuGKoSI!kC2hR9SNKYSC#I5?)I@T&59I;azp3e@1suzryoG`g` zfI-;gn_4sNnm`F`?4%Nd?pp`YGdct1T`pHH5#fs}^~tR%+UIt7XIJzk+n|bk)-I+v zLJ*Vc!w1d_G(fLe4*dmlpR2R@Tlg;x4x%>0N4Rwp#(lfU^Gq31>X9k z09}(e8psn>`5FH=sHTs~Dha;BTqAp%K&Lw4D&NPh80sT3ajft(jgnAQTwHN65 z4L(Lp<-f^(P%(~{Qf0nodHB2oMcY1&BXKD)n%_#Z9hyK#qWG2&t9B!-EUqf`>8Q3p34;!elVnFI8?uH+45MYVd(x4 z$}rkNc}+(GGhvz=GHw}e&d`bK!=2`$oIxj@;mIvx28?dzJCPBo&>$dxgVIY45U z5qhX9KW1Abg3*)`V-rcTtP0^&baQgfIUq=%DKXv3tIO$lY`cj z4Y1Dh>>NCs85Gyn$cl4t-;x@a8^WX3$m2OOFW9UNt2XBMcGl92fEd=yr(Y*5kd!EK z#Gx{WCB95Fz?c3irCd;PfcDPLbbK!k+b@RcqzI7#+4l^t+4VmJQoQBkt2}BxY>SL|tBgIL z0t7XuheScflP|+|FLpXz3%0DA`vUY!>OA^P#6$t#vKalf08W}M30ibobS@Fd@c1ub z%pfXqFuclXeLCI*^p$3W1hB&~1SF!%zXL8)aN-GJu!Ln`D3J|5KtVbfg&7$MaQPE8 zLlm>fIu@|_VKp^)lR_$v+6r=|knvatuF)@v0jN7-MaS9CrL+NCIr^9VSm>k!MDyOz zNE^Ma&aZAP{eoC7@GbdUY7=3Gr0@lYU4>)obn?{05#VtHh`oX;Kke`g*^YmZsvBJv zkPNbJomE$d<@%TBeEF0CGBPRR=HV=3ef(kFZBkmtW6=9OE?y=Ob-8U=Ako;BFV#r% z;m_W)Up`o3Csk4$IO0+XwEkIEV9ZKlH-Go=gakYU`(78r=!!8pu)8ASazlEABt!7#(st*FN_}?x>k~*O3*_w#oUkXO| z`+<-P$ybBqg-O& zDKHrechZ7el-#Hfh`8snXS2$iylj}V2C{9PD&t+xgdP!3zI#Olt?*&Fobx`-Rp z5d@$)iHBVHhQ=_2+=i?8c@FvX0#hZmDzi67bnEEEgvV$Tt-s1L#prT@?ZgNeNrJRN zKZYESvwdQs;8=pHOLQ54Z1II|Oq$RDpBOfggOSnbIjzqwt!-_@OR$l05fXU+>2f5J zRdd?=*N?DrCMXE$NqtH7ZpcwGGS((-c%YtBU`Lxe3(TdnYd}^#xBi@w8V|TXNA#lLWP`9 zgujFlrbE#+C*K&4p z(a46^Ge_CDKey;O=6^rZ_lDk4BB%Oy@h+cR`hG@={YkY2D~ei!QKHZ~&9M$a-OY@akdPAHqE^y!YF0%*>cmeF4@e8b~pwxvGxm*f~ zh}pSD$OL*T?vIa5gVKT&nTc#mM0{2N{iYl7>!M@9Tf1kvTFL0;sL*-IevTFNhbh8< zj7I4w;i#ftJR4N`2`!;of&FWvH=&~Jrb}Q9Kt+&aBsMg+(HGXR1LXweL5@#~Q}Mp1 z>p-L3S&h@Ff6TunK?72T1gvG2Ld?M&u#pzUxLZchx@S$kA#N$&cY3gMd!QVR79n+c z*cY?SyDQI37_KoMomAYjt{4scbV$@3?o_&Ki_=O@Xhv}Erh@WVpaktRt&FHS%tyJu zHG7U2PP~76kOG$uuNUc4fSZt*brU5l3t)Q!Ny@<|dc}>gR2(5$)s>n-u1)QtZQNX9AOm3ZqP53zq^tHTNeDpKvewmG%G zrjF@2NTTsyDG*pkD9+Q*dZ8~>7p1X-rmEus2t2zw;EmURE1p-jmCDL>-6_3X&Xk`$ z;aamrca)d<#gM~0MLoUGp98a0zM!J=C)(1|t3-OLZPwT{Bl(_}8YF@y4$0?2QO|*k zb00=b%_uM!yEk_9?G3Zl)fa97yN%HM_E3ObqL~PE6$9ZWAUnK7J41l3m1`jCv%Att zM)1TcsHTl6nf8-SpSIoWOCz}ztx0o!IoCPFMm@3S*oRrHbP*(G6WI8XlteTN4sZ4% zy(hNhNLl+6b}(&W>FFPiB2cRM6$4=R!U}RYOi|fwU;nw5bVm{38OqLPuiK&%rUZ8V zlxh=bqV1|(LEaHopdul;v{uG#oyZ@kY~%5nPkzNY`th(YOk%~8EDi5JLg2RQsrj@Y zWQlpu;ZDUACvn%xiCx?d#Y4jEwqEoluZQ<=>@giTMWXsdc-o}fC5~QtCC9JrL}_SZ zFb;Lh7oy#-z5>w;>6Wtd2rq^ZD+?z4fX35%msj;Gs^ zbxq`|^=LYOA%eTGgw$@gFv|lK(p|-&= zBm6N^EpC(Tk$d>;doe5^u_O{>%!>laz>?oveDrPniEV-Jr{FfV>@&is`tL^)PZz3#@MbbaCeO#a*N~6xuIc z&}z$EbF9Gt(nIx>EP+X?|4;b8+5LZL)5iM~Hr4|T$0iJ!MZY2|5%Ua~4Ps;ro(5yXRQXa-$ z74A(IS{(r~1=L(T&aH`ks-C1OA4N&tbmwNE_jLSnvHK z&{z5U_3B9*bvcf|3GOSNV*)bmz8d#DJv9w)X6!YSTzSRW*=?z>O^8x1n`JRH0UTe* zu1rPTW5 zQ)#+}8mY!IN(YKSf?=c&PvRP?<+c+kV1kk>k$4ChTCpUC3>C$*Mh#PW3pR>^Nb;vs zJ!h*H_sJyJuawHoUM1=Rd{sQbx($dmp9ENwbysbpG4XEf zXs0A6My3&)B@NflfVi%jSt7FJ$uM{8{@%qzuT<`EGP}ID(lJ<>Z%L#aqQ$ExaYTD6 z5A(Qggl;g{87FqqRJhymWGumfVxr92WWa?JeKC-B1-0E*5}#~qHKthA^E2}Iq$Hqg zbAnd8Llb(OSOa_mxUgRV^Zg(9bt;)z*MijP@0YrelznEBE5&scJiiM>%5PsE;F z&mmfY=laAo1pH8n`FNqxu8geDBWlHAXyU_HX-@a(Aq=wwR0PKQo8#uoRT@~@Mo#1g z8+()>7x0m*njmgvpYB9&b%BK(5YW788gT3g6J$j&AaT|MFU=#M<8~6U3ZLo8Y}|m% zRY0R$i3t_>#tQmp*GyVEG^@7d9o7Nuxm4ji?t26Kt~9wUyX`zH2@4Y=PTVcLRz$xV zX;R$@s%4#h;Rp_(0J;8OzdyjZX8Yp;{O7MpJ{^K+nY@(SKs z2~={8{JUlN7Z0S6u-6rjK@mj-a~&!}i%pQ?R(9!0fmr=&pq-Tu)Jhp1@22$5C^i;J zB`_jjP692+80rgD-2`LQywoJeAc>(MA4&7R#WlpQfWZwM>sFR<`psGvf&GATLBAyO zube8n87!&ocs7Ns2K_pQrF1=9<&!T^4R6fLlc|i^R|**;2qf++gIRl#V;gG*9B#>> z6k1V_N*?{nYpcy15fiGtabsQPq`^8AimR;8$Vb5dTflR>*3J6-W7-%}_c5BfBE3=B z%bJ-$7za}2?s6Mf4!M*uYe4AF`cSp}$G&)rdV@vn*~6W14akyTTNv^I5JQ}@Au$>T zT6}#0fn5tFRUmZF7p=f5VyL(_p(Txl;F5xA%%XUwCNTjeUwmN$i6ur6{%Kqd zWpi~45B#5Mc?ZQbY6-1>u(O3T5}AVa%pNkgSEnwwn!V4emfjRU=zq9U{rzyUXHSF3 zbJHOrvrnUAxdfvWwZcg%y?OB@w=TtL8WbA?^9Vx>`oE{q_YmFMfOjr3xBuwPKHs{H0o(+J2|#4+|9;3YGj+Nz)9BCm$0$1rk$GUVYR~z{?a+%| zND2#B(KIu_go2T2*6NH*U@=j=6sO2|F{hOXlFn{?AuBy&h z3s<=~L9n7th10*hx-*)OPjP$w&d~7+WMnMjE-yG!{LkfYWXi?pWza7~#+#0R$mFvF zO7Zr;vGQLlAia%?B*fb4XOxGn!m;_)hLRU>7M|KA)1_F*0+a; zxl1L^jT>NXx07f3`qejQH7e!)-~jZACwT+yZno%Jp7m?znYf zQvq#K?;YSJS2{tLM|E%22NkMyZ(p(Q+*@t=;f#nbPzfWkqy#g7&O180DgG!HXQco2 zKA_FrK?TmacS~q!GMNW8f&{2UKcBxhn2>T$mQ#bl_3MDNB&T*mmN6DJ9r*}C59eT( z815#kqxM3jhA9{wcP4k%V6jU_PoiHy%VAlE(~4SQ1WbY+*L-iUI~itf(62kuN30aE4X=-G)rh-Te!5x8t~x&#@MnK# zt(QfSKE$Z$DF~9FS&^aRszc z^De#IUvP>fzW0cR(YgbwSdV>D71iKCHfT{$AqV^P!%YF~5+`XC8$=N)3I(Cj!D?r{ zA17+Z&q>gJA*zb4e$||2Vam-{RSz}h+R+>bG&}oHo>5cw^Sou3R9+~W1u%iwa2ZX) z@7T9C4J)p*&kLe*dJ-PHCT* zXzX1sWFRxSdDnq@SRHwdO>K{NVxpt=GsfB6yozKw%^iV~cczKvF_tC@6#0iw_{M6V z#O!pOoV?r=)~EF+#9tq@WLfg@q&;7hN=eQ!k3Z~_Uozmq=>blXQNLhmbOZW;7@PAz2XpgZ&LMoqTQ+GTkeW?j{_rp6eVdrS_7gt5_- z#qi2#d+x3!867SMfdr+%50XJOH6IW+q>~fgtd)-@X9MN*!vcjWP(Fl4%72X!@ZI&-WGl4YNTJ&a z=K^m_aWYKHAiMpuD^jiw-utEK5`C{^oVekEb^a>c4#z~cz!A6c+ryDG^rGc|M>eVw zNi(B&L>OoLd^em zeA4twleN-2T2=jp(HL;)v&qJOL6xt}+iU>OXuz&HS`ag70Zyoh=qPG@&x-T2nz^`} zJ=b~uxmNy$bE>WQmmZ{;DR7lBGdC};Vde@(&j178Zk?Y4^+?jly*)NKhisV+IdJsg z_BnR5vwag|_EV9qtE)?ONNRgW?GBB`e7Aw8%h4YKzd;NinwErWNVw^fqXlHfc~BcW zad9Ct76L~Ol{S3c7Mb`xu5ko}z;yBI*3>3>kkSa=r0dE)MS}#B*D5;GTFn01D~j3{=Y!&zWLaGLRQaz+n01Z_<#|b*TZE&!{VCp@yN$ zitWPUm5sJVd!Iylp8jI2Z>;S+PVxetu0QRsoqYqn9wX}t1x$z-pfxY3c~kA!`05IF zwts^Cf#{MjD=ZoMi8!-gK-?=L>MD!~cM$_WLwSja8W_#Avx-NB7br^If|1MGCm2_T z%*f!4=3W$Pj9Z>alzi&AuzVp;^6VqI;It7Q)PTbo&Umv$o>?w*e*qK4AP*%^?zb;f zJ(Dek!*j5e>5o-%@=HZ-+_!Jvf#;@1=i=P6f&OEkl}?(8L@38D*@>;pX@BF(&&R2I z3q;jlqMzfm2v%yG{{s&~T~tyjDAT>I%qJp?cI3J20>lp7oWWZmY=jXPyZqNoS?F#P z##=f|rYz$x5GI)RV=+>3`l9$CvxGyW`3mq0&rnc(tOHHQ$z5w(i>R>-dSb1#4p3H% zjw6fgzRGck6XPex5c;l2FSnt$kRnmVJ!`dicw)>CdJ=vBtoE+6xegSkgJZK zldZqu-WA(nVbo>KE*C{!y0irb;L!r=qMFQ@#iY0rgRiAZVdUW_XVDFEPv-Z#Gsh|Oyp_4 z0%3ac#ciIRekC0wov0{9{>RrKk^a97B!gMcX-KKUT}x02U9X=W>5TnIR;uDyXNOvF z)9#W1cUmu)UAy52O<==Nl%gMkHEYl0uwU{c@UO2K~$a^C*TE>04 zePBT|wJfi$;erSxF59^b=;Cd+`2svLG^{wOAHy~t{$f3B-`87aDyKbzfX=)~p}L&l z3~wXLRtsTMtVMsc3B%YAQ(i*EL26vkNq~uRMu^ZVIw=jeDpvj>Ji<6G?7aA_O2m1# zEy=7o2N_Fgp)7L2GqRup_`l+=>QU;B~2d6`OZkU5;H%)Ih}a3r8uo66FTY zx*PQpD^hT01Y!gYcZzHxDH_-5H{dZk#37(96G>z`_=LuysKN8rgz%VlxqO&)6cME~ z28?L{86@M%j7p(TfYgm!9ZJ~AOD>g1mqx8J59dUF`Udz;2}&=gY&whqR;3kn>^T>q zxAr*M6c#xt8{hd0m86>?@tOD^)*TD8ZCxGeuug~@A+SRgx#J7`fWY(Hi1*)BJf6u$#S%nRWS}032 z;?1PSZLgJr*y4^(RKoOThO$~CTFq11U^8uW%WcX_*Kmz-Y$@I8vs6|bxZ8*Q?MO5< zxV5QIZaI)a$VwPq-N-38o+Uz`%^a?@sC`8p#q+sF1CgHli50g#3Mn>@U>BY_JR|Kp z!$#QTvcKiJQvsS4-73XqXj;@Af+RV*1}CI0lVg9Z&-&q`w9I|(>dKqn`S6J?K%OXN z2{n=$|G>R#r)$&1qjZR@GBa8|79~F$O@l z;Mpy4QK}`a^e<{RDX0J}`e3?Hkpp+Bv|2g{ zFwpA*wKkN9aB9`W`N;C)O|!5$E*F>f8YC?pIX-~_(llEvO(wOkGx*lr@R$4ZMvsZv zun)cVy-0O2dag)DSZbKM0ek@RvXT<;r1PIXe4@&(8T{im^m`38_yFa7Y0cv2plgb{ zH$h2jPq8o$0JY4-pn=V<`>|{2txCEkp%$^#-<z?0+K3>Rf7d}0? zrd8mcY;^ap_=-AwK~%oCJ7W>l<5tToP99>DJd)x366i?tc>^%lpM7jHgFS=fH88U36}q7l6y25H;L; z(ZF6c2xG1*kqnvOO(;V=qpJQ-&wx2S8^j(LCID5-CPj*eAI(D@Myyhy-ttLU`37S& zsrZ?h-LZ{1x%mEH@4~0_e&Wk>;^r^-BC#!l%Jsqol`eGV@vlk%XPN@9Q>P%#mmWp) zSH^E@8fAa!zpPRAPA0KXDk^i2%x5pTj39@ZjClF;SABV$DLp=ljJwJ-nQE+}c%h}3 zdg(v*e8zNIWKv^pP8{ywmo}o>_8!|AJG=~=z5mSbZ8smv2?UKc6Zf=VXpZBHLe{}H zlo2y>5r@K6xRRhiLTPn@7y zlqzNVoFpL&9EI*~tmzMV7ZwQoo5V)NNx332Y{g#{Lh?M~?aFC}7y6CT1}Z}CeSwoI{{Nj++Zf`I?l_IF%k-u4KvCrD1#uS~!+8b6E>tGhi-yvG} z^zxBBy_NW7Jx)a*FE{oi&J}+Y=X|p%{G@l&YcaG#5}uWWEb5wiG^S2+JRO-xWNaVM%J-TwNMoG#146nastB83# z-Q#XLQp29RYhXmX+>@t2H0tsvOD*qE%Aqrbh!%$PO9tMTn*`E}>N7;{S63eAx5Ud` zU!@oS2B?@#6J(BBw|Jd$ksNRsir-OuFzJ$C!3B+Acfl_f7oTZ zqBuS}HIA}?JzlIDZ>2dtljikG$syh|wt?-2z!8%1)PgSa38P-FoZc|VxoztAc`cklSsPx z=gT&6kg+tXB!7u?UiJcT-N;Fm(s$9+$oiyI$*S+S^&2!cX z0<2KOXP)n!_~%~9`@I>#JI%rGSHhRUnV>Xa!$K_NwarMh69CcC*Kdu4b4zSrJR|kY znfS)dNRLuH?Dcr%+EBt11Q3jF1!?HZC$L(Zc&~q52{jwpbX*p969; zz`hz8(F#zEW0Y2rZN@b5$|t258E^B8%zd0K3Z;#cOE+qWxk8+T+h)IcMn<295;^%% zo~>I_crbtHfW`!{7U%2c3cfoNrAsH;ZkG4{7(jTs$@LF@x}SIokWVc55NDIgfU>iO zFzH%-!9hW1z@mNIb1EdPaLcS5m{n!rTQ+@SY?hI>d?4M;z#_#NnO~1xJc-RvZdXDb zDtGl#1{IYd9Qk!6)9VA`l-_rSmk&Jirl`k>#pGx02@!dUD+8a4H!QLg6uNdqq%~Y; zgv`kFSJD_^5iSMk{w#S4bG%&70wLP3)Za2yN9bz527eUsKJuM|kuK~kD|DLHyo&aQ zeXNWryW9n*Soku;j1ojm!_1^I$frcbvbol^RCMO(L?>*nVCt-+LE}`Uj7HhcC099@ z69@~1#VOcHv3bPt$05!?JOxE-Iv_L%E|Zgiwk?W7Ke&W{`EXpf^hdAqS=yS1W2Q)A2uy8Y7L{40@JgKhow3T^F7Z}$L1eb z$s_RDF+@?Ryqzw5a%#5PWyOX16}QARF7w6Oj&V0P?kY5ouZKoRsYQ%+D9heeUUSlX z@MV@1V3nlf6}gq#?x~gTeIs^K#V)TQz612~fT?zDx)cFZtv3K17Xk1J-XMeUG%Vm! z#SJ04ASlQZ=WkVS(SNeuGd#>KRZ}idOlZcoRaw7<@hf2>Ft`{+ANhq>u>v-wA*2ek zWrcdu6`%-te?dZKEU)y;Gwp6hxvu>Wzd}f-EYRQ-S!J-cek;7(=@-52AeBL?L=fEhW=T0k z&JHPGT#26{r%&-r2T^^q^viWbRyB6+Rh0GpYLvf$xrxuo(q3zMW9weNQf@Bl{KiVp zO78N_1f%2O`BI;*&(#H@$XJ>6k(UU4SK9fRaM;FOOK^tHpvGP{+!J#-|GCcndU)-r zd)F;gH3jcGUJ^@5$H{{}ME}?ES889t%k{uQ3zbRb%P=5ea_POX^Z%)OyG4ut z4D+DsDAx|D0s#hTBT?(*ezdw~ z5(y*)6@+X{pU%zBSrrD*CrC1=ZZ0UOf`JRfOp{g=zBX4erHFEVlk|MN%^m)82vqH> z{USrmREr*00y?tl;@`SB2(SI3DVX!`qUb?QzeQvD&RY=3uiORH90AZT`a;SZ9%i#5 zJ?OZ`^drJqVKeP8yQM8gAvPXmNq(vJ0gyT)`#n^etdp+z2U~x#Gc{ws5R*FC72ToH=+~5L(2>kKRwSHQ79wL!8u8IXXRqkW!8EA-t@^WSC{kWy3dMa!q zSO?s25Y+T_k+HMDp+9C7Tv^FsXkr3V%3TBJq}-F2R6S2&Q06gHZILhldRI<=K^-(C z6m#ywBj>;k#f+Xcn}M0{hW}zS?XF40!!^Fk=!! z=FP@hknCc842v>>jjS~u6+zMSsKl|K6NS7K2yllET>iJPqT@H@I)8)Z<~!tgOKp>c zIq)}4rc1GbP~goIj5s(&U|7qrHa!tv*nMy6RgwzL9jPNs4`a1M5uOl-9q5c37%6s@ z40EeSIQvbDpFM<1Q3Qp`>nB^7lhQ4YI&_=Q6?_CI3-6M`& z#qwPN@Y4o*_JXUNJ=ej!ns2QWZ}g*JfI^LvV35o?nin%@!=jBqiMtz~?WnLF^om@#G-9$ATl6nnkf$V5yuUvCH#;7S*!&;x32NedNj&J-KQ@M)5q7~K zJviXh+-ud>2In&L^VKYl?G}UDWANRntFil9ao`5Ka#16VG<*cElRf5 z)N7Sf{kJ8CB90_~+>o@{MloDpAqGY@oC#5TEiHOxjmG)I&T2CepY49d zODQrD&*-F*N!1PO&Cr+x5Jd6L>G7-U(D(Gx315h};|^o|#SegAJov>gF8=4V_<~Dy zZ}a0WlKfzqWfCL5lXFJm2H&W2v;hKcw8XAt`YE94|bSxG%G znsapaj{n>kz~^igt^up5ehgXTcS+Ky$`vt(0Q@xGh)K158fjc6Q8JMt$-4kj;)Ob}YBz~dVG5El*2 z^-ffkEAF2)bl-KtGkuZUbf2E*EH{O2+vl(L^KtOxxFx!-Cis;k+4mVR#+0{}CesT@ zXvB1g=%>jr7lLP}*#_=iWE9Vffmf?|R~|>35jOyD>}>Jojrbo(z4T+!nK0FH;}+mi z)Y`tE&-KniO&;DE*&C^I&gs%Xytqi0(ad#~8~mZd@4M;H&!d;t6u>K7lDNk=?wwvG z9iQ!PIP9b#5`=s5oIod6tku()7V@&)DIYUU;qb3FWhO(MeK4EXWD`j+Y~XRyyz9dr zZwNGq^O5&qi3mFL;9A0hC}zaxFfBM$v3MT0)6|dc8Wn_vB|TO1}{gEX}@s?^*MHhXEOsT6xj7`oB_PRD_*MilxxAHp_$`B z-9s*JCRxw?Dn8xM9{Wq&1PQN}BX3THj9$@nN`QBgd!mA7SHB6L0eaQATR2!rDo2wSo-Kzb03VP#hjM}vVo?QhIWtm|+Q<7o-S0uL;V12|&$rKLyKNef6{14RpiNQr)O4zh=J3`N z38!(URrEZb7=~JY4`6bX+c{jo`LNOBrml9}zOqFu6fWD5R2yNpyNj zPjP&{z)~{WH7L?5)6F;BF%5|6v`CN#^TV$QztPKQcrbpWo03EL+pCUV3{N4>YMf+W zy*(qy{Fl2W1)L!8%JrS6^GGn4Z!lf|O^{7Kg-)cnqkL)+wJuv70pqft?-7oV9z)5D zjwNe2JfDHBJ^rEg6{O{MVqD-+c}E3?XC1WSv5h2sJPpf&`TT=)wwRrcfwg*b&Ch?XZru zg5VX^3h^%MVXC$x@8{9R>KNwj~FBj#U=!!dP)km3|K|Dsffw>^zm~v{1&HFkks)ANsA<7XwGFY zsgV8O*VJ_Oz$ZLcxRPfG3F?+|8H-<_G<)_M`i+!wH2o?UL2b-Pi?eTba)fPy1{tFO zYl-ndxL{Wi;rX^6k#8G3J;r+CZfMK@Sy76I`n$!6-9riFD|(29DxY-Jl( zQDc^^IPXqY;@J6;2Ek4%FW)67PnM7!@7to zLV%FZXz25r2YfPYZ{$?phAM#~UQ81{$MhTw(|-tpf%<^J9H}a2Dze{A|^@YmFRlLg1PyNlwtR=7xWBS_YczmMww9TQEvaoBAZh{bxEr5|O`cHs7jxxd8y zwype8{(V{bz`gIY#r{(`r5XG0?9Sv7LCD1>-1~u^*9r)*rM9y0N#wnn59R>#wDI%=I6ra!oKfdJbcSnJtCT3 z%$89?7aF6jy{J5^UrlCv#)~{}V3UnD{UN$c#RXf7#7&#LIF)`@lp#YELAPjC);ckq_W+evCBy6=+V4N2$+6F%}jVs z+$mX#5;H_o*w4#ALHbFB4Q7v744ccuhJ-q%LGbpKKF5ksd=~hwz9JQ} zoD+3mh`@+qBxu?Y=ORxKIjxLh!6&4Mq-8;rMKguVm6cnDzK7Ij3KH|C{x;-mDnzSX zL5*quh^cu>`p=#G{o`#Z@R5)`sMP|5IBz@$Q zlETK#*Vq!Y{A}L}LU>WYD;LfUVk-%6C_mXR_A;VZ{6iEaQJBx&8yw_Wy|hIxzE(@( zpIu?~UBSG>i#_~oKZPq-3o=!rbP3Ks^cAS|MKu@%Kh~2`F&j%|w>xVs07TxVJaV

jhUwE>-v{?!UN~=Ix(Sbv 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

+&t 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

b2HJ7jtdgXAx(0#t9m40A0#+# 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 z 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 iJF^-*hB0Z|{{I2*Asq&`f|KI_0000 Date: Mon, 22 Sep 2025 15:40:47 -0400 Subject: [PATCH 170/183] Adding changes from build igniteui-xplat-examples-output+PRs_2025.9.22.1 --- .../column-chart-multiple-sources/src/app.component.html | 2 +- .../column-chart-single-source/src/app.component.html | 2 +- .../category-chart/column-chart-styling/src/app.component.html | 2 +- .../data-tooltip-formatting-decimals/src/app.component.html | 2 +- .../step-area-multiple-sources/src/app.component.html | 2 +- .../category-chart/step-area-styling/src/app.component.html | 2 +- .../step-line-multiple-sources/src/app.component.html | 2 +- .../step-line-single-source/src/app.component.html | 2 +- .../category-chart/step-line-styling/src/app.component.html | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) 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 52d34b3f7..64a23c8d2 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 @@ -23,7 +23,7 @@ yAxisLabelLeftMargin="0" isHorizontalZoomEnabled="false" isVerticalZoomEnabled="false" - isCategoryHighlightingEnabled="true" + isCategoryHighlightingEnabled="false" crosshairsDisplayMode="None">

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 be84%cmw{%4Y5v#nr)v6oaNSZJhiCr>3GYv` literal 0 HcmV?d00001 diff --git a/samples/maps/geo-map/display-azure-imagery/src/assets/azure_satellite.png b/samples/maps/geo-map/display-azure-imagery/src/assets/azure_satellite.png new file mode 100644 index 0000000000000000000000000000000000000000..8622892868ce305333d628baaa6277ee157a5cc6 GIT binary patch literal 922581 zcmV)LK)Jt(P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D|D{PpK~#8N?EQC> zB}sB82>#Ul1&<^V$t#Pq<_*$7gJTE4%*c>ixlb^%_fhb*_C!v0Z$?HIg8>$^=mi>0 z(A~u=vnqMe_uSp?kDscVnz_Fh5m}@QeXW@u&)ujpQ!_O)H<#VJ-$(*L1OR|xNJ##y zfdCp2011o*Qc5{G@sBhO!xMm%00_kYg5_C7!aReFL-z|i-AsP0Gu z5z0}}K%`yTAf^1{w*tXnx>9BV0JM#uY1&bHF)-Yw!1W$rTMjy4`Z|SgENwcL7xg>0 z7uqTDwlxhj%&gyj8;IhYZ4?!K7<%+whebC>-z{i+2Ih0w36NwUT}m58NEsy&B(*K8 zAhuo85#yQjB-q3pM0{uu2MqmyqrAxM zX&3+zv~7!~ZGZ&y1M8Z#E!wt4LPFPf#Jv?Xt)P(xNDWfYz8p!VCp`e_x}b%iMM}hx zszaSz&9!X1P2XtyT+}OcVKp$D$pp?j$|c8*Kx}NXBz^_3n%Dv=curaXXg~8MfmS6p zT9PJ=ee8~UMqP*7vwldlYb#)-OshU3CXF_UZJhlv`y1-F=JLy=jl?`6Iu1!a+D6b1 zJ!b7%PImz?8^0W^4X|v}J=b^b*Q4&A2RO`RX<06rc8;Z%gFqP@+Lu5u*f_(+G1eFA z*ewcUr3@=b=TG{%L2UmQg_Hm>q$#i*S=*$V4+F=uG2Ht&D^hJ<+i)!B<0m1n5}@NA zjxpJ<3CG)MfFz)ihI*y;Jy)OWNvP$9RKZ3R!#Xd%oqRWFpfB4<%>piS$L%nUao4vM1$1%uLXrlMJUs>yI8 zWsPi!L)w-DFQ(1;4Om5{S>#4z-V zkJjT@GhgKG&<}wc(_N)STZ!>ZK%+Gb2}9tkK^{OGje)N|2&`nS&#-~^8M-$zt`S13 z7L=V#yTTzAkWV2fLnu zcf{L81uB_8Ydfz(@D$vY|cHvu^l_qQVxCJq3;$L`VJ|nlbCE$ zKdj%hmp zCyh-hI02`+9v#v%9iruOtGQ<^vwqIQ4G#>yxRC{8{K}UAI|kMu&eV!a+Eh0BH~C*plOrog!5QGMKWW3YFwU|HfC19B+7T;4TDH(mC>>dU3P_-= z6{(aG`hGy)_d&OmM@^nhgXEb^=dE>4w%V-xa>JtybZYm2!3e(q6{|xa!5vbM()zW` zsSe4)M(r}!7hxbyaOhf%mi+rezA1tAe!? zOS24DQCXM_$VbjrkPo(M*kc%aB$Wf(UXL{Nv_S)>p;;bSs_L21mwNaL_z?EgoC{2s zjQ&VZWwX7VirNm-6|=FL2TD6>(cgi*Xq!e?F?B_F=tvL59dqc)=xjD4uS^$}ccK#; z{m^p;zM=D2EewyhL;fk-Mg_snoev7BEQh4L zo&c)HbiGb@9ic#7U^}`fkVO~I_gR6hDlJ(dr9%a!o%XEdPO)g0CSZzx26ev4q$#PO z*v7egE!f9I2aS47Y#Seo3>+m6-03t71KQRc(y7W;0dZIgWLJK4Vsu;vjti3hGMs#0 z#Us{hx~3CHj{CHJPJ;D63f^Y5Z&c(woH*w`uw6uXu&7_ya<;G}W%oS;zQLqja+7P@|l#Swi z4k_I=98B%lp7Vh%m$#SJ!G%!FNMp`vU@nHVkOkGz!SH>NP z5mn>W35raf>NEx<39C7Zyy0fS+~#IZit>U{)MrILnFABHU$7jzl*gjxNTB&xra3-! zCqZ;9;EV>n1e~o^R%cVtCu^hrTo2$Pdr5kRLPkmVAx;DN7&3=jfexCNfaf(?Sldd8 zbCF3qV$(}amoz-{T4kc~{ZQ@z(At=`;R*ut=(4Y5-c8v_gQznw{^UO)@M6FsmSimS z)Z}PSrCbYn)=q<%me)FJb> zn7E>-4yj1PLF~Y7Q7J9yQ);MW1ZQoOQML}}RlDRyj}ECoFbq9|nue>uA&jh30=+@BMc1*xjY+a+JaeWQ;s)mGVS;ESZ(!NEg+i8Te@~#G1Lg^O;DO>kq=47HMV03!uH$PcA9+os8Q73t0OoJJ(`Bw zAZN2Rq*bHjCBXh*xkGA`I>}x~Q2Yj+D5};zTrb&vmXw=_JL{#hA<_a)`vpLgkJ?3O zzmh_GPUWPirG<@6mOwo={xV<%I%j|`z?1oG*HTa-|x=&Mx86Gi?n4UZeT^_G6U7x$)^;Yb)Va{4ya&M z)~^u6hq`>ts~H3d0|p(a4v?lDz56FhTLQPsCD&h-o+*mIH#ABk|z;FM}q%chNH1jmxsy^2=YaGhW6$K<6r00MbyEKSk1IIdh zN@$QEwwiA{0#uKTzj>RwvOd@shU%qsi{zEcEN^yvR!@ShHm!zQm#x~Rw5|X#`K$nn z&*YlxUWSK!#G%xe3N$=vzOwB)uh1_?a1;e+d+U-o)_;E=vc+IJmSr)C_`xD6(Pq}1Le zZMa=rR0oGaS5g5T3=wzhC%APb_lp7mO@cILa~lX|rSOd%E98wJ^JTCiYI(UXTLNt| z?<~R6yjWFmA|fR7|_nvpUWWy(o)Bf7_gsDi9DIOatlZsZ{zDJ9=G#?IizHKEts=lD!mKL zQDxZzed*UTEZK${!>Ze*D1~$`+OQHe0uoy&EPpk3%(tXYqs^gkNI7V=Bphsz2M#_^ z2})n#>+dL~qz+XP4JfMYY(_C8!^#YFN)fEMg~AOF4t{bT&7t{tYx0ItY$<(9u;mK$ z2kz*zhPp$lJei=$@Qu6|Mis_|gWRO6D1$nq`tDS~)aWkXA!RJ1%Iy$_s~HsAN-4JG zLU}^jX)PncDGhM|s5~@i+OrP0nP8969b>8@4DYOc9?CoC@3?&9heJR<3Aa~`GBGxX zPsERq3}A=3)F4W$X!|hP4=I6D0XB%&-T|s3s;>#6tDmah{*GhD#kb;EZPp>J*ihYw zG0ODIVr=4N2~-2~2rOqxk4o@#`V{N7d#_=tD2?pKg$lY{!+cRc_OjJY$#98O-1aK$u< z>b+^!000e|VoM|KpuIy1;h{z=8FeN+N8V*wq7AHInf?39gKk6pGQjM;xp`)L>J?J< zf!bH=VSD)<($5FiC@!{dQ5@))rNnngiGuaT@hbD%6jMKR#C;ghwCjM(inQl~#J0H# z%q~dNU`@Bo55s^?-)o1{NL)q9^8Abl2xbYelp#;pk)JMx)49Bh&hwAW4BVm52h%<@=mFnw@` zl>OtN4k?>w-YU;Nk#x{sN&ad_($_G$p6`EWh<$s8BFRXSC0`~%vq-pqeup&Fujyj? z$a6x1?B0FLQ6N*ofPRYN2z9g(kb)@=(=A?HJ$_kIPW?>bRdE&(K!RYb85hmjC{{(& zC;MNdv8V{npNhfJA+;K*d{ao*5C)71jzCJc&DRMA=Tt*#-%o zKjRk%ewL=L#hihfccYprU9gg@j-(SC1{}cJz&sLK-Uy)6g`APqJAe0NRIccD-592S zT`ta!I$hQs(yX&#g`pc!?&U{_oV2q1S@A>^%OsFmyCW}hY$0zghg>18BDUqL0u37B zt;h^~nXfePs-s4WV62nswq=|v-Lq$}F;0%?AcOqYRRE|wO#jr;(_LW7W$|}IJ-zBI z<*A*8)~6L)r8?PRNK8TCQk8D0=qB1x1i^~gYm=k#Mt>vUjm|1dzS9o0$gf+MDN~)L z^=xK;3@Vxv?ULhQ`YiCWxbg=;x8)5(k8ZI*Kc_?Lt9@=yY}qlHVDr1Cw$(}dF+#@C z>8koU$J=>R*>ym5Ch|F_6KT*2aYWMhlI`7Q&5J?bIq!H_(`?pawzj6*buB4z8gxcn z#GKTK2cgkf^iJPHg*vYQPaWoJu^VW2NRuSh`?x}?vh;^>eGx{i`6`0hj4aeiI4l0b zkf6-5>&t+o6M_9|hZIA`D6Eij`{?Hblk7~^R{4sHzgE-C0dDOfK16n<} zC7}UixkI%KI7N`PyoP8E#O#$$5Dk5Yq}%7+mYqj`5+@3vtEl$c0zi9J_k|GzZ2xv| zwx3Npytk@dQ3_pBDo4CUe>{RfgV+S_7XW56KX<4*#abpd7SOmN+SsCxqT>K~A7SF+ z8FA32S^)8tb%m zUqjFdqOI>2+GU@7Xj)yxmT{U`pW_Er_()^mp~WxhNZIL3{eu=3_@_Y{T$GX}$=`8J zC0P7O6t+z;>HPqImyKI5b^C0x@l!(T^XD+QBBt+kYC7k;OOpp{m2Ejt9{A`8#%Ceo zg^YAI(k43mlvcfWk^*mY*s_cN2HkQWuh`a$OQ~4~E8~l{qV&}VEf@<%SL9RBm%!ts zB8hDwR9Ka-(ox=uuExX_Qm*h>9#@cDxY{4<#Ep89=%6_w`m49mfcvdUkAn}kt6%(4aMbpkW*fgdo+OF?SqqZcZak=Uwf#V-# zpxg&Im?`gfPuebWCYHsZv96#>$ek3=Wa;P@@>7#vq~MQT1rU++fEY zY->SmB-xNJ;lUETfyhX$EU{74!JAvNh{TK#3eOuMV6hBHGhj*;ptjQL^Du1QkLDJ5=G_m9ay}0V80trOf|gVH%}^Z|-b3Jy}*|hO8-*wi`M_FFKi!QW*(O zt&-;=& zMJt|c)2!1$CyZRh+-~u&w~@O2Y037Ec;ENBCClCc0{V_ykooS9kdC(T?~CfZO@U8R zoMSt6uH&jZQx|BA!1 zKIRJpPFPNE*%ijygim9uA!_@+$Q9BQw(KT-Pdw?CU5HKiTDvuzSpc^dTOY!A?pi&g zWEcQ6)e8T)z>LNDAl4uI@oZPmu3wP!yHvVD8V+)jrX`Pjg(~)$iEX^KT_1V8G}TzW zI|@;DdbdBPZ1-&C)x*C8I1j&`2LwJKB>Ax#SyFEmR@gNkI^-2c@yQT6iDLAqT%_Uq zr0nPTy>TSsCSd=`T{HY0WIprHcxyIQX574?+ma-4*$BwA+H zzYrDfpMQna66AQpWf{os-LG9x8%;ok?rT&CsR%5P*4vbMQb8a96bxcf6^x3Qs?&l^ zV53YWM2B>$-aKd_m?25N!s`jCux?EJkLC+W)gaXdB9<5LX3nvqGrX0t+b^Z%ygLduBlLBjrn`Xl$}UatQ_d z6fZLxY-{7PVEPb#V|aqD{!GwXf^~XKkohG_PnF!khC^!XoF9x;6Uh{Q;Ex(E{_&DD zas(_R;$a=PGSkJudm8BA99Vm?l*@_n1BRTZn$b82;a&3gj{_a12DL1lF*U9BT>pkA zf%ET6hY4B0@lvU%&cwDk>IACCEW;co=9rtECdNfr_=R4hCX5F?Y&6W*EH<>A@KKjvqMTpIB1#DZ#db2ucXrs4Jz!Tgbq$80!;@a zPXO>UE=b&tJ5XO6;kNy*>oD{@S=8P+YTEEgDA>Vq74Hz%R`q)#0sg3#DFC3C0d7q@n%Sca)z8YAaYY z|8qE`FsBqkoJ>XB<`8#Lhcu;xVGwmlFABwjrL_kui|=m%pO$M-+DNr2wP3%}kU#rUkLyKNoZuhm zb{=R_s%Yeqjm4-B)}Q)_(GEgvIXOwrYpP_br~1^u`>1H!5hfwiz}5Mr?*+5&{0YG+ zhn#t!MKY-c2OW`w9I#n#A_c~U_RlpwUJqA-C*kx-S$nF}IV zD{c+NDpC=Xg8Y-k_FS z4N0BR%tCXZrWvSBG(QVNQOjWjBT6bci4m;Em0_;eK_&%+uqYuna-sbrIG~?4KvaHNmN{$^ zv@^>5Azj`Up{tSA0dXF$a+XRbSa%2&(L0sxFkl!u3|)u5=asj{!3U{=);DRh{m`kB z*r^ZD6+<7AXDlkgQK!Z>EdN@t8th1O(6LbqOPtUW5wyb3pLJb_K02d1U~xI>d+U*} zQD)9gMb}6%P7;OekV?aWSxSJUhAT;Wz*j;K2v?f8EF0U)65W`9i=_Q>APnRcJ~ten zyBO;Imj`5kzy@CCZNc|mBt1pxh%OgLGXQfR7N+I}4siuwP7(YF& zFy1a@`qD!L;V3SlRqOcj;d63G3;r{%z7Wh%H)Hu2t(&rK!c^MjLUE zRpG3LCs}EcwlsD~3nlZx?GiXEega6J(M1`F8TwG3>yc;VA4^9lE2qpUi_C?j*9t^a z){AkS45bXRe9GUbW30<@2?f^tw=|Pr9}EY){tOb48-cC5uz2OMR&I2_91$&zG6)@C z1h3l+9Pgdxz`y)#IZT!eDcd4!iHo|Ayn3A6*{Nx_GB`*uhtzNfN**(V{U&Y0%7OkamWqnW2@Lw*q}D*H4#)s}FHXm1In2gxprC zD%J2*?W88v-@4D!_?R|8qwX_L=IoI4JCD-nyPr+oPM*M-@L0UTRM`e1>T&}B|)U4klh5VqoeDAs9j_J~Lw9IG*McQCm*)vV1rX zubvYGd61PD5F^L+Dh+jT3=kb}H}N?Kh3PvrL6+x&iKGn~KqI7`OVXFl z4GMz~HS)T>kRimapi|48gv6P)F^~CN>vRS^o?OfK`a-=)8>E$?wWvI-lmMZA(|>^r z)Ae;JF`=$8-W)8Iq57mcPTpCZ=`ryb3@3fIyp~6sh=;R!{iJ~N!;3Ct7=Ot-mOrN9 ziwBe86xcR6D2CRaVD})`mdVugp^h?#v^=bbhZ0$e2yP=p=$hF!SG)9-LcS-uz|b#{ zI(0^MvPqg2X!*@xLCXWD3XJlJu|Rf68)=ZJO%7RR%*(L)D1RL=2Oc6(DX1!O_X~7D zk?j^FmnoXoj`(LDrcI)&n3f+pkTTvVmYzp3uQkp3XgZ_`y>5Gk@~+W;Y0!3=hSDMJ zX~zl$Fnbk)K1Zl&`20ZaSmasYUAg*P0>!eN;N>~Ldf-&3zGsJ2^_N0NWA7|O55^kO zq@#6isKy$Ro#{CoQsPZZMSGLfAw}tsKF52nqQxx*A+Kl;LVGt`_8fI04M@WRqOT&D zL&~9?IuNDscqil=Qz;_nbVvniquLT*qlpI#4yCXn=y-Mtm}N=6P{$OkYHObb1Q&2f z!x%^fUc?nKDd~5f`L1ud;KW@p9JO%LqM5b2o2&76NK@h}`Oxc_aTxfiuV|};G+6D! zz;{Q}z)!~TpRQc{jKdhLuZ6Wel@+V_B{`&iX-MF4)D^ecJ9oaGXaGD$4MK)Uh?SSp z7>_}>EEPm4q(Kc*bkrr3 zIxDP?58WSpaVAv%(>7Sr0uSiyq6evDT+SM2c|;1L9JfHH;ZY30JxP$ERfJHc--ZIe zRG8o|_#R_!L#8h!ua@O?%2P?3wIg)_$r~%lV!o-P*fM@q)&^T62yIYc45KG6=Rw%VCr_i@S!*d&PqSRLDJ9=79 zV@_t$Ex6%Zby^s6D_Zt0sR->lt5O~tJ5^@Onmwh-JcDkh7JH8g4L|s<1MBz?qU|ZA zLJ0(gG%wHn`NL{V43?$R#w+lCgAK(LjFWy;xm2!@uHb=G z{EXndnTl3bc0IL4g_J-0QahyfOgm!jPjN>=+j5I*KO|kToT_*QXmQIx%-pEGvM}Of zeamza!e*Wc_weLfc87r{Y$xcpdUafuk&&vgqWGUsh2GRfG$N4VTcb8sB%)mHQ+iB4 z0EQJ#TMbJi6sEXia8};ugleCz+4lHMvKXFe3;C3}S>CkeBAUVMh^{8vBu>)2jc|q3 z7NfF5N@uhmxZ;VF(5}xaK4}kSx@Rk?8q?@FoMWAsujI9e?cTDuFdm>^9O5z~oV;3> z>{(adn4f_n+D;?H#{}(%&mr@u<2!f0Zaj4ZT^nj!4T5&QpiYl~4(W(bBv`jCaGKZz zX-3Gv90!6898`{HLev`okiUMwQmC$%+V z`E`IponyPOZP-Y<4Z9!EcXUQ=JFC5S!)>kFPNYFf{0%7JwF|T zq)f3kK9-ZWDRV>0+BWkfE!y$)H;kgl2=B(Qe(KCzOLaSe2oG^#PNd;V9UE;`W`;(}t)CGRf=Vf~Q6+ z=3fT#Of)@|AH}$Yi=m~11YNNcov`(BB6WmiWoOquy9VeEj&^#C^wojduIG110rJQD zsp!j0kz~7Xl&^yP&S}#3e%beMCqdKlw0HX)9Cb9>={)Wdp-yythd%6{!rLi=Ds5m6Few)I*5&XV8 zeHgs>Aco8cvQp!qt653kJJNxYzlUTv`d}trT2vSaWf%nju0WV5r!Je983?}u9!Ysz z#w&kK;e>g(1+2tn8p?Fq{PMHjivOuqN$D|}B@1J?89KZ2fHCWm4FXNqoDS7FyQnk# z48)L_moM9ow|3^|DHmIDQ~YYZ%lfDMHD^s5Qc8&*C+-$lbPM!D#}8$@46^<~JAp=Z zv}qbNqAMWKS_6-+8ih6HfSupXz+censpTTe=`z4O^}5Hg!Jn9W+uT5iiS zhf-`8$v_9P^+PSlL;+8~ZNs~x&S$$Okj`Y5ajr-9Y+4ZX!}>Mv-$rm26MqfAYCt_1 z!&KM^&Xwrb;Gpf3_Ub%FYYAxc_3=rt8+Om}yM0QEcFAm#9Zr-d%{6b*_uADNa~u^- zx4r*=0PO#D5TLf$`6QydVH&;)(a;&qd@k*=s6V77``DFZR`x569>&Mz86N^{<^+LNmLpbsHUwuy>m`0> zl+=}!=&t4&K=N3VTfSJm65FUuvtjh2ur^!Mm&KVj!3=Hn-cP)T$)KdwjjF9Q?D)qZN2;-P_(q~*ftHXAci?f|hhGFg1iHZ6pPzeNy`InH+N2xWZ8GsDM>ATLfL zX?{&CnsFGo8j}(oz9I2_7+WRfq?Ba_3si@VtGrEkaV6z#_nKC0MMa4zR!EcPSDZ^Z zsr+nk#uvHJG%eazkW#Ocmjv;d@BD6%wHu{Y`v7h^Z}c+`ec$_bFJA>s&;d%uMntJ` zJ3$&F%3g*#%w{*Z>mz}?hq=;aQ-Fi5gqaWlByd$ZD?r#%d;uW&Rz?XKw~NE7a#z7; zsS_&WrLdwcej#uUQl{}WIdhDYRHxz!Dc^1Gsfx+QLM`?2jILz5PC|k=H3z1SZ7+Rw zR!HlB3&K(n+4#nGCm4mgLkqgXbfFbeot$S};EIkzlJ@0|=;R(K+jvgn`EyaQ&YQr` zLb{>c$nM;K=T&yYal~KM%NTAj8CE-_L()CWMgWLW++IX}l?brY3<~awu3IkcJux+y zR*rJs8J?MJtFm-RGpBN6iHLLX6YAC_CzpZMVO3YptU8yNs(~(x$jtXNy86o?qodw3 z;KgJRN?E*Gr8_360%E$%Djil!=zq=vA6S<<>U3$G@!t~q%l^tI)|-hd@A=H+hHTau zFIV|E=&zOIy!J%;YfK4-gTbbs32oExh;;$C(y7KJ+sao9M9VgVWcLX`8aQ)>l<{)> zY}GItf5Q`bWJ$`&6swu~6=)80lRxm|!KWbNx(eLLf?{L43OYGaLF6kC4w0(a=6o|? zxrL}S(skD&jWoq<)EaOSURdK1e^|)RNJ$NryZGo@OPw;FE(}-jq z=0aFzh=7tCISXD8rLFPsGRMlk_t$tnz#gso`NYO0Y-VLDOj()-y3ToPPdtcbHyNrvha$Ki_MTP7P`n5w! z`$C$Z-yv1m7Hv!WbRA!@4a78BpxQDn_~;4W+Q;Qd|8d2|g1`iN#!fqb5v`N?S(m-<))qp^O2a&? zGdoO4SDliQ;Reu`yiLi%yAer+W{-L(4)4b^0f6qkk1vDUoy}HxdXEaUDPI*)uR4;M zZ(STls}tyWozEeSG}^Pxz?T)4U@KbOQlNnm*GjoW4S~tX(oiwEg2}mxQr^_FU_`BK zt(3-6jkti#S)c<{LfeKFQY1Yz2fjj@y9|P131cZpfC%aChu#m3$+~A$5r1n$zKU!s zpT?}vPN40?!0LAXXa)SV#WWb*XM)xX5Mj2!sx4QQ)Ux!+$Ev4R|Em=vSVPJdZE{|;$>mayfPyIgwxR;TKJV<+)44OJnxPiw~j z&?+W$!np!0I!FPKzw2kbbH=R(mxbAb#J*HxA+Sj|I;1YS)bq~j6#3j7(k}`~;yIX7 z!>^J6r*I2fZR?r^@Y7#?9LhqoZE^ubd!trUpOc*$t9@YdFKH};+NPE;t)HJalsMRT zsy#N9JIlxqrX*`(WEeDuv0V+uQ}M+)O2qn*ctQKXUSCxa*rcN76WZ})j;j6xtWPX$ zbHQ)FujNqjBnlb1kTew+pa|9S5~}URihJ&#puEj#JbUo5NUK8SXnXMX?Ke^}CYVFLq7zrtrx{FF5`y0Q7G>?6td2+@s{?G<5cJD_6F&QvU8oT@ zFj`_*4UVC=7mG021mrDBf0Ny7fG11*VSD@LiAf?>erqHg<}xa@}mo^Fpz`PA3K%Ax{KA62Z_b?V>BB zE>D|GZIB8_|JM#FR0oy<8(1Cs%Y{jNt$k1j&f}0$hg%Ffc3bU)tN=qNWLIqsHk$QQ zAAh+H>1P3{Y(W7!E)u=Z3DvGFJJiTzFSGDyavKpeZ3`s6<7X>tf^09CoZ;EF zYq~~HSca}_MH|DEOJSK^#aZp?bAxgWdX_^9Yc_E_soZUoG`RD@lo6qDr;kLoJuWrfOVFF`};|(Gw?sZ6xPO zpf6wxy7bpb3xXagm6`u`Z+=|`4G(qDLG&=Nqtb(N@{7`ymut?bRzKy8M$(B3m#cl- zK<#i;>HS^>tgTBMyAAfOvFettScWl3#||7{WM+(^6lM*DuuV{f0*ni0T@&Sw8htQ0 zOU9#W>GI_~=3sKN9)(z3t+XZB;4?$gK~SBKsUjYPn2xgXM=J2pqt}6(gVIdB;xo7U z*;YNKO}ZU>1*yRRkCRz`;x)d85D(ijUKkTaC*U*!Dm!&e55}=)Hb~P;-bZH?fq!YF zBNv5AUe04Pq!)u)C#^gb`W5NSZJX^o=L@MvX{?QUy1L>ELs>_CHPH@vo~+Yi^0aas z$JJM0cy+0YC~i|=@x^64G4bU;%oFSO^h;zt6{cm7Us_L{eJY=+ng1&9^pyz_;c429 zZtc;nf>sG><3V8jw%fA7*;M6YFv%q_OYy8>fW2zL_j|Yvir+Srwnfv<(6%jF-Hv2@ zZS*iB_F>>~I?)kboX*kD`8`z;z8j>XfY>2tK|X|Rd!~pM$)6Hv^^i2$l!#Aw$EeVO z^YQD~@Gl5fh;*zyzlJXp>T%QO2}PUMcAj*H9zWlLVyrGY8E1#l#4>D5LVJP21|{8P z_^S-{u+8~0vdy^<6}9;he4GgK*;=5D9rO6r`c;D4dbQte%Zb{gTXu`ZjDTO;HtZu! zo?c>rin#cgyzYxb8+Ls1omlP!;)Js9unc{U)smn{*h;_pajt8L`Wr9Vy7^iHIAc-^ zWD1Hj z@!cioL!hCS<1qBj8>Xj%iQ;7nm0Vdeo)KRT%QH|~6+IUO=UZs-R%f2D$Xj=_`yB^! z@R?OXo*@+QJ+1`KQc*1>&m3EN)uZ^rc$6msKP;RXnKrqTs(1~yy6(l5xN6p7Fgc+c zO`9izl9$0}!@CkSplO#%##h?vhzurWqmz8q`*`S!W$=oaMwl5=`xXKBI-cBic&Xm>cwZdgd}N5}j#xtFYQpoh?>h$q}KPsB>HqbR6_5b(6oM zBKViELMjN6DYoOG`0R^)f0!fG2EDDINdxF7r&7|-VF|xIKLy62k@^M%OPN+_?Gqx^ z7}lBooUpPzeL;|to=>14ag6Ug(7sdgqYT1WF^t0;^f6igrU&48UpAo)A{_KsKX10% zc$}2IqLYnn!xugli#ZmjbC%JxZVw&bM!zeq`Vq^7)?4>!t#0Y=d+JcrG!qz?P;fvK z*UoqW78O28Lw~~bDd&y&ris@exj3M+*RJ9|5TCwkNQ%hdTUeoGS$f^d8U_Ky_7E#u z)BC*^o`wO7`2vfM->&Pr4qe}2=zCsT?$GNeLR=`?DOVC03nb9wk*O99gEXG>ge|8b zK@kLu${F#qC^KJEFp5)N!T(x1&d%7XcZug12L0Y=vXd~?NEIv39;U`NVUn8{0pmg5 z9-H;X4qd1fT1A`7(0`3iel!g?aM(&KGv?dOvEcApjEEWwW=h&Y*kIE2T(`*B32K~) z)b2Ur7Rr~fqS30ch$|d1y+L8{REAM^CYs|k7|$*!E|Ya#jYU{OS~%%3}plR=Hja&!JXle)1B}&A>6R?kJ1rkjql2DObHPXEY|8epoH*RdHF> z&IP`E!t6sZ8D_AuJz>E%kj>QuI%_&UXYhK39j!F^gkKH~*IHcY6$c z=d|S~0iaH#Q9|2V+Tp?p4!Yw?t)FC2R43sga{4v=3xVg9=~zd`AzwNK2jJH*1`)n4 z)iy0)<6^T*!UWMqIJhmXl;tA2W8Giq$7q6e26)+Zp-R3AU_{zI!TDDh(UP{7-)I5U zd0LyTxs%8ITDJDjaU9D_S2cC)$LDP41-1~v6-URy#<>AFX&d^`s$Wgv;3Su)LjC-C zf?&ip!c_a_UsGBsATq7aPSEz^_X(LnNSrMO#WONS3BA5QOhEzg z!z*m|*%Tyq{B#7muG8}DBkC+eY_{8+FI5utv;q5ox|MIMJ=XY=%^q9TQRuZs@F%y| zm?jR8b+*q*kM|W%yuKVyMV$aom-#JVdd}$cTSt~ADsBmC?6j7srzx2Wl(d=xu|obP z<9e_DGKh8ZSrnJD0eSsaN66*$3-ZY{odZxq>CZu|Ys969leQ%f3JH@%+k@Urs5Rg$SIyCK0yPB=-tmuOrXW^mX{Ymy+gt?F zx*V33SyA99l(Yi5`00{D?V6y#x5}FazpL6Dk+N+`Nc^yOzhLLm_dQ?xZ}<(jw#^eS zl&N;4gLSrA1tQ{Br(Ve-&#^*UD0l`5^+PA6%sDJ{UEk-)?^)?gaj?UT?~w*TM7Q~d z?M+%z{_GX1w(n_{faa<7NknwLle|B3g%rr2yb|X?QRXij>i*%}5bWpkKT2i|YUZbeaVRx2p>1dE$I^hdZ84k80DxazKzZVB z{2g=>vjnyW5lY6k;PQP_p0_~R64C7As5+_K%LOBrD>?@7!&LPg1FzY1<{W)a!6IwF zQjbHY!E~wMiJ~!5Ge8&4IPRt@H~j32FWra2rhsl2oVk_{icA`GhDW{s#8$*O8T^}R z=1el3-b0-#buMkybFibz6}NguIq51@Zm7C9Ti;h=M_e*BD`!co&-TMEizrfM!{Eli zXwiZr58a6&G-AuKTCGfOnWrD7N>qCsN#P(ju zFz_&=Id`$7G;sTC+oEat-V(R+P&l@;g}X9{L-uz~VV=_=4TJF-B+zetNOTa@f&%_N zmDL;ZFn+1SDh=9Z4YS#d$NJmh6bi$jA4b?3lV zIiw|T2mSQdQjmeWTsJiJItzeI8ZGGi((Lcu0Y zEM(#&#QF>$^2Fp|vEu^Rt}QLd$DP}6#gW!Z5ZwxC4TAl(H5B8g89_~B-|1}iBi=BF z6o4*a1GG?dM)T46T(KIs4NA#QM5KTy7*iaskhboSqGD_iC2=u_$LJ{r-Z{0U;fN@% z?wV-0^~=D7`~SUt##9RE_}3#c{0RrnpRju$EFEJu=ss zsZ*NtdzK+_&gwK&bvlCD(b{8`&s97hTD@^z@I3z2oyIKaZRaPM4#%?E%qVCXu&S}|Xsw}XAwIJk-j@j&QI zn$u=mk^B%O2;c*VFUBD?VCjyN6C8iMCzJ6Aq2%e+tqVKvmEVF}v zA+;j@3jo%3(Kt$;u`)te9;ZVwM3`6gJK;LuWjZDq2 zolVIr>Goc>rE+}lb?CiMrfQf?29L2SpjN5By`E z1lhXzX37KkatmP%$|k^s88p+B*#zXB{Gi=s1E3+(8)ppDLf>KJ;XAf;o%}sOlR2G{ zJV;;>tjiqHJWvJ_%pna7HK(X7!tYJcIv3($8R!@>UvNlOVUjK7`=F{C9IK;Z2G@&D z>U`K`KcVWOx20{RQ|m-ZNQqlJGO7`0=t;`BB@QXHaYD;5{n8Sc z#O1{@qHL{r)|W@#DRGj5G9kT0k!4xqF&X+NU>X72eRj4S4+USX1h{5!>j@Dlij`u|9fR^swZ!a86TQZ)USbGlA(!j9Cs=lMSZDZJW-NH#5LLYm+A%%`r_Wp%D%=lJ<2# z*4Mf%+Ow50B`1E%mM7xV(#dj%RHRrTB}}xpUm}p?S{~1R2lt6tMOgTGY9i3NAZoB*sq zpdtWuGACT_kaEi|S4Pct47%O3>lOfjX4Zy+GsPVK#Cpb1O0MiLhQU_(N_*qusU@tX z*1yQ+XPrteW(#Q z|Jf&7?_^lKPl@Am(S^w&>EUaph<2$|Mpx2GJ&g*44AX&Qptw=t&1P$8XDw#>j*XZD zskw(?z+$mLx8NZWJQ0@Pu3MYUIBTFUf46$d6}N)%gene<8#E1%>TlH{blk}bUJ2Y5 zk|;nj#tb*SylIHes4-sCYZjx4$+e`wD=Kd0H)Dbm63Q&Lvq0mtlQA5lOd{{0Wj2A= zXMu5G>T;P$jc;9wK^DDz(gsuJ$|?sPx4MFp=le;X06Zk zGHrI!Y+LCxEK|Y@z>4fKD&jQ6516ZtW~u1AT}{hX47WR)PRG@D%6w72?ewvJQ}g&x zT=lYP?9zkTbfS-0%FcNOc`KlxJly}whF={@J}YF~5kg{u5(-27`M~GUa(^Yk_%g*C zQO8t-pZ=gT%1J%Ajk2_6FT&2kbIPztmJ(k#sK)(fYpjmRE0*&w2uLF-G@A?ID{{6% z7sqcRK-;#o!RkP^O{31JaUqX8l75TYuD2+&Dd{;2!vNX5@rJ6Rc*&XJ z<^9yNb&sMBfj1iPeMuKs8kj;?V>y`NUh6^M7tQsDZ>>ecnR)CFakkk855$Go_?F!X zc@#pf!tA5&1_e)wn4E`@S4j2IdBe0iV5yyiq#je?8N4oi4)x>)#z7V5+{^)DI!|+k zGUk2W3YI*@hb&j;zmVIRwz3>2NqJzrpaSHXe`YgH%8W7EO<$mOx4P<*lDYt)TJkRQ zfxL-w$lIw4+L$@q6BVOXL`R4E>~(ty1mjOi+#S$|trJEk(~%#^W|6&~tjq1JH8eE8 zm6P9ZSPFGiNb7R)8ElI%d6}#HG5>nsD2HKX$t054vMoouaIhRW#Bji zSHuUL{4V4P80TOQoIo6?kp*hni*AVEWGNu9TgIY7iK=Id{rVnhB+)fK$ zy=*XO8I$cJ@XMkto%1dMt-kgl(DvdJK|F0c!5Rzl#8}{Od`A|6gJzGc{l+s942-`i z?4pQmHn~(Z9l%cokMj zTj0T4xuxV?0u1qu-Ksyr71AN0Y1*p9^Fp>6BfQ;6n+4i~}^&q1l zs+-wcex}Rvv9AhaFwKzdY6%t^ZFSQAD1T;A%h0kB{37G;kn{|OL3f2hcMmDvoTTI= zMBmxrrK%^!CQ&?{+&nI3-5HmaoUJ2ue8n9|2xm%+A?hQ*`jYBW4O4v{Qi5#Vc+LAd zz}|7x`z%4yVuXcC6HJ%6^+4HA`h9>T7`h%vEFX%%5I&oMMC(&41tK05VWP{_K=Red zLV3zD!Uzh&D~L1QMuR_xdQ?nA-{J!gQSi}}SMM3%_e>X8{W8g3pXbkpixKMZJ6%kt z!Ebsg_0UBRkm4RYr^Vnx8ts4gf00 zMywOIZEF!9DA!tP>JtPdYHLry$>uo+=pf1tVV8xx`!>-g;{|dD@7i(gwr?p^TcK`niT0p;29i zQ)FiKTR+rwR=giY$A=JO@R{^&3`a zI7%TUG|*Luq+62p6Jr9k?`;G4U@p_c?3FWW<){pz9cb+RTI9h5ZG7ocMw@QZ1$d|* z!0+Q}5Yt=60GS_^yE>IPKtWr$|2%=HO~}i@_2MfI&%vNcJsm;pTWjD1Wz$k0Qv$@> ztm=*aTAu@OoR!=mJr52wB))2~RCcVBF^QAVx+(JW5i*I=(Ns4chEyJgiHl{W6muK;N|b;qe0 z5&)#cL+2X(UUH%wMH;n#f~K+6KssAy(`-yxtL-v8p9eYSP{+E|0&Az^l8c2#IaC<&LtP1J(+^&RwWgrl~*vns+V*zk45`kK$~?DrJiaXF|*=O58LYo2YBTrEs^&ji}5c9>W+I%km}GP(i_n<{V;%0g;8 zJ%XtoDJ38bSTj!)i3FEBlV`i*2NQW22BibWjQJL(6Uj~)&(532+JF4SPjrFpK<&S``OvRu z)dcM;0CjHT3w)No!adWf(H8z|hxDrj&%vNtPcK@8Xq#SZXwWN9tbGHtZ{{Gu$1Wv^uAITgp5e6s8w07aa9g8BE*ZCV ztRHPU6AWme+f$o{lj^n;#@|yc#{qag_AG^>?=ak#Le!m*b}Eb8fAQD+pn39+9^1tk z_!iNz*TND{%OwwW$EO~CXCToLwO_Dq_=Iff2boORMDnW~ND1A74(ULldp(wSDJ(tf zB@1p@G^Cyo&QC;v1x!1n)BW&N7y!uDt=Eg*$r!v0C@6avD-H)1<@a)+-&f*oIZ&Z) z^QG>j%8~^b@vzP~clwCR$V|>|Qi3eB0vf-e9sN)f~qt+lR zgkb`lf`TrE$VWDU{8F<4c~c&sQ^V9awE*MoltXHh3?`eP92u2-PtghocotoO=(dqb z2r|ujq7ll6xIzl>KoOO$<#ZW~IiIx?T7kdvCc4Ffp_F^zebeUmm?O)RZRLo%k8C7d z|1`{gQ{b5>Z(!7|kg0)Cp(|b~OlIe-Twqmr*0RbBlVEs9-I9Rvcm+HJR23{GvkqT{ zSe+Ia2afWO0t)3bUS=7UxO(oQ8e>2V8@ItRe<+zz#u($m4IP~RwZq+F?u;vy+aF`) zzRIW1KJjKYzOr>TD1z#=wUwj;$BAdC-N^WGP(UahQUF|8u=161S=Cput=l$c9XMz`KG0Nt8y%SzGP^EM?{fRG zkk8#ARk?(aLT8F{K0k;yd=f-f$A48|it%T_h@TfGla)TdLmFRWxd^0Sx2BM0os8iC ze$pWoZAe~*<~Wx_YGpqc>n{XT6rK(0km`iAw^LmqrIQDjp}-s?Iz@f3dl3YArx?t! zv5BxmUYoIS+v0Xl@6`dLDONkB3M9y{6TnygRGuogT5Xwi8sD>^ZvPi4$KSp5XCpGF zaWH$Yi%H~R^*KpBe9m953;m||Y5JSXr3}nzkA767O&nkHYv^@{sMeCd(802OgVm*o(d@C}(8BP&1fhbiT5qcy3VVD>u$uFUyMM#jrZ={9p=_tlk_` z(L*{d&E!?5FY=b@z6ubjJr6jIb;LPg#FOe;1!fXP1AudYuVkokprPR4RP>v-_WrLK z>>3O^SAWD_w92E66rzJ)(CFm2kY(v*_-Y5I9i4|qBOER(zkXJ9JiqCpLDWw}e;KSa zkP$Rpq5D-_=8+=k_=VZ!^VAi~5A+rFo`H8%t;m}Ks{FMxIu*vUbRZUJjAgM^4L%6s z%)Cv`u!JdE5^Pnm0h$I$X5k8_c1Hf%Cqztd9E+?+-kApc5&*a@(|=XpdKNHGrX(dj ztrxgJ+YUO<#{jx=Yg>u6T$_OO#KKPiv@Iu8dH7yFbj>c~k#D{7148m76E7-|^A5G0 z*EC-u)Ya9`zlI8edc?N2?DF*S`ZW|#m>g*WFJd~dx^q*RmjPadsL20YwqxEP{bTLZ3aF>-f+N>4I%f~tB5>v#lNE5lEw`AzE)ftz)V4&%_&0p zH}HQFmKAEC8BG?3g;HBU#JQxagc{#E?Xne8*CB;*6rx(F6NL0r`q>YNd@U8&C71rcBF zP1Wv9&nb!opP0qu9&u6}j9=toh*}0Qy(OGj5_G35`t6#ptTW&gSr(jr4=$=Hx9oaU zBqTztGdKrnB1?hasyZjCiC}Eu%AY!oR-o#Zxz6Pjf!?R2&SUFq6$WDU>!*+a%C}gF z9eRlFIIwn;z`9dP<4Hp{itv~xi#SOcT7cTjl)+-Qcxg9X&71CS}@nqXcNP1GW z2q%Zmw`G^{zG5kvpU_FwuIrKd>iB$p=M%ySo!Ly^XV-o)(#tD|+r_475!zbdnJJc) zu@sV?0RFkIkd7g8@r9cVd9hu5v21ftW+LNp6$ z0{f@BDud;FHWkWYNddNko1x^jJx#BWPWQu+r%{pG^-I_OvP_fx{WCBRT6-$fq{7F|t;agm7 zg_M^$t07F{R@hWb2$=i<0qlfcWF7E&13x6#NAYJS^EQ>BhB?=jZ8o)u`9s^$mRNwk z;=%W^^c$f=?`@mTyXt%mL6@za+2kVeCO$l@iQjyS9eq3F5&bNy#4C-Q(ZIJ5&%l^7 zwpXL}oC9mGL-k^UWP?e5oCBUO*To>~+!8QF`&EQ<%7rXikv2r>5H-d!yl%Wcu6j=J zyvqy8F*-K13jMQCyad_+gKZ^>v|)S=CUN~pcNkcfuP$W!nV{`dKzemDI@294CRr_< zU^fBsRdg$=8{P2ZybWcFzI)s>tuF#FUiHImy7Af=9{PbV0an|t$h45Q&LZT091l?; z&4yYYW{l&c9LjLp@yU4YJN*0`J{RUYXZDCjd1?VEnODePM^Woc=Dd1AnO4U^V{53U zASYpY-WqaB32k+h&iFP_ut#S7)m1hF}iOL%*PAS#> zHN>1bn?(p2sOZMrQW%~h#(OviI3~+vPMA6sQ{X}_dVB^lC=MnV=K^<{nSY2cleWS{~9-*H^%jU;`=S!NgW8d6c}6F@9tI`csf`A=f~M z*CgQrg_KK<1GoHPVJj;EI#{DqX@RN0pLuJAiRvNR@Yo^3F@&LI_1d;R5iQ$RMol+E z`Vr6ay@v;5#h&p6JW5Z}MK43|S1F&J>>4!~Y2TV|>h$|gY3_URP zXj@*Jy3zPGQ80fsBIRS zv()(`+a|ZMJ+de*r;+iuY_-$px8Io7Crz7%Tj~IxBvq_6EWa+omEUZeNMqJPq7doS zbj~Z|S4l(EQ=^YKYPt!M4JP?<4tTy?7XzZUq9##6{YwEu_dM4H=qg3X2kI^#S)3J| zC$Dr-AMif0c*w;Sc&QG$!cANb#Y2EFM$z(`V)BFq@ttf-nepLHBj#%x+o2TNxu(nQ zg1Gu~5%g_R%1>FAmb1VzNF7V!LRF;R*UrWSUTiQht%7c?~@bcaI zc-bWrpVyY07i!t9mR?D1=4*bo*Of#aA?HI;J}-N=e#+&be?edjA%^#a1#%0?V% z=X0M<{dSt|yb|v_OSh6~47b?Mo)4z-ClsvFL^)-l2O@OtJzW`ZbQyn*2RTWC?7Z-1 zq;WM2$xj=d0@0J8dos(u`)#b1v2uammVdHgLNO@6GV)9peK}T+vgeV-l7G z8^{VpXXijDl?(uE3v=XeR?rfk(y2_YH(Iyqhl!{k`l4Y*Xuan(Sq>2W&KEnk)!UO; zpVe#SC|!w0N=r7xTu0pL1Awqf!YvOK-Cl>LpMb1;C9k1_bH;mW&65qLh;2{NnJ7)` zZAJ@pUW<6=8KG>K(+Jn0<5GgIN4pRps>DU=oT|&f>J*A(R8paa#jIwI7`0KG{IXPa zp;L7Q{dPHc6J|h4{7xMYSsSpvwyy6na-s#&>UMOYY>92NA~E0Zt>igtl7SM9P7yt$o+&s~=3`lU#PvVb4!i zHTuq%^-qI-2FJE=r9?7lJ4#tci0!&owFt~=%A?w+gCdBa?|Zdz(`_QtTMld{69e1W|t?d{I1#5cy@gE0Wt@{#27;lK|nD4*Fr>=PoR_fS+%%!MJw~ zmUo)Y5~k8Ps-A;+8XwO>q<4hYI(f~FFnub+zUliDG z6xzC`odFOGLqgl=w&N9$5c?k!Ow47rOjBsQ=mYZ_-K9K}j*}Z*HH6wz==Mv09V206 zFTYw4btkmTXzvkMFpVB34S`Iw+6N73@cf!n$4>F^%q38b^AY6OD4%W8624_PPB_Pj zPdg-u3oB``LrSwetuK6TsK+Z7EK&aqV#+uMMWvf#8(BZsAlr9phqSIdz(A+eAfd#K zGy2IJf(a2S49}@~oSmY=UV>|}lBzRi#v>|-J>)O}>xqI&IzTW1mJX?A&_Zm$GX_;8 zdtX%R%-fHt$Of*^T5lT4-Q25%U4l8JBNtJ}UYSn1P1IQuJxzo_)qFZZQGcMsfq|=Z{1Bfg!4VKC`-w?8FS*JVA zDl3zN6R0#h?W<%`&_am1VuNLik98B2mf{F`jj7s8&SrXAa`z(6p+PMlR+;Oq)1zX? zMe3~UieR*g;!u}Vh~NSaX#sVinBcAFArkgj%f;-K*}SG{ed}n_j)|EE+_-Taue|aS zuI=yP%H>OV_nn_(V||9JmoMYq#~)#PdkYu_Jbd^7C&x$F+}yENWzn(IbZ?5rv`g3P3h!| zsYr?6W6KUHX|VTZViZd{MB&<(}UmHM>_L zNT-G44`)|MXLi+W5_6f}n5`0ZNNuaHj#%6l)$dV$H6iLwz}0?4$7j(w74tW&KQLVl zX9d`brIt&UgmLvM=}kC@{;XYu_ZNzf*>0$VYI#!PLJKEbvqM^!|CwN7Y{X#GhzK#| zc^uLx8&vsAke$jQT}fn0#pf^J71%vJc-3fkoCI|K=+)=ERulDQxkE~lvQlNE!`~=q zi8NSxO`A(&owkB!&yl%p+h#mfDg53BQ=yeh*qfdOm>p63wSmhtEMWjbRdu*SE;ErS zg=(xaD9iW`P>#zX5AI?^cPLpt0n=ss1Vmzku-~LKtssTQ6VMJ?2lqN?q`_U5*&29s zszYo+3pG1#&rMpgC8M5H`lWgKJg#FBCev|1K?4iLImQ~qExY3ZI`t$6XQ#H5%PQw^ z3cCoIA8>cxWfT(xKLO8K=d?B{#7Mm#tp=arkWSURs!oZtdcw-`S8@^Iz(54(`=0lD z2t(Tlu3WwhfbTbc_dDOgAO6AbVYcm$Cax9{A=^&7WwbbN|u&kk_&<}I8q z7I^Rd_wn%2BYg7U0gg{k^-vL$s2~mID2p=E4u0qgXU#94)T?O+q-oJKt+sh?Nw%3{ zHEpW9c9?`R8i^}E4Uh7#1twx!x2%na)7Znxrr8Zn018@Nxoz|m`s|ETeq6<#o-H?7 z#=bD>d0)Kpu^Ozc14i$!9nxPWoZE(90M5(b$S>ZW(;*ceWW?1NP3v|q=%)3(4AsCA z)OFFPsWg_K={^^SGz~~8(pSQG@EjofWz$fNnQ9odXY6Gt{~h+GQ=U;?)M)%%*8aVv~qO+#2^3UZz79<<4m06LrN3uP^98HJ595I^6Z} z5hQr3QH#;e%;HSfBM;yMrjH#&8vth;)>N#?OaGh#yPX=nyAIN7&un zK_kHC#wPB(a0f^UM~8=)t+hBgK18=zpj#}kSS)aP_Y&^hzJpsgZsP6>ck#8i-p1Fz z_7>J>4IV#yfJHyY#^yRifJMJR-*fA{w<{B(c33tEX>B)NE_|guPMk<%TXNOzdRwa7 zTTq~swBr<=7@cT4WN@y}2Xstma>q$}*pU{%~Ic)na0gE4It1Udb(LC)gkIpsM8tBQ>f`DM2`ukk7u#yHiF z6!FjP*2=U#%G$NFzPfVhTFw&4F=ULd1ZjQcRpua`Z2xplX$Q*m8HoM#zlr1*g6GR_ zwu?Xh4ym5BdL|^JDcKg~O`c~u^JsVP*%%K=kxR+kTtk_OiOOw>rEG6Bf|w z5&Y&zF3atXjd-8YYTi*>+hV|2SqVv}YCH&45h-8#yIo&slki!_=H3c{vVu zqi6R%kX4=1NL!Vh0&a1a4{;lKRn|BT0vALCo!{1$HA zzKzqHOu8w-^0z}_=ZdxQ=2~Kt1{jXO@&*a;e3ZIohO9r+z zM1Bdt{#2}f8Lg1AzvU!)8hEY(RZ_rDN$IVYe;yo=lD>P2C9<(L%epVTLaLK&Z0BLi z?ur#sz=EgZLjPQYjWg=-08=HN4dWG3(Umvu0$BldBQ3jY4bEdcTTE%B0UGviv_A>G z^1kTH^u`Z0vT=-#8xEr0 zRb8>XLaP$gA+3=kL^;I%B&CFY;Q0oQzdNri%Xgqo!OA%POktFe+&p9mv?WxETGvx% zo*K(WXxDc4iWSncz_tnavbOF&kFz~V9XXTVh*2ZqosFnytD~S-I7tW$HoK(GMLDO-wfp|}FL(^OtI5Uazpaq(gTn6lkWxUlbn-I~a}saNLP}V?)i(_m&2%)l6!9uzEBX{4)>+Ox z<}2W(Ky2CBS~{EIasy)gQ@ta{lDJF)bk!79kdbah-KNV=&zaA-Rc+^Qqj( z_Pnih7zXTLyN12}J$(One;0r7yWhj!rCsc7ZD4D21NT1u2tWDJkC0M_+qZ6FetL@C z?JZo|*~P~ne}wh58Qy;TExh#d%eZ~#F0NkP$HCzt9zT49p&xMN$`!oz)?4_-H@=Q< zee2u!-QW2>zV`OlvA4I6&CP9GxpD<-Yb`c5T3o)oiw{5i5cfa1kG1u6?CkEMnayxI zU!d=8M}l2>g)y{X2jd@CGQ$AJW~dth^neG(F`jt>BkevV0E12@+I!*?I;@3w+YxpU z)?XoPEtar#3*bZ-9Z))ejSdouqGOx10dAnp!3Q@wF(+`P;O!LR798U=kJ4g;m}Rgk zZWTOVu8YB#whBz<6R?VB{}Mq|byrMeDaHsCxfq|iKdsX4XwpVdEDHA_ISI(|8@jSF|kqHQ=~mjKG(+-0hK zg3Mu@vGKNT1=W9M6EwH}@?W&dh24T3{zLHmf~EZa?7oWQB(o8y*Jb$R^as2uI-jvcI!?yf(fM&aA2$_Qc<9aoOZOi)8*`t z<)2!Ob7h~116ZbLJcVPy96&DxjiX*^Lk#4JNVYPf2NRhRaeSgQSOSf+bq<@&4+<^9 zQ|vexnX)%2Bjz~x)6x|@;i6nfZ%*#Gh6{n|!gE2SLyHP!`3HmT*_p3Y7W9Ps3C6MP zD1&LRxVqe|E6ejj(^@?m01-heTaV_o#H*zk&ER$2&LQs)x1im>E-i=lcq zLT{{OWk|?75o&eiKY;9=-7KRL$QtiiQw`}qCe`#$!sUcuXM zyoR@5e-)qJzlVDteT=^AaddQq`yb!K{rmUu;L`_q@$Ow*y>bl!rXf zNVg~<>t@z_+SlGsvJLNk`aAr}?w2AVAVjy!c8d`)V=|E*O#UWw&kk?%F8%La9T2L z42okfKJ)WocCp{KzA5pGYY^30V{5ilp}eB(>=#(Wi|M?d3G5`B)z5LcaS}%KyqlzF z+vLT-TtGZXbr~2s@j63!6?gtlUv*r5CJ9y%A+bb%u0ghLzCl(fLu_@hR7MK56=2rr z;27C(Slanwj^t%!AmKD3k%@MKmk*2s@!9#(dTi!L@w8v90TO0|k~U6_VVI^h#n6=8 zUaOt?pdI?GZLyg5`2eSeB>{QR!K(-h1~w{MBFm6}C1v@Z#OOcKK$@qblnMl_Vb_O(@*c?(xqMO?Cj#n<7YTM?eW5$m+@zR_OJ2%@Bcp5HyZri z|M>6t|NL+N8-D)I`&bNstZm}pc#cmWJjThqR|7&_uq~>tTcD%oyG=Blx=Kb?{#>L&Ast-BINhn7vZ^Tmmy6l7~QnaBF;mg1h@UTyS~F1#O4K6QFH69)rf)>;P& zlX|LkauSzzryqI@eGmAIduc-ou)*a72oevn0kmJ`HfQK(vDiQ5J_ryXxO~AGHdF> z@tNj}1&P;3^W&2-K0!n#Bnd(ET=m^~YBFIUx_TrpFK|Pnx8}_Z$ap4?`Nl zR>0W)^*(VzrxDR{;((ccmpQ?<>md^ zSgKAQKz!^-Fcl$vc^4v-zksch4u0U9w5^|qlG1>_BQHHqBE3+)i3p@^$I2hT?5W$> z&=^*Z`Bs!UWjoIUDN&1^56)2=d+S7|K{3JKpq;IcY(4EF+es?=pGsOPhbddIjFbe* zC-RB;m8Uw^wK|c2rfsmkwgwTwe8JC~MPOUDKDCT9NNM>%KP5e2Fcd7cykgb~dP!F< zLbMGJDIZcgC12}H9kI^Qt zrKZd}tl;qIU$z^j&%a~A=V!}H#z4#PMweqVScjQ_q1VPLn#$sWG8Z8EO5yuO%t{B= zXj=uLnBoGfR;c*~U}AlWIGj=CS@Bhavoig60#^yRI=`!{RF37qWSZv!5Yy-TOl)0V z{aizgcWu%z(rcY6k&ZO-cFcnUN6i#9(L*;-4(Gz@5@!P<-m^_-s0F$@W_ zwKaB_0go&v(~-bijmb8oYz>0a?nX+_5V1pTw^wB|esgriduuOE%fr#=#BhfLol+j- zzOk`}wY3=%23)$dgG;+RXe8mK7hk})zVSAOZjReGuHnYDtJvSWitGDVv9q%UNeNq9 z8<@>n3`2*Voo&4M(p_wBu0teY|Jqf|7pM5Uzx!MKDm_JUrlcH2WSWr>AI}7H!+$-FJV6AN=6|!pHYM#(dEM(xB^l zJbikA!^1-$QT|=We!x0+PHdQgAYb@s`kEa(I#YRv3GHj(yA6C@(AEw#AnJy-HPsm@ z2KO15oi2mlCmVcP4*OOdbzUW{G1>sM4QRzIdqUBgh66)Rjs<+P3o*JFKYg)Gt+t^I zX6?*Rjr2j3(jrMGgw2+Qc0Dd#?ae4WAa!9ddDLa*vM1v_EEjWem?(GUrMc>Aqf&}J zSC?^4WKUJ)vcvxzZHsz01a5HUMcl@kZ;7l9hJ38?!Uu`!?r zM>*R)+ZV@K<{;RjLr60LQ|<5hp_2JBSQ@9}VBtIG0HXrudn zpnho?+-+hP^O8-rnx;m}UlE9MVZKIbwOuMMkLse$=Dq1r=|fDzN_w>)sOvh<6`xE! zU~SNJ9Huhb_b9JoKgE*bB%b;?gD#xaFi8(BuDx?QzARfV(8LB`_^@!n+FFaXwHbHh z=wxHfN27~$F9YMy1ZXhj8t_rRjIvo+yef7Wj>#5=CU_;@Puo2pn>SvsSY2i`Of5X0CTB9DI#&LSBQt2aA^FkP zmLo28Ybr=k%#`>scsit}w3^2T{}HhfZ~)^^?wD(x%O{W&rZhi5B0a_nqeXN^mPzWk z)uq-0@R&H$Qqo;#xhRb4tU+-w-bII4cdQ)6e4R~jt}MJ-g9qHsuQ1L%}<(oR&gsq3+` zy^YPSP3-ROU`Rc>o?B^~23TL4;k8#@#y7w5b##kUym0$AzWuFl;{L}UVKF}i04(MU z+`MrUdwY9$_UtJZi#awn*75Y|6C6Byifh;Qu~;nd*MI%r@XjxOf$gm=+`e-MZ6kR4 z>z9UlQAI6j@@$+JTopLCe_ z32W=y*xI=a$P5o3J;l+{38ZOxRQ_Nq-fV-pL#CCAZJKN(?=%CD_^B6`MVlN~NKrM_ zxD74tPJm9RCH~R6EnVW4U0r=mDrh>!np^V*?en5NO#3!~y6Uz{=@kI8cBVT55;`4F z4#VJ%!XzaBGXm}?u!hh;q-A^5K?`};E4rc%XuAyy%HCE;jkf1>NNJ0w^0F?*sw1iG!P=@cfe%in-s^a>kp?MoOMU(hX*jrS0%~zN zn657a?^mW$O@(DxRwd~l&@{lJ>mg{lgJ{ri!PdzmxXsMAL>~aK|CFX7*D9McB!0Wv zcJz6>Pb4yqy#=OvYTKGsE2PRKiw-<9c`t)eJBlEAY;h5wYUesr#0^%i-DVraRni8c ztH;HTN9SSSc`lHt;zXz3BxOc|`a(;wJk@bRgcilb!Kd z4w)w=5Tl7R?nUCNxCwDY2!lEU5pm^Y68^3<00BmN8VWaul#RgT!e6Ur8OFqG8iu90 z6g1lO&+1Mq>MMbAEgjOvx9qNhG2bK{K0?Sc2t3hvr#t_tg`B~N(X^s8JE+20d*sYs z;7RUlJY7n<9XAvcfkkD55p{~&QfN@SegPz4ZLP&@M(5GX(046TV!N2F&Cqpo%olUE zC*d}ezU$EU9olwH@#Dl#-|4o+wxy1x{0R~2V`hvQV234yEeQscW@~pv@d~cXCdN=- zk&ht-e&u^x+@72UZUsf^G4ve-K-)IByt{)p-*^Mx{KhwsQjcc`&v1BnfKNZYkJ+rn z)2B~x=ir`Xuoz}D6lu3Wi-Sv$k#<^~=; ze2Aa_{Ac+1;}0FzM~@z2K0n3w_7*lbw=iGK@#M)9uF%d}93LNJdwUDp+uPXP-Nn|{ zHWponZ48*vZbe;-IyeDIzdM-p5FvLKbzlZNT~{I6CI<6fL~WuC>X-sZNnZ(J27WKK z*TPC?)Y^tCfj+ant8TWf4{U1Nk@V9y_AS$deDZEe>X5F4X ?7(4)jtIT;f0w)6u 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

diff --git a/samples/charts/category-chart/column-chart-single-source/src/app.component.html b/samples/charts/category-chart/column-chart-single-source/src/app.component.html index 9a09b720e..70a453b9c 100644 --- a/samples/charts/category-chart/column-chart-single-source/src/app.component.html +++ b/samples/charts/category-chart/column-chart-single-source/src/app.component.html @@ -14,7 +14,7 @@ yAxisLabelLeftMargin="0" isHorizontalZoomEnabled="false" isVerticalZoomEnabled="false" - isCategoryHighlightingEnabled="true" + isCategoryHighlightingEnabled="false" highlightingMode="FadeOthersSpecific" highlightingBehavior="NearestItemsAndSeries" crosshairsDisplayMode="None"> 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 7df8aafe2..4e51a17d8 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 @@ -24,7 +24,7 @@ xAxisMajorStroke="lightgray" xAxisGap="0.5" crosshairsDisplayMode="None" - isCategoryHighlightingEnabled="true" + isCategoryHighlightingEnabled="false" highlightingMode="FadeOthersSpecific" highlightingBehavior="NearestItemsAndSeries"> diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/app.component.html b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/app.component.html index ec97879fd..0490e1062 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/app.component.html +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/app.component.html @@ -17,7 +17,7 @@ yAxisTitleLeftMargin="10" yAxisTitleRightMargin="5" yAxisLabelLeftMargin="0" - isCategoryHighlightingEnabled="true" + isCategoryHighlightingEnabled="false" crosshairsDisplayMode="None" highlightingMode="FadeOthersSpecific" highlightingBehavior="NearestItemsAndSeries"> 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 ec5f6348b..5f1266681 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 @@ -20,7 +20,7 @@ titleLeftMargin="25" titleTopMargin="10" titleBottomMargin="10" - isCategoryHighlightingEnabled="true" + isCategoryHighlightingEnabled="false" isSeriesHighlightingEnabled="true" isTransitionInEnabled="true" isHorizontalZoomEnabled="false" 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 74cac2ae4..4db00dba2 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 @@ -18,7 +18,7 @@ #chart chartType="StepArea" yAxisTitle="TWh" - isCategoryHighlightingEnabled="true" + isCategoryHighlightingEnabled="false" isSeriesHighlightingEnabled="true" isTransitionInEnabled="true" isHorizontalZoomEnabled="false" 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 d038730d9..4095b47ee 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 @@ -17,7 +17,7 @@ chartType="StepLine" [dataSource]="countryRenewableElectricity" includedProperties="year, europe, china, america" - isCategoryHighlightingEnabled="true" + isCategoryHighlightingEnabled="false" isSeriesHighlightingEnabled="true" isHorizontalZoomEnabled="false" isVerticalZoomEnabled="false" diff --git a/samples/charts/category-chart/step-line-single-source/src/app.component.html b/samples/charts/category-chart/step-line-single-source/src/app.component.html index a922d73f1..7028e8e60 100644 --- a/samples/charts/category-chart/step-line-single-source/src/app.component.html +++ b/samples/charts/category-chart/step-line-single-source/src/app.component.html @@ -12,7 +12,7 @@ isHorizontalZoomEnabled="false" isVerticalZoomEnabled="false" yAxisTitle="TWh" - isCategoryHighlightingEnabled="true" + isCategoryHighlightingEnabled="false" crosshairsSnapToData="true">

ghiTXGuER-x3_+PpNQA^P3>E|^ySUwS*-n{GoI=_^NSJ~hLosHwtdVH7d| z2<6o5VW#y%6qS~@B<#-+8M$tJsY^I-T(m=hFZ~a@BIcA`K{bg;hm^|$(B*6PCf2Hc^qYaFFlFWR=dLHn2-4cuaUpTb{d1Zi;EeR>} z`=94KU$3-tG4IGF3JAc;UR4aB$)fwUzsOqatbZL|5C7QH9!E^#jOxYc95`WJXfm)z z?8XI?-uetp>2LK5z09QHj%xUx&$V`8%UKjRc`*aWT}`I<5z`sIkXx4e%-L zHRfbPQ8VU9?aQqr7BN_89}vLMVaBr=4u!ifh)Bq2^>p3Se^5vc35x3K0<#u%%hqW0 zhj;Sd0j+nlgvN#MP-KqWy4V30vAv9&$i=!hK7=NY*%^2my09Fq*8aS0BFn+F1LbH=KkL?4J!;?Q zXn}+1e+oo&AS`m<6f+{LkA+RZz>Zf^0LI0gRqY^M4PfV|m# zFtqq^>>Aj&besQO1#H#WltWYzRK>22XBNX#M1=2;%xDI!OlI{u?fZVirh@?W=vw)BjiKX<>pZ63%Od1bz}H*L44rufo8^MYh3l0biZmLPQ8 z^GNZOe~&|($G->C+5PQG6?k#qN{g09jzeQ1mj+9hvHhol^}HhS3%4Sh;`?}_dfbbZ z`6I6@V`prrCtr7c;f^)WF0*8|{M(dZ+W#!t=c#?O$n@rJIpwgkXo z>Xxv5%w~xCYz;u?dcVGa(&O2PId4UwUlb#BdVdVFDhFL6KXlL1$1b!7ifsJNFxB~w z)_;XBZfvFJIOYvH@V_uZ9e1t%X%LtaG^9`k3=9!efP(}eQIprcPnP~qEP%WWTxcZI z>>LAXGByPTXAqH_7;^p8j#{Jy)XNu5#X;hOpsg^7G4&5zp^xr&7P0>jD4r7h>W6%` zN%XKfmf$5?6kNwJXWLgUXj1=3(g_a#NP zcN4l3dXA7k8l5XM4%uI~0kBT`R%DHDpg39Yfsl{8ScsKwbxo>Toif^DY}KUC9andM z-0;0g))K6Vm`fcWagL^re8q%DuDCrpg^d7rVk10cWGpRRHQ`%I-3AJ(GYEYC>eHza zyVGgWWyi+36o6yMWStDO&d`%BFu#jozWhbRccSwrO`XK1PeI(C z*9r*im->Sb(3@*$eo;m)+=NDmbGMbi2WEX1;Kp1^yZ6;Q^zfkqUIn;5cBgHXvhd*+ z=VyK~oR>>EVnx;{-9c$-dhIuY{{jziCDAmJQ zoMa0Kg9=o;e`D5t)$lJ5Dja+3ttG^7;t#WLM6EM`JOhVFf&vqQu5RAs?~qN0$pAVX zcX4&V%FP3w3xL+N9vW}uz?gH?q~>r~iv&cTc%<^$w=smvUewFDd{-gV&=V+d47XJQhJvP@ZL6nh@BydmL z4Br-ye{&p={2*ojUF6_#Bfm@3Wwo8?0QD!3U-(bt107LPE_wuald-A5F|+AB#gR$R z>t0p(QXGSswOS!p0N$ha`I5n)Cy$kDj+Q|H*GQp^vLS3}9lTPf^DOutK}X^%{V!g1 zlPF;7-+pw))GcdFFP1nToAufr}H(WK`L*{~vTp%KU z(!(!OY4amyTRM~c!gtF1qI3G)0QTwjE&i$Iqx~by9i@AkfTVjc|NTISJW-lifF(LI z@}xbbgEbIYSr@Fznfua=76#w#`oa+$$pNn%KzG1&wd8+GB~FHBXX$yXZrz)@@)*|m z?NLL_y4Q?l%!+YJO01EPxO#6*{kW^aS|>K@QkU;&zl!iR_aja0XThe0df@`<`3$GpKI)-5L^mQkU<*!#K?frJ;O_tyjMI*=QE5c_UaV$!K}9D?I(fBC*p>+x{^`?Z4m5Z zxMkk+A|sEb;AcUeK^Ol^q@3kdSUg$~UN>`qu^zkQiFO^O1_+|?Ypr912WxK{lpY>K zjIyS=ZkF!jV|_oN*S*Y?QQN@&y1+<=Oo6X3kSZ{r%;su$BrZj|zbrnfRLF_A=8*=#@;J zuIKE{Ld%zZi4%4}G@Zf7<1WCfw)d`VO@cvM(#>q$kmjQB6<1KPsONQn8c19Q1t(N7 zofj5<5knoA^|C+MRFwyU#F$*_yRjN)$4Y(>s1J0a_KMP_%0gob(?zmJA=pn+gv~^E zSyp`6n`x0qQ7-DEC^U*!rh&!^f9C_6XhI)$H0vJC^vle00WI#wX~Xru&)&dik0}>( z6xkkkDc#TW|H&A-uW=XI-FB~8XPXTP`+GSF3Fmd#tz6|8%Y`0eT3hk%ea?;~E_6@; z>Dc4rw4uZk#CrJsTy1OYVy;1S6JT|B*&F%9*4f!{Io;JLUlQgw^5m|hoN=}M{5n2h zYg5NSjYALsGX7rhGy|T&wLtruDLz84n--Wr?*GOaIfVGvaJl;{C&esnn@LSqk2}w^ zyMHt?%=CLrmwu(%Jhtd?tvMu7NhY0Uj@eR_u&It`Q5{6e2-oaXaoJZOA9eD@>`EQ zEnbF!c9?DXI6x^?T?LeYyEytQTDxUEPgX6sGu0&09YiDMpO$u&=ap4i%hQEp^C0R- z%1WTBe{R4Jx)d4(7j4&E@5XL&@FLdIN4_w7K5zmaS8&_fvlN{v|QM!$=_q2i#bLJ!+?07{X|LR{s}Tf93o21Uv_M$ zqyoRhBQTn=&B>sR32A&%+P*JNORD7L_qu+4T=2g2y@zNt_%5y%J#N>4T~UCIWihh~ z1`*y0yvA|uSlsn$5F7qT1h}FfYv^>V(dO|CzMgnmFTSf`vG&>^Fx;OzP&^n(f776X zMlBV>vP=9zs{ES?8la(k2n+4?LK^ z+eH>-`g*;Mx`Xpvxw!zCP`*kKxi77wtd-gDgv*e^6Js^yID3=~liuq}}b z7Lr{;4lyCKx^>?Q+YVK9xJ{ zB5+UWlXK?n_Ft3+5LyqUv>jPlj!&J9`*9)3W7$8~UrGIttQs2wv8U5wAKtZ(&deHpUG|*nzN5S`H6?s}Z-#rN zFVxB`K@&}~J1#7HlK|3aj{b6mln^Oj#(wAdDT`L*!1ld$ELiD3BcE)lo=Jud;>|uK zW12Arn<;l$Cn`*1LQxViRpz4fPgXys!a>73wbKZ$KwB)6wZN*n1f29`E!7 zc>K!tGtNnatZmfW}J)@1?y zK~GH+zf}kZ_N}O{e#;DQuAb#ok*R#%$>knqDnWrDYi)M-hS{}6*)~eChsDWTyT76a zrv1NlS7nJRCWSdAoeI0E$BN^GZ4nBKrH_gwp0a*6S!0Wo!u9VhX->@H?i0$U;B+#U zgo|KKx7T&Oo*PS(7{>ulI`UW5z)7alVY(?cK5oVS{V|GUb|h!DEa~3}RB8Hc(MY|h zUT=-_+p8byp3wh)-pHMP2zh@HIqJA=eDB-Dy5FG6&vyA!MaZiqHK<7!WM?Lm_6@ZO zHX{%R_p=A=1|Duq-DJSyDgvXlSzyEo^Kk#XLIrZHZ@UFW1b@1?-cMI3R*LHc%qrX>FDmFAafk0N(xX}MO zwnEWL^q0ZuZwm%Q5=elh-oUg>>+O^d zBO!lp9u@M;qJN{q!CWC5;mhJr{>xCNgfU-_jUDt2Z;&Qea0}MA6eZMF>7$*pY4F|k z(w1rpl^o&I^El=U@AB31I&c=;j2Tl-$17(usvVw@+CZz9$)0}f7Q3DuWl261SqCJ71;>a9*_H=Y%+m>&(xCu^{{!+&`7Ib1aG`n`*dO2k|bP%M@mAT&L zotJ0U^2$)MgTclUDSS~oNE}2rX+tWE)?5Nw7c%wtKNd0y(KsR|uA44I131F2>cv2| z)|*YsAh5wi;)RX*`;Yp|cnS05qHf^QO z8u$zMy?GLi<)WYzP42wt?5l5V8~UiNhAEmi6Fn)KX1dpp-}8^6O>Z}wle^m8zmkb< z3h?2!xZ~vV!5*#%NpCJPAm+9PICFHqz3mdoaLhD_4Hf^a3EyCN%a|Ez+&^Ff z*k`y^cm|)t$oN{v4?$i&KF@Okr8<{Q;*F21;iJYEDVe%Gh?4{ zlWe@%7DZK34Hz(@B)hPtw5LW2Dk={y#SnbaNPo{-D^0E>nNy=wW0N3T{T*4TNUNBY zI|vM=+KQNIa%%hSIkex^?jrZbIAN|}O)(_mpktEEfx5n~ZgDkMh;ys6cUwbSR8+K& zgIdGp9$7CGhNXcK)}F zZ4ZbEjAjR%1`d>pW2MV~701(%y&mk#9Y2uo{a=l}9#E2OnG%4n3%kN@cZA&b&)lAu zAdEdYeXMQjakI%iRT>F17+qVh=NInFK&i(WDxskVpQ{_63!^tM@l#&>9Lr2>xxS(I zGfbakPkGmaciQPoE8!nuXS0R`=mI$HpP)Bl`4mUl??^+RLt?;dY=;YvYpsc?)W0M4 zo%P^l#_ldB$MzVOqKgSUGV84_&_$=X4!qt_@_K6)kJkMMAB0guTffIM{B$aXHYuhE zGinwBDs>VPYC$xR4SX^8jD_ooq2V|xD7Ny8logM45YpsU$~N>(en#-N3=Tt3rg(gw zco+;s4K_>QzncHfgnZ+!T*TzYtPg6jZ5d2N5U}?K1Yq)?Q2cxHU+0a=RH|HVE0;W9 zrVV#PKb|$Zo?N>7L$%_Q&g=?#iTI*F#|D^g`sB6?-Mw2}%qFhNIbSlQU4@f{$+plk*!`+3c-NK#n)4($h# z9P!zZVxtx+=-M#uPBjw$)P^qE1?sqPKo?ZxQFq3TY&b@qJ38}cRYXv0 zcdX)iRgURqcKVg4V__9)Mv}tQw8FmscVEa~G#Ty9P>v;w83xUTIvd>5@|sqoe{*mH z1h}fwK5B+_1Lou{4lsMjiBsJ{$-Y>H;n?=1QX&JD7agN7evk7l)?CQK!DJxKJ6~z( zWxI0_aA1_5hJ<9tqu-|`=25#t4)cY(QQ{EmCiXz92gAo!)LqUHQpPYR_TmReB2vaE z=LH*8vN`RuhUPW#jLtNIzSLX+b6W<+v0V9CWy{%VU3o|BPzwRa&Qjyyyxz^M%~NjdVw@pL=;;qVBYv){*fh4 z4t~&03r=r%pBF8=&KgAaNSB>t1^55V_bvxZgrMFFsA%~XfBVwl34<>`nG89YDHYm? z903X}({zMVD@ce06@S`X5Dv+x^<94=g;=nps-+aS=Bl>tO}eI3-Z;YAd!By3);e5X z8Ey)HAUF5%g+l{tU=i%Gs5peGSlukIs`e(L{rPH+=hNpMoI`+$-+In*YEKeEYphJ$ zM?bI34c^i$WIIuVbAV|cM715aYHlzgI+TnEN?@xYHox8dLOB)7?Dotm)%^rdmG1}O z(ALMLI`9HS4fpO-|Ls#BDa5Ibyv-bv!_}8Jm27OM7E?-!fUV>$i&}Ujk2yZ z-DQvIwTdU`3|xc&t#w{igX2XxC)@bbQk>IORkAu|*~-mTxV59hgf_x_`Y;WWQtgee z`?Pmwc4%YT2u{i{0kD$fwzsLQ4rXBvmDH)=WN|uIqAImc=;NEZ`osiw@F#?dl(#q>{ebU(*-Qe=hO$FITY3cUyGP4^2Ez z`RNMD7j`1;$cCH}ZKz6%2#G&L$9@KklKl!+IMzbv3>;ys&$gq>I3#me{a40sXO_{% zFS}{*cf=i2W^ax=Z@kX2Q+8aKD|Ur8v|95s%Bk^R@)v8oLvh;C9s$0q-%e**n9wo# zT``elUJs6Xk5OENwhZ-v$i?s6zDWA_%aykb7DeKw(%}OdOs+P5$=at<0$@MQ5%hpo zxg2q{EyvUV*^662MbSntovL-9|AZ+FOqBmaq^L;wSsZTMW$@__nNqn9f$o5s=4Blr7oKOa{ferFBbC|44!<~8?|ylFXHB0v zioS?@tcFF&6sH1Q5mMz6rz{UwIhb(*AQvot==;220_Owu{YJ*;J35ujti8kLO;SYm z7r}efCuAHNkuhFbC315Z8iHLmj=r$H1wBVLUS847z}#rgaKb(18MK6T+(V2*(Pwd8?bG&_tS}%sWbWZDVAyK|))e@lS1-9jiPnuhYpSv8Xkqk&}0@5A( zWvZ$g#70ri49J%73I)=mVU5aF2rRd6Rfd3^J`1auG4)9M__e__DDO&zX;x1MXsWZi zyWUPj;^lTbJOtsx2U77F^(TFAB<&RT-JFOboS}T9!NBC7)tz{Alb;&8COFjPVM=nA zwI@I_t%=ZupQ@vRXJ&p0Wq8;8HbJEgT~Rj629_G00q11`enamCx?*PWSk0x^jb8;wPu&|jC;b>CfBWf z)|4>Him3@!w`($ovAw`)zl2>W~QUbPN5q2Rq=}-o)L0G&m%_6pRYVKqQQc zhf+l7mk_5nNg-m@ha_x*S|*M<@z0`Xasco7Tp)OtFUrLRW{>*$VqNCtUJ(Be{+~*C zgW$Ik1nX1C7aJ+w8RnRr4&koyv$AaT%#m+bXKM0BS^qYa`~!T#xza_Vf;3Bh6uRPp z5m{-!JuTx+b$UkF$8ShDo%pm03ePemX#H&WX2c26gd7abMBLFp@y{G|5$(f*BzH;$ z+clw~4U7?kEz{^t(fWdFsSU&uKJTdKdQ!m@eAJA zh^+w!cR?(Q%W5rF>SgK_tb z=0H^yYfh(iz49rM)d2&SAXT#gnf|=lI(D#zW2V}|%PL3T7R@nJlYSf=N^xceQjjK( zA&7GPEDBQPjV(7g775OBbTSL{YRqTW-Sn21)~1sUGyC2DXh8_payQTGVjtt%^oV3| zKijXCBJNuP-`P&|5$+}aVf=H2&h&A_hDf+92h7+WpbDiPy&y!K(PL@^{}?Gh-S6SV zuHBKz_u)Lty+g%u7#B8V5EsQ~FtO%Mir4-0>r3&=Rq@k~x~?~(McZh^9!{6mvL9DLh%OW&mn^ZghWcZLU>id7Lq9Xx|uhXVGo* z7!!jV{UsEgYdi4GrIr$wGdNOJ8&g{Zld{*UZ=Wn=(5VdV`MTqUXfJ7wCML21TFX2D zn0P!l+r~|T9r^dY=Mp+%Aw6hWiSsy_{CpE{`Ol<_x&Q;(k6)-GX7ul*gtaqS%>S8= z{}o3l+*$S$btT-Jp^v|x1-0D*_v@dJ0jT^BG-2{T6l1v(wYNWjnwMz30)qq4FXM^) zLj0l4X@c$#_I9DiPp#)ZQ3x7gWde#@Z{s|PE*J`mA4wrdWF_&*g5mlJ#!jixno(Is`BcrZuK_oX zga>nfEthWwpj^-JGak4Dyjq7=wBpeh3D#~7Hk&Umkt~nrI1OLc{YQu2o0(7-YRs%* zL`+dJh8zlq#J@6#RE^no->CV#Uc3o3aJ8BsMA4O`4u5UKp`%Yf*_q%BzAg8^LTP=O zkDsZl%Fodw#kl+CXX9CZ7826<&7QPGJtDac(HS=j{YD}KGWM9b)@D80?+ZBq>nInK z61cG5pMb4yF*vZ}F+R!uVb+|!h@_QQV}O(8Oi=wFj?OYDj%|y=NwC3!dvJGm2@LM; zF2UWM0E4>(m*DOYTtaYnch}$+?Dc&Gf2b*n;&k`vy}z~AK4{Pt^zhd?aj4jef3&>P zqsuH6GJDA&q(!36_TMQd>hbA&MtIqKvT&5H2zxeAgM~@$$8I*PJ^8>0r7%&8IWpS$ zmN(r{SM#F3@7}#J&;d%PC5x#cg~LSRhGlb`k)cjt%JaHoJTQq=2NYsFH#5czDTHww z@-_i*DvU%u)!%krK$Gt!Uw7EQzI8JQxaw=|npBY?@x_lwj>ycGT@F~dS;BVTEr$u? zCbI`|+S~fol&957VY+@mXJkx3lRZnIUbB)iR_;aT7?)2O$ajOMb}<{)Y1pSxOy;@k zT?NW?^V8Rx{p$S)^b$kg%(5ucwdZx>pXd169ZmJErJZ%%Q?inDU*2YG949^ez60bc z_+BroF$`Xpl`1Y7znd>A1}ulm;&z2h^s<8iv>l0bW(gHE%zDRDxhG`xXsIU!Vq9;3 z4W7=ar>)`ui)`>-)_JrdW9OxUlopB=;e?CVe0i)ww&=-~*I_?MFTMX^HR6R#B>8vR zkHhi)zD~g=52Eui+bwUb@t-P2RaCdnpx6F=RxmV;#i#S=>C*Fo3`{VjP(@XXR~A!R zF8Mda=`{UR1R=^cR&XFl?c>uJQiyG3@`p>&)X>~~ok>-PF>bO^9@2TY(M+6Oso=yE ziPBo(frwHjw6rRSrGL&57rX&KJMuvJs4ada6eYuef&P1?rCf4+ydwcQv`p{}Wik_K zQTJuExSmy+{K`Aaik7GEB@8%xTfbs9MD85_q+(7>+P z(m6Gg=#1pwsDg^GxFn-Ux_3=LC$bLLr{{>x;akiUn>bQ*$h)~P%4zWaTJqudo1&nM zjRP^2ZNCnV&6mn~7e6QmOn-IfYyL?kyxcrCUeRwIkU5}7TXkf6Ep%SrTk#q4xKFyk zC)pJIuBjBADWLDOMJCTW>w+u7IpaPESNYojQ27B4}>Kd}T1<`QS zGK&SjPMwPId@?FJ)P-jB5ZPwIq_*f8b{Y$G+6p7VLMGBXngt!XWNHLHG`8=jNMJ%N z0+J93vcli$q@My8NM!~#^Agc=W_wTsUbf0123*`n)ttO4Gh;Abgd-2>ccCY-04PbKMA1a+ zVytmNd=<)B|7fwJKx(x<6bBvhM8_jn{~Hq`Nnsp`p3_yAw$>?`8`inpxU^%)ZNki;4i2dwDy%4>>H29- zEyl((F1-f4u&GIUyD-m>(2!c%GD(iy2*IeVDuwftAAR zE8=7Ly1~ch{>E7RX=PTZ0L!5oW>Q7UcsH)AZ*zpqKJ$ZXfs}EA))?pJWUtWD|F3Zv zSw^S<<1*iTEzziL3j9K43_H!CA^!+4H+7Y0S<%LDu*1cfP@IY>n$3Mj!2gfM+1$6# z*eqj!u1F{vMEb-Yutn$a#Kk9ey>dH#q}jLuPku{< zak>y?ky0PXU|8_9F|edqJC>?cm(tEjU9ORvVDoZ{j%X0=c;i<@hart|j>+?w0FFY( z;Gs=re7MLtCFcVu3_CN?&TnS_WVtJuT=|bf=CaAOh2;*yE6wgNZIi!i1Sanv&WkKO zfQcZx(Yb_V2;h}p8!;?5j}K*(3LKHD7%&(hyX&5?MVV z=aiW#Xgl3@E8?^ChsSY=@DD}w+>{^mW3)DKMc8>bsX`*ILE4hXw2jpXijzCEQNrVy zk9t@MGoi_`iEkkuET8b+{i}yVbNsJZa8QT_KQTh-+xnP&-LJFCX8}uzOm>Oz{d$ENu15&-*z*Ksv9aXD9+O`b&4uZNKurzZ(jN_jbav z9bObr5Kyf(zF4@sWF`>D1!gkwO-Yxh6>+H=9}VG|hYk!kVqVtQ@kU~zOSVFKl~BkT z5?PKY5gM+V(*b_Z{UJ(NHkceaPuWvthes&yF17O)1QcH$t@gvbcp`sYSx%LVKHO$7 z6~Ply-j_b&29p;=W7)sL!8O7SwE<%>1Pc~xDRTiGn^yHg>>wiCDhmm1kO($<*jk%@ zby&%MwzVQ9Ix>*JNsQdA-_oEPffhYHApYbokb)&JuT#VKaKZ9uDg!D|%97>FEwKyf zBD}L8-ES{r(q>wD-J=Ekn$){ur3Z^0I;d?LDtu(8ka47oo$l@Iv0}KqPh9(PDZnM( zg(s6HcdQ!_jjTPEz#$P6Q+n{a^XTrs+-@MrvyGXV(mHswN$*F>Ciw(&dWAZpIAuv7i0J3cIE(9+4MLG!p)Wc5jxv&2nda9Qx#6Z%?(KQ}4=*EJDNFo|&y(&3r2fe>{ z&z>L2f$lwO;q7x|C!y>4m!CF^091|js)`5j163q|wLX8UOV`B2&OpB(Kj&@vq9Pp{ z7rUitE{)^jdcM)yw@j+i&#>;(mLOAbORh1>M@g~9^TldvW+t4&crVcnIvhViU*~`c z5+N&TMo3E!@#kLf)^h2$)8I(TmmP0M$G{2?Qpo>_f$@t(?0W(72sW!ku-1tijFvd2 zDLY!P*Q?{5jbGxRva@REG5^goptqXxPvAFIl~ci_yV z+*^q`N!;iZ))scq(UvHXa)+pp4$weq#S(&>&?UL2+9Dk%P5L;{ILQbY5ne)&ggI*S z1K~?}11^nhh32}VmfQY_G4^ZCn^vAEBi|+lzDo?Xp}{bd9Kz0VU3qPu+R}jL**2QA ztXbz$K9}15{LV>Ay1hFi52C1MOe6HbcC9gxk*v~kJAHl_7@x5iRUn%f- zCjrZ3B}XMWJIxy0thA3jE|bdPPB&QCWErxSwd&MlhNwlJxbiEjZEq-k1$PyMT<;-? zjF$kv7mLGzvnvFiOBgY95|!r7u=NQ{=~6J4pemIcn+jNT*V`wBkTs&ku;eRWM0dAC zAOz9ksOc^D;~WicUYgshGxKZdB)L3PE$+Bidgztm?`NHs>I)`z+epnj5D!k5*7`7VmtXe{Ub^srF41!HSh zHj`sdP}2hEYcmp~RY;KkH=gKW)Cy|b=`#_D>@u%Au`)XXeZuY_hg&QaKn zr^eo%S)*Z!q!5yI9bv;kmvw|R8u_Usa?4w^f1Qw+E=o#ydQvlnNpvzW|Kidk;*cj( zwP|Mi?$zhkc&tyXk(qu3bGRnM>*r0=306NBC^uzVuxh`v0y&Mr5blaEFTsbU3KNML z6&HF$-78x=nbgNt<|4njVmk0En4-A}&i5mHgENQO0b|CBT!>)YW?YhUhD@|4TI<4= z7D$9HH_zjpi>bpsIcbuZ41pX>upNe+PZL)w{UO8Ag+*h`W_%i?Ct=Zsx;;UV6Va@J z0aFDrjwQKeQO3vE&uqqApsRE$9Ty5W)Ll*`jno5ov)^mR??2Wph>x`R3lMQ@d=~yl z*L84fmSVcw+WNt^^5p7XDggt-%Q`O~n{J?j$bzb&g$_LW6li80mm}XXAVtuFu{m2<4#2&y0Fz$kP6cjG z4UK)BlVy|&riai&H49^!v32lQX5EsJ4p-zT)(n=+QPrzmQRkZb(3c59wcM?U{|U~? z0PYySmULEquiZJa+6B@}pUekP*22Lo~gJcHx1v zLru%B!aR2SjD&4;OT}aNZFS?UtbN?yWZrNUP6S@pONPIh zW9RtltNF^?SleaVHnX3m?0VDXry-P49*6><(u&VTHJNANb{~zY%RPEja>58rYH@o; zmwM@{%ct6DN{@eG0C8(L%CzHVT$AVVS&`NMnk*!T%hn9n(}){j^a;+#5!am(dd#!% zQiVDCB_e&k(VQIld`&-BDlN3}Nf~0R^9qHRTZ}!{beXmlNEfFii{0pBag4?p90KmV zVqcbJwa^GqJO8b2?g4+cP76SCu!O76EvLIEyPg+aI>XX;&U=$@;Wuz`b^AT`?gH-I zD*Er9BoGqSv1z|Wu26-X!$%i~*_ozPS9gns^Zu%^x*(m>Iz$~DinUmftr`h}cYOVd z8WCd-Gq~Gh{)3ZgxQ)GyUr?=ic(W!;`kFxdOR2pj;G^PV)p<|6ExB?o8|O4Id9S#|N%R!E>6|4MG}CG6WqKs`axX>}Io8 zFA#u8!QBL;I~R*9T4Y$GT^c!k=o`;1^%J_Aj}Ll6zL*5!X)I)$vlBh9?RdQIIoC@R ztD6DL{6y_O)#{_|@>RF~Z@0PcSVH$6@7Ps-+!84Vi}-qc9HC9^cpazyV+itx80hxc zyxfKOGz_FG?a}U%*grJpM&V2jmvuh{X9@);tDpSvIV6k-KKhxiuKz`@lK_O4FfNzq zTtRXw{2kLN_u5)1r@3{tbk6Hgw?^g2%3@Gp@Uo~*1081lv5627r3#*sA$u8iy_L@a zxtU?+rygxWYm%DG=>()}(Wy`bA=3;Q9bGP`qe7_+VMe)7*SRo?w*wpsJi7KYi1;C) znq4nID4gi^Esh;nr)cgN&(1~($PP6uq-|GP)oK*yV+Ppb`)4cjR6tBvzL zjPWv5Y2V|!Pqb={8X8e=K;XupluNwp5WOOo9$|$}fK39Pru>gw?iK1PX#e!NX)xOS z3&V$sslzL&kX8`p39N6xm`+U;`#}{HccrW~hNsr) zQz0PZx`E$fAqVtK8*|rckQDb}UCmz#3o$&b35L!BBdut$^*3_q_S9eSJdiu@FWh|m zXRxIB(Q+c~N`R}S*~i&#JxcmLdL%K$X}v@xu{zuD%L!wxpB0+IDA7CmpgVdv9;c|HgNyp4_RDSU^sq93qrs zw6y=M69Uf%B3OmT*9Et~SuBO?Wi?G(Mc7p z_ou4Yi!-55ur+7Z9cpoS#Rg$WuZ$QK9x=vFjFBXbm|B{Pb}l1|5eThUvK&3fK7JRXmrC?a+~{{nEg!?Nya3e(2hNQ14P*?YSV zxlXn{i~j+KpU2nlYEGGuanYaR_{IoESksIPs@!Gr@>}@Y`4u}(&m*7o%MoI^A?^c? zYX~E>fuMNLG)kS0!gab>1W*A%L!JwLqK7Dh65=g>;rS<0D6)~dGL@t$6g)w{2su_+ z*-htHm548Z9*6ctp`tA#JZ6=`h_bBv zNe|!`$1a~sA3{dPfq`6AX;HIp=zu7`mec1qlCtX59z;xA9!M2Up#tM%H(2fy6=kJH z&~XJf8GmYRd>Yv4x$GgCb7P-Z6rA#Tn)8n8f@(kl_fzsXYNxD986-1oA=37c%lSM= zO{jO=b97_o2}yKtV!K#S2M*f-dpuf>&HsRHRun_cf({T!5fzs)RlLGv!-`847A^6P z!0nlf)xscYopwt~07i{5#(PDx*PHaiG?eUQ)Xoo_LssEtlZ{qvzDyLA|ICIjWHJ@U zqNkHmmnfqHTIWzHb-VkgsysKC^UrA75xWZUiA*`@X4&!4F7sAyMVlKw$fkKj)po(d zS|O;gdBwtd>ftbMxrlIzN=H^DMIJ@Sy3&}x20k8gf<7uQ1x5e`E@vuQ*G5krk!3WN znrKK}P;#t&6e}r*rp?Wbfs~-y|JfG5^S64ZWbG#GUM&&aR)7t{IE|BZY5?;f{^QV| zdvHQtf3T~X*{ZLl+N}hzEK*5_)$m#S5HXI}I@G?W*O@VrM{tzb-Gyz+cUd zhO}Y-t~Qmb&(xI|SX{5M_*YG&r$8!!1NPrV(V~9Nzk(W#K-DArdO8sn3Y z#j6*Vlc>X=%N4l#il)@D*%y%AA*qa`qoF}yK9NU6_b`AKl4~0+d<(ef{tZZk0#=qn)JBy1G5%MbO7*l_tTOCoBSd`N@StDvNfZS1psK=#p)2NS_+E$e|J`l0QpTE`)NMg^i9HUKNUOCrOWJxvMa>E`ZAF>3HvZdrt3;Bm zAW~)UwsmS&v+McT_y8FT6)SaHlA~iL|1~}PhejIcUsIb6DiuQ&)0(|LZk5U8HMx9W4 z?Td#`cPwuV(p0zDgRrA%Y5(f_ z-YeQnDPyfd7elVE!WUAaI%J-!Knfk}Yz4XM-CFO(kJI_~kbU&kV=&Q!{6ymC?O3nq z%~UnjeB$o;S1%&!eO51H$o4Ky%jE%lZ|Eej6{;NBQm$r@Z!Uv>RSn%1v1TW#&K&}d@YxCVDVnN zoEm%d4;MML$T2nDvbiW|<3Ji)awKo*h))s|3~dUK%H5XT@s)nOw(H%w;Fpe!8B1kY zcfUech`#uN?(L^~doju>pjsDHqt6Loyeb}Fnb7|%8lIpoY$QiiCNp&KZvcV@coR{< zQ>~_5&kiyrj)j9`w%iMzbxBThk?^``y<}qHsAw|dec$Ai-$Eyv%wsaOY+mghuo6jt z73N4>4rOna1?o`0N(bS3DtR4#z$sMk>EXzGon4jXw@;XrEbG+25_u{qEw5wYn9T1H zW!spivk;RHp{SZIT<4G}=MC$OIN`zSeyIjpB(1QY)7_UFkkvGx<{pS4B-kHWbZAQx z1^vFPbD6WK&|*0DO<_d&o7dEgQ3f3Q*SdKREbz%bU8fHmj?jEt*|-|sSC8~4hwQE1 z-==a|tx}kCM{9L3%>2O-k^fO9y2geUtX>(j>@PWySRe2s;OmnKnuES@lNz6E?ffLK z4;mUNeo^DX`o#A4qaBui8maAVKchi)Ye>vTa5oAnjeakVD#REu=QGd>IVS(s5tp=w zrG$x5N}56Q;{M4;3ikx%%u=kO}3Ix@mDU;c3Md`3;PSo z-q=Od@UKJyB@&I0T@M+|>ukQujm9Jt%H&BMbHvUS zW@EAa1yNFV!Kd3b?aFCyXFBt$?~uj)Uv_jJGnW}eP>RV zpi)}NTUr%4oOqQpq`R6(+7zP^$*YLHH%IFgKW=JwfABnS^kHmKL0bX^7vXyX>4t4C zNd}(=DtSy-R4&-s0rF@)u*@96xfa-$RY3}QUydYubdGGivZhYVl6I)|BOZ1BQOMf7 zcK#7eVRm>B&Qy+7yb~FfHBpn2@;#wB!RL7;|0hCrIkFh*nF&zF}vurM5)A^^d58i`KRr}08!|^$B1}!gU$c!01G7qpo$Q^}c zc|Cyuf7f%@=_?{iO?r9);MEymxAl7zxfk-cI}kDIWhf|Nc6m820RV=@JIQ)`bNqyb z;|!61Q{X+2tntluXw>YPk5o1n2K=S_EFv-K9$oSiHjeL- z#Ce!prCg_?O>=Sz4*EssG2-pyJR471i8hom*HBs&b?!xjc0`(Q5*+$o{A|br70nwS zonNG>T(kT9>@~V^xe+zfIeAVfDJm6gRT}?Yl%mmsq3pCpe_zprU?nR_QH1_zh{3Q3 zP48flJA$JbBvl^*SZvuS22!U>iYsZmwFB6cAx0+KyG*82?+*l)+U?u66)SGz6iwMB zdG1stqi*}M<#D`IgJn_KKXu=RF20rhT0nlOhmH{eL^E~$y`g4&t}&HrTLIG_mm3uI zLAGrWS7u`_Cs7Ina;gbr!0ieIQx?{@UJ*(R@rw;2Ti%%kB4;#x{)((Y3oZVw+YekX z)OCse!ao^NVrX&Qiz`CD)yMAey{Yk@nOJEdpD%%P&kdgz8hMxfR1#W*DusCi8hR?@ zz6_TB&Qd|D<%g1s^SsS)D=DFNZZa2$!Tm>@m?m^Ip=9M1@|m8m@7glez6r6HJpmWJ9Z3b%B{*-EYP57j;LXAFqT7GPR zOiHPY%L*7ELvlW=w8qS9wJjqJcE57?Xz;n&fK~-Pqkj4(fp;*w-o1)@3rTIpwe*1xLuENaSVW*6{KwFezGqb75}aB z%nt4ogQ;{wgZ?f-@}I~dtCcj65fk&nrU;Ezz)t!!yv(~{e#7nOw=a&xrDao-uTeoV#^1KfTw1K+d?gWq z{~muIA6VWOYbfsB?LvVzcVvdv?=eB~)3c&kes>@Y3&0^lWCx|6HpJrnBEY}lG1+lb z6i-v;n2e~wVWa6FN0OmTt9QJ`neEu*>{J-Fhy*E$2SMM}y6d}@EqFrwnZaT_e_2-2 zg@LUie_pAV+!kr)*$xqfa_yrQbi%Y}b)4~j#?&1NMA(N3$byX&sJfo7rEUMnMEml3 zAba*S6g&!>w>UGi2(PlE>G$_}499BopMPOB`TRAyZ&cBj`84DTXs$j9D+Zz%XRK}= zQGTKwKABI+(Yl7>^k!1%==M0}f#z)o=oy|+K1Fhw!l)-?=?g?u_%K;&2Pw$HI6E|= z9@P`Vc@mNX)E5#+nkqIrH@ZoH@C?ZR;$D^V#`4%0`*rS5*MZ~t=$2GA8*K|7qjf+4 zWZdk|;o)-;dMPs2=S^Juu^qnc3CfFVgG1i+%e3;r_8eGIO6#9{*X=(S6Guvx-><@2 z-`R-|-X?v+e}_G6o9&Ec8QuVO3n&<5!#Mi~&H z7-#9=5Bo<)l(AA7J7s-i+c-!hhB#@yjIXk4dHMR{S+sx7-ss7}JGcPbT1C{Xti% zABA?ZI7t@F+utn8Cghx+vQ5>f7OgeRMC4ffj(HV2FE`UWJU_W)U%y^rbN~A<$U{bt zTjL$Ap`n2>#_`2E&%`##2EC{jvvY~WinFkGZ|%--SEX;@XY6OAY`eS<|M_Hqu16v0 zABl(`BGm|!z*aw{Xl%~zb>1uzv0$7t2h_v4$tjc%jce1` zH)$a75S`sI6#KB=xrKF>#jvEDA>p~Z<^)B6ZX#8N*~J3QkON{&(ZPl52mH$0gXAm{B>N01Rh_Ia)=4o zA7WCPC1IpliMWoGT+1`Uq+(!z^2tfnhM#+c5eri6Dz<>k+AO7;7=*KSJLd}S9XDe9 zNF(3e)EJ9<$BepSB>(Y9#d5M}X;wlufciXmJuBdjFw*bbOa~E2xO^Kd@R;VC3fUc> z+?X@3h-M%ijHwGZ_bY`dR1;fF-`9$r3Z2V`11(Z&ENgOga2h|5_S*q_o?dH?8wbr^C_skvY<155p68$^X7^ztJ%xoq;M22=4vjLz80Bw_&HKaBG!tP~J zXHQ3eYy-~hlPh>%Uskn*OMofvdI#fQeKTkxEssyl9*?vO6J5_&>JLb6=WZNk111&N z`rWCR=J5ERU}F!_L(xR4elG(lw)=Tj2B_O3P_B| z73dWBEcUFuYJTdapV6T{-#$?3xZkH9erN>3KCK7ZCce9>D5v8eTWqlAot$Ruyalr~&635L}=5FSWQ-CcD?Rl17-F&!t*yD)|+-FA14b zCFsV7aXwGaEQZXCGUF?Ledp3|Z#EwL7#iErlLGbNc;O)^vbin@+{}d+Ioba;MY_am zqkwGk-#Y5~1lsE6s4>O3yEOvxXYfj}Vh(x)KkIjA^^Ei_In zU9cF91yY&Cv^P2njUWO4lnzRzMEjpK8d)m#Kzc@zMpx+`=fbS-uHLv6lG77_S8W4R zHIF}Amku!XOSN#KDJSHgqJx>GDj)9V9Bm{0; z4|08~(vBH230e78W%Gqx?fW%?h^9#I0-VhYEl-;5&qe&YCD`yP$I|hth$s$xDl$OC zTORiF+3(Tfc$q{S`r5l5BKLqJe|Nu2p?`l@Vx2i~fX6u`cyQ@GLelf~A!lbOw^P{4 zGi#&$SAsTp|AP{e)i0h>Ewm{KbLNntUu%rYl+M$KJGU-O1d(C` zo)Q)@k;8n0@X-XfUQP!w#OhlkgV!}+fs5dyZOvI>M({+B)3v7aWI<>&DQ<$5NTUmHMZIcdF>tJFz8U0H-H89S98#R-fDa51ld5MLLNZe0%XQ2@tlw zsRLOD2BUsdQO6x?e6p=xI$lte|7nF3Ce6$ zcgiZPVAJ=Q&5tVbIdh#IBmx&ce6 z@CBpG^HzT!6659saT@1%?-S+M{-8P1^W@q7EDkSgiL8NQTxwsAnR;-?=kE_0jv`N% zD4~f_aJo8Ag4}%vJbO9|(NZ$fbtN(9aT_7792SONVT11j5B1OFaF)q7jmY;51dy)# z&F+{~>8lP1B?a(|dBpPqo0 z_CWRWQ}T74HQ8rARUD-W4i)uUE>2B!io&mlM9dKJV|2hcq!Y3mv$g16P5%KVoCSJd z;NUx1k8&iackEHwijC<`BGR;_RUY#%pV}*82_$5 zE$Hy4>SKbEl`PAY!37X8GAC8q74P<=r4`AGE)f|VYMz_3RXP1Hvz_g>y1CMn*r-BF#j7MGGigd(DkA=cxg z62SXYK1f#%SDwhC!DeeE{SlLOux1Pc!Yn5=7P$LkB+$47XrbA)6GmLdetI6L8BY02 zke{vEBq5!o_VqwZ6JPrj?pBIa7|+uSwJbbzIvGmj^A8z8(9ZSmQD#yLpUUnCX1+C^ zAos}9lX9^{@s(O6SSSumdKz@Rt?k_J{%gH6F2y#%u`uY=Cbru-nNc4q`IW6-j$qp? z{43T^>&Ri3q`AS?=>K7%Ylu%O#T|=o%#jiIK|bRTPi%l-)SFOQ=Nz{S7Gr1c3w^tN3wmD@k#Xaf+=6 zS#9B$V2zI&YRcZQm10BQE&>=vUkY`WJ*R5^4vO(6N7u@BOaPYSgkE&*D7B&r8D=~H z=^O2`N{kXip@4d1B-mgLhv3RMT8P;dT_L>NDv?3hq|?^CSvS!8lQUm3PlqACEY zM&cdn_i06v1l!fNY{RFAcjmB7zOko!pf zo`%$1v44F+@w!b2J3b@)*}+u0Aa_7c|J0-Q*~DC`f5e;tbp;s5kgr@ z0+0o48Qo1ZYDjGb>`&z>5lq)DKIBF~Rc(qC)3+?-0Gu9N7RG&3cP^?+w(q9(L<2Z5DT-0Aoo$MXm@kvL-Fdv-k z3(P3d?>mw z-F)+VDIk6xe90z$Z};7bKX|c83~TIsWUjx_6EJaSvK8+e0z7;(VvN!>2unrdYM*ANQ<%#GcCcOGqN9Z{Uz~T= zQZN+tlz23sCgoNZ4Xuh5fJiHMQe5{8xj>A z9jnB!_e39X9$@}_ZA%6@3Ap~kSccuZ{2fCw&Sk47FhmjNd(*FF-{+HF^$!a{3r-}yFpO9= zoiB9H_va>u`W{YRIx{QnslWleyemGi!!3?aFVYgBOjoJzBk#SV%w57(&XDN#M;E{l zfZ6%5vAKdP>y_UJGzV7)#9s%80W%f{UqtF8i{m@fXW#oj0*@ioEXI9%A<9&fxh7|G z&ByH(xDSMa{y8gSBW@-)%UKsvM)5Onby~>zS#=>EfMSzCgO~4yM{lhq0}>pNV+l^; zi`v!C@~DQ1p4O`1_RJoLD|^NZa)Zv}fFkXL)aC8!_uWkZ^e0g!W=9fTQljv7=k%=; zV6}Hlw)u9}|4p}X^ufR%790O&$rVf;RX8_LpO;6xg?;V0{1o?40LxbK*o)$ya1{aX z|JU%9!2iwSov^43-S4#%T3JfbkT_(|ak;#`mMYKoK2SLZL26SA?%3x)>AGk|xAybdZ1S!ib;!dNlJRyucGM76Z zUHyU&8r}&$E_3lfB!28H5MDYRgAp+3p0TjJ;X*ARR?i_hd^&@ z0K}joCZ#V@I+Liaer}-SsR`~S3`<0-R+TLK0QsG!$KC^7Yw1Dbp8vzGkd9PLkKd$9 z=ekWNW@yus@mEtK%NQ!mxtNHLOBP8A%qbgSePxqo;t#D0I^s&+(?OKc$+A();trq~$4EzZ*n zieH2+*JSrgS?+dKu!CvLZ^-YCZ)RI?PN6p=ee<^KMvF^a{Vsw;{(Htk@BJ71E`~1x zx$ip>z?{7kohy>^3%2qSbgta#bV?3**`zwL6i+>G;Gjjz8TPO!J+z1L&Ajp!A~SJ(N# zU1!+R2p@6RQrRw)3Qu4(n!#k?GYh^G3SH(6IuiCv=6GgZ2;5QhCzCYQnYs1)Ku8iB zE%04E306_Pn*oq!@-l`Bq>R#Pds3bQzAwBf7IZ#f%v}^Hw*s1S80Y7w32c>C4nR~$ zHxJmN0XeEL$<&;~5y70NojMMv*P|_#NfVb*PyJm2+@>s+x~_)c-t16JwAgA>F=YA? z8qOG%A}{AV2|E;2{=YUJNO{)sE;UW#tB6jslGA^WdfOL6fh1MjesejJY)9A-7mG>s zkWA33(y}EQL}KIi!*eVOxV@oy1F|h8x&VJT{{txFEMKImTZ{QQf`&6>%Q}AiWc?1m zxIoN|pc4_KfxnO0n(|xxv%3!8Sagc#^Sr1TyOsNTLm2bxB}%==CQ;Yj9`~@B^A~>q z$mpaZ%K6A>qoeC@EBw00M`vOrLuLqPUoTPTb`O6om>jMYGf418R`J6wyKjC*@QJkT z2C!fD`OO4v;WZ%40SkM>@P1Mf5K8>G^KjE{_$IjFf5RvdDv{w zVihM~ng_&y^Pe2|hFAp#i_*{v&yav4F`8Q(Z@(!JdS%PvOy11CzZhP&PQG}(?bf^? zNPZ^VS;|`+?t=T40dGTH9|UOVC7ODkM=2Bt;QxZTUQgX`csQSlO1M<>l!<`K$z}`* z#ncW@47sdidV&HxkUk;NIxtk{a(foV9e!Xfk{UnF*e7O{|INQ&7M^7tm~pq%#;*h9J6gZ1#SbRXskjvG2m|Wz}FTr`_d~x9CPAtR-1Yr zq7SIwh>F>wysA?ACZkZ#Ja2QeNV$$z1OONOatjY_jC$>3_@F~skJh|3zmIjlJ>^oS zjT+S{TDlQ^2 z_;0}uUM>s6DAa3>53o&0Zx z*X^*TQchHoPGxBeHX~>6ZU4FULaj0^Nr=cW5ECY;XlV^@N%wG^rFK#|ocep)8`cN7 zRfG)1>(F<9^jBGFh)Oq5^~(UTy_kKrXDK`*y+85;C^M5Y>Tq4{p0JTWB2_4K2180+ zq&>B!Vz4g$;|d}94?m2-cF2q>qM~-<5H7w=^4+FYqvspGqVl0nv{t*EcV7 zTg833-#`El5B6^-0WI<$NyDByV4@xT2QbDI_tIqC%Va>hgWqnZ@7^@Z)obp1l)%4B zKi@0a+!8xkxXlNsuRY!G%ejXI7d}CUU3Yduclx;!zY5df%^#oN7r*Y^9QLg-MnT8)D5!_}--6-_I9~V_yl>G9LqB9TP z>%LXf^L>}tOh>_mwoQ0b9}3BqU~6j?Eu!VpZ)!Pa`SEV<%Ic_jM(dp$p7x^ivaP<(4f`Da_{z^i_0UpuVC#5XV>x}h}GdA zMc<6WoPZn^H^Bi$_zTW2oSS}rA%*X52_qJOqlM>vMLD0I%ILI5Cyfx1_x@b{>XqXb+P_#V~xN5;LxDDDcN7$i3Nhoas89XMi%RTc$grCrlQE z{O!g5VdF^)S_P*%M#a1M>9Dci?pf>_WO~EeV1XgHNq-=9zW$_jkv&{cgUVknR9yTV zJE77#$=9>72mfQGWdpnA%)LlxJQlRFC!Hu0JFhl58$TGjx*@i zlIUWJ(`3YtOM9F0cKF`VKS>?M0(lCojKQ23M9b-bt@-mxTTUbbFkzypyQJ+bT4cWF6|MwUg>U@lO3@w{^vQW7)s$x<~7^>X5(#R25J$iMWKibzGshyV;om z6El|Mt7aTLlhAI$KQpxBZO^31>)zp6t#?in#h|EU3VruSazJX}{rsv5F&;1c?4MoW zW|yINWA!#l^j5Gq%h%sa6hh_d$Ic7W38^P7|AH3Ga9FHyqU%144yfu=o%gBV3bpSq zJ6Z`J@4Y_x6RRZSUPT=knYsEkpeAXMA9ZV|fHh}ruj-8K7jB$+>IpYMogjswew=4G z{XND2tQ-~kJl)*}SNx~ueD?sZ%w|UHOzef;Qt;G~~|8lT}iok$g z?9el|JFk!`1YdknVL^$>@Evt!vz&}O+fHc+{6}Pxdg|2o493oYKF7OyBl2fh@x2q` z06U(ww`<)qMttiJKI7Ro1BwyLUOzKHaXh`7yu8BrUvH_`+A!&NfwlUTZ~|y|(-lrT zh2KuT;m+$%Bl@%8kB=^mpPIJZd8yp}e)K-wfHs4_Yj&4-CK0y}FdRx3A1+QwH`p98 z_lgH3;I}LTAWUh25i%Gt9!efPa0LN6;LTdCNCyZIPVJbe6<|PEQel6#CKn87%B4@A zH|fpKtUk;wCrB#6wkfNjM%YuWZYQfgdqcQ@`B@g2go=0(*12<9lux}8!;anHxmaAT z=5G<>;FIz<%qtT7!7^(~*_(FL-3mA(KI#{(z@fttTZrc>F+ z#-A9}B9oG?b(myF6uUhs_oN=vTv{ao@wywuUb#XGlMUgHUA~S%$Ei70Wf;3gj0JMB zY^h#E+32IcGA%QBnTIUJnvl_k_XA#=1H(JHoZkx19E^rTP4DL8ZoVlrvB(^Sbcjbr z2=&NwE3jBz)*HZm=q7YG{rzB0&em&#;vBr}!_5NZ1ZFCc_40Fc$vjvg;ywRk_MW!i zx%wUgeWkUUN@f*6%RA#f+&AZdWA$svGgL}#-HT?3U!asr<+vj`qYN(?1D)>5zKk;TrQAT2FTf08kfy2^7a%Rf7njZZP@qz=lWg@rQ+jf1 z2JrO9f;qXkqtxT(D?~6w>#+IGsOrDS^bKAynhq2#KK1H{tyvi~y==QmG;^qBJcswv zU|^5+=&-BA=5)NqtMD^AL0A1^Jk4dyxij0%NZooTSOe5OO*6`#$hm*a&E8O1rBvVk z@2or1$AIahn3Xvo^PYFUhi-P{{Tn{S7tu!{D$*%=llBi4ho`(F#F6eDQ^KHLI6gYw zjatR%#*5akQ`6L1e&u;-vJLeI!}6tjI?6+cfP9 zx@PEr;kK9X=g>U+z0;5?yGtVxJ6bY3Mx(h<9tTatI#Tw*&Ptaf^A*srGyA`+$aRLYj!HG z%-aIPH+W$1{<}c!=i@akFW3n#?d$30S}lQ&N-IG$alCWx1oY1u%Hs^nB;VZK)nrES zD;)ux;rCbGcx4O)$}&{3;?w(thYmWi3R`7;xQj7^q~b>Gy;u(dnc^6dw8{yu`@T5G zw&;CBzR}6cNzZ9`521)z_xc2|hAL{KR=-{a`Qnt4;f8pAqCSx-p?v%Xy4%6PW(_uH zm4eCGwqUyO%s(M@5OHWQry9Bzbgl1R2vKe6)Ny|qnf+WYW&W}LGY5y@@T3sXR6R33 zkv`x0f9QR7(TQ?a>9<8J=ctzuF%YQj=eopvSf9eM4d_J{9TDeWPnMFtpw>B0f+yxY z%nM^>Ug0t8tlH7(xXUXJTn_{UFa=1(xl#v|D{D(dxgr^<%8=k7Nfxv$Q+!O?X#kjm zG2`!Hby&_ShqknOgAVYy{5Q8h)kWoi2m;7n0r%Hi`aRW5W&o$BC-k@o^br8U0+)|R zMu(RxyZwc&&g0|Z>KZ`tcvm_P3eNU8VrPM60un!i8H)-)2mCwK@r0972a6GN&>>h{SHE!4rOkzpV&bqE_o&mcwk!V{XT$)3+x+cGP@s%(`H<1*;{q!myS$WyN99iR%sb^K(7j`YNa1}nlMOwB#AYlwWcqxKIwxcj?|T{wJ~)>q{gX4 zi?;foc8m+K%m?;33@#EKV{DQ2XLtjKN(;GN0;+#~ocS-O!f9N#bm|5D9Gjf*ERk>3 z{nckvu+=9$z^!lre*yJ@qWo`eT)iEVUb-9f{U0^mAkvoo!;S3!tKaH{0;tsn>-H^H zrlo3_T7P67IVKF4F+?k=o$3ifssg%W8RaL#(N^a7z^%B1t>;Mf)WL4A^*#bYorkf3_Q6@G3ov{ zsrTA8r3aY{u2%Y7?M?q3x&VCd^SxhHtm|m#Ipkkza)nl24<0fL6#p#Ku*$4+HSOW7 z#Zaff9YjyoNR=A>>RXA;!oAM(>rAI6@7G@c(`RPDMLStu@m|y1SQpVE#{1{zHzup3 z9rTv~R&NI@rf(e#r~nDVtqbvR*Tao7+{sJRNt^Eo`xOoH1iuz}{TkT=Ymq7OgDn$c z?mH$*{euM_j?u>39a8}6={UeZ;s98c0D?k|Na}wnt&|xqM}{!dtk{vUS%Rjn8Pq;QkJ;Yq|nCfPL&=^#j6c@Oy^u z7LLeMW2}u{`b?$cw%{~|9eMHOO2;6J+ZbwJYBF}sjt?{^jpxt*qxo>|%-J%ZS+c&d z0*Z)OlxxhsRVABU3jdBxPhpv=nlw|BL8Nev5J-+ijts`Dk zIx_|*24ZW+Sw)6MwOoK%<1V(WrCHtL_0i?HTXei3g zQ=YJ)4cq*uQCtxOF9zdDQ>u|n{og6P&pHGtnQMWR*7D0x+pBMgTepXQ!RrH?cl9;zYYwUrSuKAY#zpjZ6@=3-?Mk# zhj;eg-xK@5VBSZ;9bZ`E_lSJAKY518@wB-L@O7Zh+v=M$gx+VX^S z=Rp;_uo2@i=Y;Q>8!=_}u9LwdS%N}T|FM@ZUjS2n0a5~cL0vAXIkUsc5E*T=9>z%; z0l>-y!iT4dxT?Jf=^Qdwa=-b-N$w%Oxs%Rf7RiTpWDj}sS4AfP_#7KD?o>771pVLz zx_aU6TwIf>`R-L}5;?F4Lx`e1+*{MC4cZ7sR+mez8;+aTo>p|#ccmHcEpSk` zw#2`nMek_#*0iN6SHbNDZLg??=K02`;MaDT0ms9f{{ zIC>$f+wh0;??FC>cPPqgYBTbR^7im;T6h=e9(11#zee=h!RPI+A13^=*bw{4DmsvG z#1_$g`^M9I*VDyuGZ0i8K2n7s?YvI!1QQ2xlfDH&vYmZ?4`T)gwHpwREcj!i0CZeH zRZwAm=z6Z|87+B2Z?`)X17A&&oP3ze#IzX9KP(mkY`eHl)i$MLQ(;j8Vobr$YR<0o zs*c{lKDC5_iLE0te*KEy?L`dKe;rw06f&Oq@M%9R#9UU+#9D01NOXBYi3riq(j@~z zzwz_OSr(4UvxnpU*2pxmb7hh=W0?kxT!uPn867V15ku+J9fye3KFLn3R~QS0$x(Fv zPQucrm*6Epi5K7t&+z*Bp^)=C%e2lX-^7|>2D~|rVX;t8oQ3kejq@9C zKnYTYxbWMeM_egg$syn%4jzHG{{}A^5J$-fvd-)9&VCT0CVPv_@6N_@t`BQG5uE5` zHUYWEqbz7Gj)%FONrJmhPnloLsBt}?CnI9A?>pg0ozEDEREz`Gm+S%@V~BegXwTqz zCVT7uKY~l(UE@khR@xRH;^g8Q53$g>Nd!M*gN(=SyoiWYytG5?v0YO7o@?Iw`Cc19 zR%_YxA*|=}Z*ab73UX;##?obG73RBy{ECtl)aiFn1tejZ00K##z>3E4Qy{KpS{^fC zX&6hFQi-u>5PW|+VUs^_qUES->45HBEa-8P=!LY*K1oBKCXarmXYz~u|8M$E)C!LuD~ zXUA5oNKSR8m7sO3wxPSs$>Um=I5}P3MA)KTZWSsD^H(O-Ncvrt;qLJL~a8hw=7nkL1FhGzB8Qhruk(QGM^7pVRt7E-t?*dm% zbloi9N_~H2;fPxMOG60*XDo?`FZ}3;#4*r4e?mv1P}SsV+{XJzx+6O(%C&!B2Xi-^ ztqm-gxlIY5@%v{)>7Jrf(Vx`i`zMjKUMEtVYFzcHW8yXT`oP9>t6!wJ+%HW7-`77G zB0{=j20)KuqEMd=i3**3ZakDEP4<5KyHO9$RPJ^khibzJFGf| z3Ua3$h|bJWt+c<4Y_u0i?z~>`3uw6GRm>KYBMur(8m?<-xNJl~JG&&JDK-~{9B_0h z)Th8#?Hf?-jspz8UqCpX@M3c#tqdc!F0HP2No#oicoyjJD8xFgO{Y-4vc0~saVc-K4CL3^(@HSFU)w3Iq zOw^aWoCyP_r4jS)XY~tLFyy`lLfyUV-Gz=WKqfE(1)j*>w@MvhVIOVPUe@D+74o`C z^gXtOgl{fsPM2%5XXvBwH2NI?Z1@WgysFzkd5xKbV+!mW`PwQYQ`XmT+nUM`+}_DE z4ScUOZBE5oR2U42mRQ;N1S~A@?Kap9^{irC^ z_>)(c#l@Qm(BPXH}2^JoNb zG(zzmw+7aiih6lHik=ZO9EF87tEg9eiUh`zpTCcMaovNWZpxrogfA+fiq~@+XOKag z2{}1L1&A&sV`)*v&zs#qNAl=}1b>#`$J-BbS1r;=`TqO%9_iwYsIifc% zQ?oMmH&5)YHvFEj1$=k;-)Ej(-RqXcGwm+6+VO#9$rr?!%_~e;0t{sy(;|CIhb#)> z3fk`ZyzXwav+fszmBCkwPn6p`*`B|rN12Hx40aD=jlB1uh?Lk|!-TMbmKg2o?+{?_)HSyAN- z%-kH3`?Sa?HW>#>fSc+BkOWs3<*2Hs(vF2Rsf%ZBJkP9^pd2aZCLiWx!G-Q86%wbb z_2KL16r%7@rRxF24%3^ixf2fVAhgcjQJxNrQu(y(hh{%XO*`WbP-cJ- zj5O&_)1Z%*;t&-bN8Gu=vHT!*Fc#k(K3{(n3c-KlYeH8iqIU1S!?D{CuvI6hp0g|9 zH*3u9Zl@#G$71>QJppnsez|CLVf55+79i$-wFTh^E8k^$;A&BAcaDu2mmfQLehRPt z-P&S0#J>P-)Wu?C_Dq~;un*|m8Eln9$ZW8Xo5&nJfKWBr^kBHevN#p=b_p?;=PH-4 zgbAq9mc~VzS@6GwIiD?c-!J7hL;e(X%^vdC8qK7b!(R|Sz66@Ez^kyv0-UdAETl78 zI!E;T){!Ual$Eo^oVQ`#Q~w2+3svEWnQrtQcf*z^9x8`l&7lktOQzLw1NUXm38kj) zk)r}G1C`-efRxIW+Ly7us8+CCeqhSrbjd7G7-%`cFcQu)VNDjvKqYrDIwIZVd_Nk; zlQ*veyr-@^ekKs`LgXmh;3r2eS>(uv` zs+nC1+f}Y}XDZSJ{Ik2)1-7#Shg2MWd1d8(*3IWP5Gj3A*kFTDr;XRpociq}JJFGK zSnERL0OY($bG??U%S*Gc%Za9ix1mw+jDnVS}e0sEAkmnN?*_ zqyUWyNk`cqZ6l3mh<5ck6*oKI5tE$N+8ZdKNsPbc!w>mnk))tn(QiDqlNtI-jc4q; zTwn$nb>P}1ghf&p+;pvDKBvv-IUy0bg zNRmNz)WaA2mMSdtW%BZ66Tfq)|Au!gjZ#PV5fQe-{+wHr^C34LkyP{ZxONl>f?RAM zJX&MdDWzNyZ!t6;f65}QY=!ek1(dezj@P(GW~@%z&5gvOu3067%;=vjz<$+9|1PL9 zDdXcI@+V9nup5_;K=k@0)u^x09(yA zMXFHoFnBaV-tjrrUxpFbAc!)#zCA`;YC3hk*xg!1X~@AnpMZpf>d$QG{uTFLKTlXl z&cFcs#m)|10hdKvLhuEOmX$;LhF5ON!JOv$=Ko)_HEMPBjjtxn@3pKL8}J?UP!?QB zI)q10sybvXioV$S@zI5qX#Bwst1)iWFWd2;sO0k-qYWr1Zba$af^0*oF1wxBoF2B> z{Z|^58T#Y4lI96JAfp(<&`cr^cyn?p%UIlq$q<2K2ES_@QMO-Ta$#=Dd+JBdz`x|yNfCCZyHaP;1b5YeWN0}xcfjEV^ z#n^oFU4;59=m=$aD;}JuZ?v-o5B>X&%=Hg5h&teV2sc^^KHAT^Kl1Om^^$B78D|Rf zxkzZCjCX4|uGs=N^< zX%K}D=-36PpkP0=6XDbG9Bh!QQg(IBROJYH9Gh#eG^y&fcLI2Hv1h@3$rG) zXp0Cx3i*O+{eSW}h55F?KCbyZ1rU16#jWva5QvA^6lxf?(e>rXbrIvEha0i#n;so= zn~ekcN1r!hWaHyMd(&e~v26|^AqBJCp*_1!MaZ4-?U0J)j>JuxUJHgoKLtp_qsbE? zl8W{BWB$hRWSXAwRzGIDY4F~WM@u-1BFOh;AwE{fObCCZ?B4*}0){sfiK@~6ATK1l zCQwvM6>7%g7E}1cLu$vM>E}r!QZm~P({-Po#QL&~6%Fh135(2;B=P>naJwZ)LAx6D zi+S2*Ov=0N3%Mfngd_Dqft_-6m-eZ&k+_7FYq=tw5j`A!dsr9?7wk`63YC5cy|&4N z(h0weVHum5i8@s*GaqXWe+3QeJ66djIU&oDyhJ)Vsn8u*#cv<2?T`D@ctjliIJeY6 z(!nH@lzlpKHR|8Jz41YprE`|fLLSRIsZPZn&!KV&BZXZal8V^^lBK%c5D~#Mto$9C z2qj<**>s@T3C6(g?3+2AMCLJKlJ}+R>SZfcbrx3)cgv*+kkOkPN9rE~C#_8%Uy_j5%=V9w~;sxlDrBNhed=;=$; znF_S~n;~ZZ_I}OXFEY$^tuMxZ;wAx$<*-PCcC7OUl&SRfejTrb2wlCxkd0SdE=<2Y zGU2F^yF_kpN|#LrzI|3FH&&$#{ZtkhO7X>-2h#p?QY+)`p?{$R+_(S;z7jh}C!R-@ zu7IXQRB^U%kRN;kE&zh>Ah7zmym!bpHkVNr+>gB2YU=6+qhVKU>>ieJ7rrM#x*mv6 zcAa;GY`zzgzu7lY{BGhGRfCY=n{M!!t5Sz?5tpc}lbK7h=V3rc^w11~I=SnpT#vLp z!;&pn>fK@W3lCff_{0?k2yyUGGl5{phQ(5D%>mE2nd9#^{oxy4v3Ebx-2k6dqk(5| zI1$^mv;j=8UMdrEFmc5Of9TvrJZC@ibX?AWMzFp2F?9L;Vl_JuB1MYXH04SauB2$~ z2_Lz%itp3|n4LT+|Ezp^ETvQA(Glajz0Q*?PtaM;px`E5JU_YEJy`ylt?bbD^>>2) z4-K{I0Djx&?I(2%1v(4~^=D2^LB1xZ175r5JGYWxg1`K^TC7(+pu2o|d4<^AhxMDX z8^QM-4@#Y1lv%F<;(qZZ#>>n;!VB+P6KhM4{Q*&_QU`>-3vcb0Oke$vv|$$Vk(_R~ zyp-Oz1fsA5-!Rp7bpAMIIwz7WtjS9Girqc2+S*9a-Eyj zwXwW@)f2|ar|%nGt&u0nA#d{|K)hbY$ux9bHN0eI=k6rA`Eux>>3+zJ@9k$zb4{uv zgAZZQb-+kjq1x8%(zZGOSj>A_r$m}vxRR=aNWd8Yf9Di8N-eozeDF9vXm56jjZ9V2 z;hy1Lv$jd|>PtY4jGjg|LFg?Bz% zyy_ez>bySz*3A2+i0A%es_N(;OK+6X9ZnqpX!oHQ0fzscGbPu3&REhaunNJk;Yy<8 zlc~sD?If0lnS7lvE8?SXDiC$hF!5mImW{0{USNNLEZ zszs*i7}Tim5j-?=kn0_ENX&XlvNt&#s}))Ne%^-i`#BMsxKhld@kdvXsZ_wCp9!cZ z(C)W3-Q>$(SQf=BaSVnH-8Y0UUi|iz{UWA*er@A9qhPwx+%FA+qxoJ+`x1*Ve7{mX z(VJ#A+J~iYlE*8p+f=S+=xvW}z*zhFgr5d{V^ocxA}7ljEc%aQRghgX{qN7y%N-s% zB;r+{X$Lo;>mRtmG%d2pqlHag(>@LHg>!S_blQTPi|=xW;slqS+3C7WXs1uRrYQs2 zhgGm}$LF3f34T=GowHN&xv6tof&3>EU)&r+*G;#FYUKef;`Lh<4y@-xK_Y1NROKf7l4f;-#F zW+P`VgmP@*7G`?;+a}cMc9GgDoRZ`C{S4`?ebBqiX)C%cjk`Q1o5K~+c4k8ko0lHh z@uS+)%!StI5sy6Hc$tCz%Ms1yvFR`i;j;r5vY);E1-!K6_?D0a!_g`{bIN=X zus(+Yk~5YW$}MFbg}T)^g3poB=?XWqJlMrGCM&~0li<69F)Iz&JLC4s{Cm8b`?8^o zR@6Kpy&zWI@PY`o*SnLBqo(bxSb_Gl>t-Bj*;KmWY>Co@QIlSOvP|Bf{zLX#$H;Zn zV5fs|F4076R?y*EQSz+{SjAGE0ee9idWygVQzc#*>eR}4UrJXglh~Y^OWx>f$JIDn zB~`2Eh&DGU2Nu6Z_kEfFc3wM81tVW1g16V=OP%fhy>EgeLt@+)qUs}@@g)0(6zpGm zA!A{SbL~0e!l;tpnI!@Pew$s@D{-C02#nY(n{kqNsRdDWhN)2ac=27Pd0Zg(Lx~0W zngvPfh~{-{+ny;jJD+%qv-~2QC_UoDT_6O$6+9zu`$vtfn3<$K8%2vLwW1cB5w)$^ z&dX`9il>UgdC9!A*X8iO&%BGffmh@P@Pi2l$s-bQyIEQo8SsDIF{H+%X%^*3c%P|o zBZU?Hta_U@oDJe<-6-I9*J8ea+H#Pwa8k0>a?22%oB2FiWHW@zSc{kVkopo(inv!u z3WQUN}^D zD6NasP^r#G>ZaDI!4;X2U(qvuH=i^bGH#b1WEToEd~{$+`?l6oRHuXYbHD0qz}~AK zvjL7@15o(fh2eYRiA@6Wh(`bLb|>bItpB6o5o_ZSGdJVguZ)Dl3BPeWhRl?SJTZ*@ z)8#>D@lD3c%bV~Fu8&g!ad0E!A^!0sWTzr=@{HdH#1xpKug_EcodN8i*Z^KJhhQpYieEt{P>)2IE(dlQ5_E4n&(IUA)a#hCZfi3{5*^ta#Qt zD<$-}kC;0(!g@TVNCx{4T?ZVXRc8#nvDXQE-OADZ-|g;Q@zD)D@D*g{5=uPw=A^|? z4sBF-q1kyq!uSid8az~iqtt25;FKI_Iltg3zV zjISyuL8{FAAlwB@2sJ3PRx5e0wh)?|NTu9kJjGQoWs$+MX)X3j*+FJrF%IA5Uurk; zuR9e6VUt4>j@qf|G{~KQeNta~t$IIc24YcdrD&m&SX3ygK51_SVtlk;>i=RqG0J|T zuG_F$m0e!=4XzdYFvkLh%!S%V(?AMcvU4A6!rk{DB|Cl#yqooCcqGmj(@*u_<9!m) zm=0y~O?3)H8&57$UOwf2VRG5wDUGL0SjY^fzYin}*wbVrELJ&&8wE=TJ~+iiG2ML* zn*7mNcl4vJkcTO^Vu@}8v7P*|8LhuRjqR60FA6bKjpra@a}Y|~P@$b505cxP_hk6O zsiS?a1?sNccN#ksylP}ktWnu88<<^H%afWeuZjf_HO1!R%(=?yN^jpSiLMn$uq}C- z7+ZyLm(H9COC@RSs?lKSZ3>Y3JFgO)K%E~1*;?kt&*701ZC*50oSwc=rrdFXY5u*t zZwt*2*RB5t^4u9CXhzNL!DliBQd({^!Up*v7v2wYK{ZSLK84ue9d=z`+nK5M3O99x z|0}WNODFC4zn_#B3nW*<5`Au<`a<8d-Re!o6d5yBQCoVa_{T}=9A~=&7`&Y6>s;@u z=oFdlu-`h0*pPg(HE0qGd8(Orxb5Q$SrPHwWrNAG!Z*2y{rp(_^*0@^g0pr|5YN#w z2IrS+fXKeGko7Na61rnip+yK|@776gS|R+7 zU?y@J6Y1+8-z>P!HTY1m{~4vx!J)y#ZmPo4!6jMH`>gZn?K&KGVGqYsa@r4+d+~;@ z;8e5pO(M$%-oJZ&eSG6fr0ZN$c&ejzCbMT4w`j?qI?tGjO*>L%p@aC3Z(G`fYk9)m zZ}?GwWZFGEto#8klTP&Luw?lw^OiYku-}RzRL)KP&>F;mFZtfFgMB=38{aG(Pgt$} zUvu}Hb>4;eTkk!?gsuVme2|>bG0t&?0p(IkU%}9sc~~lSb3Pq z{#&tm|2Mxg|Gela9aX2JA3i_hJ5|?K$1RWb5%J>6f`#Zs-WJFV*68#@R<$ZEriqjSeOKxoA7wf(k3q zCCwCnvQ=p<`1c*j^(TCntWW1e;z^bATu;|LbTC8o$Mf5D9cigE*?h*hLvQ_|0&|--oW_MDRPJag zWv^~b_wVSKc~q*q!w8{bX5GZe*@zXz!c%QQ>!8LmcGflVby>ut3;L%;ZX9QR+~l~X z1naei)Pa#=0fH#bc;=cE?kO_4xusomW* z(Edv$GoN|Gy!=fIaq|nKy$$=&;e*&Ajcp4}#fM(QCHJjbZ7CZ)$z>QJz62|5(#iXn z$Pd>BlhS*KXWASxlsv!6Idy51U#QqUS9kqH^XwOIKOm3*7sdJFVra>jS|)FO~v zh68cgysvlKu7WrE$8H4-(z-PtK38lUUyo}VY$t9!lL74MZANu;<{x^6z-fT5p8R64p*4Aut0rUEY{z1JCVdHXvr_@o+&}Z zpoDx+T+DQ1-huYY9 zw{>XhLl`$7v?=J6wB#Pz?4H`Y_toQd`;}Y0n&HE3*PDg)S4${Ua-&og1{>LLa>YX= zwvnS-Bg`iEV^}4|b0dp5=Rc>9X$AqEhHb^{2d2hm*gnCuyBnWAFvp?9-Ohbyo~_ae zUc&yrFB58(yb@Z&5nxR!K@)erEFT>1j=1<>aD9C(& zCC*lGNOZ*F)^v6J^kq%-w)9<|YqY-I#cN@zUa*0sv^nRrypcoQGzDM20O9st>p^aa z&9H7;?~iF}C&KU@DZjK6n1$_~nK`XnxQoZK8AA!@uBK}}C4`+3Uy^{G1XBeHcAlni z%kuz!sPxHX9DhJSjktK5K=buvI!wDoJ30?bvzB|DpkF|f*o>N7>?M%Tnr8z7aJS^Z z(0NEt*$K9Y<4072=(={y(cX3Q8GkQuybua+eL8Z$6ARf5C3!Quq)ExJsib2ohJxpa z%^zS9k_3;gse>ytur+{R@v+pj=HQ}9q^G^8YGe1b5HdP8egzm^$I?5YBIt9t2cXA~ zhNUt&uf5s6-;ClPWO-ybP3Y#WmTdiGh?M#JhKB(e_wa?m(|x*nuJst}JGV#O=UgK9 z?OMvNdkWc`m$IGpaCNF)R&x`T7CB>EN3NEhG4mkPzr05D4vc4YJ>G4js>^gV`N=kX zFHa5&e3IhN(|(8y#8wGQ!32xZ^UJ(IOhsR`gU#`=4o%9x+(_5^)&h}5 zIX;|bz+G&*Lz{GgHVn0ncNok!g}TvFQM}48JY&sqbBR{5eU>d!AhSucTCOc{04rl2 zv2qW^`Lozo+xrA@E0!o><+s<1Rn&UoYN)%p-?NaidPIT1c?=@oW}6 z3HD+0Y2y*g;Bn7j54Nzrzg??zc@N}D*Y=UKMb0y<6-|APb)$}T@(EH8pII!Yl)Rkd zu-2O7*dk^4NXkuF^W&Wz#tmyRGxB*_W&BF}P7EFes}S>ux_sX@@sP+2HLc>Ia;1$1 zAn!dgT`{9@nP%1WdO$zaNVHQ+pB`$Fmxkz`uNg9mtgk3Xa3(0c^e;NrWJqldoaaog zNodf}QK56-NB^?VyY4oCTmv%IWFD6+6WjW8#7-XhP~8T9Fdk1>x6#4!{$uI`_) zbq?NqTVQy*&~$S|Br_8L?YQHVFzYArd%mgEu$(#Mwilj>@69jUHQ^3J>sa?zZeHJO z+~{)$unVzDkVQ2m`=g^`_w$DX0mQwe?i8j5hbU8C1D0Ea!G#2UrtByLHrx~ z5o+@{pI|)ENl2SAFwZ*5E_cLrnTDOhNX-AcvhmoKxtWNqv{PAyh4}l)(Ut<%!sA49 z6Oqc>qN646({1~*M5haBCjTi4*O5?eE@Cd>mf2)|IagOrT=5VQ(oeljmwG>vG@@bS z8?a>Ihlgm#Uuvgo`ur$v#gb%_E$iertuGdRlSTkI2@A3)O?j{^ zcfk(1`#SD>W5Me4=z%^rUHN-QAA;gwYt)j9BR#}0fJeh36~^I-;y2z2JwafIo@VLK&pWX;=&?pL^b96uQ6ANsOGWru-!n+o(3bG=iyDRt;@s z@lru~1tr&|6D;;L+9yZmX>EHT?~rk2L>^$PPS7vU4%ojDbp~e_EPkKfYHbVt(VM1u+&?P$r0uHF zaZG&nTWjSTZMhcKgn`;l;O*$L#yjy4l=uQ9akawTuf&X4TqIHK1W~r`3C@G=?7eD< z5VGlmMm1HGpUL}jycIvp<5!dyW8r*3En^`c<|=1$>~g?q7Cx`ldxyq} z?pu=eXBd%%BHJn??G``t&ZyvMi_d{*yC94+djEO{zwMKb2Y%Zt8pF&X`;=09z80u^k&-)R3U ztuXBnh=Ve?jl^}o^)?}@Iu%fHbX8qWfo=t)#v`jh9t*GVRM9>W`!o{AxFkKCuckqG zXRKV^uQcH?;`!YW5L~wVdfgTuY!Oj0V*ye$^}kiZa44@MI=6Ra*xN4I(}V~6N#XVZ z@DgA=a#XkM?4>6PIQceHquYL7*pdGm>mSiQS?gkupe>nHdir9uEWqHs6OT#SEOemN z#xoF^ykT?>OMg=sQ?j-f4?^In2U$Veu<%JGBK4uKWdAOpQBn131Xgt-``yPwNVvP7!6a7b7zm z3`m9jjVO_Y$wP8e@rE;=RrXyR1h1=8i$SpAEPH#yt6 z$|PA|lKZR068#WtFqCItsaBQ8X(@dwzf;;kwpUR0{fuAS0SF$e@OskgYa1?)nkhp` z1+VKwGtWzNE8A4J&TCwYjLT3EWZ-_5?fFe47hc=Vi2;?|Ily;OsZ^};(g$ujtU*Vw zl+pd{1LD@$rzi_C9GV}b+G-N(*%0? z%@Qw!Yaa1{}tU&!4+h=y^OnWgzuzMu2(hR?DZG)g}^wE)EESz5g2Oi7f z@0!97mO}ht4cYu!VoiDlDVdqJ_klRr@us^|5h9P;qt0zIeBq66zj*QP>-Yr)HpyD! z5pJ8De}Rk+jC|uYVw)e15OodP`{u+9P^{WKFSZkKks`Igg4VwE z%fSBGkJ{o5eF2{PoO#@I6xIrhx}sT2;iHV4We!jh2)P?>0Pw57SQ5mJO}2!qGPY|Z zFF|eXxA2sV+Pv?of1u0Xza@o_n|>n*`(4H8jx_Ba_fb$GX|}5(L3~3e$yC?xNH6R8 zbm0De!uMBrw&$Huaq4XV~t7G^%ad7ZMd@Q zLahJN5szi;t(_}WI$u<0)EzDn8+dR(lfr$L>&^24Lak)jEqayTQTnJs^VmbQNMC$5 zZ1T9nK0PtiQ}rz%#QmY1etvaRuS8p3zO+-JU^XVO;=~<~b;c5QNnViG$Wb?oUgtR4 zFW0uw+E>5+o|>pimW$OqJG^fugEc~pQ>f}~Y;y#^9523=PE?Y1RFZ|1f~N&atHS5= zjG{S@I{FQu<`O4Q@$MA&bxQF-(D`y0KX2nN?XYj_w@v^1C^HOfFZs1mCxa z<43*-Q>;>K)ztG#!@)*6!Jj#M)!x*7)XhNS8)-X#&_1qUdwURy@{~e2!#h@>z<1J> zGbxqhGfptjq$R2#W|yr3cdUA~Sj=W0r!{r5EEyQQ-z#IEK-bp)l2qV#iN102x>{S2c=09Gv@+QbyJKMha((vML``dKz52wr z!F1ZhgPqkK2g&cCtdxMK89qrf@cdx#sD$W$^ar9OWkM9kI@E%hIc&(L5d`gbD@(<~m!_zI(iwxiG zSE1u8EesV5>fxB#=>?p;y{!fhqP3K(c@CZtId!gq^ol%kauYux_IL0nr9l33&f-H_ zirnleSB%mA@E82#ndJkzZEc3x=Etf@GrU|^xb1ocYm9};$LD7KOFw;|jDE`RqB^8( z%jXl|cb^}>Irn@hu##aL4(}KgFa$Sdq$mILaM?5?izs+&~NxVV`S8urNztmYM=yarP4V0Nkqn7_<9+@;cqTM}q7ZcV*mZ%R}Ypla)$I3n~^Zg&;v z%EugdUW)s$VNRXN-BsxQOoJdrv2wSyvUSZjTbbO$gTBKq`2sMax-Zwl;3<+ZX=UC$ z6aR|gaGT9q4;y-#|K^P|+RMRR<+sA+M*D_4*5-WwY(&SuUU_sRA_v|p!ew*s1>CM-(o zrW$gZ425NkCDRu9XO|;ychWvM{F~>$soXlof z(JJDV<147!nGFi20?O-g%hvL1_|U!Ng3=baKo>yteKF?h2De%}*Bi-Zx5f$#^pYuy zluD|CP)@$oj+GL3b<@8kY;~85Z_(QWFgzy1ysE$9bfNjSIq`bY+Z=z@+t5rNOp3w> z{_3$g8kYL&fwsNKEjTW%p6R|a)t`a75==|2^%@peDYHvfxXF7#S-4b!BJ{zei*0(z zHq2idc8Cht-cJ`MI`wM@DFywdHp^F~$%-EcuUHDjPl`O3`H}wTW0z()p%u0gsL?#y z3f{xOW0*Wfl3N22@VPi;BxC|3TeQ`Y%DF(QTSA|GG5%g>c1Lc;=;Hx%rlV_xM{G}C z!*TjIO>?X!FZ4e#ZLM>D1CxGn?<28zCDHjnahrAo`Ng>BEledPIjw7z(Sp9@_u6+O zsdI-*o?8W6e~w!MUF&JLPG$T!|5?1L^v{*pfaWAi>`25AmqD-nV^v5t!*Wyny@hax zT|<*1bOhrjqut~|tDR|ty)K1f7^K%=^-q95^|W*IF-3A$b+c*?wbFmOb1SbW-7KSy zZ?=9sQ=eD&E6))#DHAg`V`-~Rp=vMX6QwQRj@@T}Xq$z~z2)nLjL)wDI6yI>J^a&F zl^-x)P!@k(L=9RlID!>~(|Qhq7e&%akWdRK`2NoX7w6sO4Bltvc?@^`jQ1O~G2Q{g ztV)R!^6!;Wx6M1K-!<=8K4gyul6wXntoWpEX^D2~6z(C|KhheXJ)yO>1xzf+pMnVj zWeG1gCAc|V}kj(Uy_D4>=!&9CgGi6_X!Tr$Oo724Z8#I3+%nx+iV zHgf7OJF5@4J6g%`CMig>Wy)2ErC2k>RVT4GU=IT{JoTgp!l(ENoEBEmih5q(^kvhS zG$A6Jsdxh``dadFM2c=QD%J5iM9r;0zX;Q!Orot3Ej2rhAk~y12 z%@xVCpR>F6xBF=pv(7A5E%)MLpuHv}{rIxptLvnNY$YqZip zT~!C$0*5CkoDZsWvbO&F7hyqFs&GvYXhBVs?qU7aGQ*a8q=UR}=gmngBtB~dDTSHo zh%N&g)y5qPi{paL#aLbOXyPvH{$b43l*N+8DG?bHcRwKmb+kFFgKKF(2HD?*$EZ;5 z&04D7^U_xX3x~CpCBp+!J|FN8T?1ETZ^oY;tyPm&$^rhtrcQYMa5-yaT!yurAu;(R z$PF)EEpIcPHtD@@gU_m0MHsC;9Z5EpN)Zh1fRLL)aU1g-{4Yeu@4{<@wx^4|mg&P% zl;eakyEr3~7>%#F710ds;@jRVv4-aA#=#Q(a?q4ZZH`$SSN*>)2w-x(69y<9OxHKC z72lQc@|AFil$ev8s_LS==W|JGBxhi=mF0a9a5Hiz`O{K=VTgC|`pcG>aiXPhDsgKG z8|NDJYsBn=>4-bjsMeo1x?7y0pWUofwO*)&Lq1G|@pop)=km(0+A=`Z>!#(iYZa;q zPA(n8CZw9GYYNELIb?X>Or-3jEcxra(P63ylB*LcOq})qTdJ?`7O^E4`B%7MtdN9A zN+@*Vo$E(;zJ{5tjUQqPI@XNwYGYTYHPMC5sPT_))9Wnz4|_X5OXX*gS&3fPBgyE# zvtWXt%F@a|qw7N4@9YtKGsTx;w-X&d!u{GjnoPk`a;-Uxz^m3P? z%ov?#suMu2qDTcHZIUS`-T8fl9_z|R7A|as!eFaE4DZ5-=d34;tyL-a!P1K!enl=B zc|Kw6Dew1nvKHLZ*okN&X;jH2*~MZGttKP^AaL$ybkkHt&6z#z4|?Y%Q?TPUf}iU+$UD?7U5-rHyNW71HxfY2psMi3qaGDZ|Y5fiQhxz+tr zTPCGdpN+bkBz7Vvl5`s@)$Sw{G$IQbr&pgn3}%(}+!-52?Gyl(O@5Ee+ZC3nzG?5J zNAH1k03>jUo!NVvs+@mlPZCfzqAHm?=WhJw7-|O^PPE zN)_=X@eFAY=%I@hHm+xN2%=?dFV=)XH20Ug7>Vxe5ZphVAP0N0b0!=6LPRNt#rZj3s2}s?B!^wpyzwH4(s1k7QXt~O|7;MVysx$!iOb44FZ%9HCHBW zM1_b%Rr-Q!Wx86__K&T3S_IQn*@-S9(3dn?FcB$$exS_|wl2@YKSbYygc1$r#L$u6 z@+<~H#R-Miwcpof5u)7?$Q;qtcxGD-c|DESNXSv(IdH5cf7yz02qo{r8 z)-`jPO*-Y(9!=^OSXI}7uHB{wLNC%)?PWO|HZ*a;(A|P14p{V)c&d%Ovs`8UwrRr7 z28^Q>3Xa)X!IoEc!fPv)Ab&=;I@bGn1+8wn#yxV#@zUrCeq4*W_@1*HUmSq@ODNt#9iX!ba#VwI^xh30o7go7LCwoH zF3833?f72YR8{wg2**-wP>!4bfK(R<=sKkQw`=gz0}t4ST7CQ-$bC{O!wbhvToTi# zs41_XX`A`t8w0ZMhdyxe(E^eM4?r8*b9PUXW$$34Xm%D`cT$w0^b(W~hWrV!Sk44I-E?Ti1WjY6TS-?+AibLfDCe{mtx zVjbPF3DCtDXA)yOQ51)tN-`s5{pX4^%~xPlZP!kL@lb$DJj| z1E$c8I3v$7LYR_HvFJ5n6t9Hy_+xByuc=9Y5=qk0`Dsl&0-B*WlLDkImO65e4GBhv z(F}y6Tx$n4TcgO+?>S{do6wcMO01bj=jeSdY0;}KbzrFN{q1aO&JB?eH{trwm^4^3 z9ZtGz&HAlk;QO&R*|e)M%0_2*9HSn*S-bHd_pRo?KlSntWigBrL)_&JtANHha#1Os z>fZ^qLwgrPq4An0kOT}V#O-xtzO(Q)rc?y^4mMXh2 z6H^i^()h><0n@mGRp8Xe^zC!DAx7}v_KI2jjBXdmA5MprQ z*rodylbz9+Jc=22bxT#fhav}~RYv_s53O~LxG2Q%6RZRQh@n&p+SG)pT+vE-8($?2 zGibzM)_CNhS7SBuSfUP=!6|CL8y+f%?zv`m!5hJ(`h%_lS)Otv-Jn8JpddK!)jR1Q zwvKfXUTDsg`931p%q3VgQ<^Q>+ZOtedjyW5ZuIwW&mi`NCGYWAo2`{$eS51G)Ipxe z`w7ebwHJD13c0+htB>W5k%7lxs46v^i+cJu-%B1Z`gc_mLb^kjANzRYr+9Z^A0n; z6EM)--8C)uhM1JeiqGcI!P4r>nel&{^&QDA*`NhG&1jQ90-{aB0XkS{k&1#4CWqYeW9x6>W+6@s&I-4uHKJ^gfS==1S=>_- ztZRUu6+tShVby+u6E_f-0c!zs%kzOJbsZ{0dHI1xk;;ogf?sHgSA%h~h&AYmq-E@y z<~c<&DR2jw|5@YLbc1aC-*f1@)NuJEVz#*RB$4hE0;(&ciqciz^8`ib1?3Z_W+PD3 zuk@LHPFHh<0OhX0^#DymJ8^N$@C37_{8q@a3X_2mNu!OhZ)6T~|2|lwl+q4kX1#k& zPYKB%fwUrko6Qkhq*gY1w5xXUMs1yrWpymiJd#0xO&xPM|I9pXkZt4D){zJ2TZlLZ z?UH+tz1S60-WV%q?c*x$3)zrG4QZx1#Dxvsw&ra>##}cm#Zka=xtmwIW-Db}v(k;5 z;E_$>RPB;S1ZW&|qx`UR2LW$pe+Rf!++7B^?v{}K+tdAq*#|c5z2)ANjFD`wU9uSkzj8LU~iStG>eCgzuk1=#f z0>^;N(vcG!rrWEMU-z6(qq~hW!}G4E5yg1kwL`YL4&i$hg*m&>lvfHsw3~P>@*934 z>_DU-`>R0Fi?RBLsHZ)qR~aaVXFDRG<;Z1{@nab*A1uE6b9P@hH(^yRq0n6W{2QXz z-M*Hh0uD>ilS|M@%mdc0ps)2wg=qpvbV5>$G75AZ7p4llFaN^h)lR!oi>4#E0*5W; z9IXQvaUmK-_SZl#3*%#Mym*NdrX6UB5+rBn8NK`szYxcR(a6Pct#aB6F4~|m9CD{9 zIRlQm6xhaMjhCrkv!<2@=;`VsZ;W7i=m~txhjkTB35$=cDurIxZ?YGFgDB5~5 z&(}^lQB)|wpa)~6oxjeCKg5yqwypGn^WnOSFK zyj#HeOdW_}fG-@o?uMC7{$};>LXpuELcEYru*#QYmWrr~x(cHM+UQ?;*;Y~!Fis=! z1>DL>S)bnKf)g4!Oj3HTn6O``ppb1^46}FNwP>-;!7RsGMgq$uQjD`PYWVoCnZC1S zMnM$wqWN&g~Ewa;@7`DgmEBWq|}N4tz*)Ww+vJDDU)>xrLzUv z1AS!4C_%IaMQ)-&VJxD06Lx{XYS`b#$goYKB_HF!Ju&Im5`QbxFe*?6kFyj(OL+&8 z!DQ*$5nIowzLndcoiN*Z1G+&L7K!B-4j&W_Y1yTIGd#jAp-=J0*` z7By7s^|-}>v|Q0!BHcj0bJ_z8JwhAN3z?e_3HNVWj1K&uUZn}&lWo=`Fqo;=>(Po2{J`wr zl6xcxjJl3`3o0baItS>0lmb2O4~W$FDE9h3&pu%IJn}JvHSgn+Gjq zW0CSp`c)w$nE}d`3dqC9&cnM~Xy=#Uo+#hV7X~dXUKxsc zAgkyn<<^z_Q3?b=du6Lc)Zju@t48Q?4~sv~nVxli_pZn!7iZa@CAc9jiN>r5qh1Ma zog&@deiU`Le-?OE>GiKyN}@Efitgq=yqnxY%+fnd*6zDJ{@kentD-aE57#TTg&NT` zNP67t6WhBB`mkYmAg|ZOqaFoLaPPP;1fpoR;_08OVBmu~+rYX9=71wqG(*Yy;&x!r zM4nVd-4hVDUITNe60KB^f6Nk|DKaR26*hdX^mE%RmDGcb4zGB_AFp{arpZO~Ku0;d zQAP^j%`r*C;pG6OYM<{IWZFnj^&MYkzZ&V zYQB>Wmds(Bb3~EHJ(J}Iy+_RYt&z^2p?$O85(|N-^cl4@BFdDipwgNCG(IlX_S< zjd8;&ncaL<0kkBVil(92%Qo3PSO?k{Aa`?)`IA}hlgh!)tQx^HyNf|Ud-$rv_H)p& zir30%Y?ryLPennp#N2f+fgh+K$x{q8&PZ}cm#^~ensxQw+MO&Cbytmn-@C7_^_*9x!JOp-&%cB$k5`bYd4X+s>|j3h{|ORhhgmk!^qmesi(S+1;x z?qrGO(0B$IV8aWU1_&eN`Yu;<$`T_^4kiQU0nf4|f^O`h?;yt|C!$ZzSOFF?t#QVnQ@h>@c%CYJ-SyC-J|!xT;f9;n_0Fa|+{%#q&& zT7tzHaRaeuBbzg>6fC8#$7_9P=2XrlO=Y~nrrqKeoY_p@gA0w9{s{o{{2_}5JY)*A zNNsDNCYc2n9sfcumg$x-bCpW@#QCvh#C6MyPAFo*fb8jDR^07iW-RI#P}+y+W=k;) zVykYG;J{=;=(p#thTG07rYS@BgyW6(Sm*GFGD*? zNaDrrJ*X9r_gCW_ePnTjc|ZS)w?~9qpnJljTQek)0VyD0%L7~wZ|7QwmCUMn#_gi1 z>!Y}L2#w&4uyi|yf#gQ zq#f;Pj2MLilI)^bks>CQz6KQLU(a0 zngUwe{a?mssirD6sJ;Vix!Gf=*fy*MT)V zvm*(%$at^ZSHl&TLc&I*xDGVEH&T7epHR56u{-aznH-~7p`uiy|I1xjmq^eO* zgf^9($ba|ub#Cu!nBQb&T0mP%rgxf&n{ZS@%m-MbzE>K{E8B_K5e_X4c-f{`^j4}` z@zmF9?udOY_b0OOs;Z$;88+vA7O{*MoZ9ov`?~q6_RW$KdlTjXOjknt0(&`0D2QYb z>}6hQOZ?tc8jx=G$}Oo~Zq`!Jq&vqAdaeqq1tN$Tp?(6U+nw{3c zxL77P>6-%&Wt4$U+nqI$DbVD>-}21(pA*JJl$DBe+kKldme~0j@S_)gd}d2M1*oNr z8)-tx#?=}y@n6gO3_RizZPCy6Wj^R-z<93?LGOrR{Q+z}qowBA8W@Pg(6_%Rkj1wj zbhl?g%mBo9Oyj%#9U+)3$V^>>|%`qemW+7Uco z_SWdR^$ylai0A7L6WjBqI+yRe0I`!Pq!Feleo7;33>E)+_>;2*FmcaUok&(ivqEGB z;pVC!jr27%>x5qeoe1XDdq3wr^@P%B*JUQFST530dOC)(`jW-j=zvYkrG#6|tUs`Y z!A6atE?-NifS@Z0afBIe_s55I4io^e0UF4pj6ozLcc6R#04*n#T}(K}msk&K9nr(| zaJJ%C_$-J66=0PvM+h7MbR7HDm1guLQ#6@gFBCYn`&AhwcV_>MQH*2E`4Xf=+nbr+ z|KP92E#=*6EsxS59bo-smBYns^;N6>_ zjV2$-U|%p}Qcv(xBM>?WiDmko#*1k8Clih*c0IRO+NpozAi|G_F!o|!x&nBA$;SY0 zZksVlcG)p8!)6$jFxj`QH}o&I3AQbg*_u5BUH__f?lw&YhP#s|tE-^Z5=t&7J)`pq z8ApmaO7hmr{Sq-vHRmZ`Wj-Y(?iXuU0r5-r+-Yy~$9RcU#sX)AgY&qeP3LcU4X^L5 z%iC^cd&yszqo2m)4Ujk_nU*ME&zrCSmFyOI3Cvc%0h;R#$0!=h71@(a^oo%kVbvp_2eE|1Ah(?pp z!V;@W^qd)1>-b1Op3^}7zpwL2G@;WBM<-bo-$69)i2@>F35`ODKh3D&+^so6B_yx+ zhli}7aER;|KNNXBKkNwtEyyT+{s1~cpx}(3Z*Dn|Gz(*djIkl|N+qT4qtg);s@mW} zo?=dr_0Q|$0RQaGAh(8G{{KJ!-*N!60_3!!&41R9U>^dJ6PWeBn8Ly0|N8F#lwBGq zqxN>bT#x}GPKqc*h_|K*Dk({UHf91Ods#fjB-V|3Ba1z*igEKCPhwHbNz+ z^}m153>hOjPuD_%G43<u~_&t_B6C$4OpFiROpDfY?)HVQ= zY1q6Ex?MepaHm*13@On4XlGOXc~_(?3k1u&@a=Q*=s(QpLTZ#&?YsYE8-dajfPs!$ zMv~vIgm|%ETh>Zll@(Wz7{m=gvJ!A>sPJ052{E z2?ioU^x}-wD#%1-{NRmU6eJW}uyihr2vwkyo$)futn*MUX@>4|G4xsh2Lm+O;LeSB5%5Idp0&wic<=v zU7Fn|V@#M;6%X_vpaT3u2`aXxc@AiY>X3xQToAz)0WDQT0&cznrmNeP*61g}2I8!b zHzb-u<9aV>5LqANHb+#6(8|kNe2lO_`sRbV?)%@RAlNRdzKcRsa(>ICU)If@qO{!_ ztrkT22bmCaaHe4<%*_vpffv=Y|5Z*4A7lTa+kc)r4B);DK{a6|;cr}0@K(Mzj7|@3 zivk-}092v;sRrtUaj?^A?@`3v$dfIz2vtuHOACdUTFE011)0+gVK0#Cj1$mx6U49V zMt%z*OCy`W;Y#+smK9Kd=*4yFjKBa+vJKC?*XiX_-#`7H2F%F9i-#YD*@{ZqM3Z2a z0yl$B40o3m%U=_PIGY_s7}2a(`Li((@;ksxF?kn4&YA(OOZ#P;#wX2oJO4oYWc0)a z__yZU`J7|KPo@4-HqGUs8x-t>iM*m3xD6NVSUye=O)KjqvnU~P^s7;=vdsr}1BEoYM zip4N6 ziUR;m{pQi1{`V96qJXz&C%bpk!s`e^b>QhIS}mDr?P%BI~!wB z4aG~`#2tp@VIS4AQ%L$~&k+9@ft*X$^XcT*&5lcj(a=$r8KBT4FlAY~Dk{iPXJNUT zmvuv{P(gzo(nhMaphFy-8_<33_C zj?XegPYnJ&d+6_$`rWjrET@@=|}B!=wZ5 zgeIGsm#e2V;&Cuv1B*nHT1*FdOXdV$cO#-GIbF8!fv15<`H@6z1BV9@V4NdpTY}PY z+rGxTBK>VIC(AspE;AFyd={djalCl*QF6`CGWOc9Ypj&rUxcq@!h6>)RNQRklABkA ziz^>-pz{S&hVk(@wa>Fr4Z;3>y5*&-#ji&Fl~tQOU_U;Mc1AGwLQl^LCI$gFTiObC z+(7sXO5#j`1++{Z$#84#w3gPRIO;J=wrO$^wORU$i1|@=O$W+y9oFW;r^gS=1;qJw zUgHztq;-iW1(S5Ju^c_FvTTZ9_*%tBYDvR&`i4aZi-U6TO&86NAETYNZn!iRFR{#S zNNs-KSKxv4|!pRu-pW2UF{~^tSn@|DN3Rkiw+#8S9WeE^E=R54>}7 z*>baYe1%5E?dlf#z1p+ELbf&ijRrZt%=@B#%EA#WNHTg}EnUtPk|I*bWfWU<8s)Z2 zh^`%ZT17jRqD8DU#@bubk}rlwh6#ZAjgyLOd<=KHqfT^&|5`mid}+6%0`>|qm7_*Q zH4Syvhz@$Nxj}L0egX4j(*|3}ANA+3S7c}5HoJfLuxt_-Bec4==V^Q~^~0b!=M2?z zM@o##S({*(25tmx$!Fqr@We{{C!_1>RGj`V=S=()|M(SSleO)fp2o+ME=|=E^6;)# zK=&8a&K1S2T*5Xc)uAHdVD5MzRlfk(J%h$_ea)R!35M_?{L1EAhZRuFP#IdOv`~hs ztIZG9dhC{NmZgD7+}yc8Q~ov#^c<hj?iSzOYAfU(j*j>9{H9J@gnwL{(XiwQ11ARe!0qzB zf0h1ZIi1S+BNOpmrk^v=*>yG+GBbQx191k7>E4zQ5RU1|t zXdI?AUp{3uKLVcmGo$Tu3$YEx_tuYZ0H63hQuXVvasoQ@dCX?M*b{MLAnMVDU34`y zeRnbtuR{O#?p*tjyV0I3%YtNS(++;OFA`cRI|r-t4ztBN|1#F1VJBn)Y-lE^9QZ)X z{%}VovqNHt8%gZhG9?TcvCz$6QUZVY5@s#iM#Mx|9>>FT%E#b6Je&?=esSn#^B{LXXhf zN<|sA#J4^-{R#p2)b)e(&tQjfnDDlzW`C=is_Hb;BgWpCg$NJgGy8U0bhf@m2u9=I|oQ(}+$A36wzcN@R zpJHRK315G0XTKg)pxAy?=+tf-YM_v1uE#J>zxgEtPw2+iB0vfU{~0mByVZS=zf2Es z1+ zj5kFPn8l3;fWG=1f|A9fmF?sv|KbP8qn%{|^=*#oG*ZMOe2x+GX5gI#3tTf>9*c`# zD~SD9IfhB>6VybGsNAGZJlL+sl-%DM5>`-7NeO(w&CFr)5bQa_Ej+zHirCv;^AwPy zgMjotVJbTmwXeU9S*n949$v{-dgg>sDe|3ji_+MuA5tu?MsMG7-3nGL4%JtAy1eWO z@hBfCUFzo?D}TfhI`Ujs49ShtsBiqbS7>KBUTz{Dk{+uK4}{0DDBM|m93Y%q|FZ-V zSr{oEx;J2swX;o?c+I_W)K7#s`btQ;+|~reMQ@Q2YWy4`$r8nI6R9m#!bIbMt+f;e z?Aiq5ac^%oMXNTZJj+PLc);m`WLpQrXg7YXDk6Yk^KWD) z)}IimXyskX_HEA znxEBEzqtu)oTpLO5N8U8z6MePJuRfxF18?ptR!2$9LFb(hW2(K2zje3&KqOQN0Af{ z!%P3cqU-Lez@kGENGmrrLzOJ32UpxorB6)1d1Y zY}X*AEVnbwTI2qgG5_osgX&)d#O&W!iVvg{yrGe;>$V<{Dago7gK&0&IBJ9}yiN35 zH|iUVT&D2=V0J@sh=ShCCP%1EyovV*Gf1bU;Md7XP2VMaymab~MbO_)Lt(d(P= ziF@1371f~8my7-3h~$}>6Q%%e0Wj(Z;~ohP`JXx!nZa?1^MEJK%L!YTh3s^X zm?VqFB;Rpe&H8;zJ{G9egDMuFj=?b0z!`e}rgG+!szW&AtL!ZBmS!&afH zHC|#H$36l7JrX=U;`&!d?4HH1em^_f#y{&^Oc}MC_53~23*lGT44g*t_C_V9r3Y@~ zx!$~%TTp5X;G7i9^$-Hsqa&>FM&Og1#rukC z5KzwJvip^7hI8@G`cKLU6CLcqC|Gk#;iwpQ()nYQxq$nKoz3R)SOE#$K2?%6-*Re= zmg)|kN8KNyr^p+&bs2ka_R;TmyF6W0%2=LAm6_E8ebTVxBdC@F&NJX@-y(<)a~1_q z97FDxVHxFd685jHYP%iEvF?M^n{79$QZZX^w`piNOo>x7>xlKdX>^XdsJexezT2`Q zW#kj_%Av!1J`CJfq3L}kF%4pndYD2EYxfWAAUn*D>ROuI9xp;!X+J9H)toWHG>eD- zJ+eiJoZRxTsB0cyI4~o9N2wC`X?G`9RZEA)d4E19pSUY_k^IEaErbwZTxw8^#~(BplxV9SGo`Q7%9;l+ z>To?Uc}JF2hIH)8`@(yJ=i9(tz{3>>Z(#C6=eI%SK@r|mkmC)v|3P>{YWN*gZv)uQ z!(;%XFv?`}_A4j)xwAC-y%Zg+;TKUB1u*Bg7vMOw_am#(%kq+JMR+*T(K{X!##G0r z&4Q*4?2R{;jTi(fCvyr4DLO`vof$lyP-axF&PLf4&QYAbr`%exQokb7WtP~e#gQLfQ#x^$&zR&F- z)&sUT+esJUZ{ynvb7qwX1k1*O z4nW_r#y&5vM-l^A3Wyc~bMfs)D7Z@d#?h*qEDQ4lw}E6}fyyhSLZ{QK8#XBcAoq>< za&6lF&3gR2moZehr=vI^ObH763annT!ZseGkz~%7HmJt3;II1L9uDyMqIzcoktjRo zEn(U4Jy3Lk&D`=aLM10=*XRAoG&Jm!!{FTuN8PmdmlrBCCM$}JpZEse&gru5<~PV^ z=3gavM9tc0><2b894V=d%L75JZMnEHmqfV4)Lbk`Ow!&)-B5*$AW@_y1<7+PhT-MO zYUWy$qORbj_P8Zb_51 zl~&q#@$Tg^7!SpL)$qBvCzMf;LQuG2$^hDnP5Pkp?hRHE{zcYBD!EaBKpG*i+eDt6 z5!Pj8v=O{2&G^8{Q$-$wlJF2^QS`SomsG=sk;h$ojqPu(SL=~lgc&0=plEssOIeFrda!qAx}}WoBK^{)-$`ud&OEq)WCdaG2tM=>of`{U^=Fj1|76+d3H* zLPV~XUZOpH9bwf}T-0_Pa)~l6dfi+iKj2GMqi~7pn^++b2i;Q~)L8_!J_7+%1gG*P z>wu6H-}P=`kUIsCLDl%>DoQ90tlq(T=F-B2>8|hg+^y7X+q5l|UGoU;tA>qJ5-yr+ zKpuZR!R@Lkf^b}kQA?SUi%kIAp>jmMCjOggNRq*7jC`7KzdIFW3Hd#J(M47;T{MI@XVp|oxOLkPXp3JSc7 z+EUTkfJ>$uZ1Jqv-3!V|{9Z%9AWC8mmkt`W;dwg-#5zrIRyaciQU`SEY>T=G(Mu3Bxi~u0LqNB|-(pewd1Hny4 z%n%-E?q@r<92ZH=Sj=a}?Zm_e@X{vzNjHP@MOf0wsQSlI>2MtT>XE4jZK7GQK>6J% zVOMgmKQ1<;!X-zSe~zbTf>D|x5{5=as)kTmk&!Y5xIYQC-?9J;Ln~SPT;z&F0Bah= znn8fBhKvX)2pH^?`r}t@5!xI)w4W5_64L?&jkGbo`(@AQ=t1Kn#f`mYjFAS+;U1RP zdRR!y1d@RB$mvj=t}>=BDz(Q=c*G3A-5VKa3bhoueiL@M4nf9V(vI7V5|`ys(I%PH zCYcu3O^1|CUFXbU3yD+68_hsyztTN=713rh8(hTsG;xH%)zBM7LCm^?Z@=TqS;~?7 zx44X^#|+Nrnl$X}qPe?6x-ATR%wXl^h>*M4Dyrl@Tr#qVL;p5|4d@#S|}H6|rV! z%4%|yRurE&wFkobZYxg{36(v7H>K7lPV4#dVT_2xoHyd|q>Sy}Q3l!xbiGwjtU z9A?-*>DH!MhTBVkK{JwMk9C1;GUFTX}VN&&K7AS z3p;oaIU$vdu1)jX4&(>DJ9#k+VJm~$BiE|}@e5e%?XKidfm;_ zd`1w!$LgwxH*z^bnCEgmaEka84! zKW}}jncKzn^DqoR5p`38QL#CCfVGjjT@~7GNqGXVG6W-W+a_ErIC&oJRQI1oryXfq=Zn|)?_lFZ`ig_r)_2EY zvXcYpkrP}B>t1ww#_3!McY@id=?ItD^9VhWT@RFr0s1+=S6c{lF0 z@~yNN2N{$?Pmd|0GPW)gpjg6+uINXd?oY_4!(^fRt{DjDYUinxvTC9N89Go3Qg#|H zZcKQs&~d}9zcu5v3+Vbx5fyAve;u2Ti{tMJYclqa4Asd5ewT4G^@C2<$_N;&psk$23_vs^Ks3vXsFruPH=TkZhqRSxR z0&`@$SqNWT#%&*-E<>B->NlIXd1@;&Z8NIbFx)lsqn^lV0Y%Iqr{iZb9ED3LXskQ>IIP^n+5(jul=$;?!RY8@{u))uvK(Ubg8i_*zKi!V!>xvmTSd4y zVjY*?o>x*8ksx-LF$Fk3e6foc(vS2?5RXPb|5&p=u1X8H>*Ti5>O1i!uN~6tZD6b0 zu;?}?rl$%E#3On>%BR~IR(Ez+McbaHhJiv z`@c2Oj5^UrLCs+Wbh@gPdA_fQv?MkQt5-fm#5L!S8MQZ3hln|27 z`u;P%ukZen>}L05=FH4qa9hNGJ-F| zuQ4^G-SO@(>_*W_LEiNh3z^rLB;#7vJp`pKd|3 zTX=%G``bGj=soX^4a#bK_!beP=ib3)YjVf9RCIeE-i%E|vy28PC#W~~_zIn=u%+j7&~$7 z_dw**11n3*sa_065IwHQ@vaSCy95L+56_72e?x!wqiRz@T_mcpv}VS3_(d_jjq@$3 zY6hxL$FIo+ec5&ZZ(Jxe{|wl!4%zQc6m0seYKzD^f7Mv=fpoe|LSGx033RIYaM(yX{+65z;pNSd7^&CDI?m~<32V%+}PIr^{m3VXHN9-$5{?rZtb zpV8I(R}Pqs98WH|x>CP!9laBaZVV!CEYT)S1pW3|0h}W4I^{y#C7@i+(ZwYuDSS$T zJzo})OyLS}cyRFSi82n2dyv9%M^3G<8C>2R255=0uR-bf`SW-gg)=lC*4f#)j%Fuu zBqEsuTjf{$-sHV@5l~Nd{5%Q7dT*gm zhF4(qe2V1*MbjV4n-G9#(>SX3bS|y=qwa~V!#S5x#_|Z+nuf(42Ze898}(03KL&Fu z#+8#q#Kfs|vd1*b^r?tJ;2n*$R7}YJTK3Sw!uM7j;CbL(noUx0&E{UjXyl$J_?~K` zUR(PaP^8FuBRr#k{T97GHo1)dJ_CwPS|`HtpE33X4X&Ung{OUm@&!!<*VYXb*J`N| zIod3icu9yS{yip)!w!j@x{H1%`#|B3Uy91=e^R+@s^9om-W)WCm$OObh&I>@lt4g> zruY}8an>c!O6x0p%Lo?gdS>{X0dj(Y9zPq*`tTT3T4nbr?w^L`Ut6JYZ+5DUhOO9j zW@}R?CNA~%_7;_$*2%K%m2YWRmFuv#H^0{DP|NsXYcF(`zkvQU;jiy$!dIH`x#3NZ z^k%;#-JJ7T&Y>wsbrU99U)6s_%}(R9$gSc6Jvvj;5Llde_|MfjgBXya%0$OXkW8N= zWIzTlIUnb+>U}cQ{h%&&N){v4%3~|hbW>QyMf3WEv`0_qy_b_7Za&Fn;k)hOt8Aj3QjyLQsibLl%6^e!ll@m!$4-b;f!kKC69JrHtp;{){xbN;jfl3dRk1_43U zdvuC9fMf`8e+%r)w%mjZ>d7f6_{^=fJfQB)VK{D)pl)X}6#F^UL$=y$~>uZ;*O3@_T(GXb2)pq4Zf+=h-JUyCj>Tn3>1480tYCGV7B@*|3qK+tM%81 zGC#w8a1C7iu9OF#%vSHC0U!5PFIQs`aL$}J6RjNM`+obC+zxoVBz*qUIF@nT2tH41 zi8e93VlEgi9cyzI-`(;A{XW2$Ul3fo<9COZYcs83HxNEmJpSrPhk&ip{l0Z{tSOM* z48hGyE&S7!s7i^7o4hR|;JAfowR(wtR5GnGw$Go~d=j(AW(bLi%_I&Waf2SEIUD2P zE3q+qwcHcv1#gbw(9%}MfVZTf8Rz#l8iU@JicA?#{##NC7d$`V`E)l&&J>Z~u=d)!!BRddxGNy=Uwjs;Uwl4Ivpyt~5x8aLe@yQa^v5z!V ziM9pb+MDvsO>gh5^JQa0TyuK%uiz{HJi4&yP*@+*RT$MBHzDy@g_?Cu^QMdR352R} zQ+>+fAe2+1QUK=pI?Ue2BxQAHp$1BFcTyt#a``BxRWXx_@Xhz((ad(4OY9aVMOZ58`N`S?q zbZ_~;CvrhYRihWGucpR@?=K)7L)>1u50rUYGTG5cwjODOpRy}LAotL6&1Q=12%R|hAA%w?86f0=G^Qfl?%r zI3fEYIJm@L_lAN^`)dbRMX@uqXOC*~s_qY(Klf{v4LQ1u5Zpygm>ZhN7t&xvBO_s9 zy;R&jKg*myeWTFz%8sV?r;zcAnc3?cEv5j8Y{*aS1&K(;a(QHW`ek_K*woo!AlIT@`^1`h*7hta><&3~(QPXEv7C>JVC%Rn z-?QL_Y6480aOC8L#_?m8(kc|pOMWQOB-v$nc^&_gy)RZ=IxnTY3(D$=aORmL&Z+?S zUb-T(e|~;Ghw*DgoHLG|i}$9K2ymzGfV$ja!pCDt0Si@;TfLa&+U1d;G1_5mR`SiA z-v=#ZEIK+m7Q#Rjoo9v){rc4fM#A$E+jV0WWdrn$ZT@QzNWOJRsW|8NVU40n5Gr#x zdt;o$o4ZqSrM9)7OaoTxd7eI!n9TkbdEfm44RfkW}&l$^&P?5(Q|9+*3+kK^L@RsZ%oGXcP zPBpOTxNbmFVc;$PCESJPDrV=Xg!=WP+s?0IY zx*~I7gKV5Rt`lAMr?x`IW}?n!FIYT8xDE)#$_xz~>S zjIszrWo6}*%VXQLx%+OQYc@7;0WNO(-VFizCW5W!uzv0B)|NL)sz*tAzO{1HjlQ{x z0FZfuVOf|z7NsK0q9OMnyOC9ig|-SsT59;Y4?@`*LGX44wW!aS@DE2DDw36<*-&PiGmrmZ%(=$Qvs`BZ`D=5r^@hasqm6-AVeOL4`Z&wrwMkEq5 zJgOn0$4{qTikQw0+H9w=k%Fl(YxOWhx`N%1n)1+`zj=v8Wqo)gW0xn(_FH#G;)=d3 z?=LkM1@sL~PT7Il%;M!k^>-7JKQ$Iwbap<5J`Ks|+0<@S1%+V@*xO# zt7|Qa?W5-q&Ovog{zjg1iuBj&USeX=T%Z3CYTcPcL`U0~_RLOwfiO7zplYDre*kdf zRo2_cz?I+!xApkWdy`XLG6!LfSf>gIK{P}Cs(!v%M*}Z9A)z?+K$ve>BsmDuJufQ_ z_anG%Mw^YE`f|Q$9nFCtd^f$d`MX~}vdgMO4Se0l3?=88X1Qpb1AxZ0g_fQmt|xLY zKI?Ct7Tr3OxxCPbwE@IVRVEs02En4v#xI&ZXJ&H(Zu&J%SIxa_A`x+2t8S04St$w>Mio=Ht4)`Qtc1K-eKuN`;hG3oTP8pN zK(uW8?lB1c`J}+dOD}RfPE8k+7S}6ib1s3`*FESm>%>&*K=*^rVAQ)D_Ka-qW^)2f z!ysoy%w2q~IO}an-yCabZ5h+@B@4Sh<+ECUtND=C!Nq;dUjPtoQZYt*(RGUO56s|v zk>B~EV`d2E!Dj;tKZNJBv%{{vRF{g5>=$b$4z?wD6A>y@R$EB_?9a>E*YqlW!A=M3 z30orteEwO$W*&@qB4HBbKO+hNf(F{7VRB`B?@chb`kmxqH!#6U?s-V{y6q-?Q#WS` z_fC;r=(KT$*SUy*)?O!C;rgb8=TR*jB6>?sF93DPxabjPH|D@=XprmlR4cKGRCg2r z0weroL#~WS*dMxB@f-FuFx2H{s7gDu-3(E3)NJ|NFnxeK+kNImV8<-`-H6pyrWQ6R zO|wC3#f_BHP(@p99jLc61V#F)SYEg`rMPKrx!?@1Rpn$H?9J@NeM0Xk1ZN@i5CB9S z@WbBiHa=hd@shU9k|reCq9!7ow^O-C_exP{{PU%<6p_##+jdlLYD13r2;AamUQ=4C zD(UoFb+-nF%1exgiSqrd@VdR5_i4dv@zMc3v8rJ9*3q*48xhgM3ji&XoU~rb2)uGs zwtx8LNo(WY0Br3mkIJ{4Q0mH;s$S~y@|nMnYPo$vsn{tKUO)xv;Q3JlfudL3`d{pF z3VNYm4h{Q^)6FZD5JW-uhu2I?M3*RFLkc$1Xy(-e|9EcY-;nRTbo8Ri;qJl7k6)tk{Zzq|U7Dna~~`I;tx2iAg3i zrvjMxAXmXVo2$ryl8Zex#C_%;XRyGjlm({R`Q6YK|lnvbvMZm-ye3k`1SP5lcC?w zNG9rxxf0S&H-3g{YHms3lJ4VZIBWpf?fJn3#l zm~0+9SF3Di-$R1-M5oPu+dN;q!on^g`g5m|*ZlBQTDZ;6FC@MRb5fu-?VG~30uLZv zp1II;0t6AU#O20T>+_cTXKwlI-nN>C8RUqAv1kxw6o1N&_pk0d`S79nQ#w3AW4y!* zF&_6kcxswVqrOuDP8#)NyS=;_RoV~Y&x72%Cr7B~@c#&>9$2p70gP4fZ?EscGb3=9 zlb;=Ud`f5b*ilWq)pgXn1Z!IHC55QBt(Ha)%~QqAol0=Kp%0c|$ef2wMyA(0EfV0> z383pLWfFqG-rNmEk}8)~?&YB@hsOp4B|~|hN>vs?mq;d8ln8n=T{k}haDIkq)3?%? zZ=PVE52Gi0m8PfG&osrQsUvX0gO+!lZ2=%oR-bqvL0@LX(lFpL_Pt5c-1lRvB`Q|R z83gOfqQ8tCY|lAPA9fD0&qKYL_iw<#rKjM$ZorZLyhdGCuYN> zv$L;dl-TSh_y9nb<$@ND=2K zgBG2uZ#oUFvQd_ukq3Y$U$arx@&R#s#~NyoR$pxEF!OCNLSz>6H;)oWQ_=h+!l|UJ z@okz7Jp=DjVgrrObCg&orkMr)Br5`dv1WzquISV1plRiG;f@hWDUwiT~OL{#dx~)~aW*oJA3CSk2`p=z$qI=KbrwnWk z;+7)hd2CK&r>_?o!S(_OB6=O`jXBL2MOfM~S8G8hJ)W`{YureAPG1;#lW7w{jH3j%wfas=V8&sZdM^?5+hUXtp)trNnyvU<~a; zl?gGc(g6>J#xE@{J~nN1_5fPi6TAXbpRo@urJJ0{&wowJB<3h|F27C$00+&E{*rkk zHQz}qyoC=cZR3Q7qlivovZM^O7lKuFDem+yE)a$$Q??D2p!4R$r05(KyK3v4a&;{? znw&wrJT{()Sn7rVt2HQxDNIyy1vqC>M-WdG{h)faeLis(h+0D&E!QcE^?}EkVJ}Cp zoFv=zT^J_(TgbKW=0J_oe+MtShYS(SAR3QvVYVbSmpfy65o2zVmooq3X?!?J$(ZFJ zd}4drTzUPg9-h8Ad5#YNn!hELN|72OcQo^bg|fYbPMpHigEERmPCRlWR__IAX3DQt zLR(H9Ui12beK^r40^7f=5kDjj3sU9hZmV=&?5pm1L`UU1n@2t^@eNYVx`af%`}vD` z@UJHoAdqR-q-mP`D&}juedZP;W9x(WS01nyYjgYNm{E-#+d}XB=qj3T3k(jkt#VB# zNhL{G`>j5+pD#a6>vJB_?J=Kkf{SS3sA4xt0x$`gpg$p`J+xQb{O0%G^mKs~lE?Hr z;OK9w*qhxI|GmN2;M49 z$lEQTp=~#(=pLEv8-hT2bE`6(Y~0GXmo!Z_IvX`DW)S1^}Z6%{!*!1WCPC$II1Pp+S=MiM8tbyoBA&vVV+j9 z5edrjt0R7joS2(|=EXJ`)9Bb6?VWU8q+F)30jD z8X`;s2zW^uQ>^HZ_luicD0MD&fQUMvPsrX7jQtEH-Egn$nt+1r_s8(a6V~t0PtdD0 zI_{9KTXEv;Lgqs^T&1)9&ySSp6sJO!^KG?GkL9aG!dSERcWk~Lgk3m&ztu?468FQX z56@4-r(4M0-BUam?YBErn)!{6T+u?ezXah~oH zn6R2_j~|5#ID!0C+}>c*f$sLOXa1{yWKquHe>>F}wgeR+X~R=jT8*DSEZ(y-dLVAz zXA~!{L!TzQptLI6Os~cXzNp+!2W~ywjOn3-r%4Bx;=KB#g`!7^)i35-da@JE2ObdD z8GB$1Mv7(YgCP4RFH^t_9A&xA)8{utzuc(aK1VP(bz;IYNHx1E^iIHG#Pjd7w-v+L zrvtB5kW8O0xp z$Ib%4Egr4Eb;Nz#KG}QU8Tn%DBjd>*9^h!ykc+eTsQj02i<@ezXaDI#s8KIXx6-sw z>7|nv+B}U9uor-vX5D-KeMu#?O48i~EUU3@Y>ctKFn`rM$vbNLo%zC&aGwc59Q^rr zvn*J{uigutggFxKuf~q2;G^a0NbB`e@+x)n=4KWK&LNSP9cvZ@0C3aW?mNi}rVST6 zB==69ZCShZ?Q)tywrTon&VA_i%r*>Kgr@{sT5R)vD}0;<`ZYl2P9=d1GqGs4MriYZ z27bQ?M)B>3dr5h_pcikZ`r%`qFLmF|w#|?>G;7lD*HH8Up&#ev0lA+@x`Pa=&av9)V{b1` zg$*8^jTS13Mm(f|+zGr^S$YvRD*;joklNe!w)y@g_~$UZ;%lt&|9;-QBA2oauq>kWLd-27AKcBvL_`qfWfT@_1;8YGABPTBY&(s?c9T1rQzk&bf be84%cmw{%4Y5v#nr)v6oaNSZJhiCr>3GYv` literal 0 HcmV?d00001 diff --git a/browser/src/assets/azure_satellite.png b/browser/src/assets/azure_satellite.png new file mode 100644 index 0000000000000000000000000000000000000000..8622892868ce305333d628baaa6277ee157a5cc6 GIT binary patch literal 922581 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 ?7(4)jtIT;f0w)6u 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

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 664b89d9a..e73d8b60f 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 @@ -17,7 +17,7 @@ chartType="StepLine" [dataSource]="countryRenewableElectricity" includedProperties="year, europe, china, america" - isCategoryHighlightingEnabled="true" + isCategoryHighlightingEnabled="false" isSeriesHighlightingEnabled="true" isHorizontalZoomEnabled="false" isVerticalZoomEnabled="false" From 64f0338503ef3f5c2b0d2b0e458477a5083fbacf Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Thu, 25 Sep 2025 11:04:01 -0400 Subject: [PATCH 171/183] mdd-update-dockerfile-FROM node:18>node:20 mdd-update-dockerfile-FROM node:18>node:20 --- .../category-chart/annotations-all/.codesandbox/Dockerfile | 2 +- .../category-chart/annotations-callouts/.codesandbox/Dockerfile | 2 +- .../annotations-crosshairs/.codesandbox/Dockerfile | 2 +- .../category-chart/annotations-custom/.codesandbox/Dockerfile | 2 +- .../annotations-final-value/.codesandbox/Dockerfile | 2 +- .../annotations-highlighting/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/annotations/.codesandbox/Dockerfile | 2 +- .../area-chart-multiple-sources/.codesandbox/Dockerfile | 2 +- .../area-chart-single-source/.codesandbox/Dockerfile | 2 +- .../category-chart/area-chart-styling/.codesandbox/Dockerfile | 2 +- samples/charts/category-chart/axis-gap/.codesandbox/Dockerfile | 2 +- .../category-chart/axis-gridlines/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/axis-inverted/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/axis-labels/.codesandbox/Dockerfile | 2 +- .../category-chart/axis-locations/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/axis-options/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/axis-overlap/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/axis-range/.codesandbox/Dockerfile | 2 +- .../category-chart/axis-tickmarks/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/axis-titles/.codesandbox/Dockerfile | 2 +- .../chart-highlight-filter/.codesandbox/Dockerfile | 2 +- .../column-chart-multiple-sources/.codesandbox/Dockerfile | 2 +- .../column-chart-single-source/.codesandbox/Dockerfile | 2 +- .../category-chart/column-chart-styling/.codesandbox/Dockerfile | 2 +- .../column-chart-with-highlighting/.codesandbox/Dockerfile | 2 +- .../column-chart-with-tooltips/.codesandbox/Dockerfile | 2 +- .../category-chart/custom-selection/.codesandbox/Dockerfile | 2 +- .../category-chart/data-aggregations/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/data-filter/.codesandbox/Dockerfile | 2 +- .../data-legend-formatting-decimals/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/data-legend/.codesandbox/Dockerfile | 2 +- .../data-tooltip-formatting-decimals/.codesandbox/Dockerfile | 2 +- .../data-tooltip-positioning/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/data-tooltip/.codesandbox/Dockerfile | 2 +- .../category-chart/format-specifiers/.codesandbox/Dockerfile | 2 +- .../category-chart/high-frequency/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/high-volume/.codesandbox/Dockerfile | 2 +- .../highlighting-behavior/.codesandbox/Dockerfile | 2 +- .../category-chart/highlighting-mode/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/highlighting/.codesandbox/Dockerfile | 2 +- .../category-chart/legend-highlighting/.codesandbox/Dockerfile | 2 +- .../line-chart-multiple-sources/.codesandbox/Dockerfile | 2 +- .../line-chart-single-source/.codesandbox/Dockerfile | 2 +- .../category-chart/line-chart-styling/.codesandbox/Dockerfile | 2 +- .../line-chart-with-animations/.codesandbox/Dockerfile | 2 +- .../line-chart-with-annotations/.codesandbox/Dockerfile | 2 +- .../line-chart-with-legend/.codesandbox/Dockerfile | 2 +- .../category-chart/marker-options/.codesandbox/Dockerfile | 2 +- .../category-chart/marker-templates/.codesandbox/Dockerfile | 2 +- samples/charts/category-chart/overview/.codesandbox/Dockerfile | 2 +- .../point-chart-multiple-sources/.codesandbox/Dockerfile | 2 +- .../point-chart-single-source/.codesandbox/Dockerfile | 2 +- .../category-chart/point-chart-styling/.codesandbox/Dockerfile | 2 +- .../category-chart/selection-matcher/.codesandbox/Dockerfile | 2 +- .../category-chart/selection-modes/.codesandbox/Dockerfile | 2 +- .../selection-multiple-modes/.codesandbox/Dockerfile | 2 +- .../spline-area-multiple-sources/.codesandbox/Dockerfile | 2 +- .../spline-area-single-source/.codesandbox/Dockerfile | 2 +- .../category-chart/spline-area-styling/.codesandbox/Dockerfile | 2 +- .../spline-multiple-sources/.codesandbox/Dockerfile | 2 +- .../category-chart/spline-single-source/.codesandbox/Dockerfile | 2 +- .../category-chart/spline-styling/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/stack-columns/.codesandbox/Dockerfile | 2 +- .../step-area-multiple-sources/.codesandbox/Dockerfile | 2 +- .../step-area-single-source/.codesandbox/Dockerfile | 2 +- .../category-chart/step-area-styling/.codesandbox/Dockerfile | 2 +- .../step-line-multiple-sources/.codesandbox/Dockerfile | 2 +- .../step-line-single-source/.codesandbox/Dockerfile | 2 +- .../category-chart/step-line-styling/.codesandbox/Dockerfile | 2 +- .../category-chart/tooltip-template/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/tooltip-types/.codesandbox/Dockerfile | 2 +- samples/charts/category-chart/trendline/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/value-lines/.codesandbox/Dockerfile | 2 +- .../dashboard-tile/chart-dashboard/.codesandbox/Dockerfile | 2 +- .../dashboard-tile/financial-dashboard/.codesandbox/Dockerfile | 2 +- .../dashboard-tile/gauge-dashboard/.codesandbox/Dockerfile | 2 +- .../local-data-source-dashboard/.codesandbox/Dockerfile | 2 +- .../charts/dashboard-tile/map-dashboard/.codesandbox/Dockerfile | 2 +- .../charts/dashboard-tile/pie-dashboard/.codesandbox/Dockerfile | 2 +- .../data-chart/annotations-custom/.codesandbox/Dockerfile | 2 +- .../axis-annotations-corner-radius/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/axis-annotations/.codesandbox/Dockerfile | 2 +- samples/charts/data-chart/axis-crossing/.codesandbox/Dockerfile | 2 +- .../data-chart/axis-label-rotation/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/axis-locations/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/axis-min-max-gap/.codesandbox/Dockerfile | 2 +- samples/charts/data-chart/axis-settings/.codesandbox/Dockerfile | 2 +- samples/charts/data-chart/axis-sharing/.codesandbox/Dockerfile | 2 +- samples/charts/data-chart/axis-types/.codesandbox/Dockerfile | 2 +- .../bar-chart-multiple-sources/.codesandbox/Dockerfile | 2 +- .../data-chart/bar-chart-overlapping/.codesandbox/Dockerfile | 2 +- .../data-chart/bar-chart-single-source/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/bar-chart-styling/.codesandbox/Dockerfile | 2 +- .../data-chart/callout-layer-styling/.codesandbox/Dockerfile | 2 +- .../chart-highlight-filter-datasource/.codesandbox/Dockerfile | 2 +- .../.codesandbox/Dockerfile | 2 +- .../data-chart/chart-highlight-filter/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/chart-navigation/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/chart-overview/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/chart-performance/.codesandbox/Dockerfile | 2 +- .../data-chart/chart-synchronization/.codesandbox/Dockerfile | 2 +- samples/charts/data-chart/chart-titles/.codesandbox/Dockerfile | 2 +- .../data-chart/column-chart-styling/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/composite-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/crosshair-layer-styling/.codesandbox/Dockerfile | 2 +- .../custom-drawing-annotations/.codesandbox/Dockerfile | 2 +- .../data-chart/custom-editing-data/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/dash-array-axes/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/dash-array-series/.codesandbox/Dockerfile | 2 +- .../data-chart/dash-array-tickmarks/.codesandbox/Dockerfile | 2 +- .../data-chart/dash-array-trendline/.codesandbox/Dockerfile | 2 +- .../data-annotation-band-layer/.codesandbox/Dockerfile | 2 +- .../data-annotation-line-layer/.codesandbox/Dockerfile | 2 +- .../.codesandbox/Dockerfile | 2 +- .../.codesandbox/Dockerfile | 2 +- .../data-annotation-rect-layer/.codesandbox/Dockerfile | 2 +- .../data-annotation-slice-layer/.codesandbox/Dockerfile | 2 +- .../data-annotation-strip-layer/.codesandbox/Dockerfile | 2 +- .../.codesandbox/Dockerfile | 2 +- .../data-chart/data-legend-grouping/.codesandbox/Dockerfile | 2 +- .../data-chart/data-legend-styling/.codesandbox/Dockerfile | 2 +- samples/charts/data-chart/data-legend/.codesandbox/Dockerfile | 2 +- .../.codesandbox/Dockerfile | 2 +- .../data-chart/data-tooltip-grouping/.codesandbox/Dockerfile | 2 +- .../data-chart/data-tooltip-styling/.codesandbox/Dockerfile | 2 +- samples/charts/data-chart/data-tooltip/.codesandbox/Dockerfile | 2 +- .../final-value-layer-styling/.codesandbox/Dockerfile | 2 +- .../data-chart/financial-price-series/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/format-specifiers/.codesandbox/Dockerfile | 2 +- samples/charts/data-chart/legends/.codesandbox/Dockerfile | 2 +- .../data-chart/polar-area-chart-styling/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/polar-area-chart/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/polar-chart-types/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/polar-line-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/polar-scatter-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/polar-spline-area-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/polar-spline-chart/.codesandbox/Dockerfile | 2 +- .../radial-area-chart-styling/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/radial-area-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/radial-chart-types/.codesandbox/Dockerfile | 2 +- .../radial-column-chart-selection/.codesandbox/Dockerfile | 2 +- .../data-chart/radial-column-chart/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/radial-label-mode/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/radial-line-chart/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/radial-pie-chart/.codesandbox/Dockerfile | 2 +- .../.codesandbox/Dockerfile | 2 +- .../.codesandbox/Dockerfile | 2 +- .../charts/data-chart/range-area-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/range-column-chart/.codesandbox/Dockerfile | 2 +- .../scatter-bubble-chart-fill-scale/.codesandbox/Dockerfile | 2 +- .../.codesandbox/Dockerfile | 2 +- .../scatter-bubble-chart-single-source/.codesandbox/Dockerfile | 2 +- .../scatter-bubble-chart-styling/.codesandbox/Dockerfile | 2 +- .../data-chart/scatter-line-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/scatter-point-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/scatter-spline-chart/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/selection-matcher/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/series-animations/.codesandbox/Dockerfile | 2 +- .../data-chart/series-annotations/.codesandbox/Dockerfile | 2 +- .../data-chart/series-highlighting/.codesandbox/Dockerfile | 2 +- .../data-chart/series-marker-template/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/series-markers/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/series-tooltips/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/series-trendlines/.codesandbox/Dockerfile | 2 +- .../data-chart/series-value-overlay/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-100-area-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-100-bar-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-100-column-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-100-line-chart/.codesandbox/Dockerfile | 2 +- .../stacked-100-spline-area-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-100-spline-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-area-chart/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/stacked-bar-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-chart-types/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-column-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-line-chart/.codesandbox/Dockerfile | 2 +- .../stacked-spline-area-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-spline-chart/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/tooltip-template/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/transition-event/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/trendline-layer/.codesandbox/Dockerfile | 2 +- .../type-category-area-series/.codesandbox/Dockerfile | 2 +- .../data-chart/type-category-bar-series/.codesandbox/Dockerfile | 2 +- .../type-category-column-series/.codesandbox/Dockerfile | 2 +- .../type-category-line-series/.codesandbox/Dockerfile | 2 +- .../type-category-point-series/.codesandbox/Dockerfile | 2 +- .../data-chart/type-category-series/.codesandbox/Dockerfile | 2 +- .../type-category-spline-area-series/.codesandbox/Dockerfile | 2 +- .../type-category-spline-series/.codesandbox/Dockerfile | 2 +- .../type-category-step-area-series/.codesandbox/Dockerfile | 2 +- .../type-category-step-line-series/.codesandbox/Dockerfile | 2 +- .../type-category-waterfall-series/.codesandbox/Dockerfile | 2 +- .../type-financial-area-indicators/.codesandbox/Dockerfile | 2 +- .../type-financial-candlestick-series/.codesandbox/Dockerfile | 2 +- .../type-financial-column-indicators/.codesandbox/Dockerfile | 2 +- .../type-financial-line-indicators/.codesandbox/Dockerfile | 2 +- .../type-financial-ohlc-series/.codesandbox/Dockerfile | 2 +- .../data-chart/type-financial-overlays/.codesandbox/Dockerfile | 2 +- .../data-chart/type-financial-series/.codesandbox/Dockerfile | 2 +- .../data-chart/type-radial-area-series/.codesandbox/Dockerfile | 2 +- .../type-radial-column-series/.codesandbox/Dockerfile | 2 +- .../data-chart/type-radial-line-series/.codesandbox/Dockerfile | 2 +- .../data-chart/type-radial-pie-series/.codesandbox/Dockerfile | 2 +- .../data-chart/type-range-area-series/.codesandbox/Dockerfile | 2 +- .../data-chart/type-range-column-series/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/type-range-series/.codesandbox/Dockerfile | 2 +- .../data-chart/type-scatter-area-series/.codesandbox/Dockerfile | 2 +- .../type-scatter-bubble-series/.codesandbox/Dockerfile | 2 +- .../type-scatter-contour-series/.codesandbox/Dockerfile | 2 +- .../data-chart/type-scatter-hd-series/.codesandbox/Dockerfile | 2 +- .../data-chart/type-scatter-line-series/.codesandbox/Dockerfile | 2 +- .../type-scatter-point-series/.codesandbox/Dockerfile | 2 +- .../type-scatter-polygon-series/.codesandbox/Dockerfile | 2 +- .../type-scatter-polyline-series/.codesandbox/Dockerfile | 2 +- .../data-chart/type-scatter-series/.codesandbox/Dockerfile | 2 +- .../type-scatter-spline-series/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/type-shape-series/.codesandbox/Dockerfile | 2 +- .../type-stacked-100-area-series/.codesandbox/Dockerfile | 2 +- .../type-stacked-100-bar-series/.codesandbox/Dockerfile | 2 +- .../type-stacked-100-column-series/.codesandbox/Dockerfile | 2 +- .../type-stacked-100-line-series/.codesandbox/Dockerfile | 2 +- .../type-stacked-100-spline-area-series/.codesandbox/Dockerfile | 2 +- .../type-stacked-100-spline-series/.codesandbox/Dockerfile | 2 +- .../data-chart/type-stacked-area-series/.codesandbox/Dockerfile | 2 +- .../data-chart/type-stacked-bar-series/.codesandbox/Dockerfile | 2 +- .../type-stacked-column-series/.codesandbox/Dockerfile | 2 +- .../data-chart/type-stacked-line-series/.codesandbox/Dockerfile | 2 +- .../type-stacked-spline-area-series/.codesandbox/Dockerfile | 2 +- .../type-stacked-spline-series/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/waterfall-chart/.codesandbox/Dockerfile | 2 +- .../data-pie-chart/animation-replay/.codesandbox/Dockerfile | 2 +- samples/charts/data-pie-chart/animation/.codesandbox/Dockerfile | 2 +- .../data-pie-chart/highlight-filter/.codesandbox/Dockerfile | 2 +- .../charts/data-pie-chart/highlighting/.codesandbox/Dockerfile | 2 +- samples/charts/data-pie-chart/legend/.codesandbox/Dockerfile | 2 +- samples/charts/data-pie-chart/others/.codesandbox/Dockerfile | 2 +- samples/charts/data-pie-chart/overview/.codesandbox/Dockerfile | 2 +- samples/charts/data-pie-chart/selection/.codesandbox/Dockerfile | 2 +- samples/charts/doughnut-chart/animation/.codesandbox/Dockerfile | 2 +- samples/charts/doughnut-chart/explosion/.codesandbox/Dockerfile | 2 +- samples/charts/doughnut-chart/legend/.codesandbox/Dockerfile | 2 +- samples/charts/doughnut-chart/overview/.codesandbox/Dockerfile | 2 +- samples/charts/doughnut-chart/rings/.codesandbox/Dockerfile | 2 +- samples/charts/doughnut-chart/selection/.codesandbox/Dockerfile | 2 +- .../charts/financial-chart/annotations/.codesandbox/Dockerfile | 2 +- .../charts/financial-chart/axis-types/.codesandbox/Dockerfile | 2 +- .../data-legend-formatting-currency/.codesandbox/Dockerfile | 2 +- .../data-legend-styling-props/.codesandbox/Dockerfile | 2 +- .../charts/financial-chart/data-legend/.codesandbox/Dockerfile | 2 +- .../data-tooltip-formatting-currency/.codesandbox/Dockerfile | 2 +- .../data-tooltip-styling-props/.codesandbox/Dockerfile | 2 +- .../charts/financial-chart/data-tooltip/.codesandbox/Dockerfile | 2 +- .../financial-chart/format-specifiers/.codesandbox/Dockerfile | 2 +- .../financial-chart/high-frequency/.codesandbox/Dockerfile | 2 +- .../charts/financial-chart/high-volume/.codesandbox/Dockerfile | 2 +- .../indicator-customization/.codesandbox/Dockerfile | 2 +- .../financial-chart/indicator-types/.codesandbox/Dockerfile | 2 +- .../financial-chart/multiple-data/.codesandbox/Dockerfile | 2 +- .../financial-chart/multiple-feeds/.codesandbox/Dockerfile | 2 +- samples/charts/financial-chart/overview/.codesandbox/Dockerfile | 2 +- samples/charts/financial-chart/panes/.codesandbox/Dockerfile | 2 +- .../charts/financial-chart/performance/.codesandbox/Dockerfile | 2 +- .../charts/financial-chart/scrollbars/.codesandbox/Dockerfile | 2 +- .../financial-chart/stock-index-chart/.codesandbox/Dockerfile | 2 +- samples/charts/financial-chart/styling/.codesandbox/Dockerfile | 2 +- samples/charts/financial-chart/theming/.codesandbox/Dockerfile | 2 +- .../financial-chart/time-based-data/.codesandbox/Dockerfile | 2 +- samples/charts/financial-chart/titles/.codesandbox/Dockerfile | 2 +- .../financial-chart/tooltip-template/.codesandbox/Dockerfile | 2 +- .../financial-chart/tooltip-types/.codesandbox/Dockerfile | 2 +- .../charts/financial-chart/trendlines/.codesandbox/Dockerfile | 2 +- .../charts/financial-chart/volume-types/.codesandbox/Dockerfile | 2 +- samples/charts/pie-chart/animation/.codesandbox/Dockerfile | 2 +- samples/charts/pie-chart/explosion/.codesandbox/Dockerfile | 2 +- samples/charts/pie-chart/legend/.codesandbox/Dockerfile | 2 +- samples/charts/pie-chart/others/.codesandbox/Dockerfile | 2 +- samples/charts/pie-chart/overview/.codesandbox/Dockerfile | 2 +- samples/charts/pie-chart/selection/.codesandbox/Dockerfile | 2 +- samples/charts/pie-chart/styling/.codesandbox/Dockerfile | 2 +- samples/charts/sparkline/display-area/.codesandbox/Dockerfile | 2 +- samples/charts/sparkline/display-column/.codesandbox/Dockerfile | 2 +- samples/charts/sparkline/display-lines/.codesandbox/Dockerfile | 2 +- samples/charts/sparkline/display-types/.codesandbox/Dockerfile | 2 +- .../charts/sparkline/display-winloss/.codesandbox/Dockerfile | 2 +- samples/charts/sparkline/grid/.codesandbox/Dockerfile | 2 +- samples/charts/sparkline/markers/.codesandbox/Dockerfile | 2 +- samples/charts/sparkline/normal-range/.codesandbox/Dockerfile | 2 +- samples/charts/sparkline/trendlines/.codesandbox/Dockerfile | 2 +- samples/charts/sparkline/unknown-values/.codesandbox/Dockerfile | 2 +- .../actions-built-in-category-chart/.codesandbox/Dockerfile | 2 +- .../toolbar/actions-built-in-data-chart/.codesandbox/Dockerfile | 2 +- .../charts/toolbar/color-editor-support/.codesandbox/Dockerfile | 2 +- samples/charts/toolbar/custom-tool/.codesandbox/Dockerfile | 2 +- .../layout-actions-for-data-chart/.codesandbox/Dockerfile | 2 +- .../layout-in-vertical-orientation/.codesandbox/Dockerfile | 2 +- samples/charts/toolbar/theming/.codesandbox/Dockerfile | 2 +- samples/charts/tree-map/events/.codesandbox/Dockerfile | 2 +- .../tree-map/highlighting-percent-based/.codesandbox/Dockerfile | 2 +- samples/charts/tree-map/highlighting/.codesandbox/Dockerfile | 2 +- samples/charts/tree-map/layout/.codesandbox/Dockerfile | 2 +- samples/charts/tree-map/overview/.codesandbox/Dockerfile | 2 +- samples/charts/tree-map/styling/.codesandbox/Dockerfile | 2 +- samples/charts/zoomslider/overview/.codesandbox/Dockerfile | 2 +- .../operations-on-workbooks/.codesandbox/Dockerfile | 2 +- .../operations-on-worksheets/.codesandbox/Dockerfile | 2 +- samples/excel/excel-library/overview/.codesandbox/Dockerfile | 2 +- .../excel-library/working-with-cells/.codesandbox/Dockerfile | 2 +- .../excel-library/working-with-charts/.codesandbox/Dockerfile | 2 +- .../working-with-sparklines/.codesandbox/Dockerfile | 2 +- .../excel-library/working-with-tables/.codesandbox/Dockerfile | 2 +- samples/excel/spreadsheet/activation/.codesandbox/Dockerfile | 2 +- samples/excel/spreadsheet/adapter-chart/.codesandbox/Dockerfile | 2 +- samples/excel/spreadsheet/adapter-combo/.codesandbox/Dockerfile | 2 +- samples/excel/spreadsheet/clipboard/.codesandbox/Dockerfile | 2 +- samples/excel/spreadsheet/commands/.codesandbox/Dockerfile | 2 +- .../spreadsheet/conditional-formatting/.codesandbox/Dockerfile | 2 +- .../excel/spreadsheet/config-options/.codesandbox/Dockerfile | 2 +- .../excel/spreadsheet/data-validation/.codesandbox/Dockerfile | 2 +- samples/excel/spreadsheet/hyperlinks/.codesandbox/Dockerfile | 2 +- samples/excel/spreadsheet/overview/.codesandbox/Dockerfile | 2 +- samples/gauges/bullet-graph/animation/.codesandbox/Dockerfile | 2 +- samples/gauges/bullet-graph/background/.codesandbox/Dockerfile | 2 +- .../bullet-graph/highlight-needle/.codesandbox/Dockerfile | 2 +- samples/gauges/bullet-graph/labels/.codesandbox/Dockerfile | 2 +- samples/gauges/bullet-graph/measures/.codesandbox/Dockerfile | 2 +- samples/gauges/bullet-graph/ranges/.codesandbox/Dockerfile | 2 +- samples/gauges/bullet-graph/scale/.codesandbox/Dockerfile | 2 +- samples/gauges/bullet-graph/tickmarks/.codesandbox/Dockerfile | 2 +- samples/gauges/linear-gauge/animation/.codesandbox/Dockerfile | 2 +- samples/gauges/linear-gauge/backing/.codesandbox/Dockerfile | 2 +- .../linear-gauge/highlight-needle/.codesandbox/Dockerfile | 2 +- samples/gauges/linear-gauge/labels/.codesandbox/Dockerfile | 2 +- samples/gauges/linear-gauge/needle/.codesandbox/Dockerfile | 2 +- samples/gauges/linear-gauge/ranges/.codesandbox/Dockerfile | 2 +- samples/gauges/linear-gauge/scale/.codesandbox/Dockerfile | 2 +- samples/gauges/linear-gauge/tickmarks/.codesandbox/Dockerfile | 2 +- samples/gauges/radial-gauge/animation/.codesandbox/Dockerfile | 2 +- samples/gauges/radial-gauge/backing/.codesandbox/Dockerfile | 2 +- .../radial-gauge/highlight-needle/.codesandbox/Dockerfile | 2 +- samples/gauges/radial-gauge/labels/.codesandbox/Dockerfile | 2 +- samples/gauges/radial-gauge/needle/.codesandbox/Dockerfile | 2 +- .../gauges/radial-gauge/optical-scaling/.codesandbox/Dockerfile | 2 +- samples/gauges/radial-gauge/ranges/.codesandbox/Dockerfile | 2 +- samples/gauges/radial-gauge/scale/.codesandbox/Dockerfile | 2 +- samples/gauges/radial-gauge/tickmarks/.codesandbox/Dockerfile | 2 +- samples/inputs/color-editor/overview/.codesandbox/Dockerfile | 2 +- samples/maps/geo-map/binding-data-csv/.codesandbox/Dockerfile | 2 +- .../geo-map/binding-data-json-points/.codesandbox/Dockerfile | 2 +- samples/maps/geo-map/binding-data-model/.codesandbox/Dockerfile | 2 +- .../geo-map/binding-multiple-shapes/.codesandbox/Dockerfile | 2 +- .../geo-map/binding-multiple-sources/.codesandbox/Dockerfile | 2 +- samples/maps/geo-map/binding-shp-points/.codesandbox/Dockerfile | 2 +- .../maps/geo-map/binding-shp-polygons/.codesandbox/Dockerfile | 2 +- .../maps/geo-map/binding-shp-polylines/.codesandbox/Dockerfile | 2 +- samples/maps/geo-map/custom-tooltips/.codesandbox/Dockerfile | 2 +- .../maps/geo-map/display-azure-imagery/.codesandbox/Dockerfile | 2 +- .../maps/geo-map/display-bing-imagery/.codesandbox/Dockerfile | 2 +- .../maps/geo-map/display-esri-imagery/.codesandbox/Dockerfile | 2 +- .../maps/geo-map/display-heat-imagery/.codesandbox/Dockerfile | 2 +- .../maps/geo-map/display-osm-imagery/.codesandbox/Dockerfile | 2 +- samples/maps/geo-map/marker-layouts/.codesandbox/Dockerfile | 2 +- samples/maps/geo-map/marker-template/.codesandbox/Dockerfile | 2 +- samples/maps/geo-map/marker-type/.codesandbox/Dockerfile | 2 +- samples/maps/geo-map/navigation/.codesandbox/Dockerfile | 2 +- samples/maps/geo-map/overview/.codesandbox/Dockerfile | 2 +- samples/maps/geo-map/shape-styling/.codesandbox/Dockerfile | 2 +- samples/maps/geo-map/triangulating-data/.codesandbox/Dockerfile | 2 +- .../geo-map/type-scatter-area-series/.codesandbox/Dockerfile | 2 +- .../geo-map/type-scatter-bubble-series/.codesandbox/Dockerfile | 2 +- .../geo-map/type-scatter-contour-series/.codesandbox/Dockerfile | 2 +- .../geo-map/type-scatter-density-series/.codesandbox/Dockerfile | 2 +- .../geo-map/type-scatter-symbol-series/.codesandbox/Dockerfile | 2 +- .../geo-map/type-shape-polygon-series/.codesandbox/Dockerfile | 2 +- .../geo-map/type-shape-polyline-series/.codesandbox/Dockerfile | 2 +- tests/avatar-sample-3/.codesandbox/Dockerfile | 2 +- tests/donut-ava/.codesandbox/Dockerfile | 2 +- tests/donut-ava2/.codesandbox/Dockerfile | 2 +- tests/donut-ava3/.codesandbox/Dockerfile | 2 +- tests/donut-ava4/.codesandbox/Dockerfile | 2 +- tests/donut-mod/.codesandbox/Dockerfile | 2 +- tests/donut2/.codesandbox/Dockerfile | 2 +- tests/donut3/.codesandbox/Dockerfile | 2 +- tests/treegrid/.codesandbox/Dockerfile | 2 +- 383 files changed, 383 insertions(+), 383 deletions(-) diff --git a/samples/charts/category-chart/annotations-all/.codesandbox/Dockerfile b/samples/charts/category-chart/annotations-all/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/annotations-all/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/annotations-all/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/annotations-callouts/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/annotations-callouts/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/annotations-crosshairs/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/annotations-crosshairs/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/annotations-custom/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/annotations-custom/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/annotations-final-value/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/annotations-final-value/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/annotations-highlighting/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/annotations-highlighting/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/category-chart/annotations/.codesandbox/Dockerfile b/samples/charts/category-chart/annotations/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/annotations/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/annotations/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/area-chart-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/area-chart-single-source/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/area-chart-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/area-chart-styling/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/area-chart-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-gap/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-gap/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-gridlines/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-gridlines/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-inverted/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-inverted/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-labels/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-labels/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-locations/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-locations/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-options/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-options/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-overlap/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-overlap/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-range/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-range/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-tickmarks/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-tickmarks/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-titles/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-titles/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/chart-highlight-filter/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/chart-highlight-filter/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/column-chart-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/column-chart-single-source/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/column-chart-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/column-chart-styling/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/column-chart-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/column-chart-with-highlighting/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/column-chart-with-tooltips/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/custom-selection/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/custom-selection/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/data-aggregations/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/data-aggregations/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/data-filter/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/data-filter/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/data-legend-formatting-decimals/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/data-legend/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/data-legend/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/data-tooltip-positioning/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/data-tooltip/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/data-tooltip/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/format-specifiers/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/format-specifiers/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/high-frequency/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/high-frequency/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/high-volume/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/high-volume/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/highlighting-behavior/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/highlighting-behavior/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/highlighting-mode/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/highlighting-mode/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting/.codesandbox/Dockerfile b/samples/charts/category-chart/highlighting/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/highlighting/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/highlighting/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/legend-highlighting/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/legend-highlighting/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/line-chart-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/line-chart-single-source/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/line-chart-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/line-chart-styling/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/line-chart-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/line-chart-with-animations/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/line-chart-with-animations/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/line-chart-with-annotations/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/line-chart-with-legend/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/line-chart-with-legend/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/marker-options/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/marker-options/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/marker-templates/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/marker-templates/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/category-chart/overview/.codesandbox/Dockerfile b/samples/charts/category-chart/overview/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/overview/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/overview/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/point-chart-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/point-chart-single-source/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/point-chart-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/point-chart-styling/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/point-chart-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/category-chart/selection-matcher/.codesandbox/Dockerfile b/samples/charts/category-chart/selection-matcher/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/selection-matcher/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/selection-matcher/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/category-chart/selection-modes/.codesandbox/Dockerfile b/samples/charts/category-chart/selection-modes/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/selection-modes/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/selection-modes/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/category-chart/selection-multiple-modes/.codesandbox/Dockerfile b/samples/charts/category-chart/selection-multiple-modes/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/selection-multiple-modes/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/selection-multiple-modes/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/spline-area-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/spline-area-single-source/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/spline-area-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/spline-area-styling/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/spline-area-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/spline-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/spline-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/spline-single-source/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/spline-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/spline-styling/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/spline-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/stack-columns/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/stack-columns/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/step-area-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/step-area-single-source/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/step-area-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/step-area-styling/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/step-area-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/step-line-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/step-line-single-source/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/step-line-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/step-line-styling/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/step-line-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/tooltip-template/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/tooltip-template/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/tooltip-types/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/tooltip-types/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/category-chart/trendline/.codesandbox/Dockerfile b/samples/charts/category-chart/trendline/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/trendline/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/trendline/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/value-lines/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/value-lines/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/dashboard-tile/chart-dashboard/.codesandbox/Dockerfile b/samples/charts/dashboard-tile/chart-dashboard/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/.codesandbox/Dockerfile +++ b/samples/charts/dashboard-tile/chart-dashboard/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/dashboard-tile/financial-dashboard/.codesandbox/Dockerfile b/samples/charts/dashboard-tile/financial-dashboard/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/.codesandbox/Dockerfile +++ b/samples/charts/dashboard-tile/financial-dashboard/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/dashboard-tile/gauge-dashboard/.codesandbox/Dockerfile b/samples/charts/dashboard-tile/gauge-dashboard/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/.codesandbox/Dockerfile +++ b/samples/charts/dashboard-tile/gauge-dashboard/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/.codesandbox/Dockerfile b/samples/charts/dashboard-tile/local-data-source-dashboard/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/dashboard-tile/local-data-source-dashboard/.codesandbox/Dockerfile +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/dashboard-tile/map-dashboard/.codesandbox/Dockerfile b/samples/charts/dashboard-tile/map-dashboard/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/dashboard-tile/map-dashboard/.codesandbox/Dockerfile +++ b/samples/charts/dashboard-tile/map-dashboard/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/dashboard-tile/pie-dashboard/.codesandbox/Dockerfile b/samples/charts/dashboard-tile/pie-dashboard/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/.codesandbox/Dockerfile +++ b/samples/charts/dashboard-tile/pie-dashboard/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/annotations-custom/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/annotations-custom/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/axis-annotations-corner-radius/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/axis-annotations/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/axis-annotations/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/axis-crossing/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/axis-crossing/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/axis-label-rotation/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/axis-label-rotation/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/axis-locations/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/axis-locations/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/axis-min-max-gap/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/axis-min-max-gap/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/axis-settings/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/axis-settings/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/axis-sharing/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/axis-sharing/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/axis-types/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/axis-types/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/bar-chart-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/bar-chart-overlapping/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/bar-chart-single-source/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/bar-chart-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/bar-chart-styling/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/bar-chart-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/callout-layer-styling/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/callout-layer-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/chart-highlight-filter/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/chart-highlight-filter/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/chart-navigation/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/chart-navigation/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/chart-overview/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/chart-overview/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/chart-performance/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/chart-performance/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/chart-synchronization/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/chart-synchronization/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/chart-titles/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/chart-titles/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/column-chart-styling/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/column-chart-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/composite-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/composite-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/crosshair-layer-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/custom-drawing-annotations/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/custom-editing-data/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/custom-editing-data/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/dash-array-axes/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/dash-array-axes/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/dash-array-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/dash-array-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/dash-array-tickmarks/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/dash-array-trendline/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/dash-array-trendline/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-band-layer/.codesandbox/Dockerfile b/samples/charts/data-chart/data-annotation-band-layer/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-annotation-band-layer/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-annotation-band-layer/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-line-layer/.codesandbox/Dockerfile b/samples/charts/data-chart/data-annotation-line-layer/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-annotation-line-layer/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-annotation-line-layer/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file 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 index adf04bd95..cd7500bb4 100644 --- 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 @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-stocks/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-rect-layer/.codesandbox/Dockerfile b/samples/charts/data-chart/data-annotation-rect-layer/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-annotation-rect-layer/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-annotation-rect-layer/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-slice-layer/.codesandbox/Dockerfile b/samples/charts/data-chart/data-annotation-slice-layer/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-annotation-slice-layer/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-annotation-slice-layer/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-strip-layer/.codesandbox/Dockerfile b/samples/charts/data-chart/data-annotation-strip-layer/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-annotation-strip-layer/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-annotation-strip-layer/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-grouping/.codesandbox/Dockerfile b/samples/charts/data-chart/data-legend-grouping/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-legend-grouping/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-legend-grouping/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-styling/.codesandbox/Dockerfile b/samples/charts/data-chart/data-legend-styling/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-legend-styling/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-legend-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-legend/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-legend/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-grouping/.codesandbox/Dockerfile b/samples/charts/data-chart/data-tooltip-grouping/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-tooltip-grouping/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-styling/.codesandbox/Dockerfile b/samples/charts/data-chart/data-tooltip-styling/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-tooltip-styling/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-tooltip-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-tooltip/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-tooltip/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/final-value-layer-styling/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/final-value-layer-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/financial-price-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/financial-price-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/format-specifiers/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/format-specifiers/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/legends/.codesandbox/Dockerfile b/samples/charts/data-chart/legends/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/legends/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/legends/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/polar-area-chart-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/polar-area-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/polar-area-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/polar-chart-types/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/polar-chart-types/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/polar-line-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/polar-line-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/polar-scatter-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/polar-scatter-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/polar-spline-area-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/polar-spline-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/polar-spline-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/radial-area-chart-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/radial-area-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/radial-area-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/radial-chart-types/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/radial-chart-types/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/radial-column-chart-selection/.codesandbox/Dockerfile b/samples/charts/data-chart/radial-column-chart-selection/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/radial-column-chart-selection/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/radial-column-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/radial-column-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/radial-label-mode/.codesandbox/Dockerfile b/samples/charts/data-chart/radial-label-mode/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/radial-label-mode/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/radial-label-mode/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/radial-line-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/radial-line-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/radial-pie-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/radial-pie-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file 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 index adf04bd95..cd7500bb4 100644 --- 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 @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/range-area-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/range-area-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/range-column-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/range-column-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/scatter-line-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/scatter-line-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/scatter-point-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/scatter-point-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/scatter-spline-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/scatter-spline-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/selection-matcher/.codesandbox/Dockerfile b/samples/charts/data-chart/selection-matcher/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/selection-matcher/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/selection-matcher/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/series-animations/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/series-animations/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/series-annotations/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/series-annotations/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/series-highlighting/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/series-highlighting/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/series-marker-template/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/series-marker-template/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/series-markers/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/series-markers/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/series-tooltips/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/series-tooltips/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/series-trendlines/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/series-trendlines/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/series-value-overlay/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/series-value-overlay/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-100-area-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-100-bar-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-100-column-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-100-line-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-100-spline-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-area-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-area-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-bar-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-bar-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-chart-types/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-chart-types/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-column-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-column-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-line-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-line-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-spline-area-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-spline-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-spline-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/tooltip-template/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/tooltip-template/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/transition-event/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/transition-event/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/trendline-layer/.codesandbox/Dockerfile b/samples/charts/data-chart/trendline-layer/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/trendline-layer/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/trendline-layer/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-category-area-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-category-area-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-category-bar-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-category-bar-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-category-column-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-category-column-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-category-line-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-category-line-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-category-point-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-category-point-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-category-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-category-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-category-spline-area-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-category-spline-area-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-category-spline-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-category-spline-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-category-step-area-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-category-step-area-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-category-step-line-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-category-step-line-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-category-waterfall-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-category-waterfall-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-financial-area-indicators/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-financial-area-indicators/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-financial-candlestick-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-financial-column-indicators/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-financial-column-indicators/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-financial-line-indicators/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-financial-line-indicators/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-financial-ohlc-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-financial-overlays/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-financial-overlays/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-financial-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-financial-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-radial-area-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-radial-area-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-radial-column-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-radial-column-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-radial-line-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-radial-line-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-radial-pie-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-radial-pie-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-range-area-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-range-area-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-range-column-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-range-column-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-range-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-range-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-scatter-area-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-scatter-area-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-scatter-bubble-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-scatter-contour-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-scatter-hd-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-scatter-line-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-scatter-line-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-scatter-point-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-scatter-point-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-scatter-polygon-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-scatter-polyline-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-scatter-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-scatter-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-scatter-spline-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-scatter-spline-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-shape-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-shape-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-stacked-100-area-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-stacked-100-area-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-stacked-100-bar-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-stacked-100-bar-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-stacked-100-column-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-stacked-100-column-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-stacked-100-line-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-stacked-100-line-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- 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 @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-stacked-100-spline-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-stacked-100-spline-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-stacked-area-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-stacked-area-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-stacked-bar-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-stacked-bar-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-stacked-column-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-stacked-column-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-stacked-line-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-stacked-line-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-stacked-spline-area-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-stacked-spline-area-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/type-stacked-spline-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/type-stacked-spline-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/waterfall-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/waterfall-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation-replay/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/animation-replay/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-pie-chart/animation-replay/.codesandbox/Dockerfile +++ b/samples/charts/data-pie-chart/animation-replay/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/animation/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-pie-chart/animation/.codesandbox/Dockerfile +++ b/samples/charts/data-pie-chart/animation/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/highlight-filter/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/highlight-filter/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-pie-chart/highlight-filter/.codesandbox/Dockerfile +++ b/samples/charts/data-pie-chart/highlight-filter/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/highlighting/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/highlighting/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-pie-chart/highlighting/.codesandbox/Dockerfile +++ b/samples/charts/data-pie-chart/highlighting/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/legend/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/legend/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-pie-chart/legend/.codesandbox/Dockerfile +++ b/samples/charts/data-pie-chart/legend/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/others/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/others/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-pie-chart/others/.codesandbox/Dockerfile +++ b/samples/charts/data-pie-chart/others/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/overview/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/overview/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-pie-chart/overview/.codesandbox/Dockerfile +++ b/samples/charts/data-pie-chart/overview/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/selection/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/selection/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-pie-chart/selection/.codesandbox/Dockerfile +++ b/samples/charts/data-pie-chart/selection/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/doughnut-chart/animation/.codesandbox/Dockerfile b/samples/charts/doughnut-chart/animation/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/doughnut-chart/animation/.codesandbox/Dockerfile +++ b/samples/charts/doughnut-chart/animation/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/doughnut-chart/explosion/.codesandbox/Dockerfile b/samples/charts/doughnut-chart/explosion/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/doughnut-chart/explosion/.codesandbox/Dockerfile +++ b/samples/charts/doughnut-chart/explosion/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/doughnut-chart/legend/.codesandbox/Dockerfile b/samples/charts/doughnut-chart/legend/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/doughnut-chart/legend/.codesandbox/Dockerfile +++ b/samples/charts/doughnut-chart/legend/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/doughnut-chart/overview/.codesandbox/Dockerfile b/samples/charts/doughnut-chart/overview/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/doughnut-chart/overview/.codesandbox/Dockerfile +++ b/samples/charts/doughnut-chart/overview/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/doughnut-chart/rings/.codesandbox/Dockerfile b/samples/charts/doughnut-chart/rings/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/doughnut-chart/rings/.codesandbox/Dockerfile +++ b/samples/charts/doughnut-chart/rings/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/doughnut-chart/selection/.codesandbox/Dockerfile b/samples/charts/doughnut-chart/selection/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/doughnut-chart/selection/.codesandbox/Dockerfile +++ b/samples/charts/doughnut-chart/selection/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/financial-chart/annotations/.codesandbox/Dockerfile b/samples/charts/financial-chart/annotations/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/annotations/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/annotations/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/axis-types/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/axis-types/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/data-legend-formatting-currency/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/data-legend-styling-props/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/data-legend/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/data-legend/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/data-tooltip-styling-props/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/data-tooltip/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/data-tooltip/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/format-specifiers/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/format-specifiers/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/high-frequency/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/high-frequency/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/high-volume/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/high-volume/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/indicator-customization/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/indicator-customization/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/indicator-types/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/indicator-types/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/multiple-data/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/multiple-data/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/multiple-feeds/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/multiple-feeds/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/financial-chart/overview/.codesandbox/Dockerfile b/samples/charts/financial-chart/overview/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/overview/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/overview/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/financial-chart/panes/.codesandbox/Dockerfile b/samples/charts/financial-chart/panes/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/panes/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/panes/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/financial-chart/performance/.codesandbox/Dockerfile b/samples/charts/financial-chart/performance/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/performance/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/performance/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/financial-chart/scrollbars/.codesandbox/Dockerfile b/samples/charts/financial-chart/scrollbars/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/scrollbars/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/scrollbars/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/stock-index-chart/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/stock-index-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/financial-chart/styling/.codesandbox/Dockerfile b/samples/charts/financial-chart/styling/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/styling/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/financial-chart/theming/.codesandbox/Dockerfile b/samples/charts/financial-chart/theming/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/theming/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/theming/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/time-based-data/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/time-based-data/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/financial-chart/titles/.codesandbox/Dockerfile b/samples/charts/financial-chart/titles/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/titles/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/titles/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/tooltip-template/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/tooltip-template/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/tooltip-types/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/tooltip-types/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/financial-chart/trendlines/.codesandbox/Dockerfile b/samples/charts/financial-chart/trendlines/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/trendlines/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/trendlines/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/volume-types/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/volume-types/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/pie-chart/animation/.codesandbox/Dockerfile b/samples/charts/pie-chart/animation/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/pie-chart/animation/.codesandbox/Dockerfile +++ b/samples/charts/pie-chart/animation/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/pie-chart/explosion/.codesandbox/Dockerfile b/samples/charts/pie-chart/explosion/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/pie-chart/explosion/.codesandbox/Dockerfile +++ b/samples/charts/pie-chart/explosion/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/pie-chart/legend/.codesandbox/Dockerfile b/samples/charts/pie-chart/legend/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/pie-chart/legend/.codesandbox/Dockerfile +++ b/samples/charts/pie-chart/legend/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/pie-chart/others/.codesandbox/Dockerfile b/samples/charts/pie-chart/others/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/pie-chart/others/.codesandbox/Dockerfile +++ b/samples/charts/pie-chart/others/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/pie-chart/overview/.codesandbox/Dockerfile b/samples/charts/pie-chart/overview/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/pie-chart/overview/.codesandbox/Dockerfile +++ b/samples/charts/pie-chart/overview/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/pie-chart/selection/.codesandbox/Dockerfile b/samples/charts/pie-chart/selection/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/pie-chart/selection/.codesandbox/Dockerfile +++ b/samples/charts/pie-chart/selection/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/pie-chart/styling/.codesandbox/Dockerfile b/samples/charts/pie-chart/styling/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/pie-chart/styling/.codesandbox/Dockerfile +++ b/samples/charts/pie-chart/styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/sparkline/display-area/.codesandbox/Dockerfile b/samples/charts/sparkline/display-area/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/sparkline/display-area/.codesandbox/Dockerfile +++ b/samples/charts/sparkline/display-area/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/sparkline/display-column/.codesandbox/Dockerfile b/samples/charts/sparkline/display-column/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/sparkline/display-column/.codesandbox/Dockerfile +++ b/samples/charts/sparkline/display-column/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/sparkline/display-lines/.codesandbox/Dockerfile b/samples/charts/sparkline/display-lines/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/sparkline/display-lines/.codesandbox/Dockerfile +++ b/samples/charts/sparkline/display-lines/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/sparkline/display-types/.codesandbox/Dockerfile b/samples/charts/sparkline/display-types/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/sparkline/display-types/.codesandbox/Dockerfile +++ b/samples/charts/sparkline/display-types/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/sparkline/display-winloss/.codesandbox/Dockerfile b/samples/charts/sparkline/display-winloss/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/sparkline/display-winloss/.codesandbox/Dockerfile +++ b/samples/charts/sparkline/display-winloss/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/sparkline/grid/.codesandbox/Dockerfile b/samples/charts/sparkline/grid/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/sparkline/grid/.codesandbox/Dockerfile +++ b/samples/charts/sparkline/grid/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/sparkline/markers/.codesandbox/Dockerfile b/samples/charts/sparkline/markers/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/sparkline/markers/.codesandbox/Dockerfile +++ b/samples/charts/sparkline/markers/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/sparkline/normal-range/.codesandbox/Dockerfile b/samples/charts/sparkline/normal-range/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/sparkline/normal-range/.codesandbox/Dockerfile +++ b/samples/charts/sparkline/normal-range/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/sparkline/trendlines/.codesandbox/Dockerfile b/samples/charts/sparkline/trendlines/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/sparkline/trendlines/.codesandbox/Dockerfile +++ b/samples/charts/sparkline/trendlines/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/sparkline/unknown-values/.codesandbox/Dockerfile b/samples/charts/sparkline/unknown-values/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/sparkline/unknown-values/.codesandbox/Dockerfile +++ b/samples/charts/sparkline/unknown-values/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/.codesandbox/Dockerfile +++ b/samples/charts/toolbar/actions-built-in-category-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/.codesandbox/Dockerfile +++ b/samples/charts/toolbar/actions-built-in-data-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/toolbar/color-editor-support/.codesandbox/Dockerfile b/samples/charts/toolbar/color-editor-support/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/toolbar/color-editor-support/.codesandbox/Dockerfile +++ b/samples/charts/toolbar/color-editor-support/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/toolbar/custom-tool/.codesandbox/Dockerfile b/samples/charts/toolbar/custom-tool/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/toolbar/custom-tool/.codesandbox/Dockerfile +++ b/samples/charts/toolbar/custom-tool/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/.codesandbox/Dockerfile +++ b/samples/charts/toolbar/layout-actions-for-data-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/.codesandbox/Dockerfile +++ b/samples/charts/toolbar/layout-in-vertical-orientation/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/toolbar/theming/.codesandbox/Dockerfile b/samples/charts/toolbar/theming/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/toolbar/theming/.codesandbox/Dockerfile +++ b/samples/charts/toolbar/theming/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/tree-map/events/.codesandbox/Dockerfile b/samples/charts/tree-map/events/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/tree-map/events/.codesandbox/Dockerfile +++ b/samples/charts/tree-map/events/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/tree-map/highlighting-percent-based/.codesandbox/Dockerfile +++ b/samples/charts/tree-map/highlighting-percent-based/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting/.codesandbox/Dockerfile b/samples/charts/tree-map/highlighting/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/tree-map/highlighting/.codesandbox/Dockerfile +++ b/samples/charts/tree-map/highlighting/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/tree-map/layout/.codesandbox/Dockerfile b/samples/charts/tree-map/layout/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/tree-map/layout/.codesandbox/Dockerfile +++ b/samples/charts/tree-map/layout/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/tree-map/overview/.codesandbox/Dockerfile b/samples/charts/tree-map/overview/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/tree-map/overview/.codesandbox/Dockerfile +++ b/samples/charts/tree-map/overview/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/tree-map/styling/.codesandbox/Dockerfile b/samples/charts/tree-map/styling/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/tree-map/styling/.codesandbox/Dockerfile +++ b/samples/charts/tree-map/styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/zoomslider/overview/.codesandbox/Dockerfile b/samples/charts/zoomslider/overview/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/zoomslider/overview/.codesandbox/Dockerfile +++ b/samples/charts/zoomslider/overview/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/excel/excel-library/operations-on-workbooks/.codesandbox/Dockerfile +++ b/samples/excel/excel-library/operations-on-workbooks/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/excel/excel-library/operations-on-worksheets/.codesandbox/Dockerfile +++ b/samples/excel/excel-library/operations-on-worksheets/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/excel/excel-library/overview/.codesandbox/Dockerfile b/samples/excel/excel-library/overview/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/excel/excel-library/overview/.codesandbox/Dockerfile +++ b/samples/excel/excel-library/overview/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/excel/excel-library/working-with-cells/.codesandbox/Dockerfile +++ b/samples/excel/excel-library/working-with-cells/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/excel/excel-library/working-with-charts/.codesandbox/Dockerfile +++ b/samples/excel/excel-library/working-with-charts/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/excel/excel-library/working-with-sparklines/.codesandbox/Dockerfile +++ b/samples/excel/excel-library/working-with-sparklines/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/excel/excel-library/working-with-tables/.codesandbox/Dockerfile +++ b/samples/excel/excel-library/working-with-tables/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/excel/spreadsheet/activation/.codesandbox/Dockerfile b/samples/excel/spreadsheet/activation/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/excel/spreadsheet/activation/.codesandbox/Dockerfile +++ b/samples/excel/spreadsheet/activation/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/excel/spreadsheet/adapter-chart/.codesandbox/Dockerfile b/samples/excel/spreadsheet/adapter-chart/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/excel/spreadsheet/adapter-chart/.codesandbox/Dockerfile +++ b/samples/excel/spreadsheet/adapter-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/excel/spreadsheet/adapter-combo/.codesandbox/Dockerfile b/samples/excel/spreadsheet/adapter-combo/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/excel/spreadsheet/adapter-combo/.codesandbox/Dockerfile +++ b/samples/excel/spreadsheet/adapter-combo/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/excel/spreadsheet/clipboard/.codesandbox/Dockerfile b/samples/excel/spreadsheet/clipboard/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/excel/spreadsheet/clipboard/.codesandbox/Dockerfile +++ b/samples/excel/spreadsheet/clipboard/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/excel/spreadsheet/commands/.codesandbox/Dockerfile b/samples/excel/spreadsheet/commands/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/excel/spreadsheet/commands/.codesandbox/Dockerfile +++ b/samples/excel/spreadsheet/commands/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/excel/spreadsheet/conditional-formatting/.codesandbox/Dockerfile b/samples/excel/spreadsheet/conditional-formatting/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/excel/spreadsheet/conditional-formatting/.codesandbox/Dockerfile +++ b/samples/excel/spreadsheet/conditional-formatting/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/excel/spreadsheet/config-options/.codesandbox/Dockerfile b/samples/excel/spreadsheet/config-options/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/excel/spreadsheet/config-options/.codesandbox/Dockerfile +++ b/samples/excel/spreadsheet/config-options/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/excel/spreadsheet/data-validation/.codesandbox/Dockerfile b/samples/excel/spreadsheet/data-validation/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/excel/spreadsheet/data-validation/.codesandbox/Dockerfile +++ b/samples/excel/spreadsheet/data-validation/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/excel/spreadsheet/hyperlinks/.codesandbox/Dockerfile b/samples/excel/spreadsheet/hyperlinks/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/excel/spreadsheet/hyperlinks/.codesandbox/Dockerfile +++ b/samples/excel/spreadsheet/hyperlinks/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/excel/spreadsheet/overview/.codesandbox/Dockerfile b/samples/excel/spreadsheet/overview/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/excel/spreadsheet/overview/.codesandbox/Dockerfile +++ b/samples/excel/spreadsheet/overview/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/bullet-graph/animation/.codesandbox/Dockerfile b/samples/gauges/bullet-graph/animation/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/bullet-graph/animation/.codesandbox/Dockerfile +++ b/samples/gauges/bullet-graph/animation/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/bullet-graph/background/.codesandbox/Dockerfile b/samples/gauges/bullet-graph/background/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/bullet-graph/background/.codesandbox/Dockerfile +++ b/samples/gauges/bullet-graph/background/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/bullet-graph/highlight-needle/.codesandbox/Dockerfile +++ b/samples/gauges/bullet-graph/highlight-needle/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/bullet-graph/labels/.codesandbox/Dockerfile b/samples/gauges/bullet-graph/labels/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/bullet-graph/labels/.codesandbox/Dockerfile +++ b/samples/gauges/bullet-graph/labels/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/bullet-graph/measures/.codesandbox/Dockerfile b/samples/gauges/bullet-graph/measures/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/bullet-graph/measures/.codesandbox/Dockerfile +++ b/samples/gauges/bullet-graph/measures/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/bullet-graph/ranges/.codesandbox/Dockerfile b/samples/gauges/bullet-graph/ranges/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/bullet-graph/ranges/.codesandbox/Dockerfile +++ b/samples/gauges/bullet-graph/ranges/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/bullet-graph/scale/.codesandbox/Dockerfile b/samples/gauges/bullet-graph/scale/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/bullet-graph/scale/.codesandbox/Dockerfile +++ b/samples/gauges/bullet-graph/scale/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/bullet-graph/tickmarks/.codesandbox/Dockerfile b/samples/gauges/bullet-graph/tickmarks/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/bullet-graph/tickmarks/.codesandbox/Dockerfile +++ b/samples/gauges/bullet-graph/tickmarks/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/linear-gauge/animation/.codesandbox/Dockerfile b/samples/gauges/linear-gauge/animation/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/linear-gauge/animation/.codesandbox/Dockerfile +++ b/samples/gauges/linear-gauge/animation/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/linear-gauge/backing/.codesandbox/Dockerfile b/samples/gauges/linear-gauge/backing/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/linear-gauge/backing/.codesandbox/Dockerfile +++ b/samples/gauges/linear-gauge/backing/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/linear-gauge/highlight-needle/.codesandbox/Dockerfile +++ b/samples/gauges/linear-gauge/highlight-needle/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/linear-gauge/labels/.codesandbox/Dockerfile b/samples/gauges/linear-gauge/labels/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/linear-gauge/labels/.codesandbox/Dockerfile +++ b/samples/gauges/linear-gauge/labels/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/linear-gauge/needle/.codesandbox/Dockerfile b/samples/gauges/linear-gauge/needle/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/linear-gauge/needle/.codesandbox/Dockerfile +++ b/samples/gauges/linear-gauge/needle/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/linear-gauge/ranges/.codesandbox/Dockerfile b/samples/gauges/linear-gauge/ranges/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/linear-gauge/ranges/.codesandbox/Dockerfile +++ b/samples/gauges/linear-gauge/ranges/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/linear-gauge/scale/.codesandbox/Dockerfile b/samples/gauges/linear-gauge/scale/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/linear-gauge/scale/.codesandbox/Dockerfile +++ b/samples/gauges/linear-gauge/scale/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/linear-gauge/tickmarks/.codesandbox/Dockerfile b/samples/gauges/linear-gauge/tickmarks/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/linear-gauge/tickmarks/.codesandbox/Dockerfile +++ b/samples/gauges/linear-gauge/tickmarks/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/radial-gauge/animation/.codesandbox/Dockerfile b/samples/gauges/radial-gauge/animation/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/radial-gauge/animation/.codesandbox/Dockerfile +++ b/samples/gauges/radial-gauge/animation/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/radial-gauge/backing/.codesandbox/Dockerfile b/samples/gauges/radial-gauge/backing/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/radial-gauge/backing/.codesandbox/Dockerfile +++ b/samples/gauges/radial-gauge/backing/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/radial-gauge/highlight-needle/.codesandbox/Dockerfile +++ b/samples/gauges/radial-gauge/highlight-needle/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/radial-gauge/labels/.codesandbox/Dockerfile b/samples/gauges/radial-gauge/labels/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/radial-gauge/labels/.codesandbox/Dockerfile +++ b/samples/gauges/radial-gauge/labels/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/radial-gauge/needle/.codesandbox/Dockerfile b/samples/gauges/radial-gauge/needle/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/radial-gauge/needle/.codesandbox/Dockerfile +++ b/samples/gauges/radial-gauge/needle/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/radial-gauge/optical-scaling/.codesandbox/Dockerfile +++ b/samples/gauges/radial-gauge/optical-scaling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/radial-gauge/ranges/.codesandbox/Dockerfile b/samples/gauges/radial-gauge/ranges/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/radial-gauge/ranges/.codesandbox/Dockerfile +++ b/samples/gauges/radial-gauge/ranges/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/radial-gauge/scale/.codesandbox/Dockerfile b/samples/gauges/radial-gauge/scale/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/radial-gauge/scale/.codesandbox/Dockerfile +++ b/samples/gauges/radial-gauge/scale/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/gauges/radial-gauge/tickmarks/.codesandbox/Dockerfile b/samples/gauges/radial-gauge/tickmarks/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/gauges/radial-gauge/tickmarks/.codesandbox/Dockerfile +++ b/samples/gauges/radial-gauge/tickmarks/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/inputs/color-editor/overview/.codesandbox/Dockerfile b/samples/inputs/color-editor/overview/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/inputs/color-editor/overview/.codesandbox/Dockerfile +++ b/samples/inputs/color-editor/overview/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/binding-data-csv/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/binding-data-csv/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/binding-data-json-points/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/binding-data-json-points/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/binding-data-model/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/binding-data-model/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/binding-multiple-shapes/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/binding-multiple-sources/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/binding-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/binding-shp-points/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/binding-shp-points/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/binding-shp-polygons/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/binding-shp-polygons/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/binding-shp-polylines/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/binding-shp-polylines/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/custom-tooltips/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/custom-tooltips/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/maps/geo-map/display-azure-imagery/.codesandbox/Dockerfile b/samples/maps/geo-map/display-azure-imagery/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/display-azure-imagery/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/display-azure-imagery/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/display-bing-imagery/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/display-bing-imagery/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/display-esri-imagery/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/display-esri-imagery/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/display-heat-imagery/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/display-heat-imagery/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/display-osm-imagery/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/display-osm-imagery/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/marker-layouts/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/marker-layouts/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/marker-template/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/marker-template/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/marker-type/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/marker-type/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/maps/geo-map/navigation/.codesandbox/Dockerfile b/samples/maps/geo-map/navigation/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/navigation/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/navigation/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/maps/geo-map/overview/.codesandbox/Dockerfile b/samples/maps/geo-map/overview/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/overview/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/overview/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/shape-styling/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/shape-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/triangulating-data/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/triangulating-data/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/type-scatter-area-series/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/type-scatter-area-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/type-scatter-bubble-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/type-scatter-contour-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/type-scatter-density-series/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/type-scatter-density-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/type-scatter-symbol-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/type-shape-polygon-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/type-shape-polyline-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/tests/avatar-sample-3/.codesandbox/Dockerfile b/tests/avatar-sample-3/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/tests/avatar-sample-3/.codesandbox/Dockerfile +++ b/tests/avatar-sample-3/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/tests/donut-ava/.codesandbox/Dockerfile b/tests/donut-ava/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/tests/donut-ava/.codesandbox/Dockerfile +++ b/tests/donut-ava/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/tests/donut-ava2/.codesandbox/Dockerfile b/tests/donut-ava2/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/tests/donut-ava2/.codesandbox/Dockerfile +++ b/tests/donut-ava2/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/tests/donut-ava3/.codesandbox/Dockerfile b/tests/donut-ava3/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/tests/donut-ava3/.codesandbox/Dockerfile +++ b/tests/donut-ava3/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/tests/donut-ava4/.codesandbox/Dockerfile b/tests/donut-ava4/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/tests/donut-ava4/.codesandbox/Dockerfile +++ b/tests/donut-ava4/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/tests/donut-mod/.codesandbox/Dockerfile b/tests/donut-mod/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/tests/donut-mod/.codesandbox/Dockerfile +++ b/tests/donut-mod/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/tests/donut2/.codesandbox/Dockerfile b/tests/donut2/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/tests/donut2/.codesandbox/Dockerfile +++ b/tests/donut2/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/tests/donut3/.codesandbox/Dockerfile b/tests/donut3/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/tests/donut3/.codesandbox/Dockerfile +++ b/tests/donut3/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/tests/treegrid/.codesandbox/Dockerfile b/tests/treegrid/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/tests/treegrid/.codesandbox/Dockerfile +++ b/tests/treegrid/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file From 80bd849db61278204c1ef79af82218cb940b83d9 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Thu, 25 Sep 2025 13:51:36 -0400 Subject: [PATCH 172/183] Adding changes from build igniteui-xplat-examples-output+PRs_2025.9.25.1 (#357) Co-authored-by: tfsbuild --- .../category-chart/annotations-all/.codesandbox/Dockerfile | 2 +- .../category-chart/annotations-callouts/.codesandbox/Dockerfile | 2 +- .../annotations-crosshairs/.codesandbox/Dockerfile | 2 +- .../category-chart/annotations-custom/.codesandbox/Dockerfile | 2 +- .../annotations-final-value/.codesandbox/Dockerfile | 2 +- .../annotations-highlighting/.codesandbox/Dockerfile | 2 +- .../area-chart-multiple-sources/.codesandbox/Dockerfile | 2 +- .../area-chart-single-source/.codesandbox/Dockerfile | 2 +- .../category-chart/area-chart-styling/.codesandbox/Dockerfile | 2 +- samples/charts/category-chart/axis-gap/.codesandbox/Dockerfile | 2 +- .../category-chart/axis-gridlines/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/axis-inverted/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/axis-labels/.codesandbox/Dockerfile | 2 +- .../category-chart/axis-locations/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/axis-options/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/axis-overlap/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/axis-range/.codesandbox/Dockerfile | 2 +- .../category-chart/axis-tickmarks/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/axis-titles/.codesandbox/Dockerfile | 2 +- .../chart-highlight-filter/.codesandbox/Dockerfile | 2 +- .../column-chart-multiple-sources/.codesandbox/Dockerfile | 2 +- .../column-chart-single-source/.codesandbox/Dockerfile | 2 +- .../category-chart/column-chart-styling/.codesandbox/Dockerfile | 2 +- .../column-chart-with-tooltips/.codesandbox/Dockerfile | 2 +- .../category-chart/custom-selection/.codesandbox/Dockerfile | 2 +- .../category-chart/data-aggregations/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/data-filter/.codesandbox/Dockerfile | 2 +- .../data-legend-formatting-decimals/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/data-legend/.codesandbox/Dockerfile | 2 +- .../data-tooltip-formatting-decimals/.codesandbox/Dockerfile | 2 +- .../data-tooltip-positioning/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/data-tooltip/.codesandbox/Dockerfile | 2 +- .../category-chart/format-specifiers/.codesandbox/Dockerfile | 2 +- .../highlighting-behavior/.codesandbox/Dockerfile | 2 +- .../category-chart/highlighting-mode/.codesandbox/Dockerfile | 2 +- .../category-chart/legend-highlighting/.codesandbox/Dockerfile | 2 +- .../line-chart-multiple-sources/.codesandbox/Dockerfile | 2 +- .../line-chart-single-source/.codesandbox/Dockerfile | 2 +- .../category-chart/line-chart-styling/.codesandbox/Dockerfile | 2 +- .../category-chart/marker-options/.codesandbox/Dockerfile | 2 +- samples/charts/category-chart/overview/.codesandbox/Dockerfile | 2 +- .../point-chart-multiple-sources/.codesandbox/Dockerfile | 2 +- .../point-chart-single-source/.codesandbox/Dockerfile | 2 +- .../category-chart/point-chart-styling/.codesandbox/Dockerfile | 2 +- .../category-chart/selection-matcher/.codesandbox/Dockerfile | 2 +- .../category-chart/selection-modes/.codesandbox/Dockerfile | 2 +- .../selection-multiple-modes/.codesandbox/Dockerfile | 2 +- .../spline-area-multiple-sources/.codesandbox/Dockerfile | 2 +- .../spline-area-single-source/.codesandbox/Dockerfile | 2 +- .../category-chart/spline-area-styling/.codesandbox/Dockerfile | 2 +- .../spline-multiple-sources/.codesandbox/Dockerfile | 2 +- .../category-chart/spline-single-source/.codesandbox/Dockerfile | 2 +- .../category-chart/spline-styling/.codesandbox/Dockerfile | 2 +- .../step-area-multiple-sources/.codesandbox/Dockerfile | 2 +- .../step-area-single-source/.codesandbox/Dockerfile | 2 +- .../category-chart/step-area-styling/.codesandbox/Dockerfile | 2 +- .../step-line-multiple-sources/.codesandbox/Dockerfile | 2 +- .../step-line-single-source/.codesandbox/Dockerfile | 2 +- .../category-chart/step-line-styling/.codesandbox/Dockerfile | 2 +- .../charts/category-chart/value-lines/.codesandbox/Dockerfile | 2 +- .../dashboard-tile/financial-dashboard/.codesandbox/Dockerfile | 2 +- .../dashboard-tile/gauge-dashboard/.codesandbox/Dockerfile | 2 +- .../local-data-source-dashboard/.codesandbox/Dockerfile | 2 +- .../charts/dashboard-tile/map-dashboard/.codesandbox/Dockerfile | 2 +- .../charts/dashboard-tile/pie-dashboard/.codesandbox/Dockerfile | 2 +- .../data-chart/annotations-custom/.codesandbox/Dockerfile | 2 +- .../axis-annotations-corner-radius/.codesandbox/Dockerfile | 2 +- .../data-chart/axis-label-rotation/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/axis-min-max-gap/.codesandbox/Dockerfile | 2 +- .../bar-chart-multiple-sources/.codesandbox/Dockerfile | 2 +- .../data-chart/bar-chart-overlapping/.codesandbox/Dockerfile | 2 +- .../data-chart/bar-chart-single-source/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/bar-chart-styling/.codesandbox/Dockerfile | 2 +- .../data-chart/callout-layer-styling/.codesandbox/Dockerfile | 2 +- .../chart-highlight-filter-datasource/.codesandbox/Dockerfile | 2 +- .../.codesandbox/Dockerfile | 2 +- .../data-chart/chart-highlight-filter/.codesandbox/Dockerfile | 2 +- .../data-annotation-band-layer/.codesandbox/Dockerfile | 2 +- .../data-annotation-line-layer/.codesandbox/Dockerfile | 2 +- .../.codesandbox/Dockerfile | 2 +- .../.codesandbox/Dockerfile | 2 +- .../data-annotation-rect-layer/.codesandbox/Dockerfile | 2 +- .../data-annotation-slice-layer/.codesandbox/Dockerfile | 2 +- .../data-annotation-strip-layer/.codesandbox/Dockerfile | 2 +- .../.codesandbox/Dockerfile | 2 +- .../data-chart/data-legend-grouping/.codesandbox/Dockerfile | 2 +- .../data-chart/data-legend-styling/.codesandbox/Dockerfile | 2 +- samples/charts/data-chart/data-legend/.codesandbox/Dockerfile | 2 +- .../.codesandbox/Dockerfile | 2 +- .../data-chart/data-tooltip-grouping/.codesandbox/Dockerfile | 2 +- .../data-chart/data-tooltip-styling/.codesandbox/Dockerfile | 2 +- samples/charts/data-chart/data-tooltip/.codesandbox/Dockerfile | 2 +- .../data-chart/financial-price-series/.codesandbox/Dockerfile | 2 +- .../data-chart/polar-area-chart-styling/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/polar-area-chart/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/polar-line-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/polar-scatter-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/polar-spline-area-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/polar-spline-chart/.codesandbox/Dockerfile | 2 +- .../radial-area-chart-styling/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/radial-area-chart/.codesandbox/Dockerfile | 2 +- .../radial-column-chart-selection/.codesandbox/Dockerfile | 2 +- .../data-chart/radial-column-chart/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/radial-label-mode/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/radial-line-chart/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/radial-pie-chart/.codesandbox/Dockerfile | 2 +- .../.codesandbox/Dockerfile | 2 +- .../.codesandbox/Dockerfile | 2 +- .../charts/data-chart/range-area-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/range-column-chart/.codesandbox/Dockerfile | 2 +- .../scatter-bubble-chart-fill-scale/.codesandbox/Dockerfile | 2 +- .../.codesandbox/Dockerfile | 2 +- .../scatter-bubble-chart-single-source/.codesandbox/Dockerfile | 2 +- .../scatter-bubble-chart-styling/.codesandbox/Dockerfile | 2 +- .../data-chart/scatter-line-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/scatter-point-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/scatter-spline-chart/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/selection-matcher/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-100-area-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-100-bar-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-100-column-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-100-line-chart/.codesandbox/Dockerfile | 2 +- .../stacked-100-spline-area-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-100-spline-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-area-chart/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/stacked-bar-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-column-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-line-chart/.codesandbox/Dockerfile | 2 +- .../stacked-spline-area-chart/.codesandbox/Dockerfile | 2 +- .../data-chart/stacked-spline-chart/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/transition-event/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/trendline-layer/.codesandbox/Dockerfile | 2 +- .../charts/data-chart/waterfall-chart/.codesandbox/Dockerfile | 2 +- .../data-pie-chart/animation-replay/.codesandbox/Dockerfile | 2 +- samples/charts/data-pie-chart/animation/.codesandbox/Dockerfile | 2 +- .../data-pie-chart/highlight-filter/.codesandbox/Dockerfile | 2 +- .../charts/data-pie-chart/highlighting/.codesandbox/Dockerfile | 2 +- samples/charts/data-pie-chart/legend/.codesandbox/Dockerfile | 2 +- samples/charts/data-pie-chart/others/.codesandbox/Dockerfile | 2 +- samples/charts/data-pie-chart/overview/.codesandbox/Dockerfile | 2 +- samples/charts/data-pie-chart/selection/.codesandbox/Dockerfile | 2 +- samples/charts/doughnut-chart/legend/.codesandbox/Dockerfile | 2 +- samples/charts/doughnut-chart/overview/.codesandbox/Dockerfile | 2 +- samples/charts/doughnut-chart/rings/.codesandbox/Dockerfile | 2 +- .../data-legend-formatting-currency/.codesandbox/Dockerfile | 2 +- .../data-legend-styling-props/.codesandbox/Dockerfile | 2 +- .../charts/financial-chart/data-legend/.codesandbox/Dockerfile | 2 +- .../data-tooltip-formatting-currency/.codesandbox/Dockerfile | 2 +- .../data-tooltip-styling-props/.codesandbox/Dockerfile | 2 +- .../charts/financial-chart/data-tooltip/.codesandbox/Dockerfile | 2 +- .../financial-chart/format-specifiers/.codesandbox/Dockerfile | 2 +- .../charts/financial-chart/scrollbars/.codesandbox/Dockerfile | 2 +- samples/charts/pie-chart/legend/.codesandbox/Dockerfile | 2 +- samples/charts/pie-chart/others/.codesandbox/Dockerfile | 2 +- samples/charts/pie-chart/overview/.codesandbox/Dockerfile | 2 +- samples/charts/pie-chart/styling/.codesandbox/Dockerfile | 2 +- samples/charts/sparkline/display-area/.codesandbox/Dockerfile | 2 +- samples/charts/sparkline/display-column/.codesandbox/Dockerfile | 2 +- samples/charts/sparkline/display-lines/.codesandbox/Dockerfile | 2 +- .../charts/sparkline/display-winloss/.codesandbox/Dockerfile | 2 +- samples/charts/sparkline/markers/.codesandbox/Dockerfile | 2 +- samples/charts/sparkline/normal-range/.codesandbox/Dockerfile | 2 +- samples/charts/sparkline/trendlines/.codesandbox/Dockerfile | 2 +- samples/charts/sparkline/unknown-values/.codesandbox/Dockerfile | 2 +- .../actions-built-in-category-chart/.codesandbox/Dockerfile | 2 +- .../toolbar/actions-built-in-data-chart/.codesandbox/Dockerfile | 2 +- .../charts/toolbar/color-editor-support/.codesandbox/Dockerfile | 2 +- samples/charts/toolbar/custom-tool/.codesandbox/Dockerfile | 2 +- .../layout-actions-for-data-chart/.codesandbox/Dockerfile | 2 +- .../layout-in-vertical-orientation/.codesandbox/Dockerfile | 2 +- samples/charts/toolbar/theming/.codesandbox/Dockerfile | 2 +- .../tree-map/highlighting-percent-based/.codesandbox/Dockerfile | 2 +- samples/charts/tree-map/highlighting/.codesandbox/Dockerfile | 2 +- samples/charts/tree-map/layout/.codesandbox/Dockerfile | 2 +- samples/charts/tree-map/overview/.codesandbox/Dockerfile | 2 +- samples/charts/tree-map/styling/.codesandbox/Dockerfile | 2 +- samples/inputs/color-editor/overview/.codesandbox/Dockerfile | 2 +- 177 files changed, 177 insertions(+), 177 deletions(-) diff --git a/samples/charts/category-chart/annotations-all/.codesandbox/Dockerfile b/samples/charts/category-chart/annotations-all/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/annotations-all/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/annotations-all/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/annotations-callouts/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/annotations-callouts/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/annotations-crosshairs/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/annotations-crosshairs/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/annotations-custom/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/annotations-custom/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/annotations-final-value/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/annotations-final-value/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/annotations-highlighting/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/annotations-highlighting/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/area-chart-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/area-chart-single-source/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/area-chart-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/area-chart-styling/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/area-chart-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-gap/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-gap/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-gridlines/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-gridlines/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-inverted/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-inverted/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-labels/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-labels/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-locations/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-locations/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-options/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-options/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-overlap/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-overlap/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-range/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-range/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-tickmarks/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-tickmarks/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/axis-titles/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/axis-titles/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/chart-highlight-filter/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/chart-highlight-filter/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/column-chart-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/column-chart-single-source/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/column-chart-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/column-chart-styling/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/column-chart-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/column-chart-with-tooltips/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/custom-selection/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/custom-selection/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/data-aggregations/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/data-aggregations/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/data-filter/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/data-filter/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/data-legend-formatting-decimals/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/data-legend/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/data-legend/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/data-tooltip-positioning/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/data-tooltip/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/data-tooltip/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/format-specifiers/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/format-specifiers/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/highlighting-behavior/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/highlighting-behavior/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/highlighting-mode/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/highlighting-mode/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/legend-highlighting/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/legend-highlighting/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/line-chart-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/line-chart-single-source/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/line-chart-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/line-chart-styling/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/line-chart-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/marker-options/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/marker-options/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/category-chart/overview/.codesandbox/Dockerfile b/samples/charts/category-chart/overview/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/overview/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/overview/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/point-chart-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/point-chart-single-source/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/point-chart-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/point-chart-styling/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/point-chart-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/category-chart/selection-matcher/.codesandbox/Dockerfile b/samples/charts/category-chart/selection-matcher/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/selection-matcher/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/selection-matcher/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/category-chart/selection-modes/.codesandbox/Dockerfile b/samples/charts/category-chart/selection-modes/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/selection-modes/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/selection-modes/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/category-chart/selection-multiple-modes/.codesandbox/Dockerfile b/samples/charts/category-chart/selection-multiple-modes/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/selection-multiple-modes/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/selection-multiple-modes/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/spline-area-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/spline-area-single-source/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/spline-area-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/spline-area-styling/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/spline-area-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/spline-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/spline-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/spline-single-source/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/spline-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/spline-styling/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/spline-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/step-area-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/step-area-single-source/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/step-area-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/step-area-styling/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/step-area-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/step-line-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/step-line-single-source/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/step-line-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/step-line-styling/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/step-line-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/category-chart/value-lines/.codesandbox/Dockerfile +++ b/samples/charts/category-chart/value-lines/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/dashboard-tile/financial-dashboard/.codesandbox/Dockerfile b/samples/charts/dashboard-tile/financial-dashboard/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/.codesandbox/Dockerfile +++ b/samples/charts/dashboard-tile/financial-dashboard/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/dashboard-tile/gauge-dashboard/.codesandbox/Dockerfile b/samples/charts/dashboard-tile/gauge-dashboard/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/.codesandbox/Dockerfile +++ b/samples/charts/dashboard-tile/gauge-dashboard/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/.codesandbox/Dockerfile b/samples/charts/dashboard-tile/local-data-source-dashboard/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/dashboard-tile/local-data-source-dashboard/.codesandbox/Dockerfile +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/dashboard-tile/map-dashboard/.codesandbox/Dockerfile b/samples/charts/dashboard-tile/map-dashboard/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/dashboard-tile/map-dashboard/.codesandbox/Dockerfile +++ b/samples/charts/dashboard-tile/map-dashboard/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/dashboard-tile/pie-dashboard/.codesandbox/Dockerfile b/samples/charts/dashboard-tile/pie-dashboard/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/.codesandbox/Dockerfile +++ b/samples/charts/dashboard-tile/pie-dashboard/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/annotations-custom/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/annotations-custom/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/axis-annotations-corner-radius/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/axis-label-rotation/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/axis-label-rotation/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/axis-min-max-gap/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/axis-min-max-gap/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/bar-chart-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/bar-chart-overlapping/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/bar-chart-single-source/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/bar-chart-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/bar-chart-styling/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/bar-chart-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/callout-layer-styling/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/callout-layer-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/chart-highlight-filter/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/chart-highlight-filter/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-band-layer/.codesandbox/Dockerfile b/samples/charts/data-chart/data-annotation-band-layer/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-annotation-band-layer/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-annotation-band-layer/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-line-layer/.codesandbox/Dockerfile b/samples/charts/data-chart/data-annotation-line-layer/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-annotation-line-layer/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-annotation-line-layer/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file 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 index adf04bd95..cd7500bb4 100644 --- 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 @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-stocks/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-rect-layer/.codesandbox/Dockerfile b/samples/charts/data-chart/data-annotation-rect-layer/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-annotation-rect-layer/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-annotation-rect-layer/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-slice-layer/.codesandbox/Dockerfile b/samples/charts/data-chart/data-annotation-slice-layer/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-annotation-slice-layer/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-annotation-slice-layer/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/data-annotation-strip-layer/.codesandbox/Dockerfile b/samples/charts/data-chart/data-annotation-strip-layer/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-annotation-strip-layer/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-annotation-strip-layer/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-grouping/.codesandbox/Dockerfile b/samples/charts/data-chart/data-legend-grouping/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-legend-grouping/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-legend-grouping/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/data-legend-styling/.codesandbox/Dockerfile b/samples/charts/data-chart/data-legend-styling/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-legend-styling/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-legend-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-legend/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-legend/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-grouping/.codesandbox/Dockerfile b/samples/charts/data-chart/data-tooltip-grouping/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-tooltip-grouping/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/data-tooltip-styling/.codesandbox/Dockerfile b/samples/charts/data-chart/data-tooltip-styling/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-tooltip-styling/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-tooltip-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/data-tooltip/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/data-tooltip/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/financial-price-series/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/financial-price-series/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/polar-area-chart-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/polar-area-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/polar-area-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/polar-line-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/polar-line-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/polar-scatter-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/polar-scatter-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/polar-spline-area-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/polar-spline-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/polar-spline-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/radial-area-chart-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/radial-area-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/radial-area-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/radial-column-chart-selection/.codesandbox/Dockerfile b/samples/charts/data-chart/radial-column-chart-selection/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/radial-column-chart-selection/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/radial-column-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/radial-column-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/radial-label-mode/.codesandbox/Dockerfile b/samples/charts/data-chart/radial-label-mode/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/radial-label-mode/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/radial-label-mode/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/radial-line-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/radial-line-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/radial-pie-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/radial-pie-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file 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 index adf04bd95..cd7500bb4 100644 --- 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 @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/range-area-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/range-area-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/range-column-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/range-column-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/scatter-line-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/scatter-line-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/scatter-point-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/scatter-point-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/scatter-spline-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/scatter-spline-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/selection-matcher/.codesandbox/Dockerfile b/samples/charts/data-chart/selection-matcher/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/selection-matcher/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/selection-matcher/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-100-area-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-100-bar-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-100-column-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-100-line-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-100-spline-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-area-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-area-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-bar-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-bar-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-column-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-column-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-line-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-line-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-spline-area-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/stacked-spline-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/stacked-spline-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/transition-event/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/transition-event/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-chart/trendline-layer/.codesandbox/Dockerfile b/samples/charts/data-chart/trendline-layer/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/trendline-layer/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/trendline-layer/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-chart/waterfall-chart/.codesandbox/Dockerfile +++ b/samples/charts/data-chart/waterfall-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation-replay/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/animation-replay/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-pie-chart/animation-replay/.codesandbox/Dockerfile +++ b/samples/charts/data-pie-chart/animation-replay/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/animation/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-pie-chart/animation/.codesandbox/Dockerfile +++ b/samples/charts/data-pie-chart/animation/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/highlight-filter/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/highlight-filter/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-pie-chart/highlight-filter/.codesandbox/Dockerfile +++ b/samples/charts/data-pie-chart/highlight-filter/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/highlighting/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/highlighting/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-pie-chart/highlighting/.codesandbox/Dockerfile +++ b/samples/charts/data-pie-chart/highlighting/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/legend/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/legend/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-pie-chart/legend/.codesandbox/Dockerfile +++ b/samples/charts/data-pie-chart/legend/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/others/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/others/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-pie-chart/others/.codesandbox/Dockerfile +++ b/samples/charts/data-pie-chart/others/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/overview/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/overview/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-pie-chart/overview/.codesandbox/Dockerfile +++ b/samples/charts/data-pie-chart/overview/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/data-pie-chart/selection/.codesandbox/Dockerfile b/samples/charts/data-pie-chart/selection/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/data-pie-chart/selection/.codesandbox/Dockerfile +++ b/samples/charts/data-pie-chart/selection/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/doughnut-chart/legend/.codesandbox/Dockerfile b/samples/charts/doughnut-chart/legend/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/doughnut-chart/legend/.codesandbox/Dockerfile +++ b/samples/charts/doughnut-chart/legend/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/doughnut-chart/overview/.codesandbox/Dockerfile b/samples/charts/doughnut-chart/overview/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/doughnut-chart/overview/.codesandbox/Dockerfile +++ b/samples/charts/doughnut-chart/overview/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/doughnut-chart/rings/.codesandbox/Dockerfile b/samples/charts/doughnut-chart/rings/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/doughnut-chart/rings/.codesandbox/Dockerfile +++ b/samples/charts/doughnut-chart/rings/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/data-legend-formatting-currency/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/data-legend-styling-props/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/data-legend/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/data-legend/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/data-tooltip-styling-props/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/data-tooltip/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/data-tooltip/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/format-specifiers/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/format-specifiers/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/financial-chart/scrollbars/.codesandbox/Dockerfile b/samples/charts/financial-chart/scrollbars/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/financial-chart/scrollbars/.codesandbox/Dockerfile +++ b/samples/charts/financial-chart/scrollbars/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/pie-chart/legend/.codesandbox/Dockerfile b/samples/charts/pie-chart/legend/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/pie-chart/legend/.codesandbox/Dockerfile +++ b/samples/charts/pie-chart/legend/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/pie-chart/others/.codesandbox/Dockerfile b/samples/charts/pie-chart/others/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/pie-chart/others/.codesandbox/Dockerfile +++ b/samples/charts/pie-chart/others/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/pie-chart/overview/.codesandbox/Dockerfile b/samples/charts/pie-chart/overview/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/pie-chart/overview/.codesandbox/Dockerfile +++ b/samples/charts/pie-chart/overview/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/pie-chart/styling/.codesandbox/Dockerfile b/samples/charts/pie-chart/styling/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/pie-chart/styling/.codesandbox/Dockerfile +++ b/samples/charts/pie-chart/styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/sparkline/display-area/.codesandbox/Dockerfile b/samples/charts/sparkline/display-area/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/sparkline/display-area/.codesandbox/Dockerfile +++ b/samples/charts/sparkline/display-area/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/sparkline/display-column/.codesandbox/Dockerfile b/samples/charts/sparkline/display-column/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/sparkline/display-column/.codesandbox/Dockerfile +++ b/samples/charts/sparkline/display-column/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/sparkline/display-lines/.codesandbox/Dockerfile b/samples/charts/sparkline/display-lines/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/sparkline/display-lines/.codesandbox/Dockerfile +++ b/samples/charts/sparkline/display-lines/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/sparkline/display-winloss/.codesandbox/Dockerfile b/samples/charts/sparkline/display-winloss/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/sparkline/display-winloss/.codesandbox/Dockerfile +++ b/samples/charts/sparkline/display-winloss/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/sparkline/markers/.codesandbox/Dockerfile b/samples/charts/sparkline/markers/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/sparkline/markers/.codesandbox/Dockerfile +++ b/samples/charts/sparkline/markers/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/sparkline/normal-range/.codesandbox/Dockerfile b/samples/charts/sparkline/normal-range/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/sparkline/normal-range/.codesandbox/Dockerfile +++ b/samples/charts/sparkline/normal-range/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/sparkline/trendlines/.codesandbox/Dockerfile b/samples/charts/sparkline/trendlines/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/sparkline/trendlines/.codesandbox/Dockerfile +++ b/samples/charts/sparkline/trendlines/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/sparkline/unknown-values/.codesandbox/Dockerfile b/samples/charts/sparkline/unknown-values/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/sparkline/unknown-values/.codesandbox/Dockerfile +++ b/samples/charts/sparkline/unknown-values/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/.codesandbox/Dockerfile +++ b/samples/charts/toolbar/actions-built-in-category-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/.codesandbox/Dockerfile +++ b/samples/charts/toolbar/actions-built-in-data-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/toolbar/color-editor-support/.codesandbox/Dockerfile b/samples/charts/toolbar/color-editor-support/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/toolbar/color-editor-support/.codesandbox/Dockerfile +++ b/samples/charts/toolbar/color-editor-support/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/toolbar/custom-tool/.codesandbox/Dockerfile b/samples/charts/toolbar/custom-tool/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/toolbar/custom-tool/.codesandbox/Dockerfile +++ b/samples/charts/toolbar/custom-tool/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/.codesandbox/Dockerfile +++ b/samples/charts/toolbar/layout-actions-for-data-chart/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/.codesandbox/Dockerfile +++ b/samples/charts/toolbar/layout-in-vertical-orientation/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/toolbar/theming/.codesandbox/Dockerfile b/samples/charts/toolbar/theming/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/toolbar/theming/.codesandbox/Dockerfile +++ b/samples/charts/toolbar/theming/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ 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 index adf04bd95..cd7500bb4 100644 --- a/samples/charts/tree-map/highlighting-percent-based/.codesandbox/Dockerfile +++ b/samples/charts/tree-map/highlighting-percent-based/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting/.codesandbox/Dockerfile b/samples/charts/tree-map/highlighting/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/tree-map/highlighting/.codesandbox/Dockerfile +++ b/samples/charts/tree-map/highlighting/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/tree-map/layout/.codesandbox/Dockerfile b/samples/charts/tree-map/layout/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/tree-map/layout/.codesandbox/Dockerfile +++ b/samples/charts/tree-map/layout/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/tree-map/overview/.codesandbox/Dockerfile b/samples/charts/tree-map/overview/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/tree-map/overview/.codesandbox/Dockerfile +++ b/samples/charts/tree-map/overview/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/charts/tree-map/styling/.codesandbox/Dockerfile b/samples/charts/tree-map/styling/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/charts/tree-map/styling/.codesandbox/Dockerfile +++ b/samples/charts/tree-map/styling/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file diff --git a/samples/inputs/color-editor/overview/.codesandbox/Dockerfile b/samples/inputs/color-editor/overview/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/inputs/color-editor/overview/.codesandbox/Dockerfile +++ b/samples/inputs/color-editor/overview/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file From 8a7985b20aadb23b3f0d8d8097cf6ee35676baea Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Sat, 27 Sep 2025 22:58:17 -0400 Subject: [PATCH 173/183] mdd-update-sample mdd-update-sample --- .../display-azure-imagery/package.json | 69 +++--- .../src/app.component.html | 88 ++++---- .../src/app.component.scss | 97 +++++++-- .../src/app.component.ts | 200 +++++++++++++----- .../display-azure-imagery/src/app.module.ts | 21 +- .../geo-map/display-azure-imagery/src/main.ts | 1 + 6 files changed, 327 insertions(+), 149 deletions(-) diff --git a/samples/maps/geo-map/display-azure-imagery/package.json b/samples/maps/geo-map/display-azure-imagery/package.json index 97a35bbbc..ee04e7c26 100644 --- a/samples/maps/geo-map/display-azure-imagery/package.json +++ b/samples/maps/geo-map/display-azure-imagery/package.json @@ -1,46 +1,43 @@ { + "name": "demo", + "version": "0.0.0", "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" + "start": "ng serve", + "build": "ng build", + "watch": "ng build --watch --configuration development", + "test": "ng test" }, + "private": true, "dependencies": { - "@angular/animations": "20.0.1", - "@angular/common": "20.0.1", - "@angular/compiler": "20.0.1", - "@angular/core": "20.0.1", - "@angular/forms": "20.0.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": "20.1.0-rc.2", - "igniteui-angular-charts": "20.0.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "@angular/animations": "20.3.2", + "@angular/common": "20.3.2", + "@angular/compiler": "20.3.2", + "@angular/core": "20.3.2", + "@angular/forms": "20.3.2", + "@angular/platform-browser": "20.3.2", + "@angular/platform-browser-dynamic": "20.3.2", + "@angular/router": "20.3.2", + "hammerjs": "^2.0.8", + "igniteui-angular": "20.1.0", + "igniteui-angular-charts": "^20.0.2-beta.3", + "igniteui-angular-core": "^20.0.2-beta.3", "igniteui-angular-maps": "20.0.2-beta.3", - "intl": "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" + "rxjs": "~7.8.2", + "tslib": "^2.8.1", + "zone.js": "~0.15.1" }, "devDependencies": { - "@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", - "jasmine-spec-reporter": "~4.2.1", - "sass.js": "0.11.1", - "ts-node": "10.9.1", - "tslint": "~6.1.3", - "typescript": "5.8.3" + "@angular-devkit/build-angular": "20.3.2", + "@angular/cli": "20.3.2", + "@angular/compiler-cli": "20.3.2", + "@types/jasmine": "~5.1.9", + "jasmine-core": "~5.10.0", + "karma": "~6.4.4", + "karma-chrome-launcher": "~3.2.0", + "karma-coverage": "~2.2.1", + "karma-jasmine": "~5.1.0", + "karma-jasmine-html-reporter": "~2.1.0", + "typescript": "~5.8.3" } } diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.html b/samples/maps/geo-map/display-azure-imagery/src/app.component.html index bd3fabe03..8d5024301 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.component.html +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.html @@ -1,42 +1,56 @@ -
-

* Note, if no key is entered, an image will be shown reflecting what the map will look like.

-
+
- - -
- vpn_key -
Azure Map Authentication
-
-
+ +
+ + -
- - - - -
+ + + + {{ s }} + + +
+ + + +
+
+

Azure Key

+
-
- - -
- +
+ + +
+ +
+ + +
+
+
-
- - Satellite View - Road View + +
+ + Map Imagery - - - - - -
\ No newline at end of file + + + + +
+
diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.scss b/samples/maps/geo-map/display-azure-imagery/src/app.component.scss index 0b1ef3bb9..d9ec08f32 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.component.scss +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.scss @@ -1,26 +1,89 @@ -:host { - display: inline; - padding: 16px; +/* Overall container centers everything like WC */ +.container.sample.center { + display: flex; + flex-direction: column; + align-items: center; + gap: 4px; + width: 100%; + margin-top: 10px; + font-family: 'Titillium Web', sans-serif; } -.keyInForm { - igx-input-group + igx-input-group { - margin-top: 24px; - } +/* Controls row: button + select + preview thumbnail */ +.controls-row { + display: flex; + gap: 8px; + align-items: center; + margin-bottom: 0rem; + + button[igxButton] { + min-width: 240px; + } + + igx-select { + width: 240px; + } + + .preview-current img { + width: 40px; + height: 40px; + border: 1px solid #ccc; + object-fit: cover; + border-radius: 4px; + } } -.dialog-container{ - display: flex; +/* Map container centers map/placeholder like WC */ +.map-container { + width: 100%; + display: flex; + justify-content: center; + margin-top: 8px; - igx-icon { - margin-right: 8px; - } + .placeholder { + width: 100%; + max-width: 800px; + border: 1px solid #ccc; + border-radius: 4px; + object-fit: cover; + } + + igx-geographic-map { + width: 100%; + max-width: 800px; + height: 500px; + } } -.hidden { - display: none; +/* Dialog header and content spacing */ +.dialog-header { + padding-bottom: 0.5rem; + text-align: left; } -.show { - display: inline; -} \ No newline at end of file +.dialog-content { + display: flex; + flex-direction: column; + gap: 12px; + + input[type='text'] { + padding: 0.4rem; + border-radius: 4px; + border: 1px solid #ccc; + font-size: 14px; + } +} + +/* Dialog actions: buttons on right side */ +.dialog-actions { + margin-top: 16px; + display: flex; + justify-content: flex-end; + gap: 8px; + + button { + min-width: 80px; + padding: 0.4rem 1rem; + border-radius: 4px; + } +} diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.ts b/samples/maps/geo-map/display-azure-imagery/src/app.component.ts index e9da18b34..03918d0fe 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.component.ts +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.ts @@ -1,61 +1,159 @@ -import { AfterViewInit, Component, ViewChild } from "@angular/core"; -import { AzureMapsImageryStyle, GeographicMapImagery, IgxGeographicMapImagery } from "igniteui-angular-maps"; -import { IgxAzureMapsImagery } from "igniteui-angular-maps"; -import { IgxGeographicMapComponent } from "igniteui-angular-maps"; -import { IgxDialogComponent } from "igniteui-angular"; +import { Component, ViewChild, OnInit, AfterViewInit } from '@angular/core'; +import { NgForm } from '@angular/forms'; +import { + AzureMapsImageryStyle, + IgxAzureMapsImagery, + IgxGeographicMapComponent, + IgxGeographicTileSeriesComponent +} from 'igniteui-angular-maps'; +import { + IgxDialogComponent, + IgxSelectComponent +} from 'igniteui-angular'; +import { MapRegion, MapUtility } from './MapUtility'; @Component({ - standalone: false, - selector: "app-root", - styleUrls: ["./app.component.scss"], - templateUrl: "./app.component.html" + selector: 'app-root', + templateUrl: './app.component.html', + styleUrls: ['./app.component.scss'], + standalone: false }) +export class AppComponent implements OnInit, AfterViewInit { -export class AppComponent implements AfterViewInit { - - @ViewChild("map", { static: true }) - public map: IgxGeographicMapComponent; - @ViewChild("map2", { static: true }) - public map2: IgxGeographicMapComponent; - public apiKey: string; - @ViewChild("form", { static: true }) - public form!: IgxDialogComponent; - - showMap = false; // Controls visibility of maps - showImages = true; // Controls visibility of images - - public applyApiKey(key: string) { - if (!key) return; - this.apiKey = key; - - // Wait for the next tick to ensure the map is in the DOM - setTimeout(() => { - if (this.map && this.map2) { - const azureImagery = new IgxAzureMapsImagery(); - azureImagery.apiKey = this.apiKey; - azureImagery.imageryStyle = AzureMapsImageryStyle.Satellite; - this.map.backgroundContent = azureImagery; - - const azureImagery2 = new IgxAzureMapsImagery(); - azureImagery2.apiKey = this.apiKey; - azureImagery2.imageryStyle = AzureMapsImageryStyle.Road; - this.map2.backgroundContent = azureImagery2; - } - }); + @ViewChild('map', { static: false }) map!: IgxGeographicMapComponent; + @ViewChild('tileSeries', { static: false }) tileSeries!: IgxGeographicTileSeriesComponent; + @ViewChild('dialog', { static: false }) dialog!: IgxDialogComponent; + @ViewChild('styleSelect', { static: false }) styleSelect!: IgxSelectComponent; + + // Bound to the input in the dialog + public apiKeyInputValue: string = ''; + + public azureTile!: IgxAzureMapsImagery; + public azureBackground!: IgxAzureMapsImagery; + public apiKey?: string; + public styleChangeTimeout?: number; + + public styleOptions: string[] = []; + public selectedStyle!: string; + public previewImageSrc: string = ''; + + public styleConfig: Record void }> = { + Satellite: { placeholder: "https://static.infragistics.com/xplatform/images/browsers/azure-maps/azure_satellite.png", zoom: () => this.zoomUS() }, + Road: { placeholder: "https://static.infragistics.com/xplatform/images/browsers/azure-maps/azure_road.png", zoom: () => this.zoomUS() }, + DarkGrey: { placeholder: "https://static.infragistics.com/xplatform/images/browsers/azure-maps/azure_darkgrey.png", zoom: () => this.zoomUS() }, + TerraOverlay: { placeholder: "https://static.infragistics.com/xplatform/images/browsers/azure-maps/azure_terra_overlay.png", background: AzureMapsImageryStyle.Satellite, zoom: () => this.zoomUS() }, + HybridRoadOverlay: { placeholder: "https://static.infragistics.com/xplatform/images/browsers/azure-maps/AzureHybridRoad.png", background: AzureMapsImageryStyle.Satellite, zoom: () => this.zoomUS() }, + HybridDarkGreyOverlay: { placeholder: "https://static.infragistics.com/xplatform/images/browsers/azure-maps/azure_hybriddarkgrey.png", background: AzureMapsImageryStyle.Satellite, zoom: () => this.zoomUS() }, + LabelsRoadOverlay: { placeholder: "https://static.infragistics.com/xplatform/images/browsers/azure-maps/azure_labelsroad.png", background: AzureMapsImageryStyle.Satellite, zoom: () => this.zoomUS() }, + LabelsDarkGreyOverlay: { placeholder: "https://static.infragistics.com/xplatform/images/browsers/azure-maps/azure_labelsdarkgrey.png", background: AzureMapsImageryStyle.Satellite, zoom: () => this.zoomUS() }, + TrafficDelayOverlay: { placeholder: "https://static.infragistics.com/xplatform/images/browsers/azure-maps/azure_trafficdelay.png", background: AzureMapsImageryStyle.DarkGrey, zoom: () => this.zoomNY() }, + TrafficAbsoluteOverlay: { placeholder: "https://static.infragistics.com/xplatform/images/browsers/azure-maps/azure_traffic_absolute.png", background: AzureMapsImageryStyle.DarkGrey, zoom: () => this.zoomNY() }, + TrafficReducedOverlay: { placeholder: "https://static.infragistics.com/xplatform/images/browsers/azure-maps/azure_traffic_light.png", background: AzureMapsImageryStyle.DarkGrey, zoom: () => this.zoomNY() }, + TrafficRelativeOverlay: { placeholder: "https://static.infragistics.com/xplatform/images/browsers/azure-maps/azure_traffic_relative.png", background: AzureMapsImageryStyle.DarkGrey, zoom: () => this.zoomNY() }, + WeatherInfraredOverlay: { placeholder: "https://static.infragistics.com/xplatform/images/browsers/azure-maps/azure_weather_Infrared_road.png", background: AzureMapsImageryStyle.DarkGrey, zoom: () => this.zoomUS() }, + WeatherRadarOverlay: { placeholder: "https://static.infragistics.com/xplatform/images/browsers/azure-maps/azure_weather_radar.png", background: AzureMapsImageryStyle.DarkGrey, zoom: () => this.zoomUS() } + }; + + ngOnInit(): void { + // Preload preview images + Object.values(this.styleConfig).forEach(cfg => new Image().src = cfg.placeholder); + + // Populate dropdown options + default style + this.styleOptions = Object.keys(this.styleConfig); + this.selectedStyle = this.styleOptions[0]; + this.previewImageSrc = this.styleConfig[this.selectedStyle].placeholder; + } + + ngAfterViewInit(): void { + // We'll initialize tile imagery after the user sets the API key + } + + public openDialog() { + this.dialog.open(); + } + + private zoomUS() { + if (this.map) MapUtility.navigateTo(this.map, MapRegion.UnitedStates); + } + + private zoomNY() { + if (this.map) { + this.map.zoomToGeographic({ + left: -74.2591, + top: 40.9176, + width: -73.7004 - (-74.2591), + height: 40.4774 - 40.9176 + }); } + } + + private setApiKey(key: string) { + this.apiKey = key; - constructor() { + // create azureTile & background if not yet + if (!this.azureTile) { + this.azureTile = new IgxAzureMapsImagery(); + this.tileSeries.tileImagery = this.azureTile; + } + if (!this.azureBackground) { + this.azureBackground = new IgxAzureMapsImagery(); + this.azureBackground.imageryStyle = AzureMapsImageryStyle.DarkGrey; + this.map.backgroundContent = this.azureBackground; } - public ngAfterViewInit(): void { - - - setTimeout(() => { - if (this.form) { - - this.form.open(); - } - }); + this.azureTile.apiKey = key; + this.azureBackground.apiKey = key; + } + + public onSubmit(form: NgForm) { + const key = this.apiKeyInputValue; + if (!key) return; + + this.setApiKey(key); + if (this.selectedStyle) this.updateAzureMap(this.selectedStyle); + + // Close the dialog first, then reset form after a tick + setTimeout(() => { + this.dialog.close(); + form.resetForm(); + }); + } + + public onReset(form: NgForm) { + this.apiKey = undefined; + this.apiKeyInputValue = ''; + if (this.azureTile) this.azureTile.apiKey = ''; + if (this.azureBackground) this.azureBackground.apiKey = ''; + this.previewImageSrc = this.styleConfig[this.selectedStyle].placeholder; + + setTimeout(() => { + this.dialog.close(); + form.resetForm(); + }); + } + + public onStyleChange(value: string) { + const cfg = this.styleConfig[value]; + if (!cfg) return; + + this.previewImageSrc = cfg.placeholder; + + if (this.apiKey) { + if (this.styleChangeTimeout) clearTimeout(this.styleChangeTimeout); + this.styleChangeTimeout = window.setTimeout(() => this.updateAzureMap(value), 30); } - + } + + private updateAzureMap(styleName: string) { + if (!this.azureTile || !this.azureBackground) return; + + const cfg = this.styleConfig[styleName]; + if (!cfg) return; + + this.azureTile.imageryStyle = + AzureMapsImageryStyle[styleName as keyof typeof AzureMapsImageryStyle]; + + this.azureBackground.imageryStyle = cfg.background ?? AzureMapsImageryStyle.DarkGrey; + cfg.zoom(); + } } diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.module.ts b/samples/maps/geo-map/display-azure-imagery/src/app.module.ts index 00c54f7a7..2e023fdcf 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.module.ts +++ b/samples/maps/geo-map/display-azure-imagery/src/app.module.ts @@ -1,19 +1,21 @@ -import { NgModule } from "@angular/core"; +import { NgModule, CUSTOM_ELEMENTS_SCHEMA } 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"; + +// Ignite UI Maps & Charts import { IgxAzureMapsImageryModule, IgxGeographicMapModule } from "igniteui-angular-maps"; import { IgxDataChartInteractivityModule } from "igniteui-angular-charts"; -import { IgxDialogModule, IgxIconModule, IgxInputGroupModule } from "igniteui-angular"; +// Ignite UI Angular components +import { IgxButtonModule, IgxDialogModule, IgxIconModule, IgxInputGroupModule, IgxSelectModule } from "igniteui-angular"; @NgModule({ - bootstrap: [AppComponent], declarations: [ AppComponent -], + ], imports: [ BrowserModule, BrowserAnimationsModule, @@ -22,11 +24,14 @@ import { IgxDialogModule, IgxIconModule, IgxInputGroupModule } from "igniteui-an IgxGeographicMapModule, IgxAzureMapsImageryModule, IgxDataChartInteractivityModule, - IgxDialogModule, + IgxDialogModule, IgxInputGroupModule, - IgxIconModule -], + IgxIconModule, + IgxButtonModule, + IgxSelectModule // <-- Add this for the dropdown combo + ], providers: [], - schemas: [] + bootstrap: [AppComponent], + schemas: [CUSTOM_ELEMENTS_SCHEMA] // <-- Needed to allow Web Components like igx-combo }) export class AppModule {} diff --git a/samples/maps/geo-map/display-azure-imagery/src/main.ts b/samples/maps/geo-map/display-azure-imagery/src/main.ts index ec9adcd4a..d203a2594 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/main.ts +++ b/samples/maps/geo-map/display-azure-imagery/src/main.ts @@ -3,6 +3,7 @@ import "./polyfills"; import { enableProdMode } from "@angular/core"; import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; import { AppModule } from "./app.module"; +import 'hammerjs'; platformBrowserDynamic().bootstrapModule(AppModule).then(ref => { // ensure Angular destroys itself on hot reloads. From 50996f8c8b65b3f84cf6867d764ddb57962f3e7a Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Sat, 27 Sep 2025 23:00:48 -0400 Subject: [PATCH 174/183] Update app.component.scss --- .../maps/geo-map/display-azure-imagery/src/app.component.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.scss b/samples/maps/geo-map/display-azure-imagery/src/app.component.scss index d9ec08f32..e251c7fa3 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.component.scss +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.scss @@ -50,7 +50,7 @@ igx-geographic-map { width: 100%; - max-width: 800px; + max-width: 100%; height: 500px; } } From 53127ba4129f3cd45952944293501c887386c2fa Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Sat, 27 Sep 2025 23:04:37 -0400 Subject: [PATCH 175/183] Update Dockerfile --- .../maps/geo-map/display-azure-imagery/.codesandbox/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/maps/geo-map/display-azure-imagery/.codesandbox/Dockerfile b/samples/maps/geo-map/display-azure-imagery/.codesandbox/Dockerfile index adf04bd95..cd7500bb4 100644 --- a/samples/maps/geo-map/display-azure-imagery/.codesandbox/Dockerfile +++ b/samples/maps/geo-map/display-azure-imagery/.codesandbox/Dockerfile @@ -1 +1 @@ -FROM node:18 \ No newline at end of file +FROM node:20 \ No newline at end of file From cf8cb9bf6f52e35287768f290448c019f154fc63 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Mon, 29 Sep 2025 12:18:08 -0400 Subject: [PATCH 176/183] mdd-update mdd-update --- .../src/app.component.html | 2 +- .../src/app.component.scss | 98 ++++--------------- 2 files changed, 21 insertions(+), 79 deletions(-) diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.html b/samples/maps/geo-map/display-azure-imagery/src/app.component.html index 8d5024301..2318d0791 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.component.html +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.html @@ -18,7 +18,7 @@
- +

Azure Key

diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.scss b/samples/maps/geo-map/display-azure-imagery/src/app.component.scss index e251c7fa3..83e8fa151 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.component.scss +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.scss @@ -1,89 +1,31 @@ -/* Overall container centers everything like WC */ -.container.sample.center { - display: flex; - flex-direction: column; - align-items: center; - gap: 4px; - width: 100%; - margin-top: 10px; - font-family: 'Titillium Web', sans-serif; +:host { + display: inline; + padding: 16px; } -/* Controls row: button + select + preview thumbnail */ -.controls-row { - display: flex; - gap: 8px; - align-items: center; - margin-bottom: 0rem; - - button[igxButton] { - min-width: 240px; - } - - igx-select { - width: 240px; - } - - .preview-current img { - width: 40px; - height: 40px; - border: 1px solid #ccc; - object-fit: cover; - border-radius: 4px; - } +.keyInForm { + igx-input-group + igx-input-group { + margin-top: 24px; + } } -/* Map container centers map/placeholder like WC */ -.map-container { - width: 100%; - display: flex; - justify-content: center; - margin-top: 8px; - - .placeholder { - width: 100%; - max-width: 800px; - border: 1px solid #ccc; - border-radius: 4px; - object-fit: cover; - } +.dialog-container{ + display: flex; - igx-geographic-map { - width: 100%; - max-width: 100%; - height: 500px; - } + igx-icon { + margin-right: 8px; + } } -/* Dialog header and content spacing */ -.dialog-header { - padding-bottom: 0.5rem; - text-align: left; +.hidden { + display: none; } -.dialog-content { - display: flex; - flex-direction: column; - gap: 12px; - - input[type='text'] { - padding: 0.4rem; - border-radius: 4px; - border: 1px solid #ccc; - font-size: 14px; - } +.show { + display: inline; } -/* Dialog actions: buttons on right side */ -.dialog-actions { - margin-top: 16px; - display: flex; - justify-content: flex-end; - gap: 8px; - - button { - min-width: 80px; - padding: 0.4rem 1rem; - border-radius: 4px; - } -} +::ng-deep igx-dialog.custom-dialog { + width: 400px; + height: auto; +} \ No newline at end of file From 6bdc5fb8ad0807b3f765c5b69b79cfd0768e7470 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Mon, 29 Sep 2025 12:32:02 -0400 Subject: [PATCH 177/183] update update --- .../geo-map/display-azure-imagery/src/app.component.html | 2 +- .../geo-map/display-azure-imagery/src/app.component.ts | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.html b/samples/maps/geo-map/display-azure-imagery/src/app.component.html index 2318d0791..d4a06c2ca 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.component.html +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.html @@ -49,7 +49,7 @@

Azure Key

style="position:absolute; z-index:1; width:100%; height:500px; object-fit:cover;" /> - +
diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.ts b/samples/maps/geo-map/display-azure-imagery/src/app.component.ts index 03918d0fe..038299c80 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.component.ts +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.ts @@ -36,6 +36,7 @@ export class AppComponent implements OnInit, AfterViewInit { public styleOptions: string[] = []; public selectedStyle!: string; public previewImageSrc: string = ''; + public isMapHidden = true; public styleConfig: Record void }> = { Satellite: { placeholder: "https://static.infragistics.com/xplatform/images/browsers/azure-maps/azure_satellite.png", zoom: () => this.zoomUS() }, @@ -105,13 +106,17 @@ export class AppComponent implements OnInit, AfterViewInit { this.azureBackground.apiKey = key; } + showMap() { + this.isMapHidden = false; + } + public onSubmit(form: NgForm) { const key = this.apiKeyInputValue; if (!key) return; this.setApiKey(key); if (this.selectedStyle) this.updateAzureMap(this.selectedStyle); - + this.showMap(); // Close the dialog first, then reset form after a tick setTimeout(() => { this.dialog.close(); From e533e5d4885442db6ceeab9130705680989b07f1 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Mon, 29 Sep 2025 12:40:00 -0400 Subject: [PATCH 178/183] mdd-update mdd-update --- .../maps/geo-map/display-azure-imagery/src/app.component.html | 2 +- .../maps/geo-map/display-azure-imagery/src/app.component.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.html b/samples/maps/geo-map/display-azure-imagery/src/app.component.html index d4a06c2ca..75dc9f3f8 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.component.html +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.html @@ -1,5 +1,5 @@
+ style="flex-direction:column; align-items:center; gap:2px;">
diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.scss b/samples/maps/geo-map/display-azure-imagery/src/app.component.scss index 83e8fa151..f1d947230 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.component.scss +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.scss @@ -1,6 +1,6 @@ :host { display: inline; - padding: 16px; + padding: 0px; } .keyInForm { From 5987c85fec5752c6d03c7bf270c2c4ed0ba0e9be Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Mon, 29 Sep 2025 14:34:37 -0400 Subject: [PATCH 179/183] mdd-update-node-v18 (#358) mdd-update-node-v18 From d157201b9dea9339b3af26a4d438646708d370b2 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Mon, 29 Sep 2025 15:35:33 -0400 Subject: [PATCH 180/183] mdd-update mdd-update --- .../src/app.component.html | 24 ++++------ .../src/app.component.scss | 46 ++++++++++++++++++- 2 files changed, 54 insertions(+), 16 deletions(-) diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.html b/samples/maps/geo-map/display-azure-imagery/src/app.component.html index 75dc9f3f8..486b81104 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.component.html +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.html @@ -1,12 +1,10 @@
- -
- + +
- Azure Key - -
- - Map Imagery - - - - - -
+ +
+ Map Imagery + + + +
diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.scss b/samples/maps/geo-map/display-azure-imagery/src/app.component.scss index f1d947230..d5623b9c8 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.component.scss +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.scss @@ -28,4 +28,48 @@ ::ng-deep igx-dialog.custom-dialog { width: 400px; height: auto; -} \ No newline at end of file +} + +/* === Map layout fixes for iframe === */ +.container { + display: flex; + flex-direction: column; + align-items: center; +} + +/* Controls always on top */ +.controls-row { + display: flex; + gap: 8px; + align-items: center; + position: relative; + z-index: 10; /* ensures above map */ +} + +/* Map container fixed height */ +.map-container { + position: relative; + width: 100%; + height: 500px; /* same as React sample */ + z-index: 0; +} + +/* Placeholder image overlays map but lets clicks through */ +.map-container img.placeholder { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + object-fit: cover; + z-index: 1; + pointer-events: none; +} + +/* Map fills its container but stays below controls */ +.map-container igx-geographic-map { + position: relative; + width: 100%; + height: 100%; + z-index: 0; +} From 9a129a373520a110feea421b840dfad7b5f72eca Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Mon, 29 Sep 2025 18:46:38 -0400 Subject: [PATCH 181/183] Update app.component.ts --- .../maps/geo-map/display-azure-imagery/src/app.component.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/samples/maps/geo-map/display-azure-imagery/src/app.component.ts b/samples/maps/geo-map/display-azure-imagery/src/app.component.ts index 038299c80..651af83e4 100644 --- a/samples/maps/geo-map/display-azure-imagery/src/app.component.ts +++ b/samples/maps/geo-map/display-azure-imagery/src/app.component.ts @@ -67,6 +67,12 @@ export class AppComponent implements OnInit, AfterViewInit { ngAfterViewInit(): void { // We'll initialize tile imagery after the user sets the API key + // Open dialog automatically after view initializes + setTimeout(() => { + if (this.dialog) { + this.dialog.open(); + } + }); } public openDialog() { From c807b37b5616346ee4618e40d550ab28491415c4 Mon Sep 17 00:00:00 2001 From: IGvaleries Date: Tue, 30 Sep 2025 12:17:44 -0400 Subject: [PATCH 182/183] update packages to Oct 2025 SR --- 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 ++-- .../data-chart/trendline-layer/package.json | 4 +- .../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 +-- .../display-azure-imagery/package.json | 40 +++++++++---------- .../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 +-- 377 files changed, 992 insertions(+), 992 deletions(-) diff --git a/browser/package.json b/browser/package.json index e947862e0..30ec9a88f 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.1.0-rc.2", - "igniteui-angular-charts": "20.0.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-dashboards": "20.0.2-beta.3", - "igniteui-angular-data-grids": "20.0.2-beta.3", - "igniteui-angular-excel": "20.0.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", - "igniteui-angular-spreadsheet": "20.0.2-beta.3", - "igniteui-angular-spreadsheet-chart-adapter": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-dashboards": "20.1.0", + "igniteui-angular-data-grids": "20.1.0", + "igniteui-angular-excel": "20.1.0", + "igniteui-angular-gauges": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", + "igniteui-angular-maps": "20.1.0", + "igniteui-angular-spreadsheet": "20.1.0", + "igniteui-angular-spreadsheet-chart-adapter": "20.1.0", "igniteui-theming": "20.0.0", "igniteui-webcomponents": "6.3.1", "immediate": "3.2.3", diff --git a/browser/scripts/browser.js b/browser/scripts/browser.js index c034ff594..b761e8d90 100644 --- a/browser/scripts/browser.js +++ b/browser/scripts/browser.js @@ -1106,18 +1106,18 @@ function updateIG(cb) { // { version: "14.1.0", name: "igniteui-angular-charts" }, // NPM let packageUpgrades = [ // these IG packages are often updated: - { version: "20.0.2-beta.3", name: "igniteui-angular-core" }, - { version: "20.0.2-beta.3", name: "igniteui-angular-charts" }, - { version: "20.0.2-beta.3", name: "igniteui-angular-excel" }, - { version: "20.0.2-beta.3", name: "igniteui-angular-gauges" }, - { version: "20.0.2-beta.3", name: "igniteui-angular-data-grids" }, - { version: "20.0.2-beta.3", name: "igniteui-angular-inputs" }, - { version: "20.0.2-beta.3", name: "igniteui-angular-layouts" }, - { version: "20.0.2-beta.3", name: "igniteui-angular-maps" }, - { version: "20.0.2-beta.3", name: "igniteui-angular-spreadsheet-chart-adapter" }, - { version: "20.0.2-beta.3", name: "igniteui-angular-spreadsheet" }, - { version: "20.0.2-beta.3", name: "igniteui-angular-datasources" }, - { version: "20.0.2-beta.3", name: "igniteui-angular-dashboards" }, + { version: "20.1.0", name: "igniteui-angular-core" }, + { version: "20.1.0", name: "igniteui-angular-charts" }, + { version: "20.1.0", name: "igniteui-angular-excel" }, + { version: "20.1.0", name: "igniteui-angular-gauges" }, + { version: "20.1.0", name: "igniteui-angular-data-grids" }, + { version: "20.1.0", name: "igniteui-angular-inputs" }, + { version: "20.1.0", name: "igniteui-angular-layouts" }, + { version: "20.1.0", name: "igniteui-angular-maps" }, + { version: "20.1.0", name: "igniteui-angular-spreadsheet-chart-adapter" }, + { version: "20.1.0", name: "igniteui-angular-spreadsheet" }, + { version: "20.1.0", name: "igniteui-angular-datasources" }, + { version: "20.1.0", name: "igniteui-angular-dashboards" }, // these IG packages are sometimes updated: { version: "6.3.1" , name: "igniteui-webcomponents" }, { version: "20.0.0", name: "igniteui-theming" }, diff --git a/browser/src/browser-info.json b/browser/src/browser-info.json index d7feda579..bcd9a61c5 100644 --- a/browser/src/browser-info.json +++ b/browser/src/browser-info.json @@ -1,16 +1,16 @@ [ {"ver":"20.1.0-rc.2","name":"igniteui-angular"}, -{"ver":"20.0.2-beta.3","name":"igniteui-angular-charts"}, -{"ver":"20.0.2-beta.3","name":"igniteui-angular-core"}, -{"ver":"20.0.2-beta.3","name":"igniteui-angular-dashboards"}, -{"ver":"20.0.2-beta.3","name":"igniteui-angular-data-grids"}, -{"ver":"20.0.2-beta.3","name":"igniteui-angular-excel"}, -{"ver":"20.0.2-beta.3","name":"igniteui-angular-gauges"}, -{"ver":"20.0.2-beta.3","name":"igniteui-angular-inputs"}, -{"ver":"20.0.2-beta.3","name":"igniteui-angular-layouts"}, -{"ver":"20.0.2-beta.3","name":"igniteui-angular-maps"}, -{"ver":"20.0.2-beta.3","name":"igniteui-angular-spreadsheet"}, -{"ver":"20.0.2-beta.3","name":"igniteui-angular-spreadsheet-chart-adapter"}, +{"ver":"20.1.0","name":"igniteui-angular-charts"}, +{"ver":"20.1.0","name":"igniteui-angular-core"}, +{"ver":"20.1.0","name":"igniteui-angular-dashboards"}, +{"ver":"20.1.0","name":"igniteui-angular-data-grids"}, +{"ver":"20.1.0","name":"igniteui-angular-excel"}, +{"ver":"20.1.0","name":"igniteui-angular-gauges"}, +{"ver":"20.1.0","name":"igniteui-angular-inputs"}, +{"ver":"20.1.0","name":"igniteui-angular-layouts"}, +{"ver":"20.1.0","name":"igniteui-angular-maps"}, +{"ver":"20.1.0","name":"igniteui-angular-spreadsheet"}, +{"ver":"20.1.0","name":"igniteui-angular-spreadsheet-chart-adapter"}, {"ver":"20.0.0","name":"igniteui-theming"}, {"ver":"6.3.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 c7d63d8c8..47d9fdd45 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.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 81ffd0983..e3342796a 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.1.0-rc.2", - "igniteui-angular-charts": "20.0.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 81ffd0983..e3342796a 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.1.0-rc.2", - "igniteui-angular-charts": "20.0.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 2f13b5d62..82730678b 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-dashboards": "20.0.2-beta.3", - "igniteui-angular-data-grids": "20.0.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-dashboards": "20.1.0", + "igniteui-angular-data-grids": "20.1.0", + "igniteui-angular-gauges": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", + "igniteui-angular-maps": "20.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 af7e24d54..0d30e27e9 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-dashboards": "20.0.2-beta.3", - "igniteui-angular-data-grids": "20.0.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-dashboards": "20.1.0", + "igniteui-angular-data-grids": "20.1.0", + "igniteui-angular-gauges": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", + "igniteui-angular-maps": "20.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 af7e24d54..0d30e27e9 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-dashboards": "20.0.2-beta.3", - "igniteui-angular-data-grids": "20.0.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-dashboards": "20.1.0", + "igniteui-angular-data-grids": "20.1.0", + "igniteui-angular-gauges": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", + "igniteui-angular-maps": "20.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 af7e24d54..0d30e27e9 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-dashboards": "20.0.2-beta.3", - "igniteui-angular-data-grids": "20.0.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-dashboards": "20.1.0", + "igniteui-angular-data-grids": "20.1.0", + "igniteui-angular-gauges": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", + "igniteui-angular-maps": "20.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 af7e24d54..0d30e27e9 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-dashboards": "20.0.2-beta.3", - "igniteui-angular-data-grids": "20.0.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-dashboards": "20.1.0", + "igniteui-angular-data-grids": "20.1.0", + "igniteui-angular-gauges": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", + "igniteui-angular-maps": "20.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 af7e24d54..0d30e27e9 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-dashboards": "20.0.2-beta.3", - "igniteui-angular-data-grids": "20.0.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-dashboards": "20.1.0", + "igniteui-angular-data-grids": "20.1.0", + "igniteui-angular-gauges": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", + "igniteui-angular-maps": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 858546dee..ef850fb71 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 c7d63d8c8..47d9fdd45 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.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 c7d63d8c8..47d9fdd45 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.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 c7d63d8c8..47d9fdd45 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "intl": "1.2.5", "jszip": "3.8.0", diff --git a/samples/charts/data-chart/trendline-layer/package.json b/samples/charts/data-chart/trendline-layer/package.json index 997b64b11..805713fba 100644 --- a/samples/charts/data-chart/trendline-layer/package.json +++ b/samples/charts/data-chart/trendline-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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 c7d63d8c8..47d9fdd45 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 c7d63d8c8..47d9fdd45 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 c3dfca8bf..dac4bd734 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.1.0-rc.2", - "igniteui-angular-charts": "20.0.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", "igniteui-theming": "20.0.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 5c1875733..6d4325c52 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-data-grids": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-data-grids": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.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 c7d63d8c8..47d9fdd45 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.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 c7d63d8c8..47d9fdd45 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.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 c7d63d8c8..47d9fdd45 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.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 c7d63d8c8..47d9fdd45 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.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 c7d63d8c8..47d9fdd45 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 81ffd0983..e3342796a 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.1.0-rc.2", - "igniteui-angular-charts": "20.0.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 1123ccf63..a5157e390 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", - "igniteui-angular-layouts": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.1.0", + "igniteui-angular-layouts": "20.1.0", "igniteui-webcomponents": "6.3.1", "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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 997b64b11..805713fba 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 b06c464f4..c3015a8c0 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.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 2fcae5972..bdbd8ed7a 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.1.0-rc.2", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-excel": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-excel": "20.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 28f3a91c1..2509c6bbc 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.2-beta.3", - "igniteui-angular-excel": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-excel": "20.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 28f3a91c1..2509c6bbc 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.2-beta.3", - "igniteui-angular-excel": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-excel": "20.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 28f3a91c1..2509c6bbc 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.2-beta.3", - "igniteui-angular-excel": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-excel": "20.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 cf68e0027..9e57cf34d 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.1.0-rc.2", - "igniteui-angular-charts": "20.0.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-excel": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-excel": "20.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 cf68e0027..9e57cf34d 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.1.0-rc.2", - "igniteui-angular-charts": "20.0.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-excel": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-excel": "20.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 acc6dea65..7c78b95f4 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.2-beta.3", - "igniteui-angular-excel": "20.0.2-beta.3", - "igniteui-angular-spreadsheet": "20.0.2-beta.3", - "igniteui-angular-spreadsheet-chart-adapter": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-excel": "20.1.0", + "igniteui-angular-spreadsheet": "20.1.0", + "igniteui-angular-spreadsheet-chart-adapter": "20.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 7cee78202..329b6fd2f 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.2-beta.3", - "igniteui-angular-excel": "20.0.2-beta.3", - "igniteui-angular-spreadsheet": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-excel": "20.1.0", + "igniteui-angular-spreadsheet": "20.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 f7e12763e..18577f0ff 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-excel": "20.0.2-beta.3", - "igniteui-angular-spreadsheet": "20.0.2-beta.3", - "igniteui-angular-spreadsheet-chart-adapter": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-excel": "20.1.0", + "igniteui-angular-spreadsheet": "20.1.0", + "igniteui-angular-spreadsheet-chart-adapter": "20.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 f7e12763e..18577f0ff 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-excel": "20.0.2-beta.3", - "igniteui-angular-spreadsheet": "20.0.2-beta.3", - "igniteui-angular-spreadsheet-chart-adapter": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-excel": "20.1.0", + "igniteui-angular-spreadsheet": "20.1.0", + "igniteui-angular-spreadsheet-chart-adapter": "20.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 7cee78202..329b6fd2f 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.2-beta.3", - "igniteui-angular-excel": "20.0.2-beta.3", - "igniteui-angular-spreadsheet": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-excel": "20.1.0", + "igniteui-angular-spreadsheet": "20.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 7cee78202..329b6fd2f 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.2-beta.3", - "igniteui-angular-excel": "20.0.2-beta.3", - "igniteui-angular-spreadsheet": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-excel": "20.1.0", + "igniteui-angular-spreadsheet": "20.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 7cee78202..329b6fd2f 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.2-beta.3", - "igniteui-angular-excel": "20.0.2-beta.3", - "igniteui-angular-spreadsheet": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-excel": "20.1.0", + "igniteui-angular-spreadsheet": "20.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 7cee78202..329b6fd2f 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.2-beta.3", - "igniteui-angular-excel": "20.0.2-beta.3", - "igniteui-angular-spreadsheet": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-excel": "20.1.0", + "igniteui-angular-spreadsheet": "20.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 7cee78202..329b6fd2f 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.2-beta.3", - "igniteui-angular-excel": "20.0.2-beta.3", - "igniteui-angular-spreadsheet": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-excel": "20.1.0", + "igniteui-angular-spreadsheet": "20.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 7cee78202..329b6fd2f 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.2-beta.3", - "igniteui-angular-excel": "20.0.2-beta.3", - "igniteui-angular-spreadsheet": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-excel": "20.1.0", + "igniteui-angular-spreadsheet": "20.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 7cee78202..329b6fd2f 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.2-beta.3", - "igniteui-angular-excel": "20.0.2-beta.3", - "igniteui-angular-spreadsheet": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-excel": "20.1.0", + "igniteui-angular-spreadsheet": "20.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 cfca73a84..fbf37bd5a 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.1.0-rc.2", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 cfca73a84..fbf37bd5a 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.1.0-rc.2", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 cfca73a84..fbf37bd5a 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.1.0-rc.2", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 4eef450ce..051791720 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.2-beta.3", - "igniteui-angular-gauges": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-gauges": "20.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 34b99a173..6e8ac42d6 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.2-beta.3", - "igniteui-angular-inputs": "20.0.2-beta.3", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-inputs": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", diff --git a/samples/maps/geo-map/display-azure-imagery/package.json b/samples/maps/geo-map/display-azure-imagery/package.json index ee04e7c26..51db75b97 100644 --- a/samples/maps/geo-map/display-azure-imagery/package.json +++ b/samples/maps/geo-map/display-azure-imagery/package.json @@ -10,34 +10,34 @@ }, "private": true, "dependencies": { - "@angular/animations": "20.3.2", - "@angular/common": "20.3.2", - "@angular/compiler": "20.3.2", - "@angular/core": "20.3.2", - "@angular/forms": "20.3.2", - "@angular/platform-browser": "20.3.2", - "@angular/platform-browser-dynamic": "20.3.2", + "@angular/animations": "20.0.1", + "@angular/common": "20.0.1", + "@angular/compiler": "20.0.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.3.2", - "hammerjs": "^2.0.8", - "igniteui-angular": "20.1.0", - "igniteui-angular-charts": "^20.0.2-beta.3", - "igniteui-angular-core": "^20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", - "rxjs": "~7.8.2", - "tslib": "^2.8.1", - "zone.js": "~0.15.1" + "hammerjs": "2.0.8", + "igniteui-angular": "20.1.0-rc.2", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.1.0", + "rxjs": "7.8.1", + "tslib": "2.6.1", + "zone.js": "~0.15.0" }, "devDependencies": { - "@angular-devkit/build-angular": "20.3.2", - "@angular/cli": "20.3.2", - "@angular/compiler-cli": "20.3.2", + "@angular-devkit/build-angular": "20.0.1", + "@angular/cli": "20.0.1", + "@angular/compiler-cli": "20.0.1", "@types/jasmine": "~5.1.9", - "jasmine-core": "~5.10.0", + "jasmine-core": "5.1.1", "karma": "~6.4.4", "karma-chrome-launcher": "~3.2.0", "karma-coverage": "~2.2.1", "karma-jasmine": "~5.1.0", "karma-jasmine-html-reporter": "~2.1.0", - "typescript": "~5.8.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.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 89eda2017..fb881c300 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.2-beta.3", - "igniteui-angular-core": "20.0.2-beta.3", - "igniteui-angular-maps": "20.0.2-beta.3", + "igniteui-angular-charts": "20.1.0", + "igniteui-angular-core": "20.1.0", + "igniteui-angular-maps": "20.1.0", "intl": "1.2.5", "jszip": "3.8.0", "rxjs": "7.8.1", From 82eb6ef0d7cffb68edf3978f113f05dc3d17b2c0 Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Thu, 2 Oct 2025 11:11:14 -0400 Subject: [PATCH 183/183] add gulp gitAcceptCurrent --- browser/gulpfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/browser/gulpfile.js b/browser/gulpfile.js index 9d797f6e8..a38fd2aff 100644 --- a/browser/gulpfile.js +++ b/browser/gulpfile.js @@ -44,6 +44,7 @@ gulp.task('updateBrowser', gulp.series( // NOTE you can call each function in terminal: "gulp findSamples" gulp.task('findSamples', browser.findSamples); gulp.task('copySamples', gulp.series(browser.findSamples, browser.copySamples)); +gulp.task('gitAcceptCurrent', browser.gitAcceptCurrent); gulp.task('generateSampleRouting', browser.generateSampleRouting); gulp.task('updateCodeViewer', gulp.series(browser.findSamples, browser.updateCodeViewer));