From 9d5583defb6805f62fc7955315654e44fcc21f35 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 6 Dec 2023 14:24:16 -0500 Subject: [PATCH 01/20] Adding changes from build igniteui-xplat-examples-output+PRs_2023.12.6.1 (#604) Co-authored-by: tfsbuild --- .../grids/grid/cascading-combo/src/index.ts | 169 +++--- .../conditional-row-selectors/src/index.ts | 1 - .../keyboard-custom-navigation/src/index.ts | 4 +- .../column-sorting-indicators/.prettierrc | 11 + .../column-sorting-indicators/index.html | 82 +++ .../column-sorting-indicators/package.json | 62 ++ .../sandbox.config.json | 6 + .../src/OrdersTreeData.ts | 285 +++++++++ .../column-sorting-indicators/src/index.css | 3 + .../column-sorting-indicators/src/index.ts | 102 ++++ .../column-sorting-indicators/tsconfig.json | 40 ++ .../column-sorting-indicators/tslint.json | 54 ++ .../webpack.config.js | 105 ++++ .../column-sorting-options/.prettierrc | 11 + .../column-sorting-options/index.html | 99 ++++ .../column-sorting-options/package.json | 63 ++ .../sandbox.config.json | 6 + .../src/OrdersTreeData.ts | 285 +++++++++ .../column-sorting-options/src/index.css | 3 + .../column-sorting-options/src/index.ts | 105 ++++ .../column-sorting-options/tsconfig.json | 40 ++ .../column-sorting-options/tslint.json | 54 ++ .../column-sorting-options/webpack.config.js | 105 ++++ .../column-sorting-style/.prettierrc | 11 + .../tree-grid/column-sorting-style/index.html | 85 +++ .../column-sorting-style/package.json | 62 ++ .../column-sorting-style/sandbox.config.json | 6 + .../src/OrdersTreeData.ts | 285 +++++++++ .../column-sorting-style/src/index.css | 8 + .../column-sorting-style/src/index.ts | 68 +++ .../column-sorting-style/tsconfig.json | 40 ++ .../column-sorting-style/tslint.json | 54 ++ .../column-sorting-style/webpack.config.js | 105 ++++ .../tree-grid/editing-lifecycle/index.html | 22 +- .../src/EmployeesFlatData.ts | 218 +++++++ .../editing-lifecycle/src/NwindData.ts | 544 ------------------ .../tree-grid/editing-lifecycle/src/index.ts | 14 +- 37 files changed, 2581 insertions(+), 636 deletions(-) create mode 100644 samples/grids/tree-grid/column-sorting-indicators/.prettierrc create mode 100644 samples/grids/tree-grid/column-sorting-indicators/index.html create mode 100644 samples/grids/tree-grid/column-sorting-indicators/package.json create mode 100644 samples/grids/tree-grid/column-sorting-indicators/sandbox.config.json create mode 100644 samples/grids/tree-grid/column-sorting-indicators/src/OrdersTreeData.ts create mode 100644 samples/grids/tree-grid/column-sorting-indicators/src/index.css create mode 100644 samples/grids/tree-grid/column-sorting-indicators/src/index.ts create mode 100644 samples/grids/tree-grid/column-sorting-indicators/tsconfig.json create mode 100644 samples/grids/tree-grid/column-sorting-indicators/tslint.json create mode 100644 samples/grids/tree-grid/column-sorting-indicators/webpack.config.js create mode 100644 samples/grids/tree-grid/column-sorting-options/.prettierrc create mode 100644 samples/grids/tree-grid/column-sorting-options/index.html create mode 100644 samples/grids/tree-grid/column-sorting-options/package.json create mode 100644 samples/grids/tree-grid/column-sorting-options/sandbox.config.json create mode 100644 samples/grids/tree-grid/column-sorting-options/src/OrdersTreeData.ts create mode 100644 samples/grids/tree-grid/column-sorting-options/src/index.css create mode 100644 samples/grids/tree-grid/column-sorting-options/src/index.ts create mode 100644 samples/grids/tree-grid/column-sorting-options/tsconfig.json create mode 100644 samples/grids/tree-grid/column-sorting-options/tslint.json create mode 100644 samples/grids/tree-grid/column-sorting-options/webpack.config.js create mode 100644 samples/grids/tree-grid/column-sorting-style/.prettierrc create mode 100644 samples/grids/tree-grid/column-sorting-style/index.html create mode 100644 samples/grids/tree-grid/column-sorting-style/package.json create mode 100644 samples/grids/tree-grid/column-sorting-style/sandbox.config.json create mode 100644 samples/grids/tree-grid/column-sorting-style/src/OrdersTreeData.ts create mode 100644 samples/grids/tree-grid/column-sorting-style/src/index.css create mode 100644 samples/grids/tree-grid/column-sorting-style/src/index.ts create mode 100644 samples/grids/tree-grid/column-sorting-style/tsconfig.json create mode 100644 samples/grids/tree-grid/column-sorting-style/tslint.json create mode 100644 samples/grids/tree-grid/column-sorting-style/webpack.config.js create mode 100644 samples/grids/tree-grid/editing-lifecycle/src/EmployeesFlatData.ts delete mode 100644 samples/grids/tree-grid/editing-lifecycle/src/NwindData.ts diff --git a/samples/grids/grid/cascading-combo/src/index.ts b/samples/grids/grid/cascading-combo/src/index.ts index b1feab946f..c9800482d8 100644 --- a/samples/grids/grid/cascading-combo/src/index.ts +++ b/samples/grids/grid/cascading-combo/src/index.ts @@ -78,97 +78,122 @@ export class Sample { City: '' } ]; - - setTimeout(() => { - for (let index = 0; index < grid.data.length; index++) { - const rowId = grid.data[index].ID; - this.bindEventsCountryCombo(rowId, grid.getCellByKey(rowId , "Country")); - this.bindEventsRegionCombo(rowId, grid.getCellByKey(rowId , "Region")); - this.bindEventsCityCombo(rowId, grid.getCellByKey(rowId , "City")); - } - }, 100); } - public bindEventsCountryCombo(rowId: any, cell: any) { - const comboId = "country_" + rowId; - var combo = document.getElementById(comboId) as IgcComboComponent; - combo?.addEventListener("igcChange", (e:any) => { - const value = e.detail.newValue[0]; - cell.update(value); - const nextCombo = document.getElementById("region_" + cell.id.rowID) as IgcComboComponent; - const nextProgress = document.getElementById("progress_region_" + cell.id.rowID) as IgcLinearProgressComponent; - if (value === "") { - nextCombo.deselect(nextCombo.value); - nextCombo.disabled = true; - nextCombo.data = []; - } else { - nextProgress.style.display = "block"; - setTimeout(() => { - nextProgress.style.display = "none"; - nextCombo.disabled = false; - nextCombo.data = this.regions.filter(x => x.Country === value); - }, 2000); - - } - }); - combo?.addEventListener("igcOpening", (e:any) => { - var currCombo = e.target; - if (currCombo.data.length === 0) { - combo.data = this.countries; - }; - }); - } - - public bindEventsRegionCombo(rowId: any, cell: any) { - const comboId = "region_" + rowId; - var combo = document.getElementById(comboId) as IgcComboComponent; - combo?.addEventListener("igcChange", (e:any) => { - const value = e.detail.newValue[0]; - cell.update(value); - const nextCombo = document.getElementById("city_" + cell.id.rowID) as IgcComboComponent; - const nextProgress = document.getElementById("progress_city_" + cell.id.rowID) as IgcLinearProgressComponent; - if (value === "") { - nextCombo.deselect(nextCombo.value); - nextCombo.disabled = true; - nextCombo.data = []; - } else { - nextProgress.style.display = "block"; - setTimeout(() => { - nextProgress.style.display = "none"; - nextCombo.disabled = false; - nextCombo.data = this.cities.filter(x => x.Region === value); - }, 2000); - } - }); + public onCountryChange(rowId: string, e: CustomEvent) { + const newValue = e.detail.newValue[0]; + const regionComboId = "region_" + rowId; + const cityComboId = "city_" + rowId; + const regionCombo = document.getElementById(regionComboId) as IgcComboComponent; + const cityCombo = document.getElementById(cityComboId) as IgcComboComponent; + + if (!regionCombo || !cityCombo) return; + + if (newValue === undefined || newValue === '') { + // Deselect, disable and clear region combo + regionCombo.deselect(regionCombo.value); + regionCombo.disabled = true; + regionCombo.data = []; + + // Deselect, disable and clear city combo + cityCombo.deselect(cityCombo.value); + cityCombo.disabled = true; + cityCombo.data = []; + } else { + // Populate and enable region combo based on selected country + regionCombo.disabled = false; + regionCombo.data = this.regions.filter(region => region.Country === newValue); + + // Ensure city combo is reset when changing country + cityCombo.deselect(cityCombo.value); + cityCombo.disabled = true; + cityCombo.data = []; + } } - public bindEventsCityCombo(rowId: any, cell: any) { - const comboId = "city_" + rowId; - var combo = document.getElementById(comboId) as IgcComboComponent; - combo?.addEventListener("igcChange", (e:any) => { - const value = e.detail.newValue[0]; - cell.update(value); - }); + public onRegionChange(rowId: string, e: CustomEvent) { + const newValue = e.detail.newValue[0]; + const cityComboId = "city_" + rowId; + const cityCombo = document.getElementById(cityComboId) as IgcComboComponent; + + if (!cityCombo) return; + + if (newValue === undefined || newValue === '') { + // Deselect, disable and clear city combo + cityCombo.deselect(cityCombo.value); + cityCombo.disabled = true; + cityCombo.data = []; + } else { + // Populate and enable city combo based on selected country + cityCombo.disabled = false; + cityCombo.data = this.cities.filter(city => city.Region === newValue); + } } public webGridCountryDropDownTemplate: IgcRenderFunction = (ctx: IgcCellTemplateContext) => { + if (!ctx || !ctx.cell) { + return nothing; + } + const id = ctx.cell.id.rowID; const comboId = "country_" + id; - return html``; + + return html` + + `; } public webGridRegionDropDownTemplate: IgcRenderFunction = (ctx: IgcCellTemplateContext) => { + if (!ctx || !ctx.cell) { + return nothing; + } + const id = ctx.cell.id.rowID; const comboId = "region_" + id; - const progressId = "progress_region_" + id; - return html`
diff --git a/samples/grids/tree-grid/overview/src/index.ts b/samples/grids/tree-grid/overview/src/index.ts index a7b25b5c30..284538212d 100644 --- a/samples/grids/tree-grid/overview/src/index.ts +++ b/samples/grids/tree-grid/overview/src/index.ts @@ -1,6 +1,6 @@ import { IgcPropertyEditorPanelModule } from 'igniteui-webcomponents-layouts'; import 'igniteui-webcomponents-grids/grids/combined'; -import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebTreeGridDescriptionModule, WebPaginatorDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent, IgcGridToolbarTitleComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesNestedDataItem, EmployeesNestedDataItem_EmployeesItem, EmployeesNestedData } from './EmployeesNestedData'; @@ -46,6 +46,7 @@ export class Sample { var context = this._componentRenderer.context; PropertyEditorPanelDescriptionModule.register(context); WebTreeGridDescriptionModule.register(context); + WebPaginatorDescriptionModule.register(context); } return this._componentRenderer; } From 449dbb4034b018e7eb18a3afe9038ea843a499a4 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 11:56:46 -0500 Subject: [PATCH 09/20] Adding changes from build igniteui-xplat-examples-output+PRs_2023.12.13.1 (#613) Co-authored-by: tfsbuild Co-authored-by: HUSSAR-mtrela (Martin Trela) --- .../charts/toolbar/custom-tool/.prettierrc | 11 + samples/charts/toolbar/custom-tool/index.html | 40 +++ .../charts/toolbar/custom-tool/package.json | 61 ++++ .../toolbar/custom-tool/sandbox.config.json | 6 + .../charts/toolbar/custom-tool/src/index.css | 3 + .../charts/toolbar/custom-tool/src/index.ts | 33 ++ .../charts/toolbar/custom-tool/tsconfig.json | 40 +++ .../charts/toolbar/custom-tool/tslint.json | 54 ++++ .../toolbar/custom-tool/webpack.config.js | 105 +++++++ .../grids/grid/column-data-types/index.html | 28 +- .../column-data-types/sandbox.config.json | 3 +- .../src/InvoicesDataExtendedDates.ts | 12 +- .../grid/column-data-types/src/index.css | 3 +- .../grids/grid/column-data-types/src/index.ts | 37 +-- .../grid/column-data-types/tsconfig.json | 1 + .../grids/grid/column-data-types/tslint.json | 37 +-- .../grid/row-pinning-style/src/index.css | 4 +- .../grids/grid/row-pinning-style/src/index.ts | 1 - .../tree-grid/cell-editing-sample/.prettierrc | 11 + .../tree-grid/cell-editing-sample/index.html | 71 +++++ .../cell-editing-sample/package.json | 63 ++++ .../cell-editing-sample/sandbox.config.json | 6 + .../cell-editing-sample/src/OrdersTreeData.ts | 285 ++++++++++++++++++ .../cell-editing-sample/src/index.css | 3 + .../cell-editing-sample/src/index.ts | 79 +++++ .../cell-editing-sample/tsconfig.json | 40 +++ .../tree-grid/cell-editing-sample/tslint.json | 54 ++++ .../cell-editing-sample/webpack.config.js | 105 +++++++ .../keyboard-custom-navigation/package.json | 8 +- 29 files changed, 1133 insertions(+), 71 deletions(-) create mode 100644 samples/charts/toolbar/custom-tool/.prettierrc create mode 100644 samples/charts/toolbar/custom-tool/index.html 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/index.css create mode 100644 samples/charts/toolbar/custom-tool/src/index.ts create mode 100644 samples/charts/toolbar/custom-tool/tsconfig.json create mode 100644 samples/charts/toolbar/custom-tool/tslint.json create mode 100644 samples/charts/toolbar/custom-tool/webpack.config.js create mode 100644 samples/grids/tree-grid/cell-editing-sample/.prettierrc create mode 100644 samples/grids/tree-grid/cell-editing-sample/index.html create mode 100644 samples/grids/tree-grid/cell-editing-sample/package.json create mode 100644 samples/grids/tree-grid/cell-editing-sample/sandbox.config.json create mode 100644 samples/grids/tree-grid/cell-editing-sample/src/OrdersTreeData.ts create mode 100644 samples/grids/tree-grid/cell-editing-sample/src/index.css create mode 100644 samples/grids/tree-grid/cell-editing-sample/src/index.ts create mode 100644 samples/grids/tree-grid/cell-editing-sample/tsconfig.json create mode 100644 samples/grids/tree-grid/cell-editing-sample/tslint.json create mode 100644 samples/grids/tree-grid/cell-editing-sample/webpack.config.js diff --git a/samples/charts/toolbar/custom-tool/.prettierrc b/samples/charts/toolbar/custom-tool/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/charts/toolbar/custom-tool/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/charts/toolbar/custom-tool/index.html b/samples/charts/toolbar/custom-tool/index.html new file mode 100644 index 0000000000..25ac180574 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/index.html @@ -0,0 +1,40 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+ + + + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json new file mode 100644 index 0000000000..e18ecda215 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/package.json @@ -0,0 +1,61 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-inputs": "4.3.3-beta.1", + "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "lit-html": "^2.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.74.0", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + } +} 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 0000000000..52c7875103 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/sandbox.config.json @@ -0,0 +1,6 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} \ No newline at end of file diff --git a/samples/charts/toolbar/custom-tool/src/index.css b/samples/charts/toolbar/custom-tool/src/index.css new file mode 100644 index 0000000000..8b42ec3ed2 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/index.css @@ -0,0 +1,3 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/toolbar/custom-tool/src/index.ts b/samples/charts/toolbar/custom-tool/src/index.ts new file mode 100644 index 0000000000..e987eaa01b --- /dev/null +++ b/samples/charts/toolbar/custom-tool/src/index.ts @@ -0,0 +1,33 @@ +import { IgcToolbarModule } from 'igniteui-webcomponents-layouts'; +import { IgcToolbarComponent } from 'igniteui-webcomponents-layouts'; +import { IgcToolActionLabelComponent, IgcToolActionComponent, IgcToolCommandEventArgs } from 'igniteui-webcomponents-layouts'; + +import { ModuleManager } from 'igniteui-webcomponents-core'; + +import "./index.css"; + +ModuleManager.register( + IgcToolbarModule +); + +export class Sample { + + private toolbar: IgcToolbarComponent + + constructor() { + this.toolbarCustomIconOnViewInit(); + var toolbar = this.toolbar = document.getElementById('Toolbar') as IgcToolbarComponent; + + } + + + public toolbarCustomIconOnViewInit(): void { + + const icon = ''; + this.toolbar.registerIconFromText("CustomCollection", "CustomIcon", icon); + + } + +} + +new Sample(); diff --git a/samples/charts/toolbar/custom-tool/tsconfig.json b/samples/charts/toolbar/custom-tool/tsconfig.json new file mode 100644 index 0000000000..a15284fdc2 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/tsconfig.json @@ -0,0 +1,40 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ 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 0000000000..e3b56e93a1 --- /dev/null +++ b/samples/charts/toolbar/custom-tool/tslint.json @@ -0,0 +1,54 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "member-ordering": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-trailing-whitespace": false, + "no-var": false, + "no-var-requires": false, + "no-var-keyword": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "no-console": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-var-requires": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "ordered-imports": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off" + } + } \ No newline at end of file diff --git a/samples/charts/toolbar/custom-tool/webpack.config.js b/samples/charts/toolbar/custom-tool/webpack.config.js new file mode 100644 index 0000000000..9d11a6155c --- /dev/null +++ b/samples/charts/toolbar/custom-tool/webpack.config.js @@ -0,0 +1,105 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), + path.resolve(__dirname, 'node_modules/@webcomponents/template'), + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; diff --git a/samples/grids/grid/column-data-types/index.html b/samples/grids/grid/column-data-types/index.html index f08cd48596..bd0832f7c3 100644 --- a/samples/grids/grid/column-data-types/index.html +++ b/samples/grids/grid/column-data-types/index.html @@ -16,28 +16,26 @@
-
- - - +
+
+ locale="EN"> + id="column1"> + id="column2"> + id="column3"> + id="column4"> + id="column5"> + id="column6"> super(); this.push(new Invoice( { - ProductID : 1, - ProductName : "Chai", - SupplierID : 1, - CategoryID : 1, - QuantityPerUnit : "10 boxes x 20 bags", + ProductID: 1, + ProductName: "Chai", + SupplierID: 1, + CategoryID: 1, + QuantityPerUnit: "10 boxes x 20 bags", UnitPrice: 18.0000, UnitsInStock: 39, UnitsOnOrder: 0.030, @@ -152,7 +152,7 @@ export class InvoicesDataExtendedDates extends Array } export class Invoice -{ +{ public constructor(init: Partial) { Object.assign(this, init); } diff --git a/samples/grids/grid/column-data-types/src/index.css b/samples/grids/grid/column-data-types/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/column-data-types/src/index.css +++ b/samples/grids/grid/column-data-types/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/column-data-types/src/index.ts b/samples/grids/grid/column-data-types/src/index.ts index c126e84a46..29576c437b 100644 --- a/samples/grids/grid/column-data-types/src/index.ts +++ b/samples/grids/grid/column-data-types/src/index.ts @@ -4,6 +4,7 @@ import { InvoicesDataExtendedDates } from './InvoicesDataExtendedDates'; import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -14,10 +15,9 @@ export class Sample { if (this._columnPipeArgs1 == null) { var columnPipeArgs1: IgcColumnPipeArgs = {} as IgcColumnPipeArgs; - columnPipeArgs1.digitsInfo = "1.4-4"; columnPipeArgs1.currencyCode = ""; - - + columnPipeArgs1.digitsInfo = "1.4-4"; + this._columnPipeArgs1 = columnPipeArgs1; } return this._columnPipeArgs1; @@ -30,8 +30,7 @@ export class Sample { var columnPipeArgs2: IgcColumnPipeArgs = {} as IgcColumnPipeArgs; columnPipeArgs2.format = "long"; columnPipeArgs2.timezone = "UTC+0"; - - + this._columnPipeArgs2 = columnPipeArgs2; } return this._columnPipeArgs2; @@ -43,8 +42,7 @@ export class Sample { { var columnPipeArgs3: IgcColumnPipeArgs = {} as IgcColumnPipeArgs; columnPipeArgs3.format = "mediumDate"; - - + this._columnPipeArgs3 = columnPipeArgs3; } return this._columnPipeArgs3; @@ -57,8 +55,7 @@ export class Sample { var columnPipeArgs4: IgcColumnPipeArgs = {} as IgcColumnPipeArgs; columnPipeArgs4.format = "shortTime"; columnPipeArgs4.timezone = "UTC+0"; - - + this._columnPipeArgs4 = columnPipeArgs4; } return this._columnPipeArgs4; @@ -71,8 +68,7 @@ export class Sample { var columnPipeArgs5: IgcColumnPipeArgs = {} as IgcColumnPipeArgs; columnPipeArgs5.currencyCode = ""; columnPipeArgs5.digitsInfo = "1.4-4"; - - + this._columnPipeArgs5 = columnPipeArgs5; } return this._columnPipeArgs5; @@ -85,8 +81,7 @@ export class Sample { var columnPipeArgs6: IgcColumnPipeArgs = {} as IgcColumnPipeArgs; columnPipeArgs6.currencyCode = ""; columnPipeArgs6.digitsInfo = "1.4-4"; - - + this._columnPipeArgs6 = columnPipeArgs6; } return this._columnPipeArgs6; @@ -103,13 +98,13 @@ export class Sample { var column6 = this.column6 = document.getElementById('column6') as IgcColumnComponent; this._bind = () => { - grid.data = this.invoicesDataExtendedDates - column1.pipeArgs = this.columnPipeArgs1 - column2.pipeArgs = this.columnPipeArgs2 - column3.pipeArgs = this.columnPipeArgs3 - column4.pipeArgs = this.columnPipeArgs4 - column5.pipeArgs = this.columnPipeArgs5 - column6.pipeArgs = this.columnPipeArgs6 + grid.data = this.invoicesDataExtendedDates; + column1.pipeArgs = this.columnPipeArgs1; + column2.pipeArgs = this.columnPipeArgs2; + column3.pipeArgs = this.columnPipeArgs3; + column4.pipeArgs = this.columnPipeArgs4; + column5.pipeArgs = this.columnPipeArgs5; + column6.pipeArgs = this.columnPipeArgs6; } this._bind(); @@ -123,8 +118,6 @@ export class Sample { } return this._invoicesDataExtendedDates; } - - } diff --git a/samples/grids/grid/column-data-types/tsconfig.json b/samples/grids/grid/column-data-types/tsconfig.json index 861fa3aeb1..a15284fdc2 100644 --- a/samples/grids/grid/column-data-types/tsconfig.json +++ b/samples/grids/grid/column-data-types/tsconfig.json @@ -2,6 +2,7 @@ "compilerOptions": { "noImplicitReturns": true, "esModuleInterop": true, + "resolveJsonModule": true, "noImplicitAny": true, "declarationDir": "dist/types", "moduleResolution": "node", diff --git a/samples/grids/grid/column-data-types/tslint.json b/samples/grids/grid/column-data-types/tslint.json index 18e202b1f9..e3b56e93a1 100644 --- a/samples/grids/grid/column-data-types/tslint.json +++ b/samples/grids/grid/column-data-types/tslint.json @@ -8,46 +8,47 @@ ] }, "rules": { - "only-arrow-functions": false, + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, "jsx-self-close": false, "jsx-wrap-multiline": false, - "no-var-requires": false, - "no-var": false, - "no-var-keyword": false, + "max-classes-per-file": [true, 10], + "member-ordering": false, "no-console": false, "no-string-literal": false, "no-unused-vars": false, - "@typescript-eslint/no-unused-vars": "off", - "jsx-no-lambda": false, + "no-useless-constructor": false, + "no-trailing-whitespace": false, + "no-var": false, + "no-var-requires": false, + "no-var-keyword": false, "ordered-imports": false, "object-literal-sort-keys": false, "object-literal-shorthand": false, - "member-ordering": false, - "curly": [false, "ignore-same-line"], - "max-classes-per-file": [true, 10], + "only-arrow-functions": false, "prefer-const": false, "prefer-for-of": false, - "no-useless-constructor": false, + "@typescript-eslint/no-unused-vars": "off", "@typescript-eslint/no-useless-constructor": "off", "@typescript-eslint/type-annotation-spacing": "off" }, "jsRules": { - "only-arrow-functions": false, + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, "jsx-self-close": false, "jsx-wrap-multiline": false, - "no-var-requires": false, + "max-classes-per-file": [true, 10], "no-console": false, "no-unused-vars": false, - "@typescript-eslint/no-unused-vars": "off", - "jsx-no-lambda": false, - "ordered-imports": false, + "no-useless-constructor": false, + "no-var-requires": false, "object-literal-sort-keys": false, "object-literal-shorthand": false, - "curly": [false, "ignore-same-line"], - "max-classes-per-file": [true, 10], + "only-arrow-functions": false, + "ordered-imports": false, "prefer-const": false, "prefer-for-of": false, - "no-useless-constructor": false, + "@typescript-eslint/no-unused-vars": "off", "@typescript-eslint/no-useless-constructor": "off" } } \ No newline at end of file diff --git a/samples/grids/grid/row-pinning-style/src/index.css b/samples/grids/grid/row-pinning-style/src/index.css index de1397e966..e8c11e3bf1 100644 --- a/samples/grids/grid/row-pinning-style/src/index.css +++ b/samples/grids/grid/row-pinning-style/src/index.css @@ -4,7 +4,7 @@ #grid { --ig-grid-pinned-border-width: 5px; --ig-grid-pinned-border-style: double; - --ig-grid-pinned-border-color: red; - --ig-grid-cell-active-border-color: red; + --ig-grid-pinned-border-color: #FFCD0F; + --ig-grid-cell-active-border-color: #FFCD0F; } diff --git a/samples/grids/grid/row-pinning-style/src/index.ts b/samples/grids/grid/row-pinning-style/src/index.ts index d29afafe9d..b944df6e61 100644 --- a/samples/grids/grid/row-pinning-style/src/index.ts +++ b/samples/grids/grid/row-pinning-style/src/index.ts @@ -70,7 +70,6 @@ export class Sample { public webGridPinRowOnRendered(args: any): void { var grid = this.grid as any; - grid.data = [...grid.data]; grid.pinRow("ALFKI"); grid.pinRow("AROUT"); } diff --git a/samples/grids/tree-grid/cell-editing-sample/.prettierrc b/samples/grids/tree-grid/cell-editing-sample/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/grids/tree-grid/cell-editing-sample/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/grids/tree-grid/cell-editing-sample/index.html b/samples/grids/tree-grid/cell-editing-sample/index.html new file mode 100644 index 0000000000..7f2f34c83d --- /dev/null +++ b/samples/grids/tree-grid/cell-editing-sample/index.html @@ -0,0 +1,71 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+ + + + + + + + + + + + + + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/grids/tree-grid/cell-editing-sample/package.json b/samples/grids/tree-grid/cell-editing-sample/package.json new file mode 100644 index 0000000000..2f0bbfc6ff --- /dev/null +++ b/samples/grids/tree-grid/cell-editing-sample/package.json @@ -0,0 +1,63 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-grids": "4.3.3-beta.1", + "igniteui-webcomponents-inputs": "4.3.3-beta.1", + "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "lit-html": "^2.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.74.0", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + } +} diff --git a/samples/grids/tree-grid/cell-editing-sample/sandbox.config.json b/samples/grids/tree-grid/cell-editing-sample/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/grids/tree-grid/cell-editing-sample/sandbox.config.json @@ -0,0 +1,6 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} \ No newline at end of file diff --git a/samples/grids/tree-grid/cell-editing-sample/src/OrdersTreeData.ts b/samples/grids/tree-grid/cell-editing-sample/src/OrdersTreeData.ts new file mode 100644 index 0000000000..aab5211fc1 --- /dev/null +++ b/samples/grids/tree-grid/cell-editing-sample/src/OrdersTreeData.ts @@ -0,0 +1,285 @@ +export class OrdersTreeDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public ID: number; + public ParentID: number; + public Name: string; + public Category: string; + public OrderDate: string; + public Units: number; + public UnitPrice: number; + public Price: number; + public Delivered: boolean; + +} +export class OrdersTreeData extends Array { + public constructor() { + super(); + this.push(new OrdersTreeDataItem( + { + ID: 1, + ParentID: -1, + Name: `Order 1`, + Category: ``, + OrderDate: `2010-02-17`, + Units: 1844, + UnitPrice: 3.73, + Price: 6884.38, + Delivered: true + })); + this.push(new OrdersTreeDataItem( + { + ID: 101, + ParentID: 1, + Name: `Chocolate Chip Cookies`, + Category: `Cookies`, + OrderDate: `2010-02-17`, + Units: 834, + UnitPrice: 3.59, + Price: 2994.06, + Delivered: true + })); + this.push(new OrdersTreeDataItem( + { + ID: 102, + ParentID: 1, + Name: `Red Apples`, + Category: `Fruit`, + OrderDate: `2010-02-17`, + Units: 371, + UnitPrice: 3.66, + Price: 1357.86, + Delivered: true + })); + this.push(new OrdersTreeDataItem( + { + ID: 103, + ParentID: 1, + Name: `Butter`, + Category: `Diary`, + OrderDate: `2010-02-17`, + Units: 260, + UnitPrice: 3.45, + Price: 897, + Delivered: true + })); + this.push(new OrdersTreeDataItem( + { + ID: 104, + ParentID: 1, + Name: `Potato Chips`, + Category: `Snack`, + OrderDate: `2010-02-17`, + Units: 118, + UnitPrice: 1.96, + Price: 231.28, + Delivered: true + })); + this.push(new OrdersTreeDataItem( + { + ID: 105, + ParentID: 1, + Name: `Orange Juice`, + Category: `Beverages`, + OrderDate: `2010-02-17`, + Units: 261, + UnitPrice: 5.38, + Price: 1404.18, + Delivered: true + })); + this.push(new OrdersTreeDataItem( + { + ID: 2, + ParentID: -1, + Name: `Order 2`, + Category: ``, + OrderDate: `2022-05-27`, + Units: 1831, + UnitPrice: 8.23, + Price: 15062.77, + Delivered: false + })); + this.push(new OrdersTreeDataItem( + { + ID: 201, + ParentID: 2, + Name: `Frozen Shrimps`, + Category: `Seafood`, + OrderDate: `2022-05-27`, + Units: 120, + UnitPrice: 20.45, + Price: 2454, + Delivered: false + })); + this.push(new OrdersTreeDataItem( + { + ID: 202, + ParentID: 2, + Name: `Ice Tea`, + Category: `Beverages`, + OrderDate: `2022-05-27`, + Units: 840, + UnitPrice: 7, + Price: 5880, + Delivered: false + })); + this.push(new OrdersTreeDataItem( + { + ID: 203, + ParentID: 2, + Name: `Fresh Cheese`, + Category: `Diary`, + OrderDate: `2022-05-27`, + Units: 267, + UnitPrice: 16.55, + Price: 4418.85, + Delivered: false + })); + this.push(new OrdersTreeDataItem( + { + ID: 204, + ParentID: 2, + Name: `Carrots`, + Category: `Vegetables`, + OrderDate: `2022-05-27`, + Units: 360, + UnitPrice: 2.77, + Price: 997.2, + Delivered: false + })); + this.push(new OrdersTreeDataItem( + { + ID: 205, + ParentID: 2, + Name: `Apple Juice`, + Category: `Beverages`, + OrderDate: `2022-05-27`, + Units: 244, + UnitPrice: 5.38, + Price: 1312.72, + Delivered: false + })); + this.push(new OrdersTreeDataItem( + { + ID: 3, + ParentID: -1, + Name: `Order 3`, + Category: ``, + OrderDate: `2022-08-04`, + Units: 1972, + UnitPrice: 3.47, + Price: 6849.18, + Delivered: true + })); + this.push(new OrdersTreeDataItem( + { + ID: 301, + ParentID: 3, + Name: `Skimmed Milk 1L`, + Category: `Diary`, + OrderDate: `2022-08-04`, + Units: 1028, + UnitPrice: 3.56, + Price: 3659.68, + Delivered: true + })); + this.push(new OrdersTreeDataItem( + { + ID: 302, + ParentID: 3, + Name: `Bananas 5 Pack`, + Category: `Fruit`, + OrderDate: `2022-08-04`, + Units: 370, + UnitPrice: 6.36, + Price: 2353.2, + Delivered: true + })); + this.push(new OrdersTreeDataItem( + { + ID: 303, + ParentID: 3, + Name: `Cauliflower`, + Category: `Vegetables`, + OrderDate: `2022-08-04`, + Units: 283, + UnitPrice: 0.95, + Price: 268.85, + Delivered: true + })); + this.push(new OrdersTreeDataItem( + { + ID: 304, + ParentID: 3, + Name: `White Chocolate Cookies`, + Category: `Cookies`, + OrderDate: `2022-08-04`, + Units: 291, + UnitPrice: 1.95, + Price: 567.45, + Delivered: true + })); + this.push(new OrdersTreeDataItem( + { + ID: 4, + ParentID: -1, + Name: `Order 4`, + Category: ``, + OrderDate: `2023-01-04`, + Units: 1065, + UnitPrice: 5.56, + Price: 5923.5, + Delivered: true + })); + this.push(new OrdersTreeDataItem( + { + ID: 401, + ParentID: 4, + Name: `Mini Milk Chocolate Cookie Bites`, + Category: `Cookies`, + OrderDate: `2023-01-04`, + Units: 68, + UnitPrice: 2.25, + Price: 153, + Delivered: true + })); + this.push(new OrdersTreeDataItem( + { + ID: 402, + ParentID: 4, + Name: `Wild Salmon Fillets`, + Category: `Seafood`, + OrderDate: `2023-01-04`, + Units: 320, + UnitPrice: 16.15, + Price: 5168, + Delivered: true + })); + this.push(new OrdersTreeDataItem( + { + ID: 403, + ParentID: 4, + Name: `Diet Lemonade`, + Category: `Beverages`, + OrderDate: `2023-01-04`, + Units: 437, + UnitPrice: 0.5, + Price: 218.5, + Delivered: true + })); + this.push(new OrdersTreeDataItem( + { + ID: 404, + ParentID: 4, + Name: `Potatos`, + Category: `Vegetables`, + OrderDate: `2023-01-04`, + Units: 240, + UnitPrice: 1.6, + Price: 384, + Delivered: true + })); + } +} diff --git a/samples/grids/tree-grid/cell-editing-sample/src/index.css b/samples/grids/tree-grid/cell-editing-sample/src/index.css new file mode 100644 index 0000000000..8b42ec3ed2 --- /dev/null +++ b/samples/grids/tree-grid/cell-editing-sample/src/index.css @@ -0,0 +1,3 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/cell-editing-sample/src/index.ts b/samples/grids/tree-grid/cell-editing-sample/src/index.ts new file mode 100644 index 0000000000..255c649207 --- /dev/null +++ b/samples/grids/tree-grid/cell-editing-sample/src/index.ts @@ -0,0 +1,79 @@ +import 'igniteui-webcomponents-grids/grids/combined'; +import { ComponentRenderer, WebTreeGridDescriptionModule, WebSelectDescriptionModule } from 'igniteui-webcomponents-core'; +import { IgcTreeGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; +import { OrdersTreeDataItem, OrdersTreeData } from './OrdersTreeData'; +import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; +import { html, nothing } from 'lit-html'; + +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import 'igniteui-webcomponents/themes/light/bootstrap.css'; +import { defineAllComponents } from 'igniteui-webcomponents'; +defineAllComponents(); + +import "./index.css"; + +export class Sample { + + private treeGrid: IgcTreeGridComponent + private column1: IgcColumnComponent + private _bind: () => void; + + constructor() { + var treeGrid = this.treeGrid = document.getElementById('treeGrid') as IgcTreeGridComponent; + var column1 = this.column1 = document.getElementById('column1') as IgcColumnComponent; + + this._bind = () => { + treeGrid.data = this.ordersTreeData; + column1.inlineEditorTemplate = this.webTreeGridCellEditCellTemplate; + } + this._bind(); + + } + + private _ordersTreeData: OrdersTreeData = null; + public get ordersTreeData(): OrdersTreeData { + if (this._ordersTreeData == null) + { + this._ordersTreeData = new OrdersTreeData(); + } + return this._ordersTreeData; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + WebTreeGridDescriptionModule.register(context); + WebSelectDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public webTreeGridCellEditCellTemplate = (ctx: IgcCellTemplateContext) => { + let cellValues: any = []; + let uniqueValues: any = []; + for(const item of (this.ordersTreeData as any)){ + const field: string = ctx.cell.column.field; + const value = item[field]; + + if(uniqueValues.indexOf(value) === -1 && value !== "") + { + if (ctx.cell.value == value) { + cellValues.push(html`${(value)}`); + } else { + cellValues.push(html`${(value)}`); + } + uniqueValues.push(value); + } + } + return html` + ctx.cell.editValue = e.detail.value}> + ${cellValues} + + `; + } + +} + +new Sample(); diff --git a/samples/grids/tree-grid/cell-editing-sample/tsconfig.json b/samples/grids/tree-grid/cell-editing-sample/tsconfig.json new file mode 100644 index 0000000000..a15284fdc2 --- /dev/null +++ b/samples/grids/tree-grid/cell-editing-sample/tsconfig.json @@ -0,0 +1,40 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/grids/tree-grid/cell-editing-sample/tslint.json b/samples/grids/tree-grid/cell-editing-sample/tslint.json new file mode 100644 index 0000000000..e3b56e93a1 --- /dev/null +++ b/samples/grids/tree-grid/cell-editing-sample/tslint.json @@ -0,0 +1,54 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "member-ordering": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-trailing-whitespace": false, + "no-var": false, + "no-var-requires": false, + "no-var-keyword": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "no-console": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-var-requires": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "ordered-imports": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off" + } + } \ No newline at end of file diff --git a/samples/grids/tree-grid/cell-editing-sample/webpack.config.js b/samples/grids/tree-grid/cell-editing-sample/webpack.config.js new file mode 100644 index 0000000000..9d11a6155c --- /dev/null +++ b/samples/grids/tree-grid/cell-editing-sample/webpack.config.js @@ -0,0 +1,105 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), + path.resolve(__dirname, 'node_modules/@webcomponents/template'), + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/package.json b/samples/grids/tree-grid/keyboard-custom-navigation/package.json index bc7d41b73f..47f65775ee 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/package.json +++ b/samples/grids/tree-grid/keyboard-custom-navigation/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.2", - "igniteui-webcomponents-grids": "4.3.2", - "igniteui-webcomponents-inputs": "4.3.2", - "igniteui-webcomponents-layouts": "4.3.2", + "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-grids": "4.3.3-beta.1", + "igniteui-webcomponents-inputs": "4.3.3-beta.1", + "igniteui-webcomponents-layouts": "4.3.3-beta.1", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, From b4223d4edb563464c5129284a1e7f06a4f3e9093 Mon Sep 17 00:00:00 2001 From: Maya Date: Wed, 13 Dec 2023 18:57:28 +0200 Subject: [PATCH 10/20] Summaries custom sample (#448) * Add a custom summaries sample. * Add css vars to styling sample. * Revert "Add css vars to styling sample." This reverts commit f89a9d5afd6261ae887f325e83e593418eb50246. --------- Co-authored-by: HUSSAR-mtrela (Martin Trela) --- .../grid/data-summaries-custom/.prettierrc | 11 + .../grid/data-summaries-custom/ReadMe.md | 51 ++ .../grid/data-summaries-custom/index.html | 77 +++ .../grid/data-summaries-custom/package.json | 62 ++ .../data-summaries-custom/sandbox.config.json | 6 + .../data-summaries-custom/src/NwindData.ts | 544 ++++++++++++++++++ .../grid/data-summaries-custom/src/index.css | 2 + .../grid/data-summaries-custom/src/index.ts | 89 +++ .../grid/data-summaries-custom/tsconfig.json | 39 ++ .../grid/data-summaries-custom/tslint.json | 53 ++ .../data-summaries-custom/webpack.config.js | 105 ++++ 11 files changed, 1039 insertions(+) create mode 100644 samples/grids/grid/data-summaries-custom/.prettierrc create mode 100644 samples/grids/grid/data-summaries-custom/ReadMe.md create mode 100644 samples/grids/grid/data-summaries-custom/index.html create mode 100644 samples/grids/grid/data-summaries-custom/package.json create mode 100644 samples/grids/grid/data-summaries-custom/sandbox.config.json create mode 100644 samples/grids/grid/data-summaries-custom/src/NwindData.ts create mode 100644 samples/grids/grid/data-summaries-custom/src/index.css create mode 100644 samples/grids/grid/data-summaries-custom/src/index.ts create mode 100644 samples/grids/grid/data-summaries-custom/tsconfig.json create mode 100644 samples/grids/grid/data-summaries-custom/tslint.json create mode 100644 samples/grids/grid/data-summaries-custom/webpack.config.js diff --git a/samples/grids/grid/data-summaries-custom/.prettierrc b/samples/grids/grid/data-summaries-custom/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/grids/grid/data-summaries-custom/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/grids/grid/data-summaries-custom/ReadMe.md b/samples/grids/grid/data-summaries-custom/ReadMe.md new file mode 100644 index 0000000000..ca47c8b4f8 --- /dev/null +++ b/samples/grids/grid/data-summaries-custom/ReadMe.md @@ -0,0 +1,51 @@ + + + +This folder contains implementation of Web Components application with example of Data Summary Options feature using [Grid](https://infragistics.com/webcomponentssite/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-wc-examples.git +cd ./igniteui-wc-examples +cd ./samples/grids/grid/data-summary-options +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: + +``` +npm install +npm run start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/grids/grid/data-summaries-custom/index.html b/samples/grids/grid/data-summaries-custom/index.html new file mode 100644 index 0000000000..b805d559c4 --- /dev/null +++ b/samples/grids/grid/data-summaries-custom/index.html @@ -0,0 +1,77 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+ + + + + + + + + + + + + + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/grids/grid/data-summaries-custom/package.json b/samples/grids/grid/data-summaries-custom/package.json new file mode 100644 index 0000000000..634a1b4137 --- /dev/null +++ b/samples/grids/grid/data-summaries-custom/package.json @@ -0,0 +1,62 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "igniteui-webcomponents-core": "4.2.5", + "igniteui-webcomponents-grids": "4.2.5", + "igniteui-webcomponents-inputs": "4.2.5", + "igniteui-webcomponents-layouts": "4.2.5", + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "lit-html": "^2.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "html-webpack-plugin": "^4.3.0", + "source-map": "^0.7.3", + "typescript": "^4.4.4", + "webpack": "^5.74.0", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "parcel-bundler": "^1.6.1", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "style-loader": "^0.22.1", + "xml-loader": "^1.2.1", + "worker-loader": "^3.0.8" + } +} \ No newline at end of file diff --git a/samples/grids/grid/data-summaries-custom/sandbox.config.json b/samples/grids/grid/data-summaries-custom/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/grids/grid/data-summaries-custom/sandbox.config.json @@ -0,0 +1,6 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} \ No newline at end of file diff --git a/samples/grids/grid/data-summaries-custom/src/NwindData.ts b/samples/grids/grid/data-summaries-custom/src/NwindData.ts new file mode 100644 index 0000000000..52ccbf8133 --- /dev/null +++ b/samples/grids/grid/data-summaries-custom/src/NwindData.ts @@ -0,0 +1,544 @@ +export class NwindDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public ProductID: number; + public ProductName: string; + public SupplierID: number; + public CategoryID: number; + public QuantityPerUnit: string; + public UnitPrice: number; + public UnitsInStock: number; + public UnitsOnOrder: number; + public ReorderLevel: number; + public Discontinued: boolean; + public OrderDate: string; + public Rating: number; + public Locations: NwindDataItem_LocationsItem[]; + +} +export class NwindDataItem_LocationsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public Shop: string; + public LastInventory: string; + +} +export class NwindData extends Array { + public constructor() { + super(); + this.push(new NwindDataItem( + { + ProductID: 1, + ProductName: `Chai`, + SupplierID: 1, + CategoryID: 1, + QuantityPerUnit: `10 boxes x 20 bags`, + UnitPrice: 18, + UnitsInStock: 39, + UnitsOnOrder: 30, + ReorderLevel: 10, + Discontinued: false, + OrderDate: `2012-02-12`, + Rating: 5, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Fun-Tasty Co.`, + LastInventory: `06/12/2018` + }), + new NwindDataItem_LocationsItem( + { + Shop: `Farmer Market`, + LastInventory: `04/04/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 2, + ProductName: `Chang`, + SupplierID: 1, + CategoryID: 1, + QuantityPerUnit: `24 - 12 oz bottles`, + UnitPrice: 19, + UnitsInStock: 17, + UnitsOnOrder: 40, + ReorderLevel: 25, + Discontinued: true, + OrderDate: `2003-03-17`, + Rating: 5, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Super Market`, + LastInventory: `09/09/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 3, + ProductName: `Aniseed Syrup`, + SupplierID: 1, + CategoryID: 2, + QuantityPerUnit: `12 - 550 ml bottles`, + UnitPrice: 10, + UnitsInStock: 13, + UnitsOnOrder: 70, + ReorderLevel: 25, + Discontinued: false, + OrderDate: `2006-03-17`, + Rating: 3, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Farmer Market`, + LastInventory: `04/04/2018` + }), + new NwindDataItem_LocationsItem( + { + Shop: `Street Market`, + LastInventory: `12/12/2018` + }), + new NwindDataItem_LocationsItem( + { + Shop: `24/7 Market`, + LastInventory: `11/11/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 4, + ProductName: `Chef Antons Cajun Seasoning`, + SupplierID: 2, + CategoryID: 2, + QuantityPerUnit: `48 - 6 oz jars`, + UnitPrice: 22, + UnitsInStock: 53, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: false, + OrderDate: `2016-03-17`, + Rating: 3, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Fun-Tasty Co.`, + LastInventory: `06/12/2018` + }), + new NwindDataItem_LocationsItem( + { + Shop: `Farmer Market`, + LastInventory: `04/04/2018` + }), + new NwindDataItem_LocationsItem( + { + Shop: `Street Market`, + LastInventory: `12/12/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 5, + ProductName: `Chef Antons Gumbo Mix`, + SupplierID: 2, + CategoryID: 2, + QuantityPerUnit: `36 boxes`, + UnitPrice: 21.35, + UnitsInStock: 0, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: true, + OrderDate: `2011-11-11`, + Rating: 5, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Super Market`, + LastInventory: `09/09/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 6, + ProductName: `Grandmas Boysenberry Spread`, + SupplierID: 3, + CategoryID: 2, + QuantityPerUnit: `12 - 8 oz jars`, + UnitPrice: 25, + UnitsInStock: 0, + UnitsOnOrder: 30, + ReorderLevel: 25, + Discontinued: false, + OrderDate: `2017-12-17`, + Rating: 4, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Super Market`, + LastInventory: `09/09/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 7, + ProductName: `Uncle Bobs Organic Dried Pears`, + SupplierID: 3, + CategoryID: 7, + QuantityPerUnit: `12 - 1 lb pkgs.`, + UnitPrice: 30, + UnitsInStock: 150, + UnitsOnOrder: 30, + ReorderLevel: 10, + Discontinued: false, + OrderDate: `2016-07-17`, + Rating: 5, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Fun-Tasty Co.`, + LastInventory: `06/12/2018` + }), + new NwindDataItem_LocationsItem( + { + Shop: `Farmer Market`, + LastInventory: `04/04/2018` + }), + new NwindDataItem_LocationsItem( + { + Shop: `Street Market`, + LastInventory: `12/12/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 8, + ProductName: `Northwoods Cranberry Sauce`, + SupplierID: 3, + CategoryID: 2, + QuantityPerUnit: `12 - 12 oz jars`, + UnitPrice: 40, + UnitsInStock: 6, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: false, + OrderDate: `2018-01-17`, + Rating: 4, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Fun-Tasty Co.`, + LastInventory: `06/12/2018` + }), + new NwindDataItem_LocationsItem( + { + Shop: `Farmer Market`, + LastInventory: `04/04/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 9, + ProductName: `Mishi Kobe Niku`, + SupplierID: 4, + CategoryID: 6, + QuantityPerUnit: `18 - 500 g pkgs.`, + UnitPrice: 97, + UnitsInStock: 29, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: true, + OrderDate: `2010-02-17`, + Rating: 4, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Farmer Market`, + LastInventory: `04/04/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 10, + ProductName: `Ikura`, + SupplierID: 4, + CategoryID: 8, + QuantityPerUnit: `12 - 200 ml jars`, + UnitPrice: 31, + UnitsInStock: 31, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: false, + OrderDate: `2008-05-17`, + Rating: 3, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Wall Market`, + LastInventory: `12/06/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 11, + ProductName: `Queso Cabrales`, + SupplierID: 5, + CategoryID: 4, + QuantityPerUnit: `1 kg pkg.`, + UnitPrice: 21, + UnitsInStock: 22, + UnitsOnOrder: 30, + ReorderLevel: 30, + Discontinued: false, + OrderDate: `2009-01-17`, + Rating: 5, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Fun-Tasty Co.`, + LastInventory: `06/12/2018` + }), + new NwindDataItem_LocationsItem( + { + Shop: `Farmer Market`, + LastInventory: `04/04/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 12, + ProductName: `Queso Manchego La Pastora`, + SupplierID: 5, + CategoryID: 4, + QuantityPerUnit: `10 - 500 g pkgs.`, + UnitPrice: 38, + UnitsInStock: 86, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: false, + OrderDate: `2015-11-17`, + Rating: 3, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Farmer Market`, + LastInventory: `04/04/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 13, + ProductName: `Konbu`, + SupplierID: 6, + CategoryID: 8, + QuantityPerUnit: `2 kg box`, + UnitPrice: 6, + UnitsInStock: 24, + UnitsOnOrder: 30, + ReorderLevel: 5, + Discontinued: false, + OrderDate: `2015-03-17`, + Rating: 2, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Super Market`, + LastInventory: `09/09/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 14, + ProductName: `Tofu`, + SupplierID: 6, + CategoryID: 7, + QuantityPerUnit: `40 - 100 g pkgs.`, + UnitPrice: 23.25, + UnitsInStock: 35, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: false, + OrderDate: `2017-06-17`, + Rating: 4, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Farmer Market`, + LastInventory: `04/04/2018` + }), + new NwindDataItem_LocationsItem( + { + Shop: `Street Market`, + LastInventory: `12/12/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 15, + ProductName: `Genen Shouyu`, + SupplierID: 6, + CategoryID: 2, + QuantityPerUnit: `24 - 250 ml bottles`, + UnitPrice: 15.5, + UnitsInStock: 39, + UnitsOnOrder: 30, + ReorderLevel: 5, + Discontinued: false, + OrderDate: `2014-03-17`, + Rating: 4, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Local Market`, + LastInventory: `07/03/2018` + }), + new NwindDataItem_LocationsItem( + { + Shop: `Wall Market`, + LastInventory: `12/06/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 16, + ProductName: `Pavlova`, + SupplierID: 7, + CategoryID: 3, + QuantityPerUnit: `32 - 500 g boxes`, + UnitPrice: 17.45, + UnitsInStock: 29, + UnitsOnOrder: 30, + ReorderLevel: 10, + Discontinued: false, + OrderDate: `2018-03-28`, + Rating: 2, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Farmer Market`, + LastInventory: `04/04/2018` + }), + new NwindDataItem_LocationsItem( + { + Shop: `Street Market`, + LastInventory: `12/12/2018` + }), + new NwindDataItem_LocationsItem( + { + Shop: `24/7 Market`, + LastInventory: `11/11/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 17, + ProductName: `Alice Mutton`, + SupplierID: 7, + CategoryID: 6, + QuantityPerUnit: `20 - 1 kg tins`, + UnitPrice: 39, + UnitsInStock: 0, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: true, + OrderDate: `2015-08-17`, + Rating: 2, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Farmer Market`, + LastInventory: `04/04/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 18, + ProductName: `Carnarvon Tigers`, + SupplierID: 7, + CategoryID: 8, + QuantityPerUnit: `16 kg pkg.`, + UnitPrice: 62.5, + UnitsInStock: 42, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: false, + OrderDate: `2005-09-27`, + Rating: 2, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `24/7 Market`, + LastInventory: `11/11/2018` + }), + new NwindDataItem_LocationsItem( + { + Shop: `Super Market`, + LastInventory: `09/09/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 19, + ProductName: `Teatime Chocolate Biscuits`, + SupplierID: 8, + CategoryID: 3, + QuantityPerUnit: ``, + UnitPrice: 9.2, + UnitsInStock: 25, + UnitsOnOrder: 30, + ReorderLevel: 5, + Discontinued: false, + OrderDate: `2001-03-17`, + Rating: 2, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Local Market`, + LastInventory: `07/03/2018` + })] + + })); + this.push(new NwindDataItem( + { + ProductID: 20, + ProductName: `Sir Rodneys Marmalade`, + SupplierID: 8, + CategoryID: 3, + QuantityPerUnit: `4 - 100 ml jars`, + UnitPrice: 4.5, + UnitsInStock: 40, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: false, + OrderDate: `2005-03-17`, + Rating: 5, + Locations: [ + new NwindDataItem_LocationsItem( + { + Shop: `Super Market`, + LastInventory: `09/09/2018` + })] + + })); + } +} diff --git a/samples/grids/grid/data-summaries-custom/src/index.css b/samples/grids/grid/data-summaries-custom/src/index.css new file mode 100644 index 0000000000..0fe9368715 --- /dev/null +++ b/samples/grids/grid/data-summaries-custom/src/index.css @@ -0,0 +1,2 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/grid/data-summaries-custom/src/index.ts b/samples/grids/grid/data-summaries-custom/src/index.ts new file mode 100644 index 0000000000..98f8d00346 --- /dev/null +++ b/samples/grids/grid/data-summaries-custom/src/index.ts @@ -0,0 +1,89 @@ +import 'igniteui-webcomponents-grids/grids/combined'; +import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; +import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; +import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData'; +import { IgcSummaryResult } from 'igniteui-webcomponents-grids/grids'; + +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; + +class CustomSummary { + operate(data: any[], allData: any[] = [], fieldName: string): IgcSummaryResult[] { + const discontinuedData = allData.filter((rec) => rec['Discontinued']).map(r => (r as any)[fieldName]); + const result = [{ + key: 'products', + label: 'Products', + summaryResult: data.length + },{ + key: 'total', + label: 'Total Items', + summaryResult: data.length ? data.reduce((a, b) => +a + +b) : 0 + },{ + key: 'discontinued', + label: 'Discontinued Products', + summaryResult: allData.map(r => r['Discontinued']).filter((rec) => rec).length + },{ + key: 'totalDiscontinued', + label: 'Total Discontinued Items', + summaryResult: discontinuedData.length ? discontinuedData.reduce((a, b) => +a + +b) : 0 + }]; + return result; + } + } + +export class Sample { + + private grid: IgcGridComponent + private productID: IgcColumnComponent + private productName: IgcColumnComponent + private unitPrice: IgcColumnComponent + private unitsInStock: IgcColumnComponent + private discontinued: IgcColumnComponent + private orderDate: IgcColumnComponent + private _bind: () => void; + + constructor() { + var grid = this.grid = document.getElementById('grid') as IgcGridComponent; + this.webGridCustomSummary = this.webGridCustomSummary.bind(this); + var productID = this.productID = document.getElementById('ProductID') as IgcColumnComponent; + var productName = this.productName = document.getElementById('ProductName') as IgcColumnComponent; + var unitPrice = this.unitPrice = document.getElementById('UnitPrice') as IgcColumnComponent; + var unitsInStock = this.unitsInStock = document.getElementById('UnitsInStock') as IgcColumnComponent; + var discontinued = this.discontinued = document.getElementById('Discontinued') as IgcColumnComponent; + var orderDate = this.orderDate = document.getElementById('OrderDate') as IgcColumnComponent; + + this._bind = () => { + grid.data = this.nwindData; + grid.addEventListener("columnInit", this.webGridCustomSummary); + } + this._bind(); + + } + + private _nwindData: NwindData = null; + public get nwindData(): NwindData { + if (this._nwindData == null) + { + this._nwindData = new NwindData(); + } + return this._nwindData; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + WebGridDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public webGridCustomSummary(args: any): void { + if (args.detail.field === "UnitsInStock") { + args.detail.summaries = CustomSummary; + } + } + +} + +new Sample(); diff --git a/samples/grids/grid/data-summaries-custom/tsconfig.json b/samples/grids/grid/data-summaries-custom/tsconfig.json new file mode 100644 index 0000000000..861fa3aeb1 --- /dev/null +++ b/samples/grids/grid/data-summaries-custom/tsconfig.json @@ -0,0 +1,39 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/grids/grid/data-summaries-custom/tslint.json b/samples/grids/grid/data-summaries-custom/tslint.json new file mode 100644 index 0000000000..18e202b1f9 --- /dev/null +++ b/samples/grids/grid/data-summaries-custom/tslint.json @@ -0,0 +1,53 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "only-arrow-functions": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "no-var-requires": false, + "no-var": false, + "no-var-keyword": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "@typescript-eslint/no-unused-vars": "off", + "jsx-no-lambda": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "member-ordering": false, + "curly": [false, "ignore-same-line"], + "max-classes-per-file": [true, 10], + "prefer-const": false, + "prefer-for-of": false, + "no-useless-constructor": false, + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "only-arrow-functions": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "no-var-requires": false, + "no-console": false, + "no-unused-vars": false, + "@typescript-eslint/no-unused-vars": "off", + "jsx-no-lambda": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "curly": [false, "ignore-same-line"], + "max-classes-per-file": [true, 10], + "prefer-const": false, + "prefer-for-of": false, + "no-useless-constructor": false, + "@typescript-eslint/no-useless-constructor": "off" + } + } \ No newline at end of file diff --git a/samples/grids/grid/data-summaries-custom/webpack.config.js b/samples/grids/grid/data-summaries-custom/webpack.config.js new file mode 100644 index 0000000000..9d11a6155c --- /dev/null +++ b/samples/grids/grid/data-summaries-custom/webpack.config.js @@ -0,0 +1,105 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), + path.resolve(__dirname, 'node_modules/@webcomponents/template'), + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; From f5dd1d1500eae7c48bb5f97e48fe8381bd9e99eb Mon Sep 17 00:00:00 2001 From: Maya Date: Wed, 13 Dec 2023 18:58:52 +0200 Subject: [PATCH 11/20] Update clipboard operations treegrid sample. (#475) Co-authored-by: HUSSAR-mtrela (Martin Trela) --- .../tree-grid/clipboard-operations/index.html | 54 +++------------- .../clipboard-operations/src/index.ts | 62 +++++++++---------- 2 files changed, 38 insertions(+), 78 deletions(-) diff --git a/samples/grids/tree-grid/clipboard-operations/index.html b/samples/grids/tree-grid/clipboard-operations/index.html index 03e03840bf..c5dcf7202f 100644 --- a/samples/grids/tree-grid/clipboard-operations/index.html +++ b/samples/grids/tree-grid/clipboard-operations/index.html @@ -17,50 +17,16 @@
-
- - - - - - - - - - - - -
+
+ + Change copy separator: + The default value is a single tabulation. + + Grid copy behavior + Copying of header labels + Copying column formatters + Clear selection +
void; constructor() { - var propertyEditor = this.propertyEditor = document.getElementById('PropertyEditor') as IgcPropertyEditorPanelComponent; var clipboardEnabledEditor = this.clipboardEnabledEditor = document.getElementById('ClipboardEnabledEditor') as IgcPropertyEditorPropertyDescriptionComponent; var clipboardHeadersEditor = this.clipboardHeadersEditor = document.getElementById('ClipboardHeadersEditor') as IgcPropertyEditorPropertyDescriptionComponent; var clipboardFormattersEditor = this.clipboardFormattersEditor = document.getElementById('ClipboardFormattersEditor') as IgcPropertyEditorPropertyDescriptionComponent; - var propertyEditorPropertyDescription1 = this.propertyEditorPropertyDescription1 = document.getElementById('propertyEditorPropertyDescription1') as IgcPropertyEditorPropertyDescriptionComponent; this.webGridClearSelection = this.webGridClearSelection.bind(this); - var treeGrid = this.treeGrid = document.getElementById('treeGrid') as IgcTreeGridComponent; + var grid = this.treeGrid = document.getElementById('treeGrid') as IgcTreeGridComponent; this.webGridClipboardOperationsColumnInit = this.webGridClipboardOperationsColumnInit.bind(this); - this._bind = () => { - propertyEditor.componentRenderer = this.renderer; - propertyEditor.target = this.treeGrid; - propertyEditorPropertyDescription1.buttonClicked = this.webGridClearSelection; - treeGrid.data = this.employeesFlatDetails; - treeGrid.addEventListener("columnInit", this.webGridClipboardOperationsColumnInit); - } - this._bind(); + grid.data = this.employeesFlatDetails; + grid.addEventListener("columnInit", this.webGridClipboardOperationsColumnInit); + var copyBehaviorSwitch = document.getElementById("copy") as IgcSwitchComponent; + copyBehaviorSwitch.addEventListener("igcChange", (ev: CustomEvent) => { + grid.clipboardOptions.enabled = ev.detail; + }); + + var copyHeaderSwitch = document.getElementById("headerCopy") as IgcSwitchComponent; + copyHeaderSwitch.addEventListener("igcChange", (ev: CustomEvent) => { + grid.clipboardOptions.copyHeaders = ev.detail; + }); + + var formatterSwitch = document.getElementById("formatterCopy") as IgcSwitchComponent; + formatterSwitch.addEventListener("igcChange", (ev: CustomEvent) => { + grid.clipboardOptions.copyFormatters = ev.detail; + }); + + var selectionClearBtn = document.getElementById("selectionClear") as IgcButtonComponent; + selectionClearBtn.addEventListener('click', (ev: any) => { + grid.cellSelection = 'none'; + grid.cellSelection = 'multiple'; + }); + var input = document.getElementById("input") as IgcInputComponent; + input.addEventListener("igcChange", (ev: CustomEvent) => { + grid.clipboardOptions.separator = ev.detail; + }); } private _employeesFlatDetails: EmployeesFlatDetails = null; @@ -57,18 +63,6 @@ export class Sample { } return this._employeesFlatDetails; } - - private _componentRenderer: ComponentRenderer = null; - public get renderer(): ComponentRenderer { - if (this._componentRenderer == null) { - this._componentRenderer = new ComponentRenderer(); - var context = this._componentRenderer.context; - PropertyEditorPanelDescriptionModule.register(context); - WebTreeGridDescriptionModule.register(context); - } - return this._componentRenderer; - } - public webGridClearSelection(args: any): void { console.log("TODO" + args); //TODO From ef0c5a765eb396e8b6278d77c2bd9299f53526b9 Mon Sep 17 00:00:00 2001 From: Maya Date: Wed, 13 Dec 2023 18:59:28 +0200 Subject: [PATCH 12/20] TreeGrid custom filtering wc sample. (#478) Co-authored-by: HUSSAR-mtrela (Martin Trela) --- .../tree-grid/custom-filtering/.prettierrc | 11 + .../tree-grid/custom-filtering/ReadMe.md | 51 ++++ .../tree-grid/custom-filtering/index.html | 89 ++++++ .../tree-grid/custom-filtering/package.json | 62 ++++ .../custom-filtering/sandbox.config.json | 6 + .../custom-filtering/src/OrdersData.ts | 285 ++++++++++++++++++ .../tree-grid/custom-filtering/src/index.css | 2 + .../tree-grid/custom-filtering/src/index.ts | 90 ++++++ .../tree-grid/custom-filtering/tsconfig.json | 39 +++ .../tree-grid/custom-filtering/tslint.json | 53 ++++ .../custom-filtering/webpack.config.js | 105 +++++++ 11 files changed, 793 insertions(+) create mode 100644 samples/grids/tree-grid/custom-filtering/.prettierrc create mode 100644 samples/grids/tree-grid/custom-filtering/ReadMe.md create mode 100644 samples/grids/tree-grid/custom-filtering/index.html create mode 100644 samples/grids/tree-grid/custom-filtering/package.json create mode 100644 samples/grids/tree-grid/custom-filtering/sandbox.config.json create mode 100644 samples/grids/tree-grid/custom-filtering/src/OrdersData.ts create mode 100644 samples/grids/tree-grid/custom-filtering/src/index.css create mode 100644 samples/grids/tree-grid/custom-filtering/src/index.ts create mode 100644 samples/grids/tree-grid/custom-filtering/tsconfig.json create mode 100644 samples/grids/tree-grid/custom-filtering/tslint.json create mode 100644 samples/grids/tree-grid/custom-filtering/webpack.config.js diff --git a/samples/grids/tree-grid/custom-filtering/.prettierrc b/samples/grids/tree-grid/custom-filtering/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/grids/tree-grid/custom-filtering/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/grids/tree-grid/custom-filtering/ReadMe.md b/samples/grids/tree-grid/custom-filtering/ReadMe.md new file mode 100644 index 0000000000..2d29cb5ba3 --- /dev/null +++ b/samples/grids/tree-grid/custom-filtering/ReadMe.md @@ -0,0 +1,51 @@ + + + +This folder contains implementation of Web Components application with example of Overview feature using [Tree Grid](https://infragistics.com/webcomponentssite/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-wc-examples.git +cd ./igniteui-wc-examples +cd ./samples/grids/tree-grid/overview +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: + +``` +npm install +npm run start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/grids/tree-grid/custom-filtering/index.html b/samples/grids/tree-grid/custom-filtering/index.html new file mode 100644 index 0000000000..8a1b5cfd0d --- /dev/null +++ b/samples/grids/tree-grid/custom-filtering/index.html @@ -0,0 +1,89 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/grids/tree-grid/custom-filtering/package.json b/samples/grids/tree-grid/custom-filtering/package.json new file mode 100644 index 0000000000..c0f0abc43f --- /dev/null +++ b/samples/grids/tree-grid/custom-filtering/package.json @@ -0,0 +1,62 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "igniteui-webcomponents-core": "4.3.0-beta.1", + "igniteui-webcomponents-grids": "4.3.0-beta.1", + "igniteui-webcomponents-inputs": "4.3.0-beta.1", + "igniteui-webcomponents-layouts": "4.3.0-beta.1", + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "lit-html": "^2.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "html-webpack-plugin": "^4.3.0", + "source-map": "^0.7.3", + "typescript": "^4.4.4", + "webpack": "^5.74.0", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "parcel-bundler": "^1.6.1", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "style-loader": "^0.22.1", + "xml-loader": "^1.2.1", + "worker-loader": "^3.0.8" + } +} \ No newline at end of file diff --git a/samples/grids/tree-grid/custom-filtering/sandbox.config.json b/samples/grids/tree-grid/custom-filtering/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/grids/tree-grid/custom-filtering/sandbox.config.json @@ -0,0 +1,6 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} \ No newline at end of file diff --git a/samples/grids/tree-grid/custom-filtering/src/OrdersData.ts b/samples/grids/tree-grid/custom-filtering/src/OrdersData.ts new file mode 100644 index 0000000000..22a21a4d27 --- /dev/null +++ b/samples/grids/tree-grid/custom-filtering/src/OrdersData.ts @@ -0,0 +1,285 @@ +export class OrdersDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public ID: number; + public ParentID: number; + public Name: string; + public Category: string; + public OrderDate: string; + public Units: number; + public UnitPrice: number; + public Price: number; + public Delivered: boolean; + +} +export class OrdersData extends Array { + public constructor() { + super(); + this.push(new OrdersDataItem( + { + ID: 1, + ParentID: -1, + Name: `Order 1`, + Category: ``, + OrderDate: `2010-02-17`, + Units: 1844, + UnitPrice: 3.73, + Price: 6884.38, + Delivered: true + })); + this.push(new OrdersDataItem( + { + ID: 101, + ParentID: 1, + Name: `Chocolate Chip Cookies`, + Category: `Cookies`, + OrderDate: `2010-02-17`, + Units: 834, + UnitPrice: 3.59, + Price: 2994.06, + Delivered: true + })); + this.push(new OrdersDataItem( + { + ID: 102, + ParentID: 1, + Name: `Red Apples`, + Category: `Fruit`, + OrderDate: `2010-02-17`, + Units: 371, + UnitPrice: 3.66, + Price: 1357.86, + Delivered: true + })); + this.push(new OrdersDataItem( + { + ID: 103, + ParentID: 1, + Name: `Butter`, + Category: `Diary`, + OrderDate: `2010-02-17`, + Units: 260, + UnitPrice: 3.45, + Price: 897, + Delivered: true + })); + this.push(new OrdersDataItem( + { + ID: 104, + ParentID: 1, + Name: `Potato Chips`, + Category: `Snack`, + OrderDate: `2010-02-17`, + Units: 118, + UnitPrice: 1.96, + Price: 231.28, + Delivered: true + })); + this.push(new OrdersDataItem( + { + ID: 105, + ParentID: 1, + Name: `Orange Juice`, + Category: `Beverages`, + OrderDate: `2010-02-17`, + Units: 261, + UnitPrice: 5.38, + Price: 1404.18, + Delivered: true + })); + this.push(new OrdersDataItem( + { + ID: 2, + ParentID: -1, + Name: `Order 2`, + Category: ``, + OrderDate: `2022-05-27`, + Units: 1831, + UnitPrice: 8.23, + Price: 15062.77, + Delivered: false + })); + this.push(new OrdersDataItem( + { + ID: 201, + ParentID: 2, + Name: `Frozen Shrimps`, + Category: `Seafood`, + OrderDate: `2022-05-27`, + Units: 120, + UnitPrice: 20.45, + Price: 2454, + Delivered: false + })); + this.push(new OrdersDataItem( + { + ID: 202, + ParentID: 2, + Name: `Ice Tea`, + Category: `Beverages`, + OrderDate: `2022-05-27`, + Units: 840, + UnitPrice: 7, + Price: 5880, + Delivered: false + })); + this.push(new OrdersDataItem( + { + ID: 203, + ParentID: 2, + Name: `Fresh Cheese`, + Category: `Diary`, + OrderDate: `2022-05-27`, + Units: 267, + UnitPrice: 16.55, + Price: 4418.85, + Delivered: false + })); + this.push(new OrdersDataItem( + { + ID: 204, + ParentID: 2, + Name: `Carrots`, + Category: `Vegetables`, + OrderDate: `2022-05-27`, + Units: 360, + UnitPrice: 2.77, + Price: 997.2, + Delivered: false + })); + this.push(new OrdersDataItem( + { + ID: 205, + ParentID: 2, + Name: `Apple Juice`, + Category: `Beverages`, + OrderDate: `2022-05-27`, + Units: 244, + UnitPrice: 5.38, + Price: 1312.72, + Delivered: false + })); + this.push(new OrdersDataItem( + { + ID: 3, + ParentID: -1, + Name: `Order 3`, + Category: ``, + OrderDate: `2022-08-04`, + Units: 1972, + UnitPrice: 3.47, + Price: 6849.18, + Delivered: true + })); + this.push(new OrdersDataItem( + { + ID: 301, + ParentID: 3, + Name: `Skimmed Milk 1L`, + Category: `Diary`, + OrderDate: `2022-08-04`, + Units: 1028, + UnitPrice: 3.56, + Price: 3659.68, + Delivered: true + })); + this.push(new OrdersDataItem( + { + ID: 302, + ParentID: 3, + Name: `Bananas 5 Pack`, + Category: `Fruit`, + OrderDate: `2022-08-04`, + Units: 370, + UnitPrice: 6.36, + Price: 2353.2, + Delivered: true + })); + this.push(new OrdersDataItem( + { + ID: 303, + ParentID: 3, + Name: `Cauliflower`, + Category: `Vegetables`, + OrderDate: `2022-08-04`, + Units: 283, + UnitPrice: 0.95, + Price: 268.85, + Delivered: true + })); + this.push(new OrdersDataItem( + { + ID: 304, + ParentID: 3, + Name: `White Chocolate Cookies`, + Category: `Cookies`, + OrderDate: `2022-08-04`, + Units: 291, + UnitPrice: 1.95, + Price: 567.45, + Delivered: true + })); + this.push(new OrdersDataItem( + { + ID: 4, + ParentID: -1, + Name: `Order 4`, + Category: ``, + OrderDate: `2023-01-04`, + Units: 1065, + UnitPrice: 5.56, + Price: 5923.5, + Delivered: true + })); + this.push(new OrdersDataItem( + { + ID: 401, + ParentID: 4, + Name: `Mini Milk Chocolate Cookie Bites`, + Category: `Cookies`, + OrderDate: `2023-01-04`, + Units: 68, + UnitPrice: 2.25, + Price: 153, + Delivered: true + })); + this.push(new OrdersDataItem( + { + ID: 402, + ParentID: 4, + Name: `Wild Salmon Fillets`, + Category: `Seafood`, + OrderDate: `2023-01-04`, + Units: 320, + UnitPrice: 16.15, + Price: 5168, + Delivered: true + })); + this.push(new OrdersDataItem( + { + ID: 403, + ParentID: 4, + Name: `Diet Lemonade`, + Category: `Beverages`, + OrderDate: `2023-01-04`, + Units: 437, + UnitPrice: 0.5, + Price: 218.5, + Delivered: true + })); + this.push(new OrdersDataItem( + { + ID: 404, + ParentID: 4, + Name: `Potatos`, + Category: `Vegetables`, + OrderDate: `2023-01-04`, + Units: 240, + UnitPrice: 1.6, + Price: 384, + Delivered: true + })); + } +} diff --git a/samples/grids/tree-grid/custom-filtering/src/index.css b/samples/grids/tree-grid/custom-filtering/src/index.css new file mode 100644 index 0000000000..0fe9368715 --- /dev/null +++ b/samples/grids/tree-grid/custom-filtering/src/index.css @@ -0,0 +1,2 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/tree-grid/custom-filtering/src/index.ts b/samples/grids/tree-grid/custom-filtering/src/index.ts new file mode 100644 index 0000000000..eb1b4c81b3 --- /dev/null +++ b/samples/grids/tree-grid/custom-filtering/src/index.ts @@ -0,0 +1,90 @@ +import 'igniteui-webcomponents-grids/grids/combined'; +import { IgcBooleanFilteringOperand, IgcColumnComponent, IgcStringFilteringOperand, IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; +import { OrdersDataItem, OrdersData } from './OrdersData'; + +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; + +import "./index.css"; + + +export class Sample { + + private treeGrid: IgcTreeGridComponent; + public caseSensitiveFilteringOperand = CaseSensitiveFilteringOperand.instance(); + public booleanFilteringOperand = BooleanFilteringOperand.instance(); + constructor() { + var treeGrid = this.treeGrid = document.getElementById('treeGrid') as IgcTreeGridComponent; + var name = document.getElementById('name') as IgcColumnComponent; + var delivered = document.getElementById('delivered') as IgcColumnComponent; + treeGrid.data = this.ordersData; + name.filters = this.caseSensitiveFilteringOperand; + delivered.filters = this.booleanFilteringOperand; + } + + private _ordersData: OrdersData = null; + public get ordersData(): OrdersData { + if (this._ordersData == null) + { + this._ordersData = new OrdersData(); + } + return this._ordersData; + } + + + +} + +export class CaseSensitiveFilteringOperand extends IgcStringFilteringOperand { + private constructor() { + super(); + const customOperations = [ + { + iconName: 'contains', + isUnary: false, + logic: (target: string, searchVal: string, ignoreCase?: boolean) => { + ignoreCase = false; + const search = IgcStringFilteringOperand.applyIgnoreCase(searchVal, ignoreCase); + target = IgcStringFilteringOperand.applyIgnoreCase(target, ignoreCase); + return target.indexOf(search) !== -1; + }, + name: 'Contains (case sensitive)' + }, + { + iconName: 'does_not_contain', + isUnary: false, + logic: (target: string, searchVal: string, ignoreCase?: boolean) => { + ignoreCase = false; + const search = IgcStringFilteringOperand.applyIgnoreCase(searchVal, ignoreCase); + target = IgcStringFilteringOperand.applyIgnoreCase(target, ignoreCase); + return target.indexOf(search) === -1; + }, + name: 'Does Not Contain (case sensitive)' + } + ]; + + const emptyOperators = [ + // 'Empty' + this.operations[6], + // 'Not Empty' + this.operations[7] + ]; + + this.operations = customOperations.concat(emptyOperators); + } +} + +export class BooleanFilteringOperand extends IgcBooleanFilteringOperand { + private constructor() { + super(); + this.operations = [ + // 'All' + this.operations[0], + // 'TRUE' + this.operations[1], + // 'FALSE' + this.operations[2] + ]; + } +} + +new Sample(); diff --git a/samples/grids/tree-grid/custom-filtering/tsconfig.json b/samples/grids/tree-grid/custom-filtering/tsconfig.json new file mode 100644 index 0000000000..861fa3aeb1 --- /dev/null +++ b/samples/grids/tree-grid/custom-filtering/tsconfig.json @@ -0,0 +1,39 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/grids/tree-grid/custom-filtering/tslint.json b/samples/grids/tree-grid/custom-filtering/tslint.json new file mode 100644 index 0000000000..18e202b1f9 --- /dev/null +++ b/samples/grids/tree-grid/custom-filtering/tslint.json @@ -0,0 +1,53 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "only-arrow-functions": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "no-var-requires": false, + "no-var": false, + "no-var-keyword": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "@typescript-eslint/no-unused-vars": "off", + "jsx-no-lambda": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "member-ordering": false, + "curly": [false, "ignore-same-line"], + "max-classes-per-file": [true, 10], + "prefer-const": false, + "prefer-for-of": false, + "no-useless-constructor": false, + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "only-arrow-functions": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "no-var-requires": false, + "no-console": false, + "no-unused-vars": false, + "@typescript-eslint/no-unused-vars": "off", + "jsx-no-lambda": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "curly": [false, "ignore-same-line"], + "max-classes-per-file": [true, 10], + "prefer-const": false, + "prefer-for-of": false, + "no-useless-constructor": false, + "@typescript-eslint/no-useless-constructor": "off" + } + } \ No newline at end of file diff --git a/samples/grids/tree-grid/custom-filtering/webpack.config.js b/samples/grids/tree-grid/custom-filtering/webpack.config.js new file mode 100644 index 0000000000..9d11a6155c --- /dev/null +++ b/samples/grids/tree-grid/custom-filtering/webpack.config.js @@ -0,0 +1,105 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), + path.resolve(__dirname, 'node_modules/@webcomponents/template'), + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; From ee00ae2539f50eb34a95c34eeba531e89945c750 Mon Sep 17 00:00:00 2001 From: Maya Date: Wed, 13 Dec 2023 19:00:03 +0200 Subject: [PATCH 13/20] Add treegrid keyboard navigation guide sample. (#507) * Add treegrid keyboard navigation guide sample. * Update standalone sample versions. Update type. * Try another type. --------- Co-authored-by: HUSSAR-mtrela (Martin Trela) --- .../keyboard-navigation-guide/.prettierrc | 11 + .../keyboard-navigation-guide/ReadMe.md | 51 +++ .../keyboard-navigation-guide/index.html | 85 +++++ .../keyboard-navigation-guide/package.json | 62 ++++ .../sandbox.config.json | 6 + .../src/EmployeesFlatDetails.ts | 332 ++++++++++++++++++ .../keyboard-navigation-guide/src/Item.ts | 45 +++ .../keyboard-navigation-guide/src/index.css | 29 ++ .../keyboard-navigation-guide/src/index.ts | 277 +++++++++++++++ .../keyboard-navigation-guide/tsconfig.json | 39 ++ .../keyboard-navigation-guide/tslint.json | 53 +++ .../webpack.config.js | 105 ++++++ 12 files changed, 1095 insertions(+) create mode 100644 samples/grids/tree-grid/keyboard-navigation-guide/.prettierrc create mode 100644 samples/grids/tree-grid/keyboard-navigation-guide/ReadMe.md create mode 100644 samples/grids/tree-grid/keyboard-navigation-guide/index.html create mode 100644 samples/grids/tree-grid/keyboard-navigation-guide/package.json create mode 100644 samples/grids/tree-grid/keyboard-navigation-guide/sandbox.config.json create mode 100644 samples/grids/tree-grid/keyboard-navigation-guide/src/EmployeesFlatDetails.ts create mode 100644 samples/grids/tree-grid/keyboard-navigation-guide/src/Item.ts create mode 100644 samples/grids/tree-grid/keyboard-navigation-guide/src/index.css create mode 100644 samples/grids/tree-grid/keyboard-navigation-guide/src/index.ts create mode 100644 samples/grids/tree-grid/keyboard-navigation-guide/tsconfig.json create mode 100644 samples/grids/tree-grid/keyboard-navigation-guide/tslint.json create mode 100644 samples/grids/tree-grid/keyboard-navigation-guide/webpack.config.js diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/.prettierrc b/samples/grids/tree-grid/keyboard-navigation-guide/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/grids/tree-grid/keyboard-navigation-guide/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/ReadMe.md b/samples/grids/tree-grid/keyboard-navigation-guide/ReadMe.md new file mode 100644 index 0000000000..1e1f040bb9 --- /dev/null +++ b/samples/grids/tree-grid/keyboard-navigation-guide/ReadMe.md @@ -0,0 +1,51 @@ + + + +This folder contains implementation of Web Components application with example of Column Collapsible Groups feature using [Grid](https://infragistics.com/webcomponentssite/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-wc-examples.git +cd ./igniteui-wc-examples +cd ./samples/grids/grid/column-collapsible-groups +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: + +``` +npm install +npm run start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/index.html b/samples/grids/tree-grid/keyboard-navigation-guide/index.html new file mode 100644 index 0000000000..76c4335e5d --- /dev/null +++ b/samples/grids/tree-grid/keyboard-navigation-guide/index.html @@ -0,0 +1,85 @@ + + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
Use the native navigation of the browser until you reach some of the following grid + sections below:
+
    +
  • Header
  • +
  • Body
  • +
  • Summary
  • +
+
When reached, an action list will be shown.
+
+
+
+
+
+ + + <% if (false) { %> + + <% } %> + + + \ No newline at end of file diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/package.json b/samples/grids/tree-grid/keyboard-navigation-guide/package.json new file mode 100644 index 0000000000..be069cfd30 --- /dev/null +++ b/samples/grids/tree-grid/keyboard-navigation-guide/package.json @@ -0,0 +1,62 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "igniteui-webcomponents-core": "4.3.0", + "igniteui-webcomponents-grids": "4.3.0", + "igniteui-webcomponents-inputs": "4.3.0", + "igniteui-webcomponents-layouts": "4.3.0", + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "lit-html": "^2.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "html-webpack-plugin": "^4.3.0", + "source-map": "^0.7.3", + "typescript": "^4.4.4", + "webpack": "^5.74.0", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "parcel-bundler": "^1.6.1", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "style-loader": "^0.22.1", + "xml-loader": "^1.2.1", + "worker-loader": "^3.0.8" + } +} \ No newline at end of file diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/sandbox.config.json b/samples/grids/tree-grid/keyboard-navigation-guide/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/grids/tree-grid/keyboard-navigation-guide/sandbox.config.json @@ -0,0 +1,6 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} \ No newline at end of file diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/keyboard-navigation-guide/src/EmployeesFlatDetails.ts new file mode 100644 index 0000000000..3b17280390 --- /dev/null +++ b/samples/grids/tree-grid/keyboard-navigation-guide/src/EmployeesFlatDetails.ts @@ -0,0 +1,332 @@ +export class EmployeesFlatDetailsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public Address: string; + public Age: number; + public City: string; + public Country: string; + public Fax: string; + public HireDate: string; + public ID: number; + public Name: string; + public ParentID: number; + public Phone: string; + public PostalCode: string; + public Title: string; + public LastName: string; + public FullAddress: string; + +} +export class EmployeesFlatDetails extends Array { + public constructor() { + super(); + this.push(new EmployeesFlatDetailsItem( + { + Address: `Obere Str. 57`, + Age: 55, + City: `Berlin`, + Country: `Germany`, + Fax: `030-0076545`, + HireDate: `2008, 3, 20`, + ID: 1, + Name: `Johnathan Winchester`, + ParentID: -1, + Phone: `030-0074321`, + PostalCode: `12209`, + Title: `Development Manager`, + LastName: `Winchester`, + FullAddress: `Obere Str. 57, Berlin, Germany` + })); + this.push(new EmployeesFlatDetailsItem( + { + Address: `Avda. de la Constitución 2222`, + Age: 42, + City: `México D.F.`, + Country: `Mexico`, + Fax: `(5) 555-3745`, + HireDate: `2014, 1, 22`, + ID: 4, + Name: `Ana Sanders`, + ParentID: -1, + Phone: `(5) 555-4729`, + PostalCode: `05021`, + Title: `CEO`, + LastName: `Sanders`, + FullAddress: `Avda. de la Constitución 2222, México D.F., Mexico` + })); + this.push(new EmployeesFlatDetailsItem( + { + Address: `Mataderos 2312`, + Age: 49, + City: `México D.F.`, + Country: `Mexico`, + Fax: `(5) 555-3995`, + HireDate: `2014, 1, 22`, + ID: 18, + Name: `Victoria Lincoln`, + ParentID: -1, + Phone: `(5) 555-3932`, + PostalCode: `05023`, + Title: `Accounting Manager`, + LastName: `Lincoln`, + FullAddress: `Mataderos 2312, México D.F., Mexico` + })); + this.push(new EmployeesFlatDetailsItem( + { + Address: `120 Hanover Sq.`, + Age: 61, + City: `London`, + Country: `UK`, + Fax: `(171) 555-6750`, + HireDate: `2010, 1, 1`, + ID: 10, + Name: `Yang Wang`, + ParentID: -1, + Phone: `(171) 555-7788`, + PostalCode: `WA1 1DP`, + Title: `Localization Manager`, + LastName: `Wang`, + FullAddress: `120 Hanover Sq., London, UK` + })); + this.push(new EmployeesFlatDetailsItem( + { + Address: `Berguvsvägen 8`, + Age: 43, + City: `Luleå`, + Country: `Sweden`, + Fax: `0921-12 34 67`, + HireDate: `2011, 6, 3`, + ID: 3, + Name: `Michael Burke`, + ParentID: 1, + Phone: `0921-12 34 65`, + PostalCode: `S-958 22`, + Title: `Senior Software Developer`, + LastName: `Burke`, + FullAddress: `Berguvsvägen 8, Luleå, Sweden` + })); + this.push(new EmployeesFlatDetailsItem( + { + Address: `Forsterstr. 57`, + Age: 29, + City: `Mannheim`, + Country: `Germany`, + Fax: `0621-08924`, + HireDate: `2009, 6, 19`, + ID: 2, + Name: `Thomas Anderson`, + ParentID: 1, + Phone: `0621-08460`, + PostalCode: `68306`, + Title: `Senior Software Developer`, + LastName: `Anderson`, + FullAddress: `Forsterstr. 57, Mannheim, Germany` + })); + this.push(new EmployeesFlatDetailsItem( + { + Address: `24, place Kléber`, + Age: 31, + City: `Strasbourg`, + Country: `France`, + Fax: `88.60.15.32`, + HireDate: `2014, 8, 18`, + ID: 11, + Name: `Monica Reyes`, + ParentID: 1, + Phone: `88.60.15.31`, + PostalCode: `67000`, + Title: `Software Development Team Lead`, + LastName: `Reyes`, + FullAddress: `24, place Kléber, Strasbourg, France` + })); + this.push(new EmployeesFlatDetailsItem( + { + Address: `C/ Araquil, 67`, + Age: 35, + City: `Madrid`, + Country: `Spain`, + Fax: `(91) 555 91 99`, + HireDate: `2015, 9, 17`, + ID: 6, + Name: `Roland Mendel`, + ParentID: 11, + Phone: `(91) 555 22 82`, + PostalCode: `28023`, + Title: `Senior Software Developer`, + LastName: `Mendel`, + FullAddress: `C/ Araquil, 67, Madrid, Spain` + })); + this.push(new EmployeesFlatDetailsItem( + { + Address: `12, rue des Bouchers`, + Age: 44, + City: `Marseille`, + Country: `France`, + Fax: `91.24.45.41`, + HireDate: `2009, 10, 11`, + ID: 12, + Name: `Sven Cooper`, + ParentID: 11, + Phone: `91.24.45.40`, + PostalCode: `13008`, + Title: `Senior Software Developer`, + LastName: `Cooper`, + FullAddress: `12, rue des Bouchers, Marseille, France` + })); + this.push(new EmployeesFlatDetailsItem( + { + Address: `23 Tsawassen Blvd.`, + Age: 44, + City: `Tsawassen`, + Country: `Canada`, + Fax: `(604) 555-3745`, + HireDate: `2014, 4, 4`, + ID: 14, + Name: `Laurence Johnson`, + ParentID: 4, + Phone: `(604) 555-4729`, + PostalCode: `T2F 8M4`, + Title: `Director`, + LastName: `Johnson`, + FullAddress: `23 Tsawassen Blvd., Tsawassen, Canada` + })); + this.push(new EmployeesFlatDetailsItem( + { + Address: `Fauntleroy Circus`, + Age: 25, + City: `London`, + Country: `UK`, + Fax: `(5) 555-3798`, + HireDate: `2017, 11, 9`, + ID: 5, + Name: `Elizabeth Richards`, + ParentID: 4, + Phone: `(171) 555-1212`, + PostalCode: `EC2 5NT`, + Title: `Vice President`, + LastName: `Richards`, + FullAddress: `Fauntleroy Circus, London, UK` + })); + this.push(new EmployeesFlatDetailsItem( + { + Address: `Cerrito 333`, + Age: 39, + City: `Buenos Aires`, + Country: `Argentina`, + Fax: `(1) 135-4892`, + HireDate: `2010, 3, 22`, + ID: 13, + Name: `Trevor Ashworth`, + ParentID: 5, + Phone: `(1) 135-5555`, + PostalCode: `1010`, + Title: `Director`, + LastName: `Ashworth`, + FullAddress: `Cerrito 333, Buenos Aires, Argentina` + })); + this.push(new EmployeesFlatDetailsItem( + { + Address: `Sierras de Granada 9993`, + Age: 44, + City: `México D.F.`, + Country: `Mexico`, + Fax: `(5) 555-7293`, + HireDate: `2014, 4, 4`, + ID: 17, + Name: `Antonio Moreno`, + ParentID: 18, + Phone: `(5) 555-3392`, + PostalCode: `05022`, + Title: `Senior Accountant`, + LastName: `Moreno`, + FullAddress: `Sierras de Granada 9993, México D.F., Mexico` + })); + this.push(new EmployeesFlatDetailsItem( + { + Address: `Hauptstr. 29`, + Age: 50, + City: `Sao Paulo`, + Country: `Brazil`, + Fax: `(5) 555-6691`, + HireDate: `2007, 11, 18`, + ID: 7, + Name: `Pedro Rodriguez`, + ParentID: 10, + Phone: `0452-076545`, + PostalCode: `3012`, + Title: `Senior Localization Developer`, + LastName: `Rodriguez`, + FullAddress: `Hauptstr. 29, Sao Paulo, Brazil` + })); + this.push(new EmployeesFlatDetailsItem( + { + Address: `Av. dos Lusíadas, 23`, + Age: 27, + City: `Bern`, + Country: `Switzerland`, + Fax: ``, + HireDate: `2016, 2, 19`, + ID: 8, + Name: `Casey Harper`, + ParentID: 10, + Phone: `(11) 555-7647`, + PostalCode: `05432-043`, + Title: `Senior Localization`, + LastName: `Harper`, + FullAddress: `Av. dos Lusíadas, 23, Bern, Switzerland` + })); + this.push(new EmployeesFlatDetailsItem( + { + Address: `Berkeley Gardens 12`, + Age: 25, + City: `London`, + Country: `UK`, + Fax: `(171) 555-9199`, + HireDate: `2017, 11, 9`, + ID: 15, + Name: `Patricia Simpson`, + ParentID: 7, + Phone: `(171) 555-2282`, + PostalCode: `WX1 6LT`, + Title: `Localization Intern`, + LastName: `Simpson`, + FullAddress: `Berkeley Gardens 12, London, UK` + })); + this.push(new EmployeesFlatDetailsItem( + { + Address: `Walserweg 21`, + Age: 39, + City: `Aachen`, + Country: `Germany`, + Fax: `0241-059428`, + HireDate: `2010, 3, 22`, + ID: 9, + Name: `Francisco Chang`, + ParentID: 7, + Phone: `0241-039123`, + PostalCode: `52066`, + Title: `Localization Intern`, + LastName: `Chang`, + FullAddress: `Walserweg 21, Aachen, Germany` + })); + this.push(new EmployeesFlatDetailsItem( + { + Address: `35 King George`, + Age: 25, + City: `London`, + Country: `UK`, + Fax: `(171) 555-3373`, + HireDate: `2018, 3, 18`, + ID: 16, + Name: `Peter Lewis`, + ParentID: 7, + Phone: `(171) 555-0297`, + PostalCode: `WX3 6FW`, + Title: `Localization Intern`, + LastName: `Lewis`, + FullAddress: `35 King George, London, UK` + })); + } +} diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/src/Item.ts b/samples/grids/tree-grid/keyboard-navigation-guide/src/Item.ts new file mode 100644 index 0000000000..85f4949d4f --- /dev/null +++ b/samples/grids/tree-grid/keyboard-navigation-guide/src/Item.ts @@ -0,0 +1,45 @@ +export enum ItemAction { + Filterable, + Sortable, + Selectable, + Groupable, + Collapsible, + Expandable, + Editable, + Always +} + +export enum GridSection { + THEAD = 'igx-grid__thead-wrapper', + TBODY = 'igx-grid__tbody-content', + FOOTER = 'igx-grid__tfoot' +} +export class Item { + public title: string; + public subTitle: string; + public action: ItemAction; + public active = false; + + private _completed: boolean; + + public constructor(title: string, subTitle: string, completed: boolean, itemAction?: ItemAction) { + this.title = title; + this.subTitle = subTitle; + this.completed = completed; + this.action = itemAction; + + if (itemAction === ItemAction.Always) { + this.active = true; + } + } + + public set completed(value: boolean) { + if (this.active || (!value && !this.completed)) { + this._completed = value; + } + } + + public get completed() { + return this._completed; + } +} diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/src/index.css b/samples/grids/tree-grid/keyboard-navigation-guide/src/index.css new file mode 100644 index 0000000000..35149fb7ad --- /dev/null +++ b/samples/grids/tree-grid/keyboard-navigation-guide/src/index.css @@ -0,0 +1,29 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + +.grid_wrapper { + width: 75%; +} + +.list_wrapper { + width: 20%; +} + +.container { + display: flex; + flex-direction: row; +} + +.empty-list > h6 { + padding: 15px; + font-size: 15px; +} + +.empty-list > ul { + margin-left: 15px; + font-weight: 400; +} + +.disabled { + opacity: .4; +} \ No newline at end of file diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/src/index.ts b/samples/grids/tree-grid/keyboard-navigation-guide/src/index.ts new file mode 100644 index 0000000000..a863f6554d --- /dev/null +++ b/samples/grids/tree-grid/keyboard-navigation-guide/src/index.ts @@ -0,0 +1,277 @@ +import 'igniteui-webcomponents-grids/grids/combined'; +import { IgcActiveNodeChangeEventArgs, IgcCellType, IgcColumnComponent, IgcColumnGroupComponent, IgcGridComponent, IgcGridMasterDetailContext, IgcTreeGridComponent, SortingDirection } from 'igniteui-webcomponents-grids/grids'; +import { EmployeesFlatDetails } from './EmployeesFlatDetails'; +import { html } from 'igniteui-webcomponents-core'; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; +import { Item, ItemAction, GridSection } from './Item'; +import { defineComponents, IgcListComponent, IgcCheckboxComponent } from 'igniteui-webcomponents'; + +defineComponents(IgcListComponent, IgcCheckboxComponent); + +const theadKeyCombinations = [ + new Item('space key', 'select column', false, ItemAction.Selectable), + new Item('ctrl + arrow up/down', 'sorts the column asc/desc', false, ItemAction.Sortable), + new Item('shift + alt + arrow left/right', 'group/ungroup the active column', false, ItemAction.Groupable), + new Item('alt + arrow left/right/up/down', 'expand/collapse active multi column header', + false, ItemAction.Collapsible), + new Item('ctrl + shift + l', 'opens the excel style filtering', false, ItemAction.Filterable), + new Item('alt + l', 'opens the advanced filtering', false, ItemAction.Filterable) +]; + +const tbodyKeyCombinations: Item[] = [ + new Item('enter', 'enter in edit mode', false, ItemAction.Editable), + new Item('alt + arrow left/up', 'collapse master details row', false, ItemAction.Collapsible), + new Item('alt + arrow right/down', 'expand master details row', false, ItemAction.Collapsible), + new Item('alt + arrow right/left', 'expand/collapse the group row', false, ItemAction.Expandable), + new Item('ctrl + Home/End', 'navigates to the upper-left/bottom-right cell', false, ItemAction.Always) +]; + +const summaryCombinations: Item[] = [ + new Item('ArrowLeft', 'navigates one summary cell left', false, ItemAction.Always), + new Item('ArrowRight', 'navigates one summary cell right', false, ItemAction.Always), + new Item('Home', 'navigates to the first summary cell', false, ItemAction.Always), + new Item('End', 'navigates to the last summary cell', false, ItemAction.Always) +]; + + +export class Sample { + + private grid: IgcTreeGridComponent; + private list: IgcListComponent; + private activeCollection: Item[]; + private gridSection: GridSection; + private activeNode: any; + + constructor() { + var grid = this.grid = document.getElementById('grid') as IgcTreeGridComponent; + var list = this.list = document.getElementById('list') as IgcListComponent; + this.onActiveNodeChange = this.onActiveNodeChange.bind(this); + this.gridKeydown = this.gridKeydown.bind(this); + this.keydown = this.keydown.bind(this); + grid.data = this.data; + grid.addEventListener("activeNodeChange", this.onActiveNodeChange); + grid.addEventListener("gridKeydown", this.gridKeydown); + grid.addEventListener("keydown", this.keydown); + } + public changeCombinationsCollection(gridSection: GridSection, evt: any) { + switch (gridSection) { + case GridSection.THEAD: + this.activeCollection = theadKeyCombinations; + this.toggleHeaderCombinations(evt); + + break; + case GridSection.TBODY: + this.activeCollection = tbodyKeyCombinations; + this.toggleBodyCombinations(evt); + break; + case GridSection.FOOTER: + this.activeCollection = summaryCombinations; + break; + default: + this.activeCollection = []; + return; + } + this.updateList(); + } + + public updateList() { + this.list.innerHTML = this.listTemplate(); + } + + public toggleHeaderCombinations(activeNode: any) { + const currColumn = this.grid.columns + .find(c => c.visibleIndex === activeNode.column && c.level === activeNode.level) as IgcColumnGroupComponent; + this.activeCollection.forEach(x => x.active = true); + const actions = this.extractColumnActions(currColumn); + this.activeCollection.filter(x => actions.indexOf(x.action) === -1 && x.action !== ItemAction.Always)?.forEach(x => x.active = false); + } + + public toggleBodyCombinations(activeNode: any) { + const rowRef = this.grid.getRowByIndex(activeNode.row); + + if (rowRef.isGroupByRow) { + this.activeCollection.forEach(x => x.active = false); + this.activeCollection.filter(x => x.action === ItemAction.Expandable || x.action === ItemAction.Always)?.forEach(x => x.active = true); + } else { + const currColumn = this.grid.columns.filter(x => !x.columnGroup) + .find(c => c.visibleIndex === activeNode.column); + const cell = this.grid.getCellByColumn(activeNode.row, currColumn.field); + this.toggleCellCombinations(cell); + } + } + + public toggleCellCombinations(cell?: IgcCellType) { + this.activeCollection.forEach(x => x.active = true); + const actions = this.extractCellActions(cell); + this.activeCollection.filter(x => actions.indexOf(x.action) === -1 && x.action !== ItemAction.Always)?.forEach(x => x.active = false); + } + + public extractCellActions(cell: IgcCellType) { + const res: any[] = []; + if(!cell) return res; + if (cell?.editable) { + res.push(ItemAction.Editable); + } + + res.push(ItemAction.Collapsible); + return res; + } + + public extractColumnActions(col: IgcColumnGroupComponent) { + const res = []; + if (col.sortable) { + res.push(ItemAction.Sortable); + } + + if (col.filterable && !col.columnGroup) { + res.push(ItemAction.Filterable); + } + + if (col.collapsible) { + res.push(ItemAction.Collapsible); + } + + if (col.groupable) { + res.push(ItemAction.Groupable); + } + + if (col.selectable) { + res.push(ItemAction.Selectable); + } + + return res; + } + + public onActiveNodeChange(event: any) { + const evt = (event as any).detail; + this.activeNode = evt; + const row = this.grid.getRowByIndex(evt.row); + this.gridSection = evt.row < 0 ? GridSection.THEAD : row === undefined || row.isSummaryRow ? + GridSection.FOOTER : GridSection.TBODY; + this.changeCombinationsCollection(this.gridSection, evt); + } + + public keydown(event: any) { + const key = event.key.toLowerCase(); + if (key === 'tab') { return; } + if (this.gridSection === GridSection.FOOTER) { + switch (key) { + case 'end': + this.activeCollection.at(3).completed = true; + break; + case 'home': + this.activeCollection.at(2).completed = true; + break; + case 'arrowleft': + this.activeCollection.at(0).completed = true; + break; + case 'arrowright': + this.activeCollection.at(1).completed = true; + break; + default: + break; + } + return; + } + + const activeNode = this.activeNode; + if (this.gridSection === GridSection.THEAD) { + if (key === 'l' && event.altKey) { + this.activeCollection.at(5).completed = true; + } + const col = this.grid.columns + .find(c => c.visibleIndex === activeNode.column && c.level === activeNode.level); + if (key === 'l' && event.ctrlKey && event.shiftKey && col && !col.columnGroup && col.filterable) { + this.activeCollection.at(4).completed = true; + } + + if ((key === 'arrowleft' || key === 'arrowright') && event.altKey && event.shiftKey && + col && !col.columnGroup && col.groupable) { + this.activeCollection.at(2).completed = true; + } + + if ((key === 'arrowup' || key === 'arrowdown') && event.ctrlKey) { + if (col && !col.columnGroup && col.sortable) { + this.activeCollection.at(1).completed = true; + } + } + + if (key === " ") { + this.activeCollection.at(0).completed = true; + } + + if (col && col.columnGroup && (key === 'arrowup' || key === 'arrowdown' || key === 'arrowleft' || key === 'arrowright') && event.altKey) { + this.activeCollection.at(3).completed = true; + } + } + + if (this.gridSection === GridSection.TBODY) { + if (key === 'enter') { + const currColumn = this.grid.columns.filter(x => !x.columnGroup) + .find(c => c.visibleIndex === activeNode.column); + const cell = this.grid.getCellByColumn(activeNode.row, currColumn.field); + if (cell && cell.column.editable) { + this.activeCollection.at(0).completed = true; + } + } + if ((key === 'end' || key === 'home') && event.ctrlKey) { + this.activeCollection.at(4).completed = true; + } + const rowRef = this.grid.getRowByIndex(activeNode.row); + const isGroupByRow = rowRef.isGroupByRow; + if (!isGroupByRow && (key === 'arrowdown' || key === 'arrowright') && event.altKey) { + this.activeCollection.at(2).completed = true; + } + + if (!isGroupByRow && (key === 'arrowup' || key === 'arrowleft') && event.altKey) { + this.activeCollection.at(1).completed = true; + } + + if (isGroupByRow && (key === 'arrowright' || key === 'arrowleft') && event.altKey ) { + this.activeCollection.at(3).completed = true; + } + } + this.updateList(); + } + + public gridKeydown(event: any) { + const evt = event.detail.event; + this.keydown(evt); + } + + + public listTemplate = () => { + let htmlContent = ""; + (window as any).onChangeHandler = (i: number) => { + this.activeCollection.at(i).completed = (event.currentTarget as any).checked; + } + let i = 0; + const headerText = this.gridSection === GridSection.THEAD ? "HEADER COMBINATIONS" : this.gridSection === GridSection.TBODY ? "BODY COMBINATIONS" : "SUMMARY COMBINATIONS"; + const header = "

"+ headerText +"

"; + htmlContent += header; + for (const elem of this.activeCollection) { + const checkbox = elem.completed ? "" : ""; + const disabledClass = !elem.active ? "disabled" : ""; + htmlContent += "

" + elem.title + "

" + + "" + elem.subTitle +"" + + checkbox + + "
"; + i++; + } + return htmlContent; + } + + private _data: EmployeesFlatDetails = null; + public get data(): EmployeesFlatDetails { + if (this._data == null) + { + this._data = new EmployeesFlatDetails(); + } + return this._data; + } + +} + +new Sample(); diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/tsconfig.json b/samples/grids/tree-grid/keyboard-navigation-guide/tsconfig.json new file mode 100644 index 0000000000..861fa3aeb1 --- /dev/null +++ b/samples/grids/tree-grid/keyboard-navigation-guide/tsconfig.json @@ -0,0 +1,39 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/tslint.json b/samples/grids/tree-grid/keyboard-navigation-guide/tslint.json new file mode 100644 index 0000000000..18e202b1f9 --- /dev/null +++ b/samples/grids/tree-grid/keyboard-navigation-guide/tslint.json @@ -0,0 +1,53 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "only-arrow-functions": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "no-var-requires": false, + "no-var": false, + "no-var-keyword": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "@typescript-eslint/no-unused-vars": "off", + "jsx-no-lambda": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "member-ordering": false, + "curly": [false, "ignore-same-line"], + "max-classes-per-file": [true, 10], + "prefer-const": false, + "prefer-for-of": false, + "no-useless-constructor": false, + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "only-arrow-functions": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "no-var-requires": false, + "no-console": false, + "no-unused-vars": false, + "@typescript-eslint/no-unused-vars": "off", + "jsx-no-lambda": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "curly": [false, "ignore-same-line"], + "max-classes-per-file": [true, 10], + "prefer-const": false, + "prefer-for-of": false, + "no-useless-constructor": false, + "@typescript-eslint/no-useless-constructor": "off" + } + } \ No newline at end of file diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/webpack.config.js b/samples/grids/tree-grid/keyboard-navigation-guide/webpack.config.js new file mode 100644 index 0000000000..9d11a6155c --- /dev/null +++ b/samples/grids/tree-grid/keyboard-navigation-guide/webpack.config.js @@ -0,0 +1,105 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), + path.resolve(__dirname, 'node_modules/@webcomponents/template'), + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; From 0ad2d31af9d948d2760b68d4317928fe857935ef Mon Sep 17 00:00:00 2001 From: Maya Date: Wed, 13 Dec 2023 19:00:44 +0200 Subject: [PATCH 14/20] Add treegrid live data sample. (#511) * Add treegrid live data sample. * Remove groupby as it cannot be set in treegrid directly. --------- Co-authored-by: HUSSAR-mtrela (Martin Trela) --- samples/grids/tree-grid/finjs/.prettierrc | 11 + samples/grids/tree-grid/finjs/ReadMe.md | 51 + samples/grids/tree-grid/finjs/index.html | 192 +++ samples/grids/tree-grid/finjs/package.json | 63 + .../grids/tree-grid/finjs/sandbox.config.json | 6 + .../tree-grid/finjs/src/FinancialData.ts | 1210 +++++++++++++++++ samples/grids/tree-grid/finjs/src/index.css | 114 ++ samples/grids/tree-grid/finjs/src/index.ts | 209 +++ samples/grids/tree-grid/finjs/tsconfig.json | 39 + samples/grids/tree-grid/finjs/tslint.json | 53 + .../grids/tree-grid/finjs/webpack.config.js | 105 ++ 11 files changed, 2053 insertions(+) create mode 100644 samples/grids/tree-grid/finjs/.prettierrc create mode 100644 samples/grids/tree-grid/finjs/ReadMe.md create mode 100644 samples/grids/tree-grid/finjs/index.html create mode 100644 samples/grids/tree-grid/finjs/package.json create mode 100644 samples/grids/tree-grid/finjs/sandbox.config.json create mode 100644 samples/grids/tree-grid/finjs/src/FinancialData.ts create mode 100644 samples/grids/tree-grid/finjs/src/index.css create mode 100644 samples/grids/tree-grid/finjs/src/index.ts create mode 100644 samples/grids/tree-grid/finjs/tsconfig.json create mode 100644 samples/grids/tree-grid/finjs/tslint.json create mode 100644 samples/grids/tree-grid/finjs/webpack.config.js diff --git a/samples/grids/tree-grid/finjs/.prettierrc b/samples/grids/tree-grid/finjs/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/grids/tree-grid/finjs/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/grids/tree-grid/finjs/ReadMe.md b/samples/grids/tree-grid/finjs/ReadMe.md new file mode 100644 index 0000000000..1fb6653b1f --- /dev/null +++ b/samples/grids/tree-grid/finjs/ReadMe.md @@ -0,0 +1,51 @@ + + + +This folder contains implementation of Web Components application with example of Finjs feature using [Grid](https://infragistics.com/webcomponentssite/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-wc-examples.git +cd ./igniteui-wc-examples +cd ./samples/grids/grid/finjs +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: + +``` +npm install +npm run start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/grids/tree-grid/finjs/index.html b/samples/grids/tree-grid/finjs/index.html new file mode 100644 index 0000000000..ab15db8d88 --- /dev/null +++ b/samples/grids/tree-grid/finjs/index.html @@ -0,0 +1,192 @@ + + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+
+
+
+
+ Toolbar +
+
+ + +
+
+ + +
+
+
+ + LIVE ALL PRICES + + + Stop + + + Chart + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + Please select some rows first! +
+ + + + <% if (false) { %> + + <% } %> + + + \ No newline at end of file diff --git a/samples/grids/tree-grid/finjs/package.json b/samples/grids/tree-grid/finjs/package.json new file mode 100644 index 0000000000..3b2d45b5d9 --- /dev/null +++ b/samples/grids/tree-grid/finjs/package.json @@ -0,0 +1,63 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "igniteui-webcomponents-core": "4.3.0", + "igniteui-webcomponents-grids": "4.3.0", + "igniteui-webcomponents-inputs": "4.3.0", + "igniteui-webcomponents-layouts": "4.3.0", + "igniteui-webcomponents-charts": "4.3.0", + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "lit-html": "^2.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "html-webpack-plugin": "^4.3.0", + "source-map": "^0.7.3", + "typescript": "^4.4.4", + "webpack": "^5.74.0", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "parcel-bundler": "^1.6.1", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "style-loader": "^0.22.1", + "xml-loader": "^1.2.1", + "worker-loader": "^3.0.8" + } +} \ No newline at end of file diff --git a/samples/grids/tree-grid/finjs/sandbox.config.json b/samples/grids/tree-grid/finjs/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/grids/tree-grid/finjs/sandbox.config.json @@ -0,0 +1,6 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} \ No newline at end of file diff --git a/samples/grids/tree-grid/finjs/src/FinancialData.ts b/samples/grids/tree-grid/finjs/src/FinancialData.ts new file mode 100644 index 0000000000..a6ce65b3c2 --- /dev/null +++ b/samples/grids/tree-grid/finjs/src/FinancialData.ts @@ -0,0 +1,1210 @@ +export interface Country { + Name: string; +} + +export interface Region { + Name: string; + Countries: Country[]; +} +export interface MockFinanceData { + indGrou?: string; + indSect?: string; + indSubg?: string; + secType?: string; + cpnTyp?: string; + issuerN?: string; + moodys?: string; + fitch?: string; + dbrs?: string; + collatT?: string; + curncy?: string; + security?: string; + sector?: string; + cusip?: string; + ticker?: string; + cpn?: string; + maturity?: string; + krD_3YR?: number; + RISK_COUNTRY?: string; + MUNI_SECTOR?: string; + zV_SPREAD?: number; + kRD_5YR?: number; + kRD_1YR?: number; + PD_WALA?: string | null; +} + +export interface Stock extends MockFinanceData { + id?: number; + category: string; + type: string; + spread: number; + openPrice: number; + price: number; + buy: number; + sell: number; + change: number; + changeP: number; + volume: number; + highD: number; + lowD: number; + highY: number; + lowY: number; + startY: number; + 'change On Year(%)': number; + categories?: Stock[]; + region?: string; + country?: string; + settlement?: string; + contract?: string; + lastUpdated?: Date; + openPriceDiff?: number; + buyDiff?: number; + sellDiff?: number; + startYDiff?: number; + highYDiff?: number; + lowYDiff?: number; + highDDiff?: number; + lowDDiff?: number; +} + +export const REGIONS: Region[] = [ + { + Name: 'North America', + Countries: [ + { Name: 'Canada' }, + { Name: 'United States' }, + { Name: 'Mexico' } + ] + }, + { + Name: 'Middle East', + Countries: [ + { Name: 'Turkey' }, + { Name: 'Iraq' }, + { Name: 'Saudi Arabia' }, + { Name: 'Syria' }, + { Name: 'UAE' }, + { Name: 'Israel' }, + { Name: 'Jordan' }, + { Name: 'Lebanon' }, + { Name: 'Oman' }, + { Name: 'Kuwait' }, + { Name: 'Qatar' }, + { Name: 'Bahrain' }, + { Name: 'Iran' } + ] + }, + { + Name: 'Europe', + Countries: [ + { Name: 'Russia' }, + { Name: 'Germany' }, + { Name: 'France' }, + { Name: 'United Kingdom' }, + { Name: 'Italy' }, + { Name: 'Spain' }, + { Name: 'Poland' }, + { Name: 'Romania' }, + { Name: 'Netherlands' }, + { Name: 'Belgium' }, + { Name: 'Greece' }, + { Name: 'Portugal' }, + { Name: 'Czech Republic' }, + { Name: 'Hungary' }, + { Name: 'Sweden' }, + { Name: 'Austria' }, + { Name: 'Switzerland' }, + { Name: 'Bulgaria' }, + { Name: 'Denmark' }, + { Name: 'Finland' }, + { Name: 'Slovakia' }, + { Name: 'Norway' }, + { Name: 'Ireland' }, + { Name: 'Croatia' }, + { Name: 'Slovenia' }, + { Name: 'Estonia' }, + { Name: 'Iceland' } + ] + }, + { + Name: 'Africa', + Countries: [ + { Name: 'Nigeria' }, + { Name: 'Ethiopia' }, + { Name: 'Egypt' }, + { Name: 'South Africa' }, + { Name: 'Algeria' }, + { Name: 'Morocco' }, + { Name: 'Cameroon' }, + { Name: 'Niger' }, + { Name: 'Senegal' }, + { Name: 'Tunisia' }, + { Name: 'Libya' } + ] + }, + { + Name: 'Asia Pacific', + Countries: [ + { Name: 'Afghanistan' }, + { Name: 'Australia' }, + { Name: 'Azerbaijan' }, + { Name: 'China' }, + { Name: 'Hong Kong' }, + { Name: 'India' }, + { Name: 'Indonesia' }, + { Name: 'Japan' }, + { Name: 'Malaysia' }, + { Name: 'New Zealand' }, + { Name: 'Pakistan' }, + { Name: 'Philippines' }, + { Name: 'Korea' }, + { Name: 'Singapore' }, + { Name: 'Taiwan' }, + { Name: 'Thailand' } + ] + }, + { + Name: 'South America', + Countries: [ + { Name: 'Argentina' }, + { Name: 'Bolivia' }, + { Name: 'Brazil' }, + { Name: 'Chile' }, + { Name: 'Colombia' }, + { Name: 'Ecuador' }, + { Name: 'Guyana' }, + { Name: 'Paraguay' }, + { Name: 'Peru' }, + { Name: 'Suriname' }, + { Name: 'Uruguay' }, + { Name: 'Venezuela' } + ] + } +]; + +export const Dealtype: string[] = [ + 'buy', 'sell' +]; + +export const Contract: string[] = [ + 'Forwards', 'Futures', 'Options', 'Swap', 'CFD' +]; + +export const Settlement: string[] = [ + 'Deliverable', 'Cash' +]; + +export const MOCKFINANCEDATA: MockFinanceData[] = [ + { + indGrou: 'Airlines', + indSect: 'Consumer, Cyclical', + indSubg: 'Airlines', + secType: 'PUBLIC', + // tslint:disable-next-line:object-literal-sort-keys + cpnTyp: 'FIXED', + issuerN: 'AMERICAN AIRLINES GROUP', + moodys: 'WR', + fitch: 'N.A.', + dbrs: 'N.A.', + collatT: 'NEW MONEY', + curncy: 'USD', + security: '001765866 Pfd', + sector: 'Pfd', + cusip: '1765866', + ticker: 'AAL', + cpn: '7.875', + maturity: '7/13/1939', + krD_3YR: 0.00006, + RISK_COUNTRY: '', + MUNI_SECTOR: '', + zV_SPREAD: 28.302, + kRD_5YR: 0, + kRD_1YR: -0.00187, + PD_WALA: null + } +]; + +export const DATA: Stock[] = [ + { + category: 'Metal', + type: 'Gold', + spread: 0.01, + openPrice: 1281.10, + price: 1280.7317, + buy: 1280.7267, + sell: 1280.7367, + change: -0.3683, + changeP: -0.0287, + volume: 48387, + highD: 1289.50, + lowD: 1279.10, + highY: 1306, + lowY: 1047.20, + startY: 1176.60, + 'change On Year(%)': 8.8502 + }, + { + category: 'Metal', + type: 'Silver', + spread: 0.01, + openPrice: 17.43, + price: 17.42, + buy: 17.43, + sell: 17.43, + change: -0.01, + changeP: -0.0574, + volume: 11720, + highD: 17.51, + lowD: 17.37, + highY: 18.06, + lowY: 13.73, + startY: 15.895, + 'change On Year(%)': 9.5942 + }, + { + category: 'Metal', + type: 'Copper', + spread: 0.02, + openPrice: 2.123, + price: 2.113, + buy: 2.123, + sell: 2.123, + change: -0.01, + changeP: -0.471, + volume: 28819, + highD: 2.16, + lowD: 2.11, + highY: 2.94, + lowY: 1.96, + startY: 2.45, + 'change On Year(%)': -13.7551 + }, + { + category: 'Metal', + type: 'Platinum', + spread: 0.01, + openPrice: 1071.60, + price: 1071.0993, + buy: 1071.0943, + sell: 1071.1043, + change: -0.5007, + changeP: -0.0467, + volume: 3039, + highD: 1081.20, + lowD: 1070.50, + highY: 1120.60, + lowY: 812.40, + startY: 966.50, + 'change On Year(%)': 10.8225 + }, + { + category: 'Metal', + type: 'Palladium', + spread: 0.01, + openPrice: 600.55, + price: 601.0005, + buy: 600.9955, + sell: 601.0055, + change: 0.4505, + changeP: 0.075, + volume: 651, + highD: 607.20, + lowD: 598.40, + highY: 690, + lowY: 458.6, + startY: 574.3, + 'change On Year(%)': 4.6492 + }, + { + category: 'Oil', + type: 'Oil', + spread: 0.015, + openPrice: 45.54, + price: 45.7899, + buy: 45.7824, + sell: 45.7974, + change: 0.2499, + changeP: 0.5487, + volume: 107196, + highD: 45.94, + lowD: 45.00, + highY: 65.28, + lowY: 30.79, + startY: 48.035, + 'change On Year(%)': -4.6739 + }, + { + category: 'Oil', + type: 'Brent', + spread: 0.01, + openPrice: 46.06, + price: 46.05, + buy: 46.06, + sell: 46.06, + change: -0.01, + changeP: -0.0217, + volume: 59818, + highD: 46.48, + lowD: 45.60, + highY: 71.14, + lowY: 30.02, + startY: 50.58, + 'change On Year(%)': -8.9561 + }, + { + category: 'Oil', + type: 'Natural Gas', + spread: 0.02, + openPrice: 2.094, + price: 2.104, + buy: 2.094, + sell: 2.094, + change: 0.01, + changeP: 0.4776, + volume: 2783, + highD: 2.11, + lowD: 2.09, + highY: 3.20, + lowY: 1.84, + startY: 2.52, + 'change On Year(%)': -16.5079 + }, + { + category: 'Oil', + type: 'RBOB Gas', + spread: 0.015, + openPrice: 1.5086, + price: 1.9532, + buy: 1.9457, + sell: 1.9607, + change: 0.4446, + changeP: 29.4686, + volume: 2646, + highD: 1.9532, + lowD: 1.50, + highY: 2.05, + lowY: 1.15, + startY: 1.60, + 'change On Year(%)': 22.0727 + }, + { + category: 'Oil', + type: 'Diesel', + spread: 0.015, + openPrice: 1.3474, + price: 1.3574, + buy: 1.3474, + sell: 1.3474, + change: 0.01, + changeP: 0.7422, + volume: 2971, + highD: 1.36, + lowD: 1.34, + highY: 2.11, + lowY: 0.92, + startY: 1.515, + 'change On Year(%)': -10.4026 + }, + { + category: 'Oil', + type: 'Ethanol', + spread: 0.01, + openPrice: 1.512, + price: 2.7538, + buy: 2.7488, + sell: 2.7588, + change: 1.2418, + changeP: 82.1323, + volume: 14, + highD: 2.7538, + lowD: 1.1168, + highY: 2.7538, + lowY: 1.1168, + startY: 1.475, + 'change On Year(%)': 86.7011 + }, + { + category: 'Oil', + type: 'Uranium', + spread: 0.02, + openPrice: 27.55, + price: 27.58, + buy: 27.55, + sell: 27.55, + change: 0.03, + changeP: 0.1089, + volume: 12, + highD: 27.55, + lowD: 27.55, + highY: 29.32, + lowY: 21.28, + startY: 25.30, + 'change On Year(%)': 9.0119 + }, + { + category: 'Oil', + type: 'Coal', + spread: 0.015, + openPrice: 0.4363, + price: 0.4163, + buy: 0.4363, + sell: 0.4363, + change: -0.02, + changeP: -4.584, + volume: 3, + highD: 0.4363, + lowD: 0.4363, + highY: 0.4841, + lowY: 0.3954, + startY: 0.4398, + 'change On Year(%)': -5.3326 + }, + { + category: 'Agriculture', + type: 'Wheat', + spread: 0.01, + openPrice: 465.50, + price: 465.52, + buy: 465.50, + sell: 465.50, + change: 0.02, + changeP: 0.0043, + volume: 4318, + highD: 467.00, + lowD: 463.25, + highY: 628.50, + lowY: 449.50, + startY: 539.00, + 'change On Year(%)': -13.6327 + }, + { + category: 'Agriculture', + type: 'Corn', + spread: 0.01, + openPrice: 379.50, + price: 379.8026, + buy: 379.7976, + sell: 379.8076, + change: 0.3026, + changeP: 0.0797, + volume: 11266, + highD: 381.00, + lowD: 377.75, + highY: 471.25, + lowY: 351.25, + startY: 411.25, + 'change On Year(%)': -7.6468 + }, + { + category: 'Agriculture', + type: 'Sugar', + spread: 0.01, + openPrice: 15.68, + price: 14.6742, + buy: 14.6692, + sell: 14.6792, + change: -1.0058, + changeP: -6.4146, + volume: 4949, + highD: 15.70, + lowD: 14.6742, + highY: 16.87, + lowY: 11.37, + startY: 14.12, + 'change On Year(%)': 3.9249 + }, + { + category: 'Agriculture', + type: 'Soybean', + spread: 0.01, + openPrice: 1038.00, + price: 1038.6171, + buy: 1038.6121, + sell: 1038.6221, + change: 0.6171, + changeP: 0.0595, + volume: 20356, + highD: 1044.00, + lowD: 1031.75, + highY: 1057.00, + lowY: 859.50, + startY: 958.25, + 'change On Year(%)': 8.3869 + }, + { + category: 'Agriculture', + type: 'Soy oil', + spread: 0.01, + openPrice: 33.26, + price: 33.7712, + buy: 33.7662, + sell: 33.7762, + change: 0.5112, + changeP: 1.5371, + volume: 10592, + highD: 33.7712, + lowD: 33.06, + highY: 35.43, + lowY: 26.61, + startY: 31.02, + 'change On Year(%)': 8.8692 + }, + { + category: 'Agriculture', + type: 'Soy Meat', + spread: 0.01, + openPrice: 342.60, + price: 342.62, + buy: 342.60, + sell: 342.60, + change: 0.02, + changeP: 0.0058, + volume: 5646, + highD: 345.40, + lowD: 340.30, + highY: 353.40, + lowY: 261.70, + startY: 307.55, + 'change On Year(%)': 11.403 + }, + { + category: 'Agriculture', + type: 'OJ Future', + spread: 0.01, + openPrice: 140.60, + price: 140.1893, + buy: 140.1843, + sell: 140.1943, + change: -0.4107, + changeP: -0.2921, + volume: 7, + highD: 140.1893, + lowD: 0.00, + highY: 155.95, + lowY: 113.00, + startY: 134.475, + 'change On Year(%)': 4.2493 + }, + { + category: 'Agriculture', + type: 'Coffee', + spread: 0.01, + openPrice: 125.70, + price: 125.69, + buy: 125.70, + sell: 125.70, + change: -0.01, + changeP: -0.008, + volume: 1654, + highD: 125.80, + lowD: 125.00, + highY: 155.75, + lowY: 115.35, + startY: 135.55, + 'change On Year(%)': -7.2741 + }, + { + category: 'Agriculture', + type: 'Cocoa', + spread: 0.01, + openPrice: 3076.00, + price: 3076.03, + buy: 3076.00, + sell: 3076.00, + change: 0.03, + changeP: 0.001, + volume: 978, + highD: 3078.00, + lowD: 3066.00, + highY: 3406.00, + lowY: 2746.00, + startY: 3076.00, + 'change On Year(%)': 0.001 + }, + { + category: 'Agriculture', + type: 'Rice', + spread: 0.01, + openPrice: 11.245, + price: 10.4154, + buy: 10.4104, + sell: 10.4204, + change: -0.8296, + changeP: -7.3779, + volume: 220, + highD: 11.38, + lowD: 10.4154, + highY: 14.14, + lowY: 9.70, + startY: 11.92, + 'change On Year(%)': -12.6228 + }, + { + category: 'Agriculture', + type: 'Oats', + spread: 0.01, + openPrice: 194.50, + price: 194.2178, + buy: 194.2128, + sell: 194.2228, + change: -0.2822, + changeP: -0.1451, + volume: 64, + highD: 195.75, + lowD: 194.00, + highY: 241.25, + lowY: 183.75, + startY: 212.50, + 'change On Year(%)': -8.6034 + }, + { + category: 'Agriculture', + type: 'Milk', + spread: 0.01, + openPrice: 12.87, + price: 12.86, + buy: 12.87, + sell: 12.87, + change: -0.01, + changeP: -0.0777, + volume: 7, + highD: 12.89, + lowD: 12.81, + highY: 16.96, + lowY: 12.81, + startY: 14.885, + 'change On Year(%)': -13.6043 + }, + { + category: 'Agriculture', + type: 'Cotton', + spread: 0.01, + openPrice: 61.77, + price: 61.76, + buy: 61.77, + sell: 61.77, + change: -0.01, + changeP: -0.0162, + volume: 3612, + highD: 62.06, + lowD: 61.32, + highY: 67.59, + lowY: 54.33, + startY: 60.96, + 'change On Year(%)': 1.3123 + }, + { + category: 'Agriculture', + type: 'Lumber', + spread: 0.01, + openPrice: 303.90, + price: 304.5994, + buy: 304.5944, + sell: 304.6044, + change: 0.6994, + changeP: 0.2302, + volume: 2, + highD: 304.5994, + lowD: 303.90, + highY: 317.10, + lowY: 236.00, + startY: 276.55, + 'change On Year(%)': 10.1426 + }, + { + category: 'Livestock', + type: 'LV Cattle', + spread: 0.01, + openPrice: 120.725, + price: 120.705, + buy: 120.725, + sell: 120.725, + change: -0.02, + changeP: -0.0166, + volume: 4, + highD: 120.725, + lowD: 120.725, + highY: 147.98, + lowY: 113.90, + startY: 130.94, + 'change On Year(%)': -7.8166 + }, + { + category: 'Livestock', + type: 'FD Cattle', + spread: 0.01, + openPrice: 147.175, + price: 148.6065, + buy: 148.6015, + sell: 148.6115, + change: 1.4315, + changeP: 0.9727, + volume: 5, + highD: 148.6065, + lowD: 147.175, + highY: 190.00, + lowY: 138.10, + startY: 164.05, + 'change On Year(%)': -9.4139 + }, + { + category: 'Livestock', + type: 'Lean Hogs', + spread: 0.01, + openPrice: 81.275, + price: 81.8146, + buy: 81.8096, + sell: 81.8196, + change: 0.5396, + changeP: 0.664, + volume: 1, + highD: 81.8146, + lowD: 81.275, + highY: 83.98, + lowY: 70.25, + startY: 77.115, + 'change On Year(%)': 6.0943 + }, + { + category: 'Currencies', + type: 'USD IDX Future', + spread: 0.02, + openPrice: 93.88, + price: 93.7719, + buy: 93.7619, + sell: 93.7819, + change: -0.1081, + changeP: -0.1151, + volume: 5788, + highD: 94.05, + lowD: 93.7534, + highY: 100.70, + lowY: 91.88, + startY: 96.29, + 'change On Year(%)': -2.6151 + }, + { + category: 'Currencies', + type: 'USD/JPY Future', + spread: 0.02, + openPrice: 9275.50, + price: 9277.3342, + buy: 9277.3242, + sell: 9277.3442, + change: 1.8342, + changeP: 0.0198, + volume: 47734, + highD: 9277.3342, + lowD: 0.93, + highY: 9483.00, + lowY: 0.93, + startY: 4741.965, + 'change On Year(%)': 95.6432 + }, + { + category: 'Currencies', + type: 'GBP/USD Future', + spread: 0.02, + openPrice: 1.4464, + price: 1.1941, + buy: 1.1841, + sell: 1.2041, + change: -0.2523, + changeP: -17.4441, + volume: 29450, + highD: 1.45, + lowD: 1.1941, + highY: 1.59, + lowY: 1.1941, + startY: 1.485, + 'change On Year(%)': -19.59 + }, + { + category: 'Currencies', + type: 'AUD/USD Future', + spread: 0.02, + openPrice: 0.7344, + price: 0.7444, + buy: 0.7344, + sell: 0.7344, + change: 0.01, + changeP: 1.3617, + volume: 36764, + highD: 0.74, + lowD: 0.73, + highY: 0.79, + lowY: 0.68, + startY: 0.735, + 'change On Year(%)': 1.2789 + }, + { + category: 'Currencies', + type: 'USD/CAD Future', + spread: 0.02, + openPrice: 0.7744, + price: 0.9545, + buy: 0.9445, + sell: 0.9645, + change: 0.1801, + changeP: 23.2622, + volume: 13669, + highD: 0.9545, + lowD: 0.77, + highY: 0.9545, + lowY: 0.68, + startY: 0.755, + 'change On Year(%)': 26.4295 + }, + { + category: 'Currencies', + type: 'USD/CHF Future', + spread: 0.02, + openPrice: 1.0337, + price: 1.0437, + buy: 1.0337, + sell: 1.0337, + change: 0.01, + changeP: 0.9674, + volume: 5550, + highD: 1.03, + lowD: 1.03, + highY: 1.11, + lowY: 0.98, + startY: 1.045, + 'change On Year(%)': -0.1244 + }, + { + category: 'Index', + type: 'DOW Future', + spread: 0.01, + openPrice: 17711.00, + price: 17712.1515, + buy: 17712.1465, + sell: 17712.1565, + change: 1.1515, + changeP: 0.0065, + volume: 22236, + highD: 17727.00, + lowD: 17642.00, + highY: 18083.00, + lowY: 15299.00, + startY: 16691.00, + 'change On Year(%)': 6.118 + }, + { + category: 'Index', + type: 'S&P Future', + spread: 0.01, + openPrice: 2057.50, + price: 2056.6018, + buy: 2056.5968, + sell: 2056.6068, + change: -0.8982, + changeP: -0.0437, + volume: 142780, + highD: 2059.50, + lowD: 2049.00, + highY: 2105.50, + lowY: 1794.50, + startY: 1950.00, + 'change On Year(%)': 5.4668 + }, + { + category: 'Index', + type: 'NAS Future', + spread: 0.01, + openPrice: 4341.25, + price: 4341.28, + buy: 4341.25, + sell: 4341.25, + change: 0.03, + changeP: 0.0007, + volume: 18259, + highD: 4347.00, + lowD: 4318.00, + highY: 4719.75, + lowY: 3867.75, + startY: 4293.75, + 'change On Year(%)': 1.107 + }, + { + category: 'Index', + type: 'S&P MID MINI', + spread: 0.01, + openPrice: 1454.30, + price: 1455.7812, + buy: 1455.7762, + sell: 1455.7862, + change: 1.4812, + changeP: 0.1018, + volume: 338, + highD: 1455.7812, + lowD: 1448.00, + highY: 1527.30, + lowY: 1236.00, + startY: 1381.65, + 'change On Year(%)': 5.3654 + }, + { + category: 'Index', + type: 'S&P 600 MINI', + spread: 0.01, + openPrice: 687.90, + price: 687.88, + buy: 687.90, + sell: 687.90, + change: -0.02, + changeP: -0.0029, + volume: 0, + highD: 0.00, + lowD: 0.00, + highY: 620.32, + lowY: 595.90, + startY: 608.11, + 'change On Year(%)': 13.1177 + }, + { + category: 'Interest Rate', + type: 'US 30YR Future', + spread: 0.01, + openPrice: 164.875, + price: 164.1582, + buy: 164.1532, + sell: 164.1632, + change: -0.7168, + changeP: -0.4347, + volume: 28012, + highD: 165.25, + lowD: 164.0385, + highY: 169.38, + lowY: 151.47, + startY: 160.425, + 'change On Year(%)': 2.3271 + }, + { + category: 'Interest Rate', + type: 'US 2Y Future', + spread: 0.01, + openPrice: 109.3984, + price: 109.3884, + buy: 109.3984, + sell: 109.3984, + change: -0.01, + changeP: -0.0091, + volume: 17742, + highD: 109.41, + lowD: 109.38, + highY: 109.80, + lowY: 108.62, + startY: 109.21, + 'change On Year(%)': 0.1634 + }, + { + category: 'Interest Rate', + type: 'US 10YR Future', + spread: 0.01, + openPrice: 130.5625, + price: 130.5825, + buy: 130.5625, + sell: 130.5625, + change: 0.02, + changeP: 0.0153, + volume: 189310, + highD: 130.63, + lowD: 130.44, + highY: 132.64, + lowY: 125.48, + startY: 129.06, + 'change On Year(%)': 1.1797 + }, + { + category: 'Interest Rate', + type: 'Euro$ 3M', + spread: 0.01, + openPrice: 99.18, + price: 99.17, + buy: 99.18, + sell: 99.18, + change: -0.01, + changeP: -0.0101, + volume: 29509, + highD: 99.18, + lowD: 99.17, + highY: 99.38, + lowY: 98.41, + startY: 98.895, + 'change On Year(%)': 0.2781 + } +]; +export class FinancialData { + public static generateData(count: number): Stock[] { + const currData: Stock[] = []; + for (let i = 0; i < count; i++) { + const rand = Math.floor(Math.random() * Math.floor(DATA.length)); + const dataObj: Stock = Object.assign({}, DATA[rand]); + + dataObj.settlement = Settlement[this.generateRandomNumber(0, 1)]; + dataObj.contract = Contract[this.generateRandomNumber(0, 4)]; + dataObj.lastUpdated = this.randomizeDate(); + dataObj.openPriceDiff = (((dataObj['openPrice'] - dataObj['price']) / dataObj['price']) * 100) * 150; + dataObj.buyDiff = (((dataObj.buy - dataObj.price) / dataObj.price) * 100) * 150; + dataObj.sellDiff = (((dataObj.sell - dataObj.price) / dataObj.price) * 100) * 150; + dataObj.startYDiff = (((dataObj.startY - dataObj.price) / dataObj.price) * 100) * 150; + dataObj.highYDiff = (((dataObj.highY - dataObj.price) / dataObj.price) * 100) * 150; + dataObj.lowYDiff = (((dataObj.lowY - dataObj.price) / dataObj.price) * 100) * 150; + dataObj.highDDiff = (((dataObj.highD - dataObj.price) / dataObj.price) * 100) * 150; + dataObj.lowDDiff = (((dataObj.lowD - dataObj.price) / dataObj.price) * 100) * 150; + + const region: Region = REGIONS[this.generateRandomNumber(0, 5)]; + dataObj.region = region.Name; + dataObj.country = this.randomizeCountry(region).Name; + + for (const mockData of MOCKFINANCEDATA) { + Object.assign(dataObj, mockData); + } + + dataObj.id = i; + this.randomizeObjectData(dataObj); + currData.push(dataObj); + } + return currData; + } + + public static generateHierarchicalData(count: number): Stock[] { + const currData = []; + for (let i = 0; i < DATA.length; i++) { + DATA[i].id = 10 + i; + } + + for (let i = 0; i < Contract.length; i++) { + const rand = Math.floor(Math.random() * Math.floor(DATA.length)); + const dataObj = Object.assign({}, DATA[rand]); + dataObj.category = Contract[i]; + dataObj.categories = []; + dataObj.id = i * count; + + // add second level of hierarchical data + const childData = this.addHierarchicalData(count / 4, i, dataObj.id); + for (const childDataObj of childData) { + childDataObj.categories = this.addHierarchicalData(childData.length / 4, i, childDataObj.id, 4); + } + + // add level of hierarchical data + dataObj.categories = childData; + + this.addMockData(dataObj); + currData.push(dataObj); + } + + return currData; + } + + public static updateAllPrices(data: Stock[]): Stock[] { + for (const dataRow of data) { + this.randomizeObjectData(dataRow); + } + return Array.from(data); + } + + public static updateRandomPrices(data: Stock[]): Stock[] { + const currData = data.slice(0, data.length + 1); + for (let i = 0; i < 30; i++) { + const random = Math.round(Math.random() * data.length); + const dataObj = Object.assign({}, data[random]); + this.randomizeObjectData(dataObj); + currData[random] = dataObj; + } + // return {data: currData, recordsUpdated: y }; + return currData; + } + + private static addMockData(dataObj: Stock): void { + for (const mockData of MOCKFINANCEDATA) { + Object.assign(dataObj, mockData); + } + } + + private static addHierarchicalData(count: number, i: number, parentRowId: number, toAdd?: number): Stock[] { + const childData: Stock[] = []; + const numberToAdd = toAdd ?? Math.round(count / Contract.length); + for (let y = 0; y < numberToAdd; y++) { + const rand = Math.floor(Math.random() * Math.floor(DATA.length)); + const childDataObj = Object.assign({}, DATA[rand]); + childDataObj.id = parentRowId * 10 + y + 1; + this.randomizeObjectData(childDataObj); + this.addMockData(childDataObj); + childData.push(childDataObj); + } + return childData; + } + + private static randomizeObjectData(dataObj: Stock): void { + const res = this.generateNewPrice(dataObj.price); + dataObj.change = res.price - dataObj.price; + dataObj.price = res.price; + dataObj.changeP = res.changePercent; + } + + private static generateNewPrice(oldPrice: number): { price: number; changePercent: number } { + const rnd = parseFloat(Math.random().toFixed(2)); + const volatility = 2; + let newPrice = 0; + + let changePercent = 2 * volatility * rnd; + if (changePercent > volatility) { + changePercent -= (2 * volatility); + } + + const changeAmount = oldPrice * (changePercent / 100); + newPrice = oldPrice + changeAmount; + + const result = { price: 0, changePercent: 0 }; + result.price = parseFloat(newPrice.toFixed(2)); + result.changePercent = parseFloat(changePercent.toFixed(2)); + + return result; + } + + private static generateRandomNumber(min: number, max: number): number { + return Math.floor(Math.random() * (max - min + 1)) + min; + } + + private static randomizeCountry(region: Region): Country { + let country!: Country; + switch (region.Name) { + case 'North America': { + country = region.Countries[this.generateRandomNumber(0, 2)]; + break; + } + case 'South America': { + country = region.Countries[this.generateRandomNumber(0, 11)]; + break; + } + case 'Europe': { + country = region.Countries[this.generateRandomNumber(0, 26)]; + break; + } + case 'Asia Pacific': { + country = region.Countries[this.generateRandomNumber(0, 15)]; + break; + } + case 'Africa': { + country = region.Countries[this.generateRandomNumber(0, 10)]; + break; + } + case 'Middle East': { + country = region.Countries[this.generateRandomNumber(0, 12)]; + break; + } + } + return country; + } + + private static randomizeDate(): Date { + const date = new Date(); + date.setHours(this.generateRandomNumber(0, 23)); + date.setMonth(this.generateRandomNumber(0, date.getMonth())); + date.setDate(this.generateRandomNumber(0, 23)); + return date; + } +} diff --git a/samples/grids/tree-grid/finjs/src/index.css b/samples/grids/tree-grid/finjs/src/index.css new file mode 100644 index 0000000000..40c63a0cc3 --- /dev/null +++ b/samples/grids/tree-grid/finjs/src/index.css @@ -0,0 +1,114 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + +.controls-holder { + display: flex; + justify-content: space-between; + align-items: center; + flex-wrap: wrap; + padding: 15px; +} + +.control-item { + flex-grow: 1; +} + +.toast { + z-index: 2; +} + +.switch-control-item { + flex-basis: fit-content; +} + +.switches { + display: flex; + justify-content: space-between; + align-items: center; + flex: 1 0 0%; + padding-inline-end: 20px; + font-size: 0.9rem; + gap: 20px; +} + +.finjs-play-controls { + display: flex; + gap: 10px; + flex: 1 0 0%; +} + +.finjs-play-controls > igc-button { + flex-grow: 1; +} + +.finjs-slider { + width: 100%; + min-width: 145px; +} + +.finjs-icons { + display: flex; + align-items: center; +} + +.finjs-icons>igc-icon { + font-size: 16px; + width: 16px; + height: 16px; + margin-inline-start: 4px; +} + +.changePos, +.changeNeg, +.strongPositive, +.strongNegative { + color: rgb(0, 0, 0); +} + +.changePos>.igx-grid__td-text { + border-inline-end: 4px solid rgb(76, 184, 96); + padding-inline-end: 15px; +} + +.changePos1 > .igx-grid__td-text { + border-inline-end: 4px solid rgb(76, 184, 96); + padding-inline-end: 15px; +} + +.changePos2 > .igx-grid__td-text { + border-inline-end: 4px solid rgb(76, 184, 96); + padding-inline-end: 15px; +} + +.changeNeg > .igx-grid__td-text { + border-inline-end: 4px solid rgb(255, 20, 75); + padding-inline-end: 9px; +} + +.changeNeg1 > .igx-grid__td-text { + border-inline-end: 4px solid rgb(255, 20, 75); + padding-inline-end: 9px; +} + +.changeNeg2 > .igx-grid__td-text { + border-inline-end: 4px solid rgb(255, 20, 75); + padding-inline-end: 15px; +} + +.positive { + color: rgb(76, 184, 96); +} + +.strongPositive2 > .igx-grid__td-text { + border-inline-end: 4px solid rgb(76, 184, 96); + padding-inline-end: 15px; +} + +.negative { + color: rgb(255, 20, 75); +} + +.strongNegative2 > .igx-grid__td-text { + border-inline-end: 4px solid rgb(255, 20, 75); + padding-inline-end: 15px; +} \ No newline at end of file diff --git a/samples/grids/tree-grid/finjs/src/index.ts b/samples/grids/tree-grid/finjs/src/index.ts new file mode 100644 index 0000000000..17869621ce --- /dev/null +++ b/samples/grids/tree-grid/finjs/src/index.ts @@ -0,0 +1,209 @@ +import 'igniteui-webcomponents-grids/grids/combined'; +import { IgcCellTemplateContext, IgcColumnComponent, IgcTreeGridComponent, IgcGridToolbarComponent, SortingDirection } from 'igniteui-webcomponents-grids/grids'; +import { defineAllComponents, IgcButtonComponent, IgcDialogComponent, IgcIconComponent, IgcSliderComponent, IgcSwitchComponent, IgcToastComponent, registerIconFromText } from "igniteui-webcomponents"; +import { IgcLegendModule, IgcCategoryChartModule, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import { FinancialData } from './FinancialData'; +import { html, nothing } from 'lit-html'; +import "./index.css"; +defineAllComponents(); +import { ModuleManager } from 'igniteui-webcomponents-core'; + +ModuleManager.register( + IgcLegendModule, + IgcCategoryChartModule +); + +export class Sample { + + + private grid1: IgcTreeGridComponent; + private chart: IgcCategoryChartComponent; + private _timer: ReturnType; + private data = FinancialData.generateData(1000); + constructor() { + const chart = this.chart = document.getElementById('chart1') as IgcCategoryChartComponent; + var trendUp = ``; + var trendDown = ``; + var chartIcon = ``; + var stopIcon = ``; + var updateIcon = ``; + registerIconFromText("trending_up", trendUp, "material"); + registerIconFromText("trending_down", trendDown, "material"); + registerIconFromText("insert_chart", chartIcon, "material"); + registerIconFromText("stop", stopIcon, "material"); + registerIconFromText("update", updateIcon, "material"); + var grid1 = this.grid1 = document.getElementById('grid1') as IgcTreeGridComponent; + var price = document.getElementById('price') as IgcColumnComponent; + var change = document.getElementById('change') as IgcColumnComponent; + var changeP = document.getElementById('changeP') as IgcColumnComponent; + var chartColumn = document.getElementById('chart') as IgcColumnComponent; + grid1.data = this.data; + price.bodyTemplate = this.priceTemplate; + price.cellClasses = this.trends; + changeP.cellClasses = this.trendsChange; + change.cellClasses = this.trendsChange; + chartColumn.bodyTemplate = this.chartBtnTemplate; + + this.openDialogForSelected = this.openDialogForSelected.bind(this); + document.getElementById('chartButton').addEventListener("click", this.openDialogForSelected); + this.startUpdate = this.startUpdate.bind(this); + document.getElementById('startButton').addEventListener("click", this.startUpdate); + this.stopUpdate = this.stopUpdate.bind(this); + document.getElementById('stopButton').addEventListener("click", this.stopUpdate); + + + const sliderRecValueSpan = document.getElementById('slider-rec-value') as HTMLElement; + const recordsSlider = document.getElementById('records') as IgcSliderComponent; + recordsSlider.value = 1000; + recordsSlider.addEventListener('igcInput', (ev: CustomEvent) => { + sliderRecValueSpan.innerHTML = ev.detail; + this.data = FinancialData.generateData(ev.detail); + this.grid1.data = this.data; + }); + + + const sliderFreqValueSpan = document.getElementById('slider-freq-value') as HTMLElement; + const freqSlider = document.getElementById('frequency') as IgcSliderComponent; + freqSlider.value = 500; + freqSlider.addEventListener('igcInput', (ev: CustomEvent) => { + sliderFreqValueSpan.innerHTML = ev.detail; + }); + + const toolbar = document.getElementById('toolbar') as IgcGridToolbarComponent; + const toolbarSwitch = document.getElementById('toolbarSwitch') as IgcSwitchComponent; + toolbarSwitch.addEventListener('igcChange', (ev: CustomEvent) => { + toolbar.hidden = !ev.detail; + }); + } + + public startUpdate() { + const frequency = (document.getElementById('frequency') as IgcSliderComponent).value; + this._timer = setInterval(() => { + this.grid1.data = FinancialData.updateAllPrices(this.data); + }, frequency); + (document.getElementById('startButton') as IgcButtonComponent).disabled = true; + (document.getElementById('stopButton') as IgcButtonComponent).disabled = false; + (document.getElementById('chartButton') as IgcButtonComponent).disabled = true; + } + + public stopUpdate() { + clearInterval(this._timer); + (document.getElementById('startButton') as IgcButtonComponent).disabled = false; + (document.getElementById('chartButton') as IgcButtonComponent).disabled = false; + (document.getElementById('stopButton') as IgcButtonComponent).disabled = true; + } + + public chartBtnTemplate = (ctx: IgcCellTemplateContext) => { + const cell = ctx.cell; + const rowData = this.grid1.getRowData(cell.id.rowID); + return html` + this.openDialogForRow(e, rowData)} collection="material" variant="contained" size="small"> + `; + }; + + public openDialogForSelected() { + const chart = document.getElementById('chart1') as IgcCategoryChartComponent; + const chartData = this.grid1.selectedRows.map(x => this.grid1.getRowData(x)); + if (chartData && chartData.length > 0) { + chart.dataSource = chartData; + chart.includedProperties = ['price', 'country']; + this.setLabelIntervalAndAngle(); + this.setChartConfig('Countries', 'Prices (USD)', 'Data Chart with prices by Category and Country'); + const chartDialog = document.getElementById('dialog') as IgcDialogComponent; + chartDialog.show(); + } else { + const toast = document.getElementById('toast') as IgcToastComponent; + toast.show(); + } + } + + public setChartConfig(xAsis: string, yAxis: string, title: string): void { + // update label interval and angle based on data + this.setLabelIntervalAndAngle(); + this.chart.xAxisTitle = xAsis; + this.chart.yAxisTitle = yAxis; + this.chart.chartTitle = title; + } + + public setLabelIntervalAndAngle(): void { + const intervalSet = this.chart.dataSource.length; + if (intervalSet < 10) { + this.chart.xAxisLabelAngle = 0; + this.chart.xAxisInterval = 1; + } else if (intervalSet < 15) { + this.chart.xAxisLabelAngle = 30; + this.chart.xAxisInterval = 1; + } else if (intervalSet < 40) { + this.chart.xAxisLabelAngle = 90; + this.chart.xAxisInterval = 1; + } else if (intervalSet < 100) { + this.chart.xAxisLabelAngle = 90; + this.chart.xAxisInterval = 3; + } else if (intervalSet < 200) { + this.chart.xAxisLabelAngle = 90; + this.chart.xAxisInterval = 5; + } else if (intervalSet < 400) { + this.chart.xAxisLabelAngle = 90; + this.chart.xAxisInterval = 7; + } else if (intervalSet > 400) { + this.chart.xAxisLabelAngle = 90; + this.chart.xAxisInterval = 10; + } + this.chart.yAxisAbbreviateLargeNumbers = true; + } + + + public openDialogForRow(e: any, rowData: any) { + const chart = document.getElementById('chart1') as IgcCategoryChartComponent; + const chartData = this.grid1.data.filter(item => item.region === rowData.region && + item.category === rowData.category); + chart.chartTitle = 'Data Chart with prices of ' + rowData.category + ' in ' + rowData.region + ' Region'; + + chart.dataSource = chartData; + chart.includedProperties = ['price', 'country']; + this.setLabelIntervalAndAngle(); + this.setChartConfig('Countries', 'Prices (USD)', 'Data Chart with prices of ' + rowData.category + ' in ' + rowData.region + ' Region'); + const chartDialog = document.getElementById('dialog') as IgcDialogComponent; + chartDialog.show(); + } + + + public priceTemplate = (ctx: IgcCellTemplateContext) => { + const cell = ctx.cell; + const rowData = this.grid1.getRowData(cell.id.rowID); + const icon = this.trends.positive(rowData) ? "trending_up" : "trending_down"; + const value = cell.value.toFixed(4); + return html` +
+ $${value} + +
+ `; + } + + private negative = (rowData: any): boolean => rowData['changeP'] < 0; + private positive = (rowData: any): boolean => rowData['changeP'] > 0; + private changeNegative = (rowData: any): boolean => rowData['changeP'] < 0 && rowData['changeP'] > -1; + private changePositive = (rowData: any): boolean => rowData['changeP'] > 0 && rowData['changeP'] < 1; + private strongPositive = (rowData: any): boolean => rowData['changeP'] >= 1; + private strongNegative = (rowData: any): boolean => rowData['changeP'] <= -1; + public trends = { + changeNeg: this.changeNegative, + changePos: this.changePositive, + negative: this.negative, + positive: this.positive, + strongNegative: this.strongNegative, + strongPositive: this.strongPositive + }; + + public trendsChange = { + changeNeg2: this.changeNegative, + changePos2: this.changePositive, + strongNegative2: this.strongNegative, + strongPositive2: this.strongPositive + }; + +} + +new Sample(); diff --git a/samples/grids/tree-grid/finjs/tsconfig.json b/samples/grids/tree-grid/finjs/tsconfig.json new file mode 100644 index 0000000000..861fa3aeb1 --- /dev/null +++ b/samples/grids/tree-grid/finjs/tsconfig.json @@ -0,0 +1,39 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/grids/tree-grid/finjs/tslint.json b/samples/grids/tree-grid/finjs/tslint.json new file mode 100644 index 0000000000..18e202b1f9 --- /dev/null +++ b/samples/grids/tree-grid/finjs/tslint.json @@ -0,0 +1,53 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "only-arrow-functions": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "no-var-requires": false, + "no-var": false, + "no-var-keyword": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "@typescript-eslint/no-unused-vars": "off", + "jsx-no-lambda": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "member-ordering": false, + "curly": [false, "ignore-same-line"], + "max-classes-per-file": [true, 10], + "prefer-const": false, + "prefer-for-of": false, + "no-useless-constructor": false, + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "only-arrow-functions": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "no-var-requires": false, + "no-console": false, + "no-unused-vars": false, + "@typescript-eslint/no-unused-vars": "off", + "jsx-no-lambda": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "curly": [false, "ignore-same-line"], + "max-classes-per-file": [true, 10], + "prefer-const": false, + "prefer-for-of": false, + "no-useless-constructor": false, + "@typescript-eslint/no-useless-constructor": "off" + } + } \ No newline at end of file diff --git a/samples/grids/tree-grid/finjs/webpack.config.js b/samples/grids/tree-grid/finjs/webpack.config.js new file mode 100644 index 0000000000..9d11a6155c --- /dev/null +++ b/samples/grids/tree-grid/finjs/webpack.config.js @@ -0,0 +1,105 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), + path.resolve(__dirname, 'node_modules/@webcomponents/template'), + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; From f80ccf849228bac489720d8299602b573fc90845 Mon Sep 17 00:00:00 2001 From: Maya Date: Wed, 13 Dec 2023 19:01:58 +0200 Subject: [PATCH 15/20] Add a keyboard navigation guide sample. (#449) * Add keyboard navigation guide sample - initial commit. * Add list update on gridkeydown action. * Handle checkbox change that updates action complete state. * Minor tweaks so that the sample fits better in the docs. * Apply review. --------- Co-authored-by: Martin Dragnev <37667452+mddragnev@users.noreply.github.com> Co-authored-by: HUSSAR-mtrela (Martin Trela) --- browser/public/index.html | 1 + .../keyboard-navigation-guide/.prettierrc | 11 + .../grid/keyboard-navigation-guide/ReadMe.md | 51 + .../grid/keyboard-navigation-guide/index.html | 86 + .../keyboard-navigation-guide/package.json | 62 + .../sandbox.config.json | 6 + .../src/InvoicesData.ts | 15009 ++++++++++++++++ .../keyboard-navigation-guide/src/Item.ts | 45 + .../keyboard-navigation-guide/src/index.css | 29 + .../keyboard-navigation-guide/src/index.ts | 302 + .../keyboard-navigation-guide/tsconfig.json | 39 + .../keyboard-navigation-guide/tslint.json | 53 + .../webpack.config.js | 105 + 13 files changed, 15799 insertions(+) create mode 100644 samples/grids/grid/keyboard-navigation-guide/.prettierrc create mode 100644 samples/grids/grid/keyboard-navigation-guide/ReadMe.md create mode 100644 samples/grids/grid/keyboard-navigation-guide/index.html create mode 100644 samples/grids/grid/keyboard-navigation-guide/package.json create mode 100644 samples/grids/grid/keyboard-navigation-guide/sandbox.config.json create mode 100644 samples/grids/grid/keyboard-navigation-guide/src/InvoicesData.ts create mode 100644 samples/grids/grid/keyboard-navigation-guide/src/Item.ts create mode 100644 samples/grids/grid/keyboard-navigation-guide/src/index.css create mode 100644 samples/grids/grid/keyboard-navigation-guide/src/index.ts create mode 100644 samples/grids/grid/keyboard-navigation-guide/tsconfig.json create mode 100644 samples/grids/grid/keyboard-navigation-guide/tslint.json create mode 100644 samples/grids/grid/keyboard-navigation-guide/webpack.config.js diff --git a/browser/public/index.html b/browser/public/index.html index 62dc59f6cf..90e7df58f1 100644 --- a/browser/public/index.html +++ b/browser/public/index.html @@ -490,6 +490,7 @@ ─Infinite Scroll ─Keyboard Custom Navigation ─Keyboard Mrl Navigation + ─Keyboard Navigation Guide ─Layout Display Density ─Master Detail ─Multi Cell Selection Mode diff --git a/samples/grids/grid/keyboard-navigation-guide/.prettierrc b/samples/grids/grid/keyboard-navigation-guide/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/grids/grid/keyboard-navigation-guide/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/grids/grid/keyboard-navigation-guide/ReadMe.md b/samples/grids/grid/keyboard-navigation-guide/ReadMe.md new file mode 100644 index 0000000000..1e1f040bb9 --- /dev/null +++ b/samples/grids/grid/keyboard-navigation-guide/ReadMe.md @@ -0,0 +1,51 @@ + + + +This folder contains implementation of Web Components application with example of Column Collapsible Groups feature using [Grid](https://infragistics.com/webcomponentssite/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-wc-examples.git +cd ./igniteui-wc-examples +cd ./samples/grids/grid/column-collapsible-groups +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: + +``` +npm install +npm run start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/grids/grid/keyboard-navigation-guide/index.html b/samples/grids/grid/keyboard-navigation-guide/index.html new file mode 100644 index 0000000000..623b2facf9 --- /dev/null +++ b/samples/grids/grid/keyboard-navigation-guide/index.html @@ -0,0 +1,86 @@ + + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + +
Use the native navigation of the browser until you reach some of the following grid sections below:
+
    +
  • Header
  • +
  • Body
  • +
  • Summary
  • +
+
When reached, an action list will be shown.
+
+
+
+
+
+ + + <% if (false) { %> + + <% } %> + + + \ No newline at end of file diff --git a/samples/grids/grid/keyboard-navigation-guide/package.json b/samples/grids/grid/keyboard-navigation-guide/package.json new file mode 100644 index 0000000000..634a1b4137 --- /dev/null +++ b/samples/grids/grid/keyboard-navigation-guide/package.json @@ -0,0 +1,62 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "igniteui-webcomponents-core": "4.2.5", + "igniteui-webcomponents-grids": "4.2.5", + "igniteui-webcomponents-inputs": "4.2.5", + "igniteui-webcomponents-layouts": "4.2.5", + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "lit-html": "^2.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "html-webpack-plugin": "^4.3.0", + "source-map": "^0.7.3", + "typescript": "^4.4.4", + "webpack": "^5.74.0", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "parcel-bundler": "^1.6.1", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "style-loader": "^0.22.1", + "xml-loader": "^1.2.1", + "worker-loader": "^3.0.8" + } +} \ No newline at end of file diff --git a/samples/grids/grid/keyboard-navigation-guide/sandbox.config.json b/samples/grids/grid/keyboard-navigation-guide/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/grids/grid/keyboard-navigation-guide/sandbox.config.json @@ -0,0 +1,6 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} \ No newline at end of file diff --git a/samples/grids/grid/keyboard-navigation-guide/src/InvoicesData.ts b/samples/grids/grid/keyboard-navigation-guide/src/InvoicesData.ts new file mode 100644 index 0000000000..f73db575e4 --- /dev/null +++ b/samples/grids/grid/keyboard-navigation-guide/src/InvoicesData.ts @@ -0,0 +1,15009 @@ +export class InvoicesDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public ShipName: string; + public ShipAddress: string; + public ShipCity: string; + public ShipPostalCode: number; + public ShipCountry: string; + public ShipRegion: string; + public ShipperName: string; + public CustomerID: number; + public CustomerName: string; + public CustomerFirstName: string; + public CustomerLastName: string; + public CustomerAddress: string; + public Salesperson: string; + public OrderID: number; + public OrderDate: string; + public ProductID: number; + public ProductName: string; + public UnitPrice: number; + public Quantity: number; + public ExtendedPrice: number; + public Freight: number; + public Discontinued: boolean; + public Region: string; + public Address: string; + public City: string; + public Country: string; + public PostalCode: number; + +} +export class InvoicesData extends Array { + public constructor() { + super(); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Home`, + ShipAddress: `124 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 60098, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1000, + CustomerName: `Martin Jefferson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Jefferson`, + CustomerAddress: `124 Wall Street, Miami, USA, 60098`, + Salesperson: `Nancy Jefferson`, + OrderID: 1931, + OrderDate: `3/14/2022`, + ProductID: 189, + ProductName: `IPad`, + UnitPrice: 16150.61, + Quantity: 3, + ExtendedPrice: 48451.83, + Freight: 980.61, + Discontinued: false, + Region: `South East`, + Address: `124 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60098 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `162 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 80193, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1001, + CustomerName: `Anna Black`, + CustomerFirstName: `Anna`, + CustomerLastName: `Black`, + CustomerAddress: `162 Main Street, Miami, USA, 80193`, + Salesperson: `Anna Smith`, + OrderID: 1163, + OrderDate: `5/22/2022`, + ProductID: 138, + ProductName: `Mac Book Pro`, + UnitPrice: 18520.59, + Quantity: 4, + ExtendedPrice: 74082.36, + Freight: 850.59, + Discontinued: false, + Region: `West`, + Address: `162 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 80193 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `164 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 50111, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1002, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `164 Wall Street, Miami, USA, 50111`, + Salesperson: `Martin Watson`, + OrderID: 1230, + OrderDate: `2/9/2022`, + ProductID: 118, + ProductName: `Mac Book Air`, + UnitPrice: 25310.39, + Quantity: 3, + ExtendedPrice: 75931.17, + Freight: 210.39, + Discontinued: false, + Region: `West`, + Address: `164 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 50111 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Townhouse`, + ShipAddress: `124 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90123, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1003, + CustomerName: `Max Madison`, + CustomerFirstName: `Max`, + CustomerLastName: `Madison`, + CustomerAddress: `124 Market Street, Philadelphia, USA, 90123`, + Salesperson: `Anna Black`, + OrderID: 1176, + OrderDate: `6/3/2022`, + ProductID: 169, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 29890.86, + Quantity: 4, + ExtendedPrice: 119563.44, + Freight: 800.86, + Discontinued: false, + Region: `South East`, + Address: `124 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90123 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `181 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 90095, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1004, + CustomerName: `Pamela Jackson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jackson`, + CustomerAddress: `181 Market Street, Miami, USA, 90095`, + Salesperson: `Max Black`, + OrderID: 1382, + OrderDate: `1/10/2022`, + ProductID: 185, + ProductName: `Samsung Note`, + UnitPrice: 7810.61, + Quantity: 2, + ExtendedPrice: 15621.22, + Freight: 1790.61, + Discontinued: false, + Region: `West`, + Address: `181 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90095 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Home`, + ShipAddress: `188 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50149, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1005, + CustomerName: `Mike Jefferson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jefferson`, + CustomerAddress: `188 Wall Street, Los Angeles, USA, 50149`, + Salesperson: `Martin Jefferson`, + OrderID: 1864, + OrderDate: `8/18/2022`, + ProductID: 168, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 9370.76, + Quantity: 4, + ExtendedPrice: 37483.04, + Freight: 970.76, + Discontinued: false, + Region: `North East`, + Address: `188 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50149 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `174 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 90112, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1006, + CustomerName: `Martin Smith`, + CustomerFirstName: `Martin`, + CustomerLastName: `Smith`, + CustomerAddress: `174 Market Street, Huston, USA, 90112`, + Salesperson: `Nancy Smith`, + OrderID: 1502, + OrderDate: `6/13/2022`, + ProductID: 199, + ProductName: `IPhone`, + UnitPrice: 20830.47, + Quantity: 2, + ExtendedPrice: 41660.94, + Freight: 1530.47, + Discontinued: false, + Region: `West`, + Address: `174 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90112 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `134 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 50083, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1007, + CustomerName: `Nancy Jefferson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jefferson`, + CustomerAddress: `134 Market Street, Miami, USA, 50083`, + Salesperson: `Mike Jefferson`, + OrderID: 1305, + OrderDate: `10/21/2022`, + ProductID: 185, + ProductName: `Mac Book Air`, + UnitPrice: 7320.44, + Quantity: 2, + ExtendedPrice: 14640.88, + Freight: 630.44, + Discontinued: false, + Region: `West`, + Address: `134 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 50083 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `177 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 70185, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1008, + CustomerName: `Nancy Jefferson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jefferson`, + CustomerAddress: `177 Main Street, New York, USA, 70185`, + Salesperson: `Pamela Watson`, + OrderID: 1725, + OrderDate: `5/7/2022`, + ProductID: 133, + ProductName: `Mac Book Air`, + UnitPrice: 11240.72, + Quantity: 3, + ExtendedPrice: 33722.16, + Freight: 420.72, + Discontinued: false, + Region: `South East`, + Address: `177 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 70185 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `169 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 90183, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1009, + CustomerName: `Mike Jefferson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jefferson`, + CustomerAddress: `169 Main Street, Miami, USA, 90183`, + Salesperson: `Anna Watson`, + OrderID: 1977, + OrderDate: `10/14/2022`, + ProductID: 178, + ProductName: `IPhone`, + UnitPrice: 6460.55, + Quantity: 3, + ExtendedPrice: 19381.65, + Freight: 370.55, + Discontinued: true, + Region: `South East`, + Address: `169 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90183 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Estate`, + ShipAddress: `151 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 80160, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1010, + CustomerName: `James Jackson`, + CustomerFirstName: `James`, + CustomerLastName: `Jackson`, + CustomerAddress: `151 Market Street, New York, USA, 80160`, + Salesperson: `Nancy Black`, + OrderID: 1666, + OrderDate: `12/6/2022`, + ProductID: 140, + ProductName: `Mac Book Pro`, + UnitPrice: 7940.82, + Quantity: 2, + ExtendedPrice: 15881.64, + Freight: 1670.82, + Discontinued: false, + Region: `South East`, + Address: `151 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80160 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `147 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 80183, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1011, + CustomerName: `James Jefferson`, + CustomerFirstName: `James`, + CustomerLastName: `Jefferson`, + CustomerAddress: `147 Main Street, Miami, USA, 80183`, + Salesperson: `Mike Madison`, + OrderID: 1059, + OrderDate: `5/14/2022`, + ProductID: 174, + ProductName: `Samsung Note`, + UnitPrice: 14650.56, + Quantity: 2, + ExtendedPrice: 29301.12, + Freight: 1770.56, + Discontinued: false, + Region: `West`, + Address: `147 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 80183 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `134 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 80066, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1012, + CustomerName: `Mike Watson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Watson`, + CustomerAddress: `134 Main Street, New York, USA, 80066`, + Salesperson: `Mike Black`, + OrderID: 1851, + OrderDate: `7/24/2022`, + ProductID: 175, + ProductName: `IPhone`, + UnitPrice: 7870.39, + Quantity: 2, + ExtendedPrice: 15740.78, + Freight: 360.39, + Discontinued: false, + Region: `West`, + Address: `134 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80066 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `159 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 80096, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1013, + CustomerName: `Ben Madison`, + CustomerFirstName: `Ben`, + CustomerLastName: `Madison`, + CustomerAddress: `159 Market Street, Los Angeles, USA, 80096`, + Salesperson: `Anna Madison`, + OrderID: 1451, + OrderDate: `10/4/2022`, + ProductID: 188, + ProductName: `Mac Book Pro`, + UnitPrice: 13920.38, + Quantity: 4, + ExtendedPrice: 55681.52, + Freight: 1140.38, + Discontinued: false, + Region: `North East`, + Address: `159 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 80096 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `187 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 60144, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1014, + CustomerName: `Martin Madison`, + CustomerFirstName: `Martin`, + CustomerLastName: `Madison`, + CustomerAddress: `187 Wall Street, Miami, USA, 60144`, + Salesperson: `Ben Jefferson`, + OrderID: 1331, + OrderDate: `4/4/2022`, + ProductID: 119, + ProductName: `IPhone`, + UnitPrice: 6940.73, + Quantity: 5, + ExtendedPrice: 34703.65, + Freight: 640.73, + Discontinued: false, + Region: `West`, + Address: `187 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60144 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `158 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 60063, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1015, + CustomerName: `Ben Jackson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jackson`, + CustomerAddress: `158 Wall Street, Huston, USA, 60063`, + Salesperson: `Martin Jefferson`, + OrderID: 1609, + OrderDate: `9/6/2022`, + ProductID: 171, + ProductName: `IPhone`, + UnitPrice: 29080.28, + Quantity: 2, + ExtendedPrice: 58160.56, + Freight: 1810.28, + Discontinued: false, + Region: `South East`, + Address: `158 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 60063 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `168 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 60184, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1016, + CustomerName: `James Black`, + CustomerFirstName: `James`, + CustomerLastName: `Black`, + CustomerAddress: `168 Main Street, Huston, USA, 60184`, + Salesperson: `Martin Watson`, + OrderID: 1772, + OrderDate: `3/20/2022`, + ProductID: 152, + ProductName: `Mac Book Air`, + UnitPrice: 28350.9, + Quantity: 5, + ExtendedPrice: 141754.5, + Freight: 1290.9, + Discontinued: false, + Region: `South East`, + Address: `168 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 60184 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `116 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 60129, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1017, + CustomerName: `Nancy Black`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Black`, + CustomerAddress: `116 Main Street, Miami, USA, 60129`, + Salesperson: `Nancy Smith`, + OrderID: 1792, + OrderDate: `9/1/2022`, + ProductID: 182, + ProductName: `Samsung Note`, + UnitPrice: 13730.78, + Quantity: 4, + ExtendedPrice: 54923.12, + Freight: 740.78, + Discontinued: false, + Region: `North East`, + Address: `116 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60129 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Market`, + ShipAddress: `116 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 80090, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1018, + CustomerName: `Martin Madison`, + CustomerFirstName: `Martin`, + CustomerLastName: `Madison`, + CustomerAddress: `116 Market Street, Los Angeles, USA, 80090`, + Salesperson: `Anna Madison`, + OrderID: 1285, + OrderDate: `10/21/2022`, + ProductID: 157, + ProductName: `Mac Book Pro`, + UnitPrice: 8120.36, + Quantity: 3, + ExtendedPrice: 24361.08, + Freight: 410.36, + Discontinued: false, + Region: `West`, + Address: `116 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 80090 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `135 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90101, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1019, + CustomerName: `Max Jefferson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jefferson`, + CustomerAddress: `135 Wall Street, Philadelphia, USA, 90101`, + Salesperson: `Mike Madison`, + OrderID: 1205, + OrderDate: `12/22/2022`, + ProductID: 153, + ProductName: `Mac Book Pro`, + UnitPrice: 11830.22, + Quantity: 2, + ExtendedPrice: 23660.44, + Freight: 330.22, + Discontinued: true, + Region: `North East`, + Address: `135 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90101 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `164 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 70056, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1020, + CustomerName: `James Smith`, + CustomerFirstName: `James`, + CustomerLastName: `Smith`, + CustomerAddress: `164 Market Street, Philadelphia, USA, 70056`, + Salesperson: `Ben Watson`, + OrderID: 1759, + OrderDate: `8/3/2022`, + ProductID: 129, + ProductName: `Mac Book Pro`, + UnitPrice: 15140.82, + Quantity: 4, + ExtendedPrice: 60563.28, + Freight: 1400.82, + Discontinued: false, + Region: `South East`, + Address: `164 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 70056 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `196 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 90169, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1021, + CustomerName: `Max Madison`, + CustomerFirstName: `Max`, + CustomerLastName: `Madison`, + CustomerAddress: `196 Wall Street, Miami, USA, 90169`, + Salesperson: `Mike Smith`, + OrderID: 1879, + OrderDate: `8/17/2022`, + ProductID: 127, + ProductName: `Mac Book Air`, + UnitPrice: 26710.41, + Quantity: 5, + ExtendedPrice: 133552.05, + Freight: 1810.41, + Discontinued: false, + Region: `West`, + Address: `196 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90169 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `175 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50142, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1022, + CustomerName: `Nancy Black`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Black`, + CustomerAddress: `175 Wall Street, Philadelphia, USA, 50142`, + Salesperson: `Anna Jefferson`, + OrderID: 1917, + OrderDate: `3/6/2022`, + ProductID: 114, + ProductName: `IPad`, + UnitPrice: 9640.51, + Quantity: 3, + ExtendedPrice: 28921.53, + Freight: 840.51, + Discontinued: false, + Region: `North East`, + Address: `175 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50142 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `122 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60097, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1023, + CustomerName: `Pamela Black`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Black`, + CustomerAddress: `122 Main Street, Los Angeles, USA, 60097`, + Salesperson: `James Black`, + OrderID: 1176, + OrderDate: `8/4/2022`, + ProductID: 197, + ProductName: `IPad`, + UnitPrice: 14500.56, + Quantity: 4, + ExtendedPrice: 58002.24, + Freight: 530.56, + Discontinued: false, + Region: `West`, + Address: `122 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60097 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `139 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 60175, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1024, + CustomerName: `James Smith`, + CustomerFirstName: `James`, + CustomerLastName: `Smith`, + CustomerAddress: `139 Main Street, Miami, USA, 60175`, + Salesperson: `Mike Jefferson`, + OrderID: 1317, + OrderDate: `5/21/2022`, + ProductID: 115, + ProductName: `Mac Book Air`, + UnitPrice: 17200.82, + Quantity: 2, + ExtendedPrice: 34401.64, + Freight: 1610.82, + Discontinued: false, + Region: `West`, + Address: `139 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60175 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `155 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60124, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1025, + CustomerName: `James Watson`, + CustomerFirstName: `James`, + CustomerLastName: `Watson`, + CustomerAddress: `155 Market Street, Philadelphia, USA, 60124`, + Salesperson: `Max Smith`, + OrderID: 1721, + OrderDate: `6/15/2022`, + ProductID: 197, + ProductName: `Samsung Note`, + UnitPrice: 9810.3, + Quantity: 2, + ExtendedPrice: 19620.6, + Freight: 1990.3, + Discontinued: false, + Region: `South East`, + Address: `155 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60124 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `136 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80120, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1026, + CustomerName: `Ben Jackson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jackson`, + CustomerAddress: `136 Main Street, Philadelphia, USA, 80120`, + Salesperson: `Max Smith`, + OrderID: 1266, + OrderDate: `12/13/2022`, + ProductID: 198, + ProductName: `Mac Book Pro`, + UnitPrice: 25410.64, + Quantity: 2, + ExtendedPrice: 50821.28, + Freight: 1860.64, + Discontinued: false, + Region: `West`, + Address: `136 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80120 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Estate`, + ShipAddress: `114 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 60186, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1027, + CustomerName: `Max Jackson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jackson`, + CustomerAddress: `114 Main Street, New York, USA, 60186`, + Salesperson: `Mike Jefferson`, + OrderID: 1636, + OrderDate: `7/7/2022`, + ProductID: 174, + ProductName: `Mac Book Pro`, + UnitPrice: 13740.7, + Quantity: 4, + ExtendedPrice: 54962.8, + Freight: 1960.7, + Discontinued: false, + Region: `West`, + Address: `114 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 60186 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Home`, + ShipAddress: `167 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 70193, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1028, + CustomerName: `Nancy Jefferson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jefferson`, + CustomerAddress: `167 Market Street, Huston, USA, 70193`, + Salesperson: `Ben Jefferson`, + OrderID: 1689, + OrderDate: `1/2/2022`, + ProductID: 192, + ProductName: `IPad`, + UnitPrice: 8760.83, + Quantity: 3, + ExtendedPrice: 26282.49, + Freight: 490.83, + Discontinued: false, + Region: `South East`, + Address: `167 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 70193 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `139 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 80080, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1029, + CustomerName: `Anna Madison`, + CustomerFirstName: `Anna`, + CustomerLastName: `Madison`, + CustomerAddress: `139 Wall Street, New York, USA, 80080`, + Salesperson: `Anna Black`, + OrderID: 1610, + OrderDate: `3/17/2022`, + ProductID: 105, + ProductName: `Mac Book Pro`, + UnitPrice: 19860.82, + Quantity: 3, + ExtendedPrice: 59582.46, + Freight: 1990.82, + Discontinued: true, + Region: `West`, + Address: `139 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80080 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `173 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 70054, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1030, + CustomerName: `Ben Madison`, + CustomerFirstName: `Ben`, + CustomerLastName: `Madison`, + CustomerAddress: `173 Market Street, New York, USA, 70054`, + Salesperson: `Ben Jackson`, + OrderID: 1404, + OrderDate: `12/8/2022`, + ProductID: 171, + ProductName: `IPhone`, + UnitPrice: 12430.21, + Quantity: 3, + ExtendedPrice: 37290.63, + Freight: 880.21, + Discontinued: false, + Region: `West`, + Address: `173 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 70054 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `187 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 60100, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1031, + CustomerName: `Mike Jefferson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jefferson`, + CustomerAddress: `187 Wall Street, New York, USA, 60100`, + Salesperson: `Nancy Smith`, + OrderID: 1480, + OrderDate: `2/8/2022`, + ProductID: 181, + ProductName: `IPad`, + UnitPrice: 26730.66, + Quantity: 2, + ExtendedPrice: 53461.32, + Freight: 510.66, + Discontinued: false, + Region: `South East`, + Address: `187 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 60100 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `149 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90150, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1032, + CustomerName: `Mike Madison`, + CustomerFirstName: `Mike`, + CustomerLastName: `Madison`, + CustomerAddress: `149 Main Street, Los Angeles, USA, 90150`, + Salesperson: `Max Jefferson`, + OrderID: 1886, + OrderDate: `12/2/2022`, + ProductID: 132, + ProductName: `IPhone`, + UnitPrice: 13760.64, + Quantity: 3, + ExtendedPrice: 41281.92, + Freight: 1110.64, + Discontinued: false, + Region: `West`, + Address: `149 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90150 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `124 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 80175, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1033, + CustomerName: `Martin Smith`, + CustomerFirstName: `Martin`, + CustomerLastName: `Smith`, + CustomerAddress: `124 Market Street, Huston, USA, 80175`, + Salesperson: `Nancy Smith`, + OrderID: 1625, + OrderDate: `11/9/2022`, + ProductID: 100, + ProductName: `IPad`, + UnitPrice: 11590.58, + Quantity: 3, + ExtendedPrice: 34771.74, + Freight: 1080.58, + Discontinued: false, + Region: `South East`, + Address: `124 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80175 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `193 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60165, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1034, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `193 Wall Street, Philadelphia, USA, 60165`, + Salesperson: `Martin Jackson`, + OrderID: 1669, + OrderDate: `7/3/2022`, + ProductID: 157, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 19220.31, + Quantity: 2, + ExtendedPrice: 38440.62, + Freight: 1130.31, + Discontinued: false, + Region: `South East`, + Address: `193 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60165 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Estate`, + ShipAddress: `200 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80146, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1035, + CustomerName: `Max Jackson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jackson`, + CustomerAddress: `200 Wall Street, Philadelphia, USA, 80146`, + Salesperson: `Pamela Jefferson`, + OrderID: 1654, + OrderDate: `1/7/2022`, + ProductID: 155, + ProductName: `IPhone`, + UnitPrice: 7040.83, + Quantity: 2, + ExtendedPrice: 14081.66, + Freight: 1420.83, + Discontinued: false, + Region: `North East`, + Address: `200 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80146 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Estate`, + ShipAddress: `122 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 80150, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1036, + CustomerName: `Nancy Smith`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Smith`, + CustomerAddress: `122 Market Street, Los Angeles, USA, 80150`, + Salesperson: `Martin Jackson`, + OrderID: 1678, + OrderDate: `12/14/2022`, + ProductID: 120, + ProductName: `Mac Book Air`, + UnitPrice: 6530.89, + Quantity: 3, + ExtendedPrice: 19592.67, + Freight: 250.89, + Discontinued: false, + Region: `North East`, + Address: `122 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 80150 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `128 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50068, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1037, + CustomerName: `Max Jackson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jackson`, + CustomerAddress: `128 Main Street, Los Angeles, USA, 50068`, + Salesperson: `Ben Watson`, + OrderID: 1301, + OrderDate: `1/25/2022`, + ProductID: 166, + ProductName: `IPad`, + UnitPrice: 11420.23, + Quantity: 2, + ExtendedPrice: 22840.46, + Freight: 950.23, + Discontinued: false, + Region: `South East`, + Address: `128 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50068 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `119 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60180, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1038, + CustomerName: `Pamela Smith`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Smith`, + CustomerAddress: `119 Market Street, Los Angeles, USA, 60180`, + Salesperson: `Pamela Madison`, + OrderID: 1385, + OrderDate: `6/24/2022`, + ProductID: 132, + ProductName: `Mac Book Air`, + UnitPrice: 29810.6, + Quantity: 4, + ExtendedPrice: 119242.4, + Freight: 220.6, + Discontinued: false, + Region: `West`, + Address: `119 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60180 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `115 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90168, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1039, + CustomerName: `James Jefferson`, + CustomerFirstName: `James`, + CustomerLastName: `Jefferson`, + CustomerAddress: `115 Market Street, Los Angeles, USA, 90168`, + Salesperson: `Martin Smith`, + OrderID: 1308, + OrderDate: `8/13/2022`, + ProductID: 109, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 20770.59, + Quantity: 5, + ExtendedPrice: 103852.95, + Freight: 1690.59, + Discontinued: true, + Region: `North East`, + Address: `115 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90168 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `128 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50118, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1040, + CustomerName: `Anna Watson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Watson`, + CustomerAddress: `128 Market Street, Los Angeles, USA, 50118`, + Salesperson: `Pamela Black`, + OrderID: 1519, + OrderDate: `10/4/2022`, + ProductID: 139, + ProductName: `Mac Book Air`, + UnitPrice: 14860.44, + Quantity: 2, + ExtendedPrice: 29720.88, + Freight: 1670.44, + Discontinued: false, + Region: `South East`, + Address: `128 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50118 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Townhouse`, + ShipAddress: `108 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90129, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1041, + CustomerName: `Martin Smith`, + CustomerFirstName: `Martin`, + CustomerLastName: `Smith`, + CustomerAddress: `108 Market Street, Los Angeles, USA, 90129`, + Salesperson: `Nancy Black`, + OrderID: 1118, + OrderDate: `2/7/2022`, + ProductID: 126, + ProductName: `Mac Book Air`, + UnitPrice: 28690.85, + Quantity: 4, + ExtendedPrice: 114763.4, + Freight: 500.85, + Discontinued: false, + Region: `West`, + Address: `108 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90129 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `180 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50101, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1042, + CustomerName: `Anna Smith`, + CustomerFirstName: `Anna`, + CustomerLastName: `Smith`, + CustomerAddress: `180 Main Street, Los Angeles, USA, 50101`, + Salesperson: `Martin Jefferson`, + OrderID: 1541, + OrderDate: `5/3/2022`, + ProductID: 179, + ProductName: `Mac Book Pro`, + UnitPrice: 22630.28, + Quantity: 3, + ExtendedPrice: 67890.84, + Freight: 1200.28, + Discontinued: false, + Region: `North East`, + Address: `180 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50101 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Townhouse`, + ShipAddress: `177 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90107, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1043, + CustomerName: `Max Black`, + CustomerFirstName: `Max`, + CustomerLastName: `Black`, + CustomerAddress: `177 Market Street, Philadelphia, USA, 90107`, + Salesperson: `Martin Jefferson`, + OrderID: 1747, + OrderDate: `5/11/2022`, + ProductID: 133, + ProductName: `Mac Book Pro`, + UnitPrice: 6930.51, + Quantity: 3, + ExtendedPrice: 20791.53, + Freight: 1660.51, + Discontinued: false, + Region: `South East`, + Address: `177 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90107 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `134 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 70172, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1044, + CustomerName: `Anna Jefferson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Jefferson`, + CustomerAddress: `134 Market Street, Miami, USA, 70172`, + Salesperson: `Mike Smith`, + OrderID: 1343, + OrderDate: `10/11/2022`, + ProductID: 190, + ProductName: `Samsung Note`, + UnitPrice: 26770.78, + Quantity: 4, + ExtendedPrice: 107083.12, + Freight: 960.78, + Discontinued: false, + Region: `North East`, + Address: `134 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 70172 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `117 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90124, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1045, + CustomerName: `James Watson`, + CustomerFirstName: `James`, + CustomerLastName: `Watson`, + CustomerAddress: `117 Wall Street, Los Angeles, USA, 90124`, + Salesperson: `Mike Watson`, + OrderID: 1152, + OrderDate: `2/25/2022`, + ProductID: 101, + ProductName: `Mac Book Pro`, + UnitPrice: 8790.3, + Quantity: 5, + ExtendedPrice: 43951.5, + Freight: 220.3, + Discontinued: false, + Region: `South East`, + Address: `117 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90124 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `156 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60181, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1046, + CustomerName: `James Black`, + CustomerFirstName: `James`, + CustomerLastName: `Black`, + CustomerAddress: `156 Wall Street, Philadelphia, USA, 60181`, + Salesperson: `Anna Smith`, + OrderID: 1823, + OrderDate: `10/12/2022`, + ProductID: 178, + ProductName: `Samsung Note`, + UnitPrice: 9750.55, + Quantity: 3, + ExtendedPrice: 29251.65, + Freight: 1940.55, + Discontinued: false, + Region: `North East`, + Address: `156 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60181 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Market`, + ShipAddress: `122 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 90182, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1047, + CustomerName: `Ben Madison`, + CustomerFirstName: `Ben`, + CustomerLastName: `Madison`, + CustomerAddress: `122 Main Street, New York, USA, 90182`, + Salesperson: `Mike Black`, + OrderID: 1548, + OrderDate: `5/1/2022`, + ProductID: 181, + ProductName: `Mac Book Air`, + UnitPrice: 11590.37, + Quantity: 4, + ExtendedPrice: 46361.48, + Freight: 900.37, + Discontinued: false, + Region: `West`, + Address: `122 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90182 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Townhouse`, + ShipAddress: `112 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60175, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1048, + CustomerName: `Pamela Black`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Black`, + CustomerAddress: `112 Market Street, Los Angeles, USA, 60175`, + Salesperson: `Mike Madison`, + OrderID: 1581, + OrderDate: `5/21/2022`, + ProductID: 134, + ProductName: `Mac Book Air`, + UnitPrice: 8800.32, + Quantity: 2, + ExtendedPrice: 17600.64, + Freight: 1820.32, + Discontinued: false, + Region: `South East`, + Address: `112 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60175 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `153 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90170, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1049, + CustomerName: `Pamela Black`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Black`, + CustomerAddress: `153 Market Street, Los Angeles, USA, 90170`, + Salesperson: `Pamela Watson`, + OrderID: 1145, + OrderDate: `11/13/2022`, + ProductID: 151, + ProductName: `Mac Book Air`, + UnitPrice: 25830.42, + Quantity: 3, + ExtendedPrice: 77491.26, + Freight: 270.42, + Discontinued: true, + Region: `North East`, + Address: `153 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90170 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `159 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 80198, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1050, + CustomerName: `Anna Black`, + CustomerFirstName: `Anna`, + CustomerLastName: `Black`, + CustomerAddress: `159 Market Street, Huston, USA, 80198`, + Salesperson: `Pamela Jefferson`, + OrderID: 1455, + OrderDate: `12/16/2022`, + ProductID: 115, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 28510.28, + Quantity: 2, + ExtendedPrice: 57020.56, + Freight: 1450.28, + Discontinued: false, + Region: `West`, + Address: `159 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80198 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `125 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 70160, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1051, + CustomerName: `Nancy Jefferson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jefferson`, + CustomerAddress: `125 Market Street, Miami, USA, 70160`, + Salesperson: `Anna Jefferson`, + OrderID: 1787, + OrderDate: `1/3/2022`, + ProductID: 171, + ProductName: `Mac Book Air`, + UnitPrice: 18830.35, + Quantity: 3, + ExtendedPrice: 56491.05, + Freight: 1770.35, + Discontinued: false, + Region: `South East`, + Address: `125 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 70160 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Home`, + ShipAddress: `114 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 70083, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1052, + CustomerName: `Nancy Jefferson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jefferson`, + CustomerAddress: `114 Wall Street, Los Angeles, USA, 70083`, + Salesperson: `Anna Madison`, + OrderID: 1591, + OrderDate: `4/6/2022`, + ProductID: 141, + ProductName: `Mac Book Air`, + UnitPrice: 18840.75, + Quantity: 2, + ExtendedPrice: 37681.5, + Freight: 710.75, + Discontinued: false, + Region: `West`, + Address: `114 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 70083 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `193 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 70170, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1053, + CustomerName: `James Jefferson`, + CustomerFirstName: `James`, + CustomerLastName: `Jefferson`, + CustomerAddress: `193 Main Street, Los Angeles, USA, 70170`, + Salesperson: `Anna Jackson`, + OrderID: 1020, + OrderDate: `7/20/2022`, + ProductID: 177, + ProductName: `IPad`, + UnitPrice: 15250.55, + Quantity: 3, + ExtendedPrice: 45751.65, + Freight: 980.55, + Discontinued: false, + Region: `West`, + Address: `193 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 70170 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `156 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 50127, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1054, + CustomerName: `Ben Smith`, + CustomerFirstName: `Ben`, + CustomerLastName: `Smith`, + CustomerAddress: `156 Main Street, Huston, USA, 50127`, + Salesperson: `James Black`, + OrderID: 1770, + OrderDate: `3/24/2022`, + ProductID: 141, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 14910.59, + Quantity: 5, + ExtendedPrice: 74552.95, + Freight: 1330.59, + Discontinued: false, + Region: `South East`, + Address: `156 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50127 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `146 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 60064, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1055, + CustomerName: `Max Jackson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jackson`, + CustomerAddress: `146 Market Street, Miami, USA, 60064`, + Salesperson: `Mike Smith`, + OrderID: 1766, + OrderDate: `10/23/2022`, + ProductID: 141, + ProductName: `Mac Book Air`, + UnitPrice: 16740.86, + Quantity: 3, + ExtendedPrice: 50222.58, + Freight: 580.86, + Discontinued: false, + Region: `West`, + Address: `146 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60064 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `163 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90158, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1056, + CustomerName: `Max Black`, + CustomerFirstName: `Max`, + CustomerLastName: `Black`, + CustomerAddress: `163 Market Street, Los Angeles, USA, 90158`, + Salesperson: `Martin Jefferson`, + OrderID: 1415, + OrderDate: `9/2/2022`, + ProductID: 112, + ProductName: `IPhone`, + UnitPrice: 25190.37, + Quantity: 3, + ExtendedPrice: 75571.11, + Freight: 1060.37, + Discontinued: false, + Region: `South East`, + Address: `163 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90158 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `171 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 50163, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1057, + CustomerName: `James Watson`, + CustomerFirstName: `James`, + CustomerLastName: `Watson`, + CustomerAddress: `171 Main Street, New York, USA, 50163`, + Salesperson: `Martin Smith`, + OrderID: 1430, + OrderDate: `9/2/2022`, + ProductID: 120, + ProductName: `Samsung Note`, + UnitPrice: 26340.71, + Quantity: 2, + ExtendedPrice: 52681.42, + Freight: 770.71, + Discontinued: false, + Region: `North East`, + Address: `171 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50163 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Townhouse`, + ShipAddress: `195 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60159, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1058, + CustomerName: `James Black`, + CustomerFirstName: `James`, + CustomerLastName: `Black`, + CustomerAddress: `195 Wall Street, Philadelphia, USA, 60159`, + Salesperson: `Ben Black`, + OrderID: 1903, + OrderDate: `2/19/2022`, + ProductID: 161, + ProductName: `IPad`, + UnitPrice: 6290.33, + Quantity: 5, + ExtendedPrice: 31451.65, + Freight: 890.33, + Discontinued: false, + Region: `South East`, + Address: `195 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60159 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `171 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 50154, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1059, + CustomerName: `Pamela Watson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Watson`, + CustomerAddress: `171 Market Street, Huston, USA, 50154`, + Salesperson: `Anna Madison`, + OrderID: 1578, + OrderDate: `6/5/2022`, + ProductID: 103, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 20240.82, + Quantity: 5, + ExtendedPrice: 101204.1, + Freight: 1490.82, + Discontinued: true, + Region: `West`, + Address: `171 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50154 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `103 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 70081, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1060, + CustomerName: `Max Jackson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jackson`, + CustomerAddress: `103 Market Street, New York, USA, 70081`, + Salesperson: `Pamela Jackson`, + OrderID: 1142, + OrderDate: `4/1/2022`, + ProductID: 108, + ProductName: `IPhone`, + UnitPrice: 9790.41, + Quantity: 3, + ExtendedPrice: 29371.23, + Freight: 980.41, + Discontinued: false, + Region: `South East`, + Address: `103 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 70081 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `187 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 70141, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1061, + CustomerName: `Mike Smith`, + CustomerFirstName: `Mike`, + CustomerLastName: `Smith`, + CustomerAddress: `187 Market Street, Los Angeles, USA, 70141`, + Salesperson: `Ben Jefferson`, + OrderID: 1871, + OrderDate: `8/20/2022`, + ProductID: 197, + ProductName: `IPad`, + UnitPrice: 28960.39, + Quantity: 2, + ExtendedPrice: 57920.78, + Freight: 1280.39, + Discontinued: false, + Region: `West`, + Address: `187 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 70141 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `145 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50068, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1062, + CustomerName: `Ben Black`, + CustomerFirstName: `Ben`, + CustomerLastName: `Black`, + CustomerAddress: `145 Main Street, Philadelphia, USA, 50068`, + Salesperson: `Martin Watson`, + OrderID: 1747, + OrderDate: `1/20/2022`, + ProductID: 198, + ProductName: `Mac Book Pro`, + UnitPrice: 12530.74, + Quantity: 4, + ExtendedPrice: 50122.96, + Freight: 480.74, + Discontinued: false, + Region: `West`, + Address: `145 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50068 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `109 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90197, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1063, + CustomerName: `Nancy Black`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Black`, + CustomerAddress: `109 Market Street, Los Angeles, USA, 90197`, + Salesperson: `James Black`, + OrderID: 1881, + OrderDate: `11/6/2022`, + ProductID: 162, + ProductName: `Samsung Note`, + UnitPrice: 29810.51, + Quantity: 2, + ExtendedPrice: 59621.02, + Freight: 750.51, + Discontinued: false, + Region: `North East`, + Address: `109 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90197 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `155 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50184, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1064, + CustomerName: `Nancy Smith`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Smith`, + CustomerAddress: `155 Market Street, Los Angeles, USA, 50184`, + Salesperson: `Mike Madison`, + OrderID: 1172, + OrderDate: `5/14/2022`, + ProductID: 154, + ProductName: `IPhone`, + UnitPrice: 11440.88, + Quantity: 2, + ExtendedPrice: 22881.76, + Freight: 1570.88, + Discontinued: false, + Region: `West`, + Address: `155 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50184 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Estate`, + ShipAddress: `136 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 60147, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1065, + CustomerName: `James Jackson`, + CustomerFirstName: `James`, + CustomerLastName: `Jackson`, + CustomerAddress: `136 Main Street, New York, USA, 60147`, + Salesperson: `James Jefferson`, + OrderID: 1538, + OrderDate: `2/4/2022`, + ProductID: 142, + ProductName: `IPad`, + UnitPrice: 18340.25, + Quantity: 5, + ExtendedPrice: 91701.25, + Freight: 1730.25, + Discontinued: false, + Region: `South East`, + Address: `136 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 60147 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Market`, + ShipAddress: `184 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 60091, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1066, + CustomerName: `Mike Madison`, + CustomerFirstName: `Mike`, + CustomerLastName: `Madison`, + CustomerAddress: `184 Wall Street, Miami, USA, 60091`, + Salesperson: `Ben Jackson`, + OrderID: 1863, + OrderDate: `2/6/2022`, + ProductID: 186, + ProductName: `Samsung Note`, + UnitPrice: 6690.4, + Quantity: 5, + ExtendedPrice: 33452, + Freight: 930.4, + Discontinued: false, + Region: `West`, + Address: `184 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60091 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `103 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80170, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1067, + CustomerName: `James Jackson`, + CustomerFirstName: `James`, + CustomerLastName: `Jackson`, + CustomerAddress: `103 Market Street, Philadelphia, USA, 80170`, + Salesperson: `Max Black`, + OrderID: 1476, + OrderDate: `1/13/2022`, + ProductID: 156, + ProductName: `Mac Book Pro`, + UnitPrice: 29040.31, + Quantity: 5, + ExtendedPrice: 145201.55, + Freight: 1070.31, + Discontinued: false, + Region: `West`, + Address: `103 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80170 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Estate`, + ShipAddress: `104 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 80188, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1068, + CustomerName: `Ben Smith`, + CustomerFirstName: `Ben`, + CustomerLastName: `Smith`, + CustomerAddress: `104 Market Street, Los Angeles, USA, 80188`, + Salesperson: `Martin Watson`, + OrderID: 1131, + OrderDate: `9/13/2022`, + ProductID: 131, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 6780.79, + Quantity: 4, + ExtendedPrice: 27123.16, + Freight: 600.79, + Discontinued: false, + Region: `South East`, + Address: `104 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 80188 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Townhouse`, + ShipAddress: `140 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 90197, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1069, + CustomerName: `Martin Madison`, + CustomerFirstName: `Martin`, + CustomerLastName: `Madison`, + CustomerAddress: `140 Main Street, New York, USA, 90197`, + Salesperson: `Anna Smith`, + OrderID: 1829, + OrderDate: `2/18/2022`, + ProductID: 152, + ProductName: `Samsung Note`, + UnitPrice: 20150.52, + Quantity: 4, + ExtendedPrice: 80602.08, + Freight: 1840.52, + Discontinued: true, + Region: `North East`, + Address: `140 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90197 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `172 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90159, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1070, + CustomerName: `Mike Smith`, + CustomerFirstName: `Mike`, + CustomerLastName: `Smith`, + CustomerAddress: `172 Wall Street, Philadelphia, USA, 90159`, + Salesperson: `Pamela Watson`, + OrderID: 1082, + OrderDate: `10/1/2022`, + ProductID: 164, + ProductName: `IPad`, + UnitPrice: 23810.31, + Quantity: 2, + ExtendedPrice: 47620.62, + Freight: 320.31, + Discontinued: false, + Region: `West`, + Address: `172 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90159 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `147 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 90173, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1071, + CustomerName: `Ben Jackson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jackson`, + CustomerAddress: `147 Wall Street, Huston, USA, 90173`, + Salesperson: `Martin Smith`, + OrderID: 1449, + OrderDate: `1/21/2022`, + ProductID: 111, + ProductName: `Mac Book Pro`, + UnitPrice: 8280.25, + Quantity: 4, + ExtendedPrice: 33121, + Freight: 860.25, + Discontinued: false, + Region: `South East`, + Address: `147 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90173 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `161 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 90102, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1072, + CustomerName: `Mike Jackson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jackson`, + CustomerAddress: `161 Main Street, Huston, USA, 90102`, + Salesperson: `Nancy Black`, + OrderID: 1609, + OrderDate: `9/22/2022`, + ProductID: 197, + ProductName: `Samsung Note`, + UnitPrice: 16740.35, + Quantity: 4, + ExtendedPrice: 66961.4, + Freight: 1940.35, + Discontinued: false, + Region: `North East`, + Address: `161 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90102 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `102 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 70124, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1073, + CustomerName: `Ben Smith`, + CustomerFirstName: `Ben`, + CustomerLastName: `Smith`, + CustomerAddress: `102 Market Street, Miami, USA, 70124`, + Salesperson: `Anna Smith`, + OrderID: 1984, + OrderDate: `8/6/2022`, + ProductID: 123, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 14660.66, + Quantity: 3, + ExtendedPrice: 43981.98, + Freight: 1910.66, + Discontinued: false, + Region: `West`, + Address: `102 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 70124 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `139 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 90134, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1074, + CustomerName: `Martin Black`, + CustomerFirstName: `Martin`, + CustomerLastName: `Black`, + CustomerAddress: `139 Market Street, Miami, USA, 90134`, + Salesperson: `Max Jackson`, + OrderID: 1060, + OrderDate: `3/11/2022`, + ProductID: 154, + ProductName: `Mac Book Pro`, + UnitPrice: 14460.37, + Quantity: 4, + ExtendedPrice: 57841.48, + Freight: 1020.37, + Discontinued: false, + Region: `West`, + Address: `139 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90134 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `132 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60055, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1075, + CustomerName: `Martin Jackson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Jackson`, + CustomerAddress: `132 Market Street, Philadelphia, USA, 60055`, + Salesperson: `Pamela Madison`, + OrderID: 1213, + OrderDate: `9/3/2022`, + ProductID: 108, + ProductName: `IPhone`, + UnitPrice: 19340.74, + Quantity: 3, + ExtendedPrice: 58022.22, + Freight: 1370.74, + Discontinued: false, + Region: `West`, + Address: `132 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60055 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `192 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 90135, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1076, + CustomerName: `Mike Black`, + CustomerFirstName: `Mike`, + CustomerLastName: `Black`, + CustomerAddress: `192 Market Street, Miami, USA, 90135`, + Salesperson: `Nancy Madison`, + OrderID: 1563, + OrderDate: `5/8/2022`, + ProductID: 162, + ProductName: `Samsung Note`, + UnitPrice: 12670.48, + Quantity: 2, + ExtendedPrice: 25340.96, + Freight: 1870.48, + Discontinued: false, + Region: `South East`, + Address: `192 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90135 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `108 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 90156, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1077, + CustomerName: `Martin Jefferson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Jefferson`, + CustomerAddress: `108 Wall Street, Miami, USA, 90156`, + Salesperson: `Max Smith`, + OrderID: 1087, + OrderDate: `6/24/2022`, + ProductID: 194, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 6860.84, + Quantity: 3, + ExtendedPrice: 20582.52, + Freight: 1880.84, + Discontinued: false, + Region: `South East`, + Address: `108 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90156 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `162 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 80121, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1078, + CustomerName: `Nancy Smith`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Smith`, + CustomerAddress: `162 Wall Street, New York, USA, 80121`, + Salesperson: `Anna Black`, + OrderID: 1663, + OrderDate: `9/5/2022`, + ProductID: 149, + ProductName: `Mac Book Pro`, + UnitPrice: 29550.53, + Quantity: 5, + ExtendedPrice: 147752.65, + Freight: 1270.53, + Discontinued: false, + Region: `South East`, + Address: `162 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80121 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `165 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 70057, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1079, + CustomerName: `Martin Smith`, + CustomerFirstName: `Martin`, + CustomerLastName: `Smith`, + CustomerAddress: `165 Main Street, Los Angeles, USA, 70057`, + Salesperson: `James Watson`, + OrderID: 1724, + OrderDate: `5/6/2022`, + ProductID: 180, + ProductName: `IPad`, + UnitPrice: 13560.61, + Quantity: 3, + ExtendedPrice: 40681.83, + Freight: 760.61, + Discontinued: true, + Region: `North East`, + Address: `165 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 70057 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `162 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 60057, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1080, + CustomerName: `Anna Watson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Watson`, + CustomerAddress: `162 Main Street, Huston, USA, 60057`, + Salesperson: `Anna Watson`, + OrderID: 1156, + OrderDate: `10/5/2022`, + ProductID: 157, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 17220.59, + Quantity: 3, + ExtendedPrice: 51661.77, + Freight: 1550.59, + Discontinued: false, + Region: `North East`, + Address: `162 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 60057 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `126 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 70200, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1081, + CustomerName: `Nancy Watson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Watson`, + CustomerAddress: `126 Main Street, Miami, USA, 70200`, + Salesperson: `Ben Watson`, + OrderID: 1982, + OrderDate: `9/11/2022`, + ProductID: 123, + ProductName: `Mac Book Air`, + UnitPrice: 25780.79, + Quantity: 2, + ExtendedPrice: 51561.58, + Freight: 680.79, + Discontinued: false, + Region: `South East`, + Address: `126 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 70200 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `105 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 80141, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1082, + CustomerName: `Max Jackson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jackson`, + CustomerAddress: `105 Wall Street, Huston, USA, 80141`, + Salesperson: `Pamela Watson`, + OrderID: 1462, + OrderDate: `6/6/2022`, + ProductID: 189, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 16990.62, + Quantity: 2, + ExtendedPrice: 33981.24, + Freight: 710.62, + Discontinued: false, + Region: `West`, + Address: `105 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80141 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `113 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50187, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1083, + CustomerName: `James Jefferson`, + CustomerFirstName: `James`, + CustomerLastName: `Jefferson`, + CustomerAddress: `113 Market Street, Philadelphia, USA, 50187`, + Salesperson: `Martin Jefferson`, + OrderID: 1698, + OrderDate: `5/16/2022`, + ProductID: 148, + ProductName: `IPhone`, + UnitPrice: 16930.87, + Quantity: 4, + ExtendedPrice: 67723.48, + Freight: 1080.87, + Discontinued: false, + Region: `North East`, + Address: `113 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50187 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `164 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 80172, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1084, + CustomerName: `Mike Black`, + CustomerFirstName: `Mike`, + CustomerLastName: `Black`, + CustomerAddress: `164 Main Street, New York, USA, 80172`, + Salesperson: `Mike Jackson`, + OrderID: 1300, + OrderDate: `11/11/2022`, + ProductID: 164, + ProductName: `IPhone`, + UnitPrice: 8120.59, + Quantity: 4, + ExtendedPrice: 32482.36, + Freight: 1140.59, + Discontinued: false, + Region: `West`, + Address: `164 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80172 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `108 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90074, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1085, + CustomerName: `Pamela Watson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Watson`, + CustomerAddress: `108 Main Street, Philadelphia, USA, 90074`, + Salesperson: `Nancy Madison`, + OrderID: 1401, + OrderDate: `12/3/2022`, + ProductID: 139, + ProductName: `IPhone`, + UnitPrice: 6160.25, + Quantity: 4, + ExtendedPrice: 24641, + Freight: 1600.25, + Discontinued: false, + Region: `South East`, + Address: `108 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90074 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `175 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 80111, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1086, + CustomerName: `Max Jefferson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jefferson`, + CustomerAddress: `175 Main Street, Huston, USA, 80111`, + Salesperson: `Nancy Watson`, + OrderID: 1474, + OrderDate: `9/1/2022`, + ProductID: 138, + ProductName: `Mac Book Air`, + UnitPrice: 7220.7, + Quantity: 4, + ExtendedPrice: 28882.8, + Freight: 1530.7, + Discontinued: false, + Region: `West`, + Address: `175 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80111 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `102 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 80173, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1087, + CustomerName: `Nancy Madison`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Madison`, + CustomerAddress: `102 Wall Street, Miami, USA, 80173`, + Salesperson: `Martin Jackson`, + OrderID: 1678, + OrderDate: `5/6/2022`, + ProductID: 190, + ProductName: `IPad`, + UnitPrice: 17990.28, + Quantity: 4, + ExtendedPrice: 71961.12, + Freight: 1420.28, + Discontinued: false, + Region: `South East`, + Address: `102 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 80173 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `163 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50105, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1088, + CustomerName: `Mike Jackson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jackson`, + CustomerAddress: `163 Market Street, Philadelphia, USA, 50105`, + Salesperson: `Martin Black`, + OrderID: 1384, + OrderDate: `4/16/2022`, + ProductID: 156, + ProductName: `Mac Book Pro`, + UnitPrice: 15460.27, + Quantity: 3, + ExtendedPrice: 46380.81, + Freight: 1250.27, + Discontinued: false, + Region: `West`, + Address: `163 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50105 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Home`, + ShipAddress: `165 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 90075, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1089, + CustomerName: `Ben Watson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Watson`, + CustomerAddress: `165 Wall Street, Huston, USA, 90075`, + Salesperson: `Nancy Jefferson`, + OrderID: 1223, + OrderDate: `7/20/2022`, + ProductID: 105, + ProductName: `Mac Book Pro`, + UnitPrice: 15450.62, + Quantity: 2, + ExtendedPrice: 30901.24, + Freight: 1350.62, + Discontinued: true, + Region: `North East`, + Address: `165 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90075 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `140 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 80134, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1090, + CustomerName: `Anna Jefferson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Jefferson`, + CustomerAddress: `140 Wall Street, New York, USA, 80134`, + Salesperson: `Anna Watson`, + OrderID: 1189, + OrderDate: `10/5/2022`, + ProductID: 128, + ProductName: `Samsung Note`, + UnitPrice: 15460.25, + Quantity: 5, + ExtendedPrice: 77301.25, + Freight: 840.25, + Discontinued: false, + Region: `West`, + Address: `140 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80134 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Market`, + ShipAddress: `191 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 80168, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1091, + CustomerName: `Max Madison`, + CustomerFirstName: `Max`, + CustomerLastName: `Madison`, + CustomerAddress: `191 Wall Street, Los Angeles, USA, 80168`, + Salesperson: `Anna Madison`, + OrderID: 1657, + OrderDate: `8/7/2022`, + ProductID: 154, + ProductName: `IPad`, + UnitPrice: 24990.6, + Quantity: 5, + ExtendedPrice: 124953, + Freight: 1890.6, + Discontinued: false, + Region: `South East`, + Address: `191 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 80168 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `111 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60130, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1092, + CustomerName: `Anna Watson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Watson`, + CustomerAddress: `111 Market Street, Los Angeles, USA, 60130`, + Salesperson: `Ben Jackson`, + OrderID: 1818, + OrderDate: `12/2/2022`, + ProductID: 107, + ProductName: `Samsung Note`, + UnitPrice: 19750.45, + Quantity: 4, + ExtendedPrice: 79001.8, + Freight: 1840.45, + Discontinued: false, + Region: `South East`, + Address: `111 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60130 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `190 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50162, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1093, + CustomerName: `Mike Madison`, + CustomerFirstName: `Mike`, + CustomerLastName: `Madison`, + CustomerAddress: `190 Market Street, Los Angeles, USA, 50162`, + Salesperson: `Mike Watson`, + OrderID: 1117, + OrderDate: `10/12/2022`, + ProductID: 176, + ProductName: `Samsung Note`, + UnitPrice: 15390.57, + Quantity: 5, + ExtendedPrice: 76952.85, + Freight: 1500.57, + Discontinued: false, + Region: `West`, + Address: `190 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50162 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `121 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 70156, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1094, + CustomerName: `James Black`, + CustomerFirstName: `James`, + CustomerLastName: `Black`, + CustomerAddress: `121 Main Street, Miami, USA, 70156`, + Salesperson: `Mike Jackson`, + OrderID: 1188, + OrderDate: `11/23/2022`, + ProductID: 177, + ProductName: `IPad`, + UnitPrice: 23120.28, + Quantity: 3, + ExtendedPrice: 69360.84, + Freight: 1670.28, + Discontinued: false, + Region: `South East`, + Address: `121 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 70156 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `120 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 60082, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1095, + CustomerName: `Martin Smith`, + CustomerFirstName: `Martin`, + CustomerLastName: `Smith`, + CustomerAddress: `120 Main Street, Miami, USA, 60082`, + Salesperson: `Nancy Smith`, + OrderID: 1673, + OrderDate: `1/25/2022`, + ProductID: 189, + ProductName: `Mac Book Air`, + UnitPrice: 16310.31, + Quantity: 4, + ExtendedPrice: 65241.24, + Freight: 370.31, + Discontinued: false, + Region: `South East`, + Address: `120 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60082 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `102 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 90125, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1096, + CustomerName: `Pamela Madison`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Madison`, + CustomerAddress: `102 Main Street, Miami, USA, 90125`, + Salesperson: `Pamela Smith`, + OrderID: 1048, + OrderDate: `8/6/2022`, + ProductID: 148, + ProductName: `Mac Book Pro`, + UnitPrice: 14920.59, + Quantity: 2, + ExtendedPrice: 29841.18, + Freight: 1110.59, + Discontinued: false, + Region: `West`, + Address: `102 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90125 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Home`, + ShipAddress: `125 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 80199, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1097, + CustomerName: `James Jefferson`, + CustomerFirstName: `James`, + CustomerLastName: `Jefferson`, + CustomerAddress: `125 Main Street, Los Angeles, USA, 80199`, + Salesperson: `Pamela Black`, + OrderID: 1336, + OrderDate: `6/1/2022`, + ProductID: 159, + ProductName: `Mac Book Pro`, + UnitPrice: 11370.4, + Quantity: 5, + ExtendedPrice: 56852, + Freight: 1210.4, + Discontinued: false, + Region: `West`, + Address: `125 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 80199 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `109 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 60118, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1098, + CustomerName: `Mike Jefferson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jefferson`, + CustomerAddress: `109 Wall Street, Miami, USA, 60118`, + Salesperson: `James Madison`, + OrderID: 1049, + OrderDate: `2/14/2022`, + ProductID: 172, + ProductName: `Mac Book Pro`, + UnitPrice: 18730.79, + Quantity: 5, + ExtendedPrice: 93653.95, + Freight: 300.79, + Discontinued: false, + Region: `South East`, + Address: `109 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60118 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Townhouse`, + ShipAddress: `149 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 50128, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1099, + CustomerName: `Anna Smith`, + CustomerFirstName: `Anna`, + CustomerLastName: `Smith`, + CustomerAddress: `149 Main Street, Miami, USA, 50128`, + Salesperson: `James Watson`, + OrderID: 1292, + OrderDate: `3/15/2022`, + ProductID: 183, + ProductName: `Mac Book Air`, + UnitPrice: 16730.48, + Quantity: 5, + ExtendedPrice: 83652.4, + Freight: 1320.48, + Discontinued: true, + Region: `North East`, + Address: `149 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 50128 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Estate`, + ShipAddress: `183 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 50089, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1100, + CustomerName: `Ben Smith`, + CustomerFirstName: `Ben`, + CustomerLastName: `Smith`, + CustomerAddress: `183 Wall Street, New York, USA, 50089`, + Salesperson: `Max Watson`, + OrderID: 1724, + OrderDate: `9/22/2022`, + ProductID: 160, + ProductName: `IPad`, + UnitPrice: 23370.51, + Quantity: 3, + ExtendedPrice: 70111.53, + Freight: 1200.51, + Discontinued: false, + Region: `North East`, + Address: `183 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50089 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `195 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60110, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1101, + CustomerName: `Martin Watson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Watson`, + CustomerAddress: `195 Market Street, Philadelphia, USA, 60110`, + Salesperson: `Martin Black`, + OrderID: 1154, + OrderDate: `4/13/2022`, + ProductID: 180, + ProductName: `Samsung Note`, + UnitPrice: 24870.49, + Quantity: 4, + ExtendedPrice: 99481.96, + Freight: 1200.49, + Discontinued: false, + Region: `South East`, + Address: `195 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60110 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `153 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 60113, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1102, + CustomerName: `Ben Madison`, + CustomerFirstName: `Ben`, + CustomerLastName: `Madison`, + CustomerAddress: `153 Market Street, New York, USA, 60113`, + Salesperson: `Nancy Black`, + OrderID: 1333, + OrderDate: `2/24/2022`, + ProductID: 192, + ProductName: `Samsung Note`, + UnitPrice: 12710.8, + Quantity: 4, + ExtendedPrice: 50843.2, + Freight: 1520.8, + Discontinued: false, + Region: `North East`, + Address: `153 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 60113 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `185 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 60118, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1103, + CustomerName: `James Watson`, + CustomerFirstName: `James`, + CustomerLastName: `Watson`, + CustomerAddress: `185 Market Street, Miami, USA, 60118`, + Salesperson: `Max Black`, + OrderID: 1243, + OrderDate: `2/7/2022`, + ProductID: 124, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 16270.33, + Quantity: 4, + ExtendedPrice: 65081.32, + Freight: 1050.33, + Discontinued: false, + Region: `West`, + Address: `185 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60118 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `181 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 80055, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1104, + CustomerName: `Anna Smith`, + CustomerFirstName: `Anna`, + CustomerLastName: `Smith`, + CustomerAddress: `181 Market Street, Miami, USA, 80055`, + Salesperson: `Nancy Madison`, + OrderID: 1090, + OrderDate: `12/2/2022`, + ProductID: 106, + ProductName: `Mac Book Pro`, + UnitPrice: 25150.85, + Quantity: 5, + ExtendedPrice: 125754.25, + Freight: 560.85, + Discontinued: false, + Region: `North East`, + Address: `181 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 80055 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Home`, + ShipAddress: `185 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60149, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1105, + CustomerName: `Ben Watson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Watson`, + CustomerAddress: `185 Market Street, Los Angeles, USA, 60149`, + Salesperson: `Martin Madison`, + OrderID: 1697, + OrderDate: `10/12/2022`, + ProductID: 193, + ProductName: `Mac Book Air`, + UnitPrice: 18440.22, + Quantity: 5, + ExtendedPrice: 92201.1, + Freight: 1030.22, + Discontinued: false, + Region: `North East`, + Address: `185 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60149 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `110 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90160, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1106, + CustomerName: `Anna Madison`, + CustomerFirstName: `Anna`, + CustomerLastName: `Madison`, + CustomerAddress: `110 Wall Street, Los Angeles, USA, 90160`, + Salesperson: `Mike Jefferson`, + OrderID: 1868, + OrderDate: `6/20/2022`, + ProductID: 166, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 10990.49, + Quantity: 5, + ExtendedPrice: 54952.45, + Freight: 1250.49, + Discontinued: false, + Region: `North East`, + Address: `110 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90160 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `124 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 90129, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1107, + CustomerName: `Martin Madison`, + CustomerFirstName: `Martin`, + CustomerLastName: `Madison`, + CustomerAddress: `124 Wall Street, Miami, USA, 90129`, + Salesperson: `Max Madison`, + OrderID: 1419, + OrderDate: `11/8/2022`, + ProductID: 119, + ProductName: `Mac Book Air`, + UnitPrice: 9310.28, + Quantity: 3, + ExtendedPrice: 27930.84, + Freight: 1660.28, + Discontinued: false, + Region: `West`, + Address: `124 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90129 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `144 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 80145, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1108, + CustomerName: `Pamela Jefferson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jefferson`, + CustomerAddress: `144 Wall Street, Huston, USA, 80145`, + Salesperson: `Mike Smith`, + OrderID: 1103, + OrderDate: `5/14/2022`, + ProductID: 172, + ProductName: `Mac Book Pro`, + UnitPrice: 5130.33, + Quantity: 2, + ExtendedPrice: 10260.66, + Freight: 1840.33, + Discontinued: false, + Region: `North East`, + Address: `144 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80145 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `200 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50073, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1109, + CustomerName: `Nancy Jefferson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jefferson`, + CustomerAddress: `200 Main Street, Philadelphia, USA, 50073`, + Salesperson: `Max Jackson`, + OrderID: 1461, + OrderDate: `6/13/2022`, + ProductID: 153, + ProductName: `Mac Book Pro`, + UnitPrice: 23080.59, + Quantity: 3, + ExtendedPrice: 69241.77, + Freight: 540.59, + Discontinued: true, + Region: `West`, + Address: `200 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50073 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Market`, + ShipAddress: `196 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 70070, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1110, + CustomerName: `Mike Madison`, + CustomerFirstName: `Mike`, + CustomerLastName: `Madison`, + CustomerAddress: `196 Market Street, New York, USA, 70070`, + Salesperson: `Nancy Smith`, + OrderID: 1713, + OrderDate: `3/6/2022`, + ProductID: 121, + ProductName: `Mac Book Pro`, + UnitPrice: 29390.58, + Quantity: 3, + ExtendedPrice: 88171.74, + Freight: 1170.58, + Discontinued: false, + Region: `West`, + Address: `196 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 70070 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `154 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 70167, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1111, + CustomerName: `Martin Smith`, + CustomerFirstName: `Martin`, + CustomerLastName: `Smith`, + CustomerAddress: `154 Main Street, New York, USA, 70167`, + Salesperson: `Pamela Jackson`, + OrderID: 1956, + OrderDate: `1/2/2022`, + ProductID: 156, + ProductName: `Samsung Note`, + UnitPrice: 24870.88, + Quantity: 2, + ExtendedPrice: 49741.76, + Freight: 1360.88, + Discontinued: false, + Region: `North East`, + Address: `154 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 70167 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `110 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 90055, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1112, + CustomerName: `Mike Jefferson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jefferson`, + CustomerAddress: `110 Main Street, Miami, USA, 90055`, + Salesperson: `Anna Madison`, + OrderID: 1530, + OrderDate: `10/15/2022`, + ProductID: 113, + ProductName: `IPad`, + UnitPrice: 24570.87, + Quantity: 4, + ExtendedPrice: 98283.48, + Freight: 930.87, + Discontinued: false, + Region: `South East`, + Address: `110 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90055 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `200 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 70105, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1113, + CustomerName: `Martin Jefferson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Jefferson`, + CustomerAddress: `200 Market Street, Huston, USA, 70105`, + Salesperson: `James Jackson`, + OrderID: 1488, + OrderDate: `7/13/2022`, + ProductID: 109, + ProductName: `IPhone`, + UnitPrice: 23860.57, + Quantity: 4, + ExtendedPrice: 95442.28, + Freight: 1130.57, + Discontinued: false, + Region: `North East`, + Address: `200 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 70105 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Home`, + ShipAddress: `181 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80175, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1114, + CustomerName: `Ben Jefferson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jefferson`, + CustomerAddress: `181 Main Street, Philadelphia, USA, 80175`, + Salesperson: `Max Jackson`, + OrderID: 1143, + OrderDate: `6/13/2022`, + ProductID: 144, + ProductName: `Mac Book Air`, + UnitPrice: 28390.63, + Quantity: 5, + ExtendedPrice: 141953.15, + Freight: 300.63, + Discontinued: false, + Region: `North East`, + Address: `181 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80175 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Home`, + ShipAddress: `137 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 50144, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1115, + CustomerName: `Ben Jackson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jackson`, + CustomerAddress: `137 Market Street, Huston, USA, 50144`, + Salesperson: `Martin Jackson`, + OrderID: 1274, + OrderDate: `4/8/2022`, + ProductID: 134, + ProductName: `IPad`, + UnitPrice: 22580.34, + Quantity: 2, + ExtendedPrice: 45160.68, + Freight: 1720.34, + Discontinued: false, + Region: `South East`, + Address: `137 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50144 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `186 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 70112, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1116, + CustomerName: `Pamela Jefferson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jefferson`, + CustomerAddress: `186 Main Street, Los Angeles, USA, 70112`, + Salesperson: `Mike Jefferson`, + OrderID: 1597, + OrderDate: `8/6/2022`, + ProductID: 127, + ProductName: `Mac Book Pro`, + UnitPrice: 28490.48, + Quantity: 3, + ExtendedPrice: 85471.44, + Freight: 760.48, + Discontinued: false, + Region: `South East`, + Address: `186 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 70112 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `152 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 50080, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1117, + CustomerName: `Nancy Watson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Watson`, + CustomerAddress: `152 Wall Street, Huston, USA, 50080`, + Salesperson: `Max Jackson`, + OrderID: 1632, + OrderDate: `4/15/2022`, + ProductID: 179, + ProductName: `Mac Book Pro`, + UnitPrice: 20680.38, + Quantity: 5, + ExtendedPrice: 103401.9, + Freight: 490.38, + Discontinued: false, + Region: `West`, + Address: `152 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50080 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `147 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 60136, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1118, + CustomerName: `Pamela Black`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Black`, + CustomerAddress: `147 Wall Street, Huston, USA, 60136`, + Salesperson: `Mike Watson`, + OrderID: 1461, + OrderDate: `4/21/2022`, + ProductID: 118, + ProductName: `Samsung Note`, + UnitPrice: 6990.24, + Quantity: 5, + ExtendedPrice: 34951.2, + Freight: 460.24, + Discontinued: false, + Region: `North East`, + Address: `147 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 60136 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `161 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 80121, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1119, + CustomerName: `James Black`, + CustomerFirstName: `James`, + CustomerLastName: `Black`, + CustomerAddress: `161 Market Street, Huston, USA, 80121`, + Salesperson: `Martin Jefferson`, + OrderID: 1380, + OrderDate: `1/3/2022`, + ProductID: 176, + ProductName: `Mac Book Air`, + UnitPrice: 26540.79, + Quantity: 5, + ExtendedPrice: 132703.95, + Freight: 470.79, + Discontinued: true, + Region: `West`, + Address: `161 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80121 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `118 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50189, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1120, + CustomerName: `Ben Watson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Watson`, + CustomerAddress: `118 Main Street, Philadelphia, USA, 50189`, + Salesperson: `Ben Watson`, + OrderID: 1658, + OrderDate: `1/4/2022`, + ProductID: 184, + ProductName: `Mac Book Air`, + UnitPrice: 16830.41, + Quantity: 5, + ExtendedPrice: 84152.05, + Freight: 1660.41, + Discontinued: false, + Region: `West`, + Address: `118 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50189 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `186 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 60097, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1121, + CustomerName: `Pamela Jackson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jackson`, + CustomerAddress: `186 Market Street, Miami, USA, 60097`, + Salesperson: `Nancy Watson`, + OrderID: 1754, + OrderDate: `7/3/2022`, + ProductID: 148, + ProductName: `Mac Book Air`, + UnitPrice: 5030.24, + Quantity: 3, + ExtendedPrice: 15090.72, + Freight: 1660.24, + Discontinued: false, + Region: `South East`, + Address: `186 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60097 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `191 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90155, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1122, + CustomerName: `Ben Smith`, + CustomerFirstName: `Ben`, + CustomerLastName: `Smith`, + CustomerAddress: `191 Main Street, Los Angeles, USA, 90155`, + Salesperson: `Anna Madison`, + OrderID: 1279, + OrderDate: `3/14/2022`, + ProductID: 151, + ProductName: `IPhone`, + UnitPrice: 23590.82, + Quantity: 3, + ExtendedPrice: 70772.46, + Freight: 1120.82, + Discontinued: false, + Region: `West`, + Address: `191 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90155 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `190 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 80075, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1123, + CustomerName: `James Jefferson`, + CustomerFirstName: `James`, + CustomerLastName: `Jefferson`, + CustomerAddress: `190 Main Street, New York, USA, 80075`, + Salesperson: `Martin Jackson`, + OrderID: 1310, + OrderDate: `11/7/2022`, + ProductID: 183, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 26450.4, + Quantity: 5, + ExtendedPrice: 132252, + Freight: 420.4, + Discontinued: false, + Region: `South East`, + Address: `190 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80075 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `160 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80067, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1124, + CustomerName: `Pamela Madison`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Madison`, + CustomerAddress: `160 Market Street, Philadelphia, USA, 80067`, + Salesperson: `Ben Jackson`, + OrderID: 1920, + OrderDate: `12/17/2022`, + ProductID: 174, + ProductName: `IPhone`, + UnitPrice: 23660.88, + Quantity: 4, + ExtendedPrice: 94643.52, + Freight: 1220.88, + Discontinued: false, + Region: `North East`, + Address: `160 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80067 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `151 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 90124, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1125, + CustomerName: `Max Black`, + CustomerFirstName: `Max`, + CustomerLastName: `Black`, + CustomerAddress: `151 Wall Street, Miami, USA, 90124`, + Salesperson: `Mike Watson`, + OrderID: 1497, + OrderDate: `2/21/2022`, + ProductID: 179, + ProductName: `IPhone`, + UnitPrice: 15940.51, + Quantity: 5, + ExtendedPrice: 79702.55, + Freight: 1880.51, + Discontinued: false, + Region: `West`, + Address: `151 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90124 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `151 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 70173, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1126, + CustomerName: `Nancy Black`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Black`, + CustomerAddress: `151 Market Street, Huston, USA, 70173`, + Salesperson: `Pamela Jefferson`, + OrderID: 1925, + OrderDate: `2/15/2022`, + ProductID: 170, + ProductName: `IPhone`, + UnitPrice: 13350.7, + Quantity: 5, + ExtendedPrice: 66753.5, + Freight: 720.7, + Discontinued: false, + Region: `West`, + Address: `151 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 70173 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `114 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 80067, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1127, + CustomerName: `James Watson`, + CustomerFirstName: `James`, + CustomerLastName: `Watson`, + CustomerAddress: `114 Main Street, Miami, USA, 80067`, + Salesperson: `Pamela Black`, + OrderID: 1338, + OrderDate: `5/19/2022`, + ProductID: 196, + ProductName: `Samsung Note`, + UnitPrice: 20820.82, + Quantity: 4, + ExtendedPrice: 83283.28, + Freight: 1570.82, + Discontinued: false, + Region: `South East`, + Address: `114 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 80067 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Market`, + ShipAddress: `189 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80157, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1128, + CustomerName: `Anna Madison`, + CustomerFirstName: `Anna`, + CustomerLastName: `Madison`, + CustomerAddress: `189 Wall Street, Philadelphia, USA, 80157`, + Salesperson: `Ben Watson`, + OrderID: 1794, + OrderDate: `9/9/2022`, + ProductID: 168, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 25550.56, + Quantity: 4, + ExtendedPrice: 102202.24, + Freight: 400.56, + Discontinued: false, + Region: `North East`, + Address: `189 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80157 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Home`, + ShipAddress: `198 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 60169, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1129, + CustomerName: `Ben Watson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Watson`, + CustomerAddress: `198 Main Street, New York, USA, 60169`, + Salesperson: `James Black`, + OrderID: 1108, + OrderDate: `2/5/2022`, + ProductID: 194, + ProductName: `Mac Book Air`, + UnitPrice: 10890.26, + Quantity: 3, + ExtendedPrice: 32670.78, + Freight: 760.26, + Discontinued: true, + Region: `South East`, + Address: `198 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 60169 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `106 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60117, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1130, + CustomerName: `James Jackson`, + CustomerFirstName: `James`, + CustomerLastName: `Jackson`, + CustomerAddress: `106 Main Street, Los Angeles, USA, 60117`, + Salesperson: `Pamela Jackson`, + OrderID: 1953, + OrderDate: `11/24/2022`, + ProductID: 179, + ProductName: `Samsung Note`, + UnitPrice: 19940.84, + Quantity: 3, + ExtendedPrice: 59822.52, + Freight: 890.84, + Discontinued: false, + Region: `West`, + Address: `106 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60117 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `192 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90090, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1131, + CustomerName: `James Madison`, + CustomerFirstName: `James`, + CustomerLastName: `Madison`, + CustomerAddress: `192 Main Street, Los Angeles, USA, 90090`, + Salesperson: `Max Jefferson`, + OrderID: 1337, + OrderDate: `10/10/2022`, + ProductID: 198, + ProductName: `Samsung Note`, + UnitPrice: 18640.31, + Quantity: 2, + ExtendedPrice: 37280.62, + Freight: 280.31, + Discontinued: false, + Region: `South East`, + Address: `192 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90090 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `128 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 50136, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1132, + CustomerName: `Martin Jefferson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Jefferson`, + CustomerAddress: `128 Market Street, Miami, USA, 50136`, + Salesperson: `Nancy Jefferson`, + OrderID: 1617, + OrderDate: `4/10/2022`, + ProductID: 148, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 26140.37, + Quantity: 2, + ExtendedPrice: 52280.74, + Freight: 1270.37, + Discontinued: false, + Region: `West`, + Address: `128 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 50136 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Home`, + ShipAddress: `164 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 70190, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1133, + CustomerName: `Max Jackson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jackson`, + CustomerAddress: `164 Wall Street, Huston, USA, 70190`, + Salesperson: `Nancy Watson`, + OrderID: 1222, + OrderDate: `3/15/2022`, + ProductID: 140, + ProductName: `IPad`, + UnitPrice: 20540.74, + Quantity: 3, + ExtendedPrice: 61622.22, + Freight: 1190.74, + Discontinued: false, + Region: `West`, + Address: `164 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 70190 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `118 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 60126, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1134, + CustomerName: `Ben Black`, + CustomerFirstName: `Ben`, + CustomerLastName: `Black`, + CustomerAddress: `118 Main Street, Huston, USA, 60126`, + Salesperson: `Pamela Jefferson`, + OrderID: 1888, + OrderDate: `7/3/2022`, + ProductID: 133, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 25970.39, + Quantity: 2, + ExtendedPrice: 51940.78, + Freight: 1110.39, + Discontinued: false, + Region: `North East`, + Address: `118 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 60126 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `145 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50093, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1135, + CustomerName: `James Jefferson`, + CustomerFirstName: `James`, + CustomerLastName: `Jefferson`, + CustomerAddress: `145 Wall Street, Philadelphia, USA, 50093`, + Salesperson: `Nancy Jefferson`, + OrderID: 1661, + OrderDate: `5/14/2022`, + ProductID: 199, + ProductName: `Mac Book Air`, + UnitPrice: 12190.38, + Quantity: 2, + ExtendedPrice: 24380.76, + Freight: 1670.38, + Discontinued: false, + Region: `North East`, + Address: `145 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50093 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Home`, + ShipAddress: `174 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 70094, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1136, + CustomerName: `Ben Jefferson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jefferson`, + CustomerAddress: `174 Wall Street, Los Angeles, USA, 70094`, + Salesperson: `Max Madison`, + OrderID: 1495, + OrderDate: `1/19/2022`, + ProductID: 188, + ProductName: `Mac Book Pro`, + UnitPrice: 18310.54, + Quantity: 5, + ExtendedPrice: 91552.7, + Freight: 810.54, + Discontinued: false, + Region: `West`, + Address: `174 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 70094 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `146 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90093, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1137, + CustomerName: `Martin Watson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Watson`, + CustomerAddress: `146 Wall Street, Philadelphia, USA, 90093`, + Salesperson: `Mike Smith`, + OrderID: 1649, + OrderDate: `1/4/2022`, + ProductID: 171, + ProductName: `Mac Book Air`, + UnitPrice: 6400.45, + Quantity: 3, + ExtendedPrice: 19201.35, + Freight: 220.45, + Discontinued: false, + Region: `West`, + Address: `146 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90093 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Estate`, + ShipAddress: `181 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 80117, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1138, + CustomerName: `Martin Smith`, + CustomerFirstName: `Martin`, + CustomerLastName: `Smith`, + CustomerAddress: `181 Main Street, Miami, USA, 80117`, + Salesperson: `Mike Black`, + OrderID: 1152, + OrderDate: `5/12/2022`, + ProductID: 172, + ProductName: `Mac Book Pro`, + UnitPrice: 26760.58, + Quantity: 5, + ExtendedPrice: 133802.9, + Freight: 1480.58, + Discontinued: false, + Region: `West`, + Address: `181 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 80117 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `183 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 70191, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1139, + CustomerName: `Mike Jefferson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jefferson`, + CustomerAddress: `183 Wall Street, Philadelphia, USA, 70191`, + Salesperson: `Nancy Jefferson`, + OrderID: 1471, + OrderDate: `5/19/2022`, + ProductID: 119, + ProductName: `Mac Book Pro`, + UnitPrice: 22030.88, + Quantity: 5, + ExtendedPrice: 110154.4, + Freight: 990.88, + Discontinued: true, + Region: `West`, + Address: `183 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 70191 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `100 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80082, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1140, + CustomerName: `Pamela Madison`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Madison`, + CustomerAddress: `100 Wall Street, Philadelphia, USA, 80082`, + Salesperson: `Max Madison`, + OrderID: 1793, + OrderDate: `3/16/2022`, + ProductID: 158, + ProductName: `Mac Book Pro`, + UnitPrice: 20230.42, + Quantity: 3, + ExtendedPrice: 60691.26, + Freight: 1990.42, + Discontinued: false, + Region: `West`, + Address: `100 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80082 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `173 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 90155, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1141, + CustomerName: `Pamela Black`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Black`, + CustomerAddress: `173 Market Street, New York, USA, 90155`, + Salesperson: `Pamela Black`, + OrderID: 1928, + OrderDate: `8/24/2022`, + ProductID: 114, + ProductName: `Mac Book Air`, + UnitPrice: 24460.68, + Quantity: 2, + ExtendedPrice: 48921.36, + Freight: 1840.68, + Discontinued: false, + Region: `West`, + Address: `173 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90155 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Townhouse`, + ShipAddress: `171 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60087, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1142, + CustomerName: `James Smith`, + CustomerFirstName: `James`, + CustomerLastName: `Smith`, + CustomerAddress: `171 Market Street, Philadelphia, USA, 60087`, + Salesperson: `Pamela Madison`, + OrderID: 1027, + OrderDate: `1/25/2022`, + ProductID: 145, + ProductName: `Samsung Note`, + UnitPrice: 6010.73, + Quantity: 3, + ExtendedPrice: 18032.19, + Freight: 1860.73, + Discontinued: false, + Region: `West`, + Address: `171 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60087 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `175 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 60122, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1143, + CustomerName: `Mike Jackson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jackson`, + CustomerAddress: `175 Wall Street, Huston, USA, 60122`, + Salesperson: `Pamela Jackson`, + OrderID: 1700, + OrderDate: `12/10/2022`, + ProductID: 150, + ProductName: `Mac Book Pro`, + UnitPrice: 22030.36, + Quantity: 2, + ExtendedPrice: 44060.72, + Freight: 940.36, + Discontinued: false, + Region: `West`, + Address: `175 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 60122 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Townhouse`, + ShipAddress: `174 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 90071, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1144, + CustomerName: `Max Smith`, + CustomerFirstName: `Max`, + CustomerLastName: `Smith`, + CustomerAddress: `174 Main Street, Miami, USA, 90071`, + Salesperson: `Mike Jackson`, + OrderID: 1769, + OrderDate: `2/20/2022`, + ProductID: 183, + ProductName: `Mac Book Air`, + UnitPrice: 25890.72, + Quantity: 3, + ExtendedPrice: 77672.16, + Freight: 1540.72, + Discontinued: false, + Region: `West`, + Address: `174 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90071 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `100 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 90059, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1145, + CustomerName: `Martin Jefferson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Jefferson`, + CustomerAddress: `100 Market Street, Huston, USA, 90059`, + Salesperson: `Max Jefferson`, + OrderID: 1835, + OrderDate: `5/15/2022`, + ProductID: 142, + ProductName: `Samsung Note`, + UnitPrice: 28310.48, + Quantity: 3, + ExtendedPrice: 84931.44, + Freight: 2000.48, + Discontinued: false, + Region: `West`, + Address: `100 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90059 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Townhouse`, + ShipAddress: `120 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 90120, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1146, + CustomerName: `Ben Madison`, + CustomerFirstName: `Ben`, + CustomerLastName: `Madison`, + CustomerAddress: `120 Market Street, Miami, USA, 90120`, + Salesperson: `Max Jefferson`, + OrderID: 1787, + OrderDate: `5/16/2022`, + ProductID: 104, + ProductName: `IPad`, + UnitPrice: 8410.44, + Quantity: 2, + ExtendedPrice: 16820.88, + Freight: 1620.44, + Discontinued: false, + Region: `West`, + Address: `120 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90120 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `163 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 80132, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1147, + CustomerName: `Pamela Watson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Watson`, + CustomerAddress: `163 Wall Street, Los Angeles, USA, 80132`, + Salesperson: `Pamela Watson`, + OrderID: 1026, + OrderDate: `7/10/2022`, + ProductID: 130, + ProductName: `Samsung Note`, + UnitPrice: 13650.42, + Quantity: 3, + ExtendedPrice: 40951.26, + Freight: 750.42, + Discontinued: false, + Region: `West`, + Address: `163 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 80132 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `169 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 90138, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1148, + CustomerName: `Ben Black`, + CustomerFirstName: `Ben`, + CustomerLastName: `Black`, + CustomerAddress: `169 Wall Street, Huston, USA, 90138`, + Salesperson: `Anna Smith`, + OrderID: 1805, + OrderDate: `1/6/2022`, + ProductID: 126, + ProductName: `Samsung Note`, + UnitPrice: 29130.32, + Quantity: 4, + ExtendedPrice: 116521.28, + Freight: 800.32, + Discontinued: false, + Region: `West`, + Address: `169 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90138 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `167 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 60152, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1149, + CustomerName: `Max Jefferson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jefferson`, + CustomerAddress: `167 Market Street, Miami, USA, 60152`, + Salesperson: `Ben Jackson`, + OrderID: 1292, + OrderDate: `10/3/2022`, + ProductID: 178, + ProductName: `IPhone`, + UnitPrice: 9150.64, + Quantity: 5, + ExtendedPrice: 45753.2, + Freight: 1530.64, + Discontinued: true, + Region: `North East`, + Address: `167 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60152 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Home`, + ShipAddress: `194 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80133, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1150, + CustomerName: `Nancy Jackson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jackson`, + CustomerAddress: `194 Wall Street, Philadelphia, USA, 80133`, + Salesperson: `Martin Watson`, + OrderID: 1240, + OrderDate: `10/14/2022`, + ProductID: 128, + ProductName: `IPhone`, + UnitPrice: 22900.38, + Quantity: 5, + ExtendedPrice: 114501.9, + Freight: 1500.38, + Discontinued: false, + Region: `North East`, + Address: `194 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80133 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `168 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 60104, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1151, + CustomerName: `James Smith`, + CustomerFirstName: `James`, + CustomerLastName: `Smith`, + CustomerAddress: `168 Wall Street, New York, USA, 60104`, + Salesperson: `Martin Madison`, + OrderID: 1307, + OrderDate: `5/19/2022`, + ProductID: 109, + ProductName: `Samsung Note`, + UnitPrice: 18330.33, + Quantity: 5, + ExtendedPrice: 91651.65, + Freight: 1960.33, + Discontinued: false, + Region: `North East`, + Address: `168 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 60104 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Market`, + ShipAddress: `122 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 60149, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1152, + CustomerName: `Nancy Madison`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Madison`, + CustomerAddress: `122 Market Street, New York, USA, 60149`, + Salesperson: `Mike Madison`, + OrderID: 1360, + OrderDate: `11/2/2022`, + ProductID: 141, + ProductName: `Mac Book Pro`, + UnitPrice: 8620.6, + Quantity: 2, + ExtendedPrice: 17241.2, + Freight: 950.6, + Discontinued: false, + Region: `South East`, + Address: `122 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 60149 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `147 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80098, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1153, + CustomerName: `Pamela Black`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Black`, + CustomerAddress: `147 Main Street, Philadelphia, USA, 80098`, + Salesperson: `James Black`, + OrderID: 1445, + OrderDate: `11/2/2022`, + ProductID: 151, + ProductName: `Samsung Note`, + UnitPrice: 27180.5, + Quantity: 2, + ExtendedPrice: 54361, + Freight: 790.5, + Discontinued: false, + Region: `South East`, + Address: `147 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80098 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Estate`, + ShipAddress: `113 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90111, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1154, + CustomerName: `Martin Jackson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Jackson`, + CustomerAddress: `113 Wall Street, Los Angeles, USA, 90111`, + Salesperson: `Anna Jackson`, + OrderID: 1014, + OrderDate: `1/24/2022`, + ProductID: 185, + ProductName: `Mac Book Air`, + UnitPrice: 14760.63, + Quantity: 2, + ExtendedPrice: 29521.26, + Freight: 1520.63, + Discontinued: false, + Region: `West`, + Address: `113 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90111 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Estate`, + ShipAddress: `154 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 60050, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1155, + CustomerName: `Nancy Smith`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Smith`, + CustomerAddress: `154 Wall Street, Huston, USA, 60050`, + Salesperson: `Nancy Smith`, + OrderID: 1845, + OrderDate: `4/8/2022`, + ProductID: 105, + ProductName: `IPad`, + UnitPrice: 22600.77, + Quantity: 4, + ExtendedPrice: 90403.08, + Freight: 670.77, + Discontinued: false, + Region: `North East`, + Address: `154 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 60050 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Townhouse`, + ShipAddress: `188 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80121, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1156, + CustomerName: `James Black`, + CustomerFirstName: `James`, + CustomerLastName: `Black`, + CustomerAddress: `188 Main Street, Philadelphia, USA, 80121`, + Salesperson: `Martin Jefferson`, + OrderID: 1587, + OrderDate: `5/13/2022`, + ProductID: 174, + ProductName: `Samsung Note`, + UnitPrice: 17020.74, + Quantity: 2, + ExtendedPrice: 34041.48, + Freight: 1490.74, + Discontinued: false, + Region: `West`, + Address: `188 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80121 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `181 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 90097, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1157, + CustomerName: `Anna Smith`, + CustomerFirstName: `Anna`, + CustomerLastName: `Smith`, + CustomerAddress: `181 Wall Street, Huston, USA, 90097`, + Salesperson: `Anna Madison`, + OrderID: 1706, + OrderDate: `5/22/2022`, + ProductID: 112, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 21780.43, + Quantity: 3, + ExtendedPrice: 65341.29, + Freight: 1650.43, + Discontinued: false, + Region: `North East`, + Address: `181 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90097 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Estate`, + ShipAddress: `171 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 50118, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1158, + CustomerName: `James Smith`, + CustomerFirstName: `James`, + CustomerLastName: `Smith`, + CustomerAddress: `171 Wall Street, Miami, USA, 50118`, + Salesperson: `Max Smith`, + OrderID: 1335, + OrderDate: `6/16/2022`, + ProductID: 116, + ProductName: `IPad`, + UnitPrice: 7560.43, + Quantity: 3, + ExtendedPrice: 22681.29, + Freight: 1140.43, + Discontinued: false, + Region: `West`, + Address: `171 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 50118 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Estate`, + ShipAddress: `193 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 70176, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1159, + CustomerName: `Ben Jackson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jackson`, + CustomerAddress: `193 Market Street, Philadelphia, USA, 70176`, + Salesperson: `Martin Black`, + OrderID: 1003, + OrderDate: `9/11/2022`, + ProductID: 170, + ProductName: `IPhone`, + UnitPrice: 15510.7, + Quantity: 5, + ExtendedPrice: 77553.5, + Freight: 200.7, + Discontinued: true, + Region: `West`, + Address: `193 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 70176 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `125 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80142, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1160, + CustomerName: `Ben Madison`, + CustomerFirstName: `Ben`, + CustomerLastName: `Madison`, + CustomerAddress: `125 Market Street, Philadelphia, USA, 80142`, + Salesperson: `Martin Madison`, + OrderID: 1723, + OrderDate: `3/14/2022`, + ProductID: 179, + ProductName: `IPhone`, + UnitPrice: 14760.6, + Quantity: 3, + ExtendedPrice: 44281.8, + Freight: 1650.6, + Discontinued: false, + Region: `West`, + Address: `125 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80142 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Estate`, + ShipAddress: `128 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 70111, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1161, + CustomerName: `Anna Smith`, + CustomerFirstName: `Anna`, + CustomerLastName: `Smith`, + CustomerAddress: `128 Main Street, Philadelphia, USA, 70111`, + Salesperson: `Max Jackson`, + OrderID: 1810, + OrderDate: `1/18/2022`, + ProductID: 117, + ProductName: `IPad`, + UnitPrice: 19620.55, + Quantity: 5, + ExtendedPrice: 98102.75, + Freight: 1030.55, + Discontinued: false, + Region: `South East`, + Address: `128 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 70111 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `131 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90058, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1162, + CustomerName: `Max Madison`, + CustomerFirstName: `Max`, + CustomerLastName: `Madison`, + CustomerAddress: `131 Wall Street, Philadelphia, USA, 90058`, + Salesperson: `Pamela Madison`, + OrderID: 1224, + OrderDate: `2/2/2022`, + ProductID: 108, + ProductName: `Mac Book Air`, + UnitPrice: 9130.21, + Quantity: 2, + ExtendedPrice: 18260.42, + Freight: 1110.21, + Discontinued: false, + Region: `West`, + Address: `131 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90058 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `145 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50176, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1163, + CustomerName: `James Watson`, + CustomerFirstName: `James`, + CustomerLastName: `Watson`, + CustomerAddress: `145 Main Street, Philadelphia, USA, 50176`, + Salesperson: `Mike Smith`, + OrderID: 1265, + OrderDate: `4/22/2022`, + ProductID: 147, + ProductName: `IPhone`, + UnitPrice: 15210.29, + Quantity: 2, + ExtendedPrice: 30420.58, + Freight: 1470.29, + Discontinued: false, + Region: `South East`, + Address: `145 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50176 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `123 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90058, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1164, + CustomerName: `Ben Jefferson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jefferson`, + CustomerAddress: `123 Main Street, Philadelphia, USA, 90058`, + Salesperson: `Martin Watson`, + OrderID: 1428, + OrderDate: `9/14/2022`, + ProductID: 195, + ProductName: `Samsung Note`, + UnitPrice: 6440.36, + Quantity: 4, + ExtendedPrice: 25761.44, + Freight: 350.36, + Discontinued: false, + Region: `West`, + Address: `123 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90058 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `148 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60161, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1165, + CustomerName: `Ben Watson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Watson`, + CustomerAddress: `148 Wall Street, Los Angeles, USA, 60161`, + Salesperson: `Nancy Black`, + OrderID: 1367, + OrderDate: `9/1/2022`, + ProductID: 196, + ProductName: `Mac Book Pro`, + UnitPrice: 26990.25, + Quantity: 4, + ExtendedPrice: 107961, + Freight: 950.25, + Discontinued: false, + Region: `West`, + Address: `148 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60161 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Home`, + ShipAddress: `151 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 90156, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1166, + CustomerName: `James Jefferson`, + CustomerFirstName: `James`, + CustomerLastName: `Jefferson`, + CustomerAddress: `151 Main Street, New York, USA, 90156`, + Salesperson: `Ben Smith`, + OrderID: 1812, + OrderDate: `6/23/2022`, + ProductID: 182, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 6230.76, + Quantity: 5, + ExtendedPrice: 31153.8, + Freight: 920.76, + Discontinued: false, + Region: `West`, + Address: `151 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90156 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `128 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 90073, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1167, + CustomerName: `Pamela Jackson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jackson`, + CustomerAddress: `128 Main Street, New York, USA, 90073`, + Salesperson: `Nancy Madison`, + OrderID: 1121, + OrderDate: `3/25/2022`, + ProductID: 166, + ProductName: `Mac Book Air`, + UnitPrice: 8360.33, + Quantity: 3, + ExtendedPrice: 25080.99, + Freight: 1870.33, + Discontinued: false, + Region: `South East`, + Address: `128 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90073 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `109 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 70139, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1168, + CustomerName: `Mike Black`, + CustomerFirstName: `Mike`, + CustomerLastName: `Black`, + CustomerAddress: `109 Wall Street, Philadelphia, USA, 70139`, + Salesperson: `James Jefferson`, + OrderID: 1086, + OrderDate: `11/22/2022`, + ProductID: 192, + ProductName: `IPhone`, + UnitPrice: 13050.45, + Quantity: 4, + ExtendedPrice: 52201.8, + Freight: 1850.45, + Discontinued: false, + Region: `North East`, + Address: `109 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 70139 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `196 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60096, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1169, + CustomerName: `Anna Smith`, + CustomerFirstName: `Anna`, + CustomerLastName: `Smith`, + CustomerAddress: `196 Wall Street, Los Angeles, USA, 60096`, + Salesperson: `Mike Watson`, + OrderID: 1859, + OrderDate: `8/11/2022`, + ProductID: 157, + ProductName: `IPhone`, + UnitPrice: 14950.2, + Quantity: 5, + ExtendedPrice: 74751, + Freight: 1140.2, + Discontinued: true, + Region: `South East`, + Address: `196 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60096 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `101 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90111, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1170, + CustomerName: `James Watson`, + CustomerFirstName: `James`, + CustomerLastName: `Watson`, + CustomerAddress: `101 Market Street, Philadelphia, USA, 90111`, + Salesperson: `Mike Madison`, + OrderID: 1952, + OrderDate: `7/19/2022`, + ProductID: 152, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 29810.56, + Quantity: 4, + ExtendedPrice: 119242.24, + Freight: 470.56, + Discontinued: false, + Region: `South East`, + Address: `101 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90111 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `147 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90157, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1171, + CustomerName: `Max Madison`, + CustomerFirstName: `Max`, + CustomerLastName: `Madison`, + CustomerAddress: `147 Main Street, Los Angeles, USA, 90157`, + Salesperson: `Ben Black`, + OrderID: 1351, + OrderDate: `5/22/2022`, + ProductID: 180, + ProductName: `Samsung Note`, + UnitPrice: 13470.4, + Quantity: 5, + ExtendedPrice: 67352, + Freight: 1610.4, + Discontinued: false, + Region: `West`, + Address: `147 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90157 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Townhouse`, + ShipAddress: `195 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 80071, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1172, + CustomerName: `Anna Smith`, + CustomerFirstName: `Anna`, + CustomerLastName: `Smith`, + CustomerAddress: `195 Market Street, Huston, USA, 80071`, + Salesperson: `Pamela Jefferson`, + OrderID: 1371, + OrderDate: `12/9/2022`, + ProductID: 105, + ProductName: `Mac Book Pro`, + UnitPrice: 19040.72, + Quantity: 4, + ExtendedPrice: 76162.88, + Freight: 1480.72, + Discontinued: false, + Region: `South East`, + Address: `195 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80071 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Townhouse`, + ShipAddress: `184 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90197, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1173, + CustomerName: `Martin Black`, + CustomerFirstName: `Martin`, + CustomerLastName: `Black`, + CustomerAddress: `184 Market Street, Los Angeles, USA, 90197`, + Salesperson: `Martin Watson`, + OrderID: 1537, + OrderDate: `4/3/2022`, + ProductID: 137, + ProductName: `IPhone`, + UnitPrice: 25370.79, + Quantity: 2, + ExtendedPrice: 50741.58, + Freight: 1980.79, + Discontinued: false, + Region: `North East`, + Address: `184 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90197 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Estate`, + ShipAddress: `102 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 70185, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1174, + CustomerName: `Ben Jackson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jackson`, + CustomerAddress: `102 Market Street, Huston, USA, 70185`, + Salesperson: `Ben Jackson`, + OrderID: 1378, + OrderDate: `7/6/2022`, + ProductID: 182, + ProductName: `Mac Book Pro`, + UnitPrice: 19620.84, + Quantity: 2, + ExtendedPrice: 39241.68, + Freight: 730.84, + Discontinued: false, + Region: `North East`, + Address: `102 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 70185 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `192 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 60144, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1175, + CustomerName: `Nancy Watson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Watson`, + CustomerAddress: `192 Wall Street, Huston, USA, 60144`, + Salesperson: `Martin Jefferson`, + OrderID: 1350, + OrderDate: `10/23/2022`, + ProductID: 138, + ProductName: `IPad`, + UnitPrice: 26010.88, + Quantity: 2, + ExtendedPrice: 52021.76, + Freight: 260.88, + Discontinued: false, + Region: `North East`, + Address: `192 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 60144 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `114 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 70079, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1176, + CustomerName: `Ben Black`, + CustomerFirstName: `Ben`, + CustomerLastName: `Black`, + CustomerAddress: `114 Main Street, Philadelphia, USA, 70079`, + Salesperson: `Anna Watson`, + OrderID: 1889, + OrderDate: `8/21/2022`, + ProductID: 146, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 23970.6, + Quantity: 3, + ExtendedPrice: 71911.8, + Freight: 1870.6, + Discontinued: false, + Region: `North East`, + Address: `114 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 70079 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Townhouse`, + ShipAddress: `199 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 90182, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1177, + CustomerName: `Nancy Madison`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Madison`, + CustomerAddress: `199 Wall Street, Miami, USA, 90182`, + Salesperson: `Anna Madison`, + OrderID: 1285, + OrderDate: `3/12/2022`, + ProductID: 146, + ProductName: `Samsung Note`, + UnitPrice: 13660.54, + Quantity: 2, + ExtendedPrice: 27321.08, + Freight: 1870.54, + Discontinued: false, + Region: `South East`, + Address: `199 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90182 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Townhouse`, + ShipAddress: `141 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80097, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1178, + CustomerName: `Pamela Madison`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Madison`, + CustomerAddress: `141 Market Street, Philadelphia, USA, 80097`, + Salesperson: `Pamela Watson`, + OrderID: 1886, + OrderDate: `8/1/2022`, + ProductID: 107, + ProductName: `Mac Book Pro`, + UnitPrice: 11630.46, + Quantity: 4, + ExtendedPrice: 46521.84, + Freight: 1530.46, + Discontinued: false, + Region: `North East`, + Address: `141 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80097 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `168 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 80162, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1179, + CustomerName: `Max Jefferson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jefferson`, + CustomerAddress: `168 Main Street, Los Angeles, USA, 80162`, + Salesperson: `Mike Jackson`, + OrderID: 1009, + OrderDate: `4/7/2022`, + ProductID: 149, + ProductName: `IPad`, + UnitPrice: 16960.32, + Quantity: 3, + ExtendedPrice: 50880.96, + Freight: 1510.32, + Discontinued: true, + Region: `North East`, + Address: `168 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 80162 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `100 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 80063, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1180, + CustomerName: `Martin Smith`, + CustomerFirstName: `Martin`, + CustomerLastName: `Smith`, + CustomerAddress: `100 Market Street, Miami, USA, 80063`, + Salesperson: `Nancy Smith`, + OrderID: 1046, + OrderDate: `10/21/2022`, + ProductID: 123, + ProductName: `IPad`, + UnitPrice: 19360.67, + Quantity: 3, + ExtendedPrice: 58082.01, + Freight: 1510.67, + Discontinued: false, + Region: `South East`, + Address: `100 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 80063 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `145 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 90152, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1181, + CustomerName: `Anna Madison`, + CustomerFirstName: `Anna`, + CustomerLastName: `Madison`, + CustomerAddress: `145 Market Street, Huston, USA, 90152`, + Salesperson: `Max Watson`, + OrderID: 1593, + OrderDate: `11/17/2022`, + ProductID: 169, + ProductName: `Samsung Note`, + UnitPrice: 28870.27, + Quantity: 5, + ExtendedPrice: 144351.35, + Freight: 1430.27, + Discontinued: false, + Region: `North East`, + Address: `145 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90152 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Estate`, + ShipAddress: `154 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 90080, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1182, + CustomerName: `Ben Jackson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jackson`, + CustomerAddress: `154 Main Street, Miami, USA, 90080`, + Salesperson: `Nancy Jefferson`, + OrderID: 1234, + OrderDate: `3/21/2022`, + ProductID: 111, + ProductName: `IPad`, + UnitPrice: 16610.78, + Quantity: 2, + ExtendedPrice: 33221.56, + Freight: 1350.78, + Discontinued: false, + Region: `South East`, + Address: `154 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90080 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `166 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 70090, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1183, + CustomerName: `Anna Smith`, + CustomerFirstName: `Anna`, + CustomerLastName: `Smith`, + CustomerAddress: `166 Market Street, Huston, USA, 70090`, + Salesperson: `Ben Watson`, + OrderID: 1362, + OrderDate: `5/2/2022`, + ProductID: 122, + ProductName: `Mac Book Air`, + UnitPrice: 6870.64, + Quantity: 4, + ExtendedPrice: 27482.56, + Freight: 750.64, + Discontinued: false, + Region: `North East`, + Address: `166 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 70090 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `180 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 90169, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1184, + CustomerName: `Pamela Jefferson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jefferson`, + CustomerAddress: `180 Market Street, Miami, USA, 90169`, + Salesperson: `Pamela Black`, + OrderID: 1698, + OrderDate: `1/18/2022`, + ProductID: 129, + ProductName: `IPad`, + UnitPrice: 10960.71, + Quantity: 5, + ExtendedPrice: 54803.55, + Freight: 1530.71, + Discontinued: false, + Region: `West`, + Address: `180 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90169 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `169 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 50114, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1185, + CustomerName: `Nancy Madison`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Madison`, + CustomerAddress: `169 Main Street, Huston, USA, 50114`, + Salesperson: `Martin Smith`, + OrderID: 1458, + OrderDate: `6/15/2022`, + ProductID: 183, + ProductName: `IPhone`, + UnitPrice: 16380.23, + Quantity: 2, + ExtendedPrice: 32760.46, + Freight: 1990.23, + Discontinued: false, + Region: `West`, + Address: `169 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50114 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `132 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 90064, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1186, + CustomerName: `Max Madison`, + CustomerFirstName: `Max`, + CustomerLastName: `Madison`, + CustomerAddress: `132 Market Street, Miami, USA, 90064`, + Salesperson: `Nancy Jackson`, + OrderID: 1563, + OrderDate: `6/17/2022`, + ProductID: 193, + ProductName: `Samsung Note`, + UnitPrice: 25940.61, + Quantity: 4, + ExtendedPrice: 103762.44, + Freight: 970.61, + Discontinued: false, + Region: `West`, + Address: `132 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90064 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Market`, + ShipAddress: `107 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50110, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1187, + CustomerName: `Martin Madison`, + CustomerFirstName: `Martin`, + CustomerLastName: `Madison`, + CustomerAddress: `107 Wall Street, Los Angeles, USA, 50110`, + Salesperson: `Nancy Jefferson`, + OrderID: 1934, + OrderDate: `6/5/2022`, + ProductID: 110, + ProductName: `Samsung Note`, + UnitPrice: 5360.47, + Quantity: 3, + ExtendedPrice: 16081.41, + Freight: 1680.47, + Discontinued: false, + Region: `North East`, + Address: `107 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50110 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Townhouse`, + ShipAddress: `170 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 50149, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1188, + CustomerName: `Pamela Black`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Black`, + CustomerAddress: `170 Wall Street, New York, USA, 50149`, + Salesperson: `Mike Jefferson`, + OrderID: 1880, + OrderDate: `12/7/2022`, + ProductID: 137, + ProductName: `IPhone`, + UnitPrice: 19560.62, + Quantity: 4, + ExtendedPrice: 78242.48, + Freight: 680.62, + Discontinued: false, + Region: `West`, + Address: `170 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50149 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `152 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 50085, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1189, + CustomerName: `Ben Jefferson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jefferson`, + CustomerAddress: `152 Wall Street, New York, USA, 50085`, + Salesperson: `Anna Jackson`, + OrderID: 1159, + OrderDate: `5/18/2022`, + ProductID: 167, + ProductName: `IPad`, + UnitPrice: 19270.25, + Quantity: 2, + ExtendedPrice: 38540.5, + Freight: 1050.25, + Discontinued: true, + Region: `North East`, + Address: `152 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50085 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `186 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60146, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1190, + CustomerName: `Mike Watson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Watson`, + CustomerAddress: `186 Wall Street, Los Angeles, USA, 60146`, + Salesperson: `Nancy Madison`, + OrderID: 1960, + OrderDate: `3/2/2022`, + ProductID: 167, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 22090.53, + Quantity: 3, + ExtendedPrice: 66271.59, + Freight: 1790.53, + Discontinued: false, + Region: `West`, + Address: `186 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60146 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `194 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 50170, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1191, + CustomerName: `Nancy Madison`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Madison`, + CustomerAddress: `194 Wall Street, New York, USA, 50170`, + Salesperson: `Max Watson`, + OrderID: 1658, + OrderDate: `9/1/2022`, + ProductID: 156, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 27450.8, + Quantity: 4, + ExtendedPrice: 109803.2, + Freight: 270.8, + Discontinued: false, + Region: `West`, + Address: `194 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50170 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Townhouse`, + ShipAddress: `172 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 70191, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1192, + CustomerName: `Ben Smith`, + CustomerFirstName: `Ben`, + CustomerLastName: `Smith`, + CustomerAddress: `172 Main Street, New York, USA, 70191`, + Salesperson: `Pamela Madison`, + OrderID: 1225, + OrderDate: `3/22/2022`, + ProductID: 170, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 21150.84, + Quantity: 5, + ExtendedPrice: 105754.2, + Freight: 1230.84, + Discontinued: false, + Region: `West`, + Address: `172 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 70191 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `108 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 70146, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1193, + CustomerName: `Mike Black`, + CustomerFirstName: `Mike`, + CustomerLastName: `Black`, + CustomerAddress: `108 Market Street, Los Angeles, USA, 70146`, + Salesperson: `Pamela Black`, + OrderID: 1886, + OrderDate: `8/20/2022`, + ProductID: 126, + ProductName: `IPhone`, + UnitPrice: 6100.73, + Quantity: 2, + ExtendedPrice: 12201.46, + Freight: 1340.73, + Discontinued: false, + Region: `South East`, + Address: `108 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 70146 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `109 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90083, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1194, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `109 Wall Street, Los Angeles, USA, 90083`, + Salesperson: `Max Smith`, + OrderID: 1191, + OrderDate: `5/9/2022`, + ProductID: 179, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 20190.35, + Quantity: 5, + ExtendedPrice: 100951.75, + Freight: 640.35, + Discontinued: false, + Region: `West`, + Address: `109 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90083 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `121 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 70102, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1195, + CustomerName: `Max Smith`, + CustomerFirstName: `Max`, + CustomerLastName: `Smith`, + CustomerAddress: `121 Market Street, Philadelphia, USA, 70102`, + Salesperson: `Ben Black`, + OrderID: 1051, + OrderDate: `5/21/2022`, + ProductID: 192, + ProductName: `Mac Book Pro`, + UnitPrice: 21730.32, + Quantity: 5, + ExtendedPrice: 108651.6, + Freight: 1030.32, + Discontinued: false, + Region: `North East`, + Address: `121 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 70102 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `104 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 90066, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1196, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `104 Wall Street, New York, USA, 90066`, + Salesperson: `Ben Watson`, + OrderID: 1385, + OrderDate: `2/2/2022`, + ProductID: 182, + ProductName: `IPad`, + UnitPrice: 26120.45, + Quantity: 4, + ExtendedPrice: 104481.8, + Freight: 1930.45, + Discontinued: false, + Region: `North East`, + Address: `104 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90066 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Townhouse`, + ShipAddress: `126 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60091, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1197, + CustomerName: `Ben Madison`, + CustomerFirstName: `Ben`, + CustomerLastName: `Madison`, + CustomerAddress: `126 Market Street, Philadelphia, USA, 60091`, + Salesperson: `Anna Madison`, + OrderID: 1675, + OrderDate: `6/22/2022`, + ProductID: 174, + ProductName: `IPad`, + UnitPrice: 13240.35, + Quantity: 4, + ExtendedPrice: 52961.4, + Freight: 890.35, + Discontinued: false, + Region: `South East`, + Address: `126 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60091 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Home`, + ShipAddress: `139 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 70063, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1198, + CustomerName: `Ben Watson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Watson`, + CustomerAddress: `139 Main Street, Los Angeles, USA, 70063`, + Salesperson: `Pamela Black`, + OrderID: 1997, + OrderDate: `11/17/2022`, + ProductID: 200, + ProductName: `IPhone`, + UnitPrice: 8400.83, + Quantity: 5, + ExtendedPrice: 42004.15, + Freight: 1340.83, + Discontinued: false, + Region: `West`, + Address: `139 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 70063 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `133 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 70071, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1199, + CustomerName: `Mike Smith`, + CustomerFirstName: `Mike`, + CustomerLastName: `Smith`, + CustomerAddress: `133 Wall Street, Miami, USA, 70071`, + Salesperson: `James Watson`, + OrderID: 1641, + OrderDate: `11/12/2022`, + ProductID: 147, + ProductName: `Samsung Note`, + UnitPrice: 10150.31, + Quantity: 3, + ExtendedPrice: 30450.93, + Freight: 720.31, + Discontinued: true, + Region: `South East`, + Address: `133 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 70071 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `166 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 60137, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1200, + CustomerName: `Max Black`, + CustomerFirstName: `Max`, + CustomerLastName: `Black`, + CustomerAddress: `166 Main Street, Miami, USA, 60137`, + Salesperson: `Ben Madison`, + OrderID: 1418, + OrderDate: `11/8/2022`, + ProductID: 135, + ProductName: `IPhone`, + UnitPrice: 9410.46, + Quantity: 2, + ExtendedPrice: 18820.92, + Freight: 970.46, + Discontinued: false, + Region: `West`, + Address: `166 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60137 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Townhouse`, + ShipAddress: `143 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 70069, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1201, + CustomerName: `James Smith`, + CustomerFirstName: `James`, + CustomerLastName: `Smith`, + CustomerAddress: `143 Main Street, Miami, USA, 70069`, + Salesperson: `Anna Watson`, + OrderID: 1545, + OrderDate: `6/24/2022`, + ProductID: 190, + ProductName: `Mac Book Pro`, + UnitPrice: 5030.78, + Quantity: 3, + ExtendedPrice: 15092.34, + Freight: 1630.78, + Discontinued: false, + Region: `North East`, + Address: `143 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 70069 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `106 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50097, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1202, + CustomerName: `Max Jackson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jackson`, + CustomerAddress: `106 Wall Street, Los Angeles, USA, 50097`, + Salesperson: `James Jackson`, + OrderID: 1493, + OrderDate: `7/24/2022`, + ProductID: 124, + ProductName: `Samsung Note`, + UnitPrice: 6390.72, + Quantity: 5, + ExtendedPrice: 31953.6, + Freight: 1960.72, + Discontinued: false, + Region: `North East`, + Address: `106 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50097 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `143 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50052, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1203, + CustomerName: `Pamela Jefferson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jefferson`, + CustomerAddress: `143 Market Street, Philadelphia, USA, 50052`, + Salesperson: `Mike Jefferson`, + OrderID: 1495, + OrderDate: `2/14/2022`, + ProductID: 179, + ProductName: `Mac Book Pro`, + UnitPrice: 16770.46, + Quantity: 5, + ExtendedPrice: 83852.3, + Freight: 420.46, + Discontinued: false, + Region: `North East`, + Address: `143 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50052 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Estate`, + ShipAddress: `174 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 60127, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1204, + CustomerName: `Nancy Smith`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Smith`, + CustomerAddress: `174 Wall Street, New York, USA, 60127`, + Salesperson: `Max Watson`, + OrderID: 1123, + OrderDate: `11/20/2022`, + ProductID: 186, + ProductName: `Mac Book Air`, + UnitPrice: 20930.48, + Quantity: 4, + ExtendedPrice: 83721.92, + Freight: 950.48, + Discontinued: false, + Region: `South East`, + Address: `174 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 60127 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Market`, + ShipAddress: `123 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60111, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1205, + CustomerName: `Pamela Madison`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Madison`, + CustomerAddress: `123 Wall Street, Los Angeles, USA, 60111`, + Salesperson: `Pamela Jefferson`, + OrderID: 1342, + OrderDate: `12/8/2022`, + ProductID: 140, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 27010.34, + Quantity: 3, + ExtendedPrice: 81031.02, + Freight: 1470.34, + Discontinued: false, + Region: `West`, + Address: `123 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60111 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `166 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 50102, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1206, + CustomerName: `James Smith`, + CustomerFirstName: `James`, + CustomerLastName: `Smith`, + CustomerAddress: `166 Market Street, Miami, USA, 50102`, + Salesperson: `Ben Madison`, + OrderID: 1017, + OrderDate: `10/2/2022`, + ProductID: 186, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 12810.79, + Quantity: 5, + ExtendedPrice: 64053.95, + Freight: 1990.79, + Discontinued: false, + Region: `North East`, + Address: `166 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 50102 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `193 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 80187, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1207, + CustomerName: `Max Jefferson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jefferson`, + CustomerAddress: `193 Main Street, Huston, USA, 80187`, + Salesperson: `Mike Jefferson`, + OrderID: 1558, + OrderDate: `11/12/2022`, + ProductID: 194, + ProductName: `Mac Book Pro`, + UnitPrice: 26210.45, + Quantity: 2, + ExtendedPrice: 52420.9, + Freight: 1110.45, + Discontinued: false, + Region: `North East`, + Address: `193 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80187 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `137 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 80111, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1208, + CustomerName: `Ben Jefferson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jefferson`, + CustomerAddress: `137 Main Street, Miami, USA, 80111`, + Salesperson: `Mike Watson`, + OrderID: 1466, + OrderDate: `11/18/2022`, + ProductID: 189, + ProductName: `Mac Book Air`, + UnitPrice: 6190.57, + Quantity: 3, + ExtendedPrice: 18571.71, + Freight: 1810.57, + Discontinued: false, + Region: `West`, + Address: `137 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 80111 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `122 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80088, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1209, + CustomerName: `Ben Jefferson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jefferson`, + CustomerAddress: `122 Main Street, Philadelphia, USA, 80088`, + Salesperson: `Ben Jefferson`, + OrderID: 1539, + OrderDate: `11/13/2022`, + ProductID: 131, + ProductName: `IPhone`, + UnitPrice: 21280.22, + Quantity: 4, + ExtendedPrice: 85120.88, + Freight: 760.22, + Discontinued: true, + Region: `North East`, + Address: `122 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80088 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Home`, + ShipAddress: `115 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 80079, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1210, + CustomerName: `Anna Jefferson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Jefferson`, + CustomerAddress: `115 Main Street, New York, USA, 80079`, + Salesperson: `Max Jefferson`, + OrderID: 1411, + OrderDate: `11/22/2022`, + ProductID: 135, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 13700.71, + Quantity: 3, + ExtendedPrice: 41102.13, + Freight: 1730.71, + Discontinued: false, + Region: `South East`, + Address: `115 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80079 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `114 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 50137, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1211, + CustomerName: `Mike Smith`, + CustomerFirstName: `Mike`, + CustomerLastName: `Smith`, + CustomerAddress: `114 Main Street, New York, USA, 50137`, + Salesperson: `Nancy Smith`, + OrderID: 1890, + OrderDate: `8/5/2022`, + ProductID: 169, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 11320.48, + Quantity: 3, + ExtendedPrice: 33961.44, + Freight: 930.48, + Discontinued: false, + Region: `West`, + Address: `114 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50137 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `130 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 90082, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1212, + CustomerName: `Martin Jefferson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Jefferson`, + CustomerAddress: `130 Wall Street, Miami, USA, 90082`, + Salesperson: `Nancy Madison`, + OrderID: 1783, + OrderDate: `9/1/2022`, + ProductID: 109, + ProductName: `IPhone`, + UnitPrice: 24340.75, + Quantity: 5, + ExtendedPrice: 121703.75, + Freight: 490.75, + Discontinued: false, + Region: `North East`, + Address: `130 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90082 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `140 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 80095, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1213, + CustomerName: `James Jefferson`, + CustomerFirstName: `James`, + CustomerLastName: `Jefferson`, + CustomerAddress: `140 Main Street, New York, USA, 80095`, + Salesperson: `Pamela Watson`, + OrderID: 1101, + OrderDate: `5/25/2022`, + ProductID: 101, + ProductName: `Mac Book Air`, + UnitPrice: 29980.24, + Quantity: 4, + ExtendedPrice: 119920.96, + Freight: 1190.24, + Discontinued: false, + Region: `South East`, + Address: `140 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80095 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `165 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 90200, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1214, + CustomerName: `Ben Jefferson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jefferson`, + CustomerAddress: `165 Main Street, Huston, USA, 90200`, + Salesperson: `Max Watson`, + OrderID: 1932, + OrderDate: `2/10/2022`, + ProductID: 159, + ProductName: `Mac Book Air`, + UnitPrice: 23460.59, + Quantity: 4, + ExtendedPrice: 93842.36, + Freight: 710.59, + Discontinued: false, + Region: `South East`, + Address: `165 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90200 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `154 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 70200, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1215, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `154 Market Street, Los Angeles, USA, 70200`, + Salesperson: `Mike Black`, + OrderID: 1514, + OrderDate: `10/8/2022`, + ProductID: 148, + ProductName: `Samsung Note`, + UnitPrice: 29540.27, + Quantity: 4, + ExtendedPrice: 118161.08, + Freight: 1960.27, + Discontinued: false, + Region: `North East`, + Address: `154 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 70200 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Home`, + ShipAddress: `113 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 50127, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1216, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `113 Market Street, New York, USA, 50127`, + Salesperson: `James Jefferson`, + OrderID: 1736, + OrderDate: `10/21/2022`, + ProductID: 188, + ProductName: `IPad`, + UnitPrice: 15350.27, + Quantity: 4, + ExtendedPrice: 61401.08, + Freight: 540.27, + Discontinued: false, + Region: `South East`, + Address: `113 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50127 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `153 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 80064, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1217, + CustomerName: `James Jackson`, + CustomerFirstName: `James`, + CustomerLastName: `Jackson`, + CustomerAddress: `153 Main Street, Huston, USA, 80064`, + Salesperson: `Mike Jackson`, + OrderID: 1978, + OrderDate: `12/25/2022`, + ProductID: 125, + ProductName: `IPad`, + UnitPrice: 15880.31, + Quantity: 3, + ExtendedPrice: 47640.93, + Freight: 800.31, + Discontinued: false, + Region: `North East`, + Address: `153 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80064 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Estate`, + ShipAddress: `107 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 50196, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1218, + CustomerName: `Mike Smith`, + CustomerFirstName: `Mike`, + CustomerLastName: `Smith`, + CustomerAddress: `107 Main Street, Miami, USA, 50196`, + Salesperson: `Martin Jackson`, + OrderID: 1324, + OrderDate: `7/18/2022`, + ProductID: 188, + ProductName: `Mac Book Air`, + UnitPrice: 26990.38, + Quantity: 4, + ExtendedPrice: 107961.52, + Freight: 610.38, + Discontinued: false, + Region: `South East`, + Address: `107 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 50196 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Estate`, + ShipAddress: `140 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 70154, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1219, + CustomerName: `James Smith`, + CustomerFirstName: `James`, + CustomerLastName: `Smith`, + CustomerAddress: `140 Wall Street, Miami, USA, 70154`, + Salesperson: `Nancy Madison`, + OrderID: 1307, + OrderDate: `4/19/2022`, + ProductID: 114, + ProductName: `IPhone`, + UnitPrice: 18300.65, + Quantity: 4, + ExtendedPrice: 73202.6, + Freight: 800.65, + Discontinued: true, + Region: `West`, + Address: `140 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 70154 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `158 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50154, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1220, + CustomerName: `Mike Jackson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jackson`, + CustomerAddress: `158 Market Street, Los Angeles, USA, 50154`, + Salesperson: `James Black`, + OrderID: 1808, + OrderDate: `3/18/2022`, + ProductID: 172, + ProductName: `Mac Book Air`, + UnitPrice: 27460.67, + Quantity: 3, + ExtendedPrice: 82382.01, + Freight: 1220.67, + Discontinued: false, + Region: `North East`, + Address: `158 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50154 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `116 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90170, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1221, + CustomerName: `Pamela Smith`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Smith`, + CustomerAddress: `116 Main Street, Los Angeles, USA, 90170`, + Salesperson: `James Jefferson`, + OrderID: 1481, + OrderDate: `5/22/2022`, + ProductID: 177, + ProductName: `IPhone`, + UnitPrice: 23770.26, + Quantity: 2, + ExtendedPrice: 47540.52, + Freight: 480.26, + Discontinued: false, + Region: `North East`, + Address: `116 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90170 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Townhouse`, + ShipAddress: `124 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 50137, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1222, + CustomerName: `Max Madison`, + CustomerFirstName: `Max`, + CustomerLastName: `Madison`, + CustomerAddress: `124 Wall Street, Huston, USA, 50137`, + Salesperson: `Martin Watson`, + OrderID: 1874, + OrderDate: `10/1/2022`, + ProductID: 102, + ProductName: `Mac Book Air`, + UnitPrice: 12080.68, + Quantity: 5, + ExtendedPrice: 60403.4, + Freight: 400.68, + Discontinued: false, + Region: `North East`, + Address: `124 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50137 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `197 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 60174, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1223, + CustomerName: `Nancy Smith`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Smith`, + CustomerAddress: `197 Main Street, New York, USA, 60174`, + Salesperson: `Nancy Jefferson`, + OrderID: 1377, + OrderDate: `10/24/2022`, + ProductID: 123, + ProductName: `Mac Book Air`, + UnitPrice: 10520.88, + Quantity: 4, + ExtendedPrice: 42083.52, + Freight: 800.88, + Discontinued: false, + Region: `South East`, + Address: `197 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 60174 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `192 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 80134, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1224, + CustomerName: `Mike Jefferson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jefferson`, + CustomerAddress: `192 Wall Street, Miami, USA, 80134`, + Salesperson: `James Madison`, + OrderID: 1691, + OrderDate: `6/13/2022`, + ProductID: 123, + ProductName: `IPhone`, + UnitPrice: 11090.82, + Quantity: 2, + ExtendedPrice: 22181.64, + Freight: 910.82, + Discontinued: false, + Region: `South East`, + Address: `192 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 80134 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `111 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 80054, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1225, + CustomerName: `Anna Black`, + CustomerFirstName: `Anna`, + CustomerLastName: `Black`, + CustomerAddress: `111 Market Street, Huston, USA, 80054`, + Salesperson: `Martin Jackson`, + OrderID: 1242, + OrderDate: `4/6/2022`, + ProductID: 180, + ProductName: `IPhone`, + UnitPrice: 8180.25, + Quantity: 5, + ExtendedPrice: 40901.25, + Freight: 510.25, + Discontinued: false, + Region: `North East`, + Address: `111 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80054 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Estate`, + ShipAddress: `106 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 60139, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1226, + CustomerName: `Nancy Jackson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jackson`, + CustomerAddress: `106 Market Street, New York, USA, 60139`, + Salesperson: `James Madison`, + OrderID: 1745, + OrderDate: `1/18/2022`, + ProductID: 115, + ProductName: `IPhone`, + UnitPrice: 6570.23, + Quantity: 5, + ExtendedPrice: 32851.15, + Freight: 840.23, + Discontinued: false, + Region: `West`, + Address: `106 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 60139 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `198 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60058, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1227, + CustomerName: `Nancy Jackson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jackson`, + CustomerAddress: `198 Main Street, Los Angeles, USA, 60058`, + Salesperson: `James Madison`, + OrderID: 1111, + OrderDate: `10/11/2022`, + ProductID: 132, + ProductName: `IPhone`, + UnitPrice: 10970.23, + Quantity: 3, + ExtendedPrice: 32910.69, + Freight: 1670.23, + Discontinued: false, + Region: `North East`, + Address: `198 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60058 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `138 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 50133, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1228, + CustomerName: `Anna Madison`, + CustomerFirstName: `Anna`, + CustomerLastName: `Madison`, + CustomerAddress: `138 Wall Street, Huston, USA, 50133`, + Salesperson: `Ben Madison`, + OrderID: 1182, + OrderDate: `12/18/2022`, + ProductID: 184, + ProductName: `Mac Book Air`, + UnitPrice: 27020.67, + Quantity: 3, + ExtendedPrice: 81062.01, + Freight: 1750.67, + Discontinued: false, + Region: `South East`, + Address: `138 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50133 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `198 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50182, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1229, + CustomerName: `James Smith`, + CustomerFirstName: `James`, + CustomerLastName: `Smith`, + CustomerAddress: `198 Market Street, Los Angeles, USA, 50182`, + Salesperson: `Ben Jackson`, + OrderID: 1252, + OrderDate: `10/7/2022`, + ProductID: 146, + ProductName: `IPad`, + UnitPrice: 21910.34, + Quantity: 5, + ExtendedPrice: 109551.7, + Freight: 840.34, + Discontinued: true, + Region: `North East`, + Address: `198 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50182 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `141 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 70058, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1230, + CustomerName: `James Jackson`, + CustomerFirstName: `James`, + CustomerLastName: `Jackson`, + CustomerAddress: `141 Market Street, Philadelphia, USA, 70058`, + Salesperson: `Martin Watson`, + OrderID: 1635, + OrderDate: `6/1/2022`, + ProductID: 196, + ProductName: `Mac Book Air`, + UnitPrice: 16430.54, + Quantity: 2, + ExtendedPrice: 32861.08, + Freight: 1420.54, + Discontinued: false, + Region: `North East`, + Address: `141 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 70058 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Townhouse`, + ShipAddress: `107 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 80108, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1231, + CustomerName: `Anna Madison`, + CustomerFirstName: `Anna`, + CustomerLastName: `Madison`, + CustomerAddress: `107 Market Street, New York, USA, 80108`, + Salesperson: `Mike Smith`, + OrderID: 1922, + OrderDate: `10/6/2022`, + ProductID: 154, + ProductName: `Mac Book Air`, + UnitPrice: 8920.46, + Quantity: 5, + ExtendedPrice: 44602.3, + Freight: 1160.46, + Discontinued: false, + Region: `West`, + Address: `107 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80108 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `166 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 60199, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1232, + CustomerName: `Martin Watson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Watson`, + CustomerAddress: `166 Main Street, New York, USA, 60199`, + Salesperson: `Anna Smith`, + OrderID: 1759, + OrderDate: `3/10/2022`, + ProductID: 145, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 22420.27, + Quantity: 5, + ExtendedPrice: 112101.35, + Freight: 1900.27, + Discontinued: false, + Region: `North East`, + Address: `166 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 60199 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `188 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 90082, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1233, + CustomerName: `Anna Smith`, + CustomerFirstName: `Anna`, + CustomerLastName: `Smith`, + CustomerAddress: `188 Main Street, New York, USA, 90082`, + Salesperson: `Ben Black`, + OrderID: 1172, + OrderDate: `11/9/2022`, + ProductID: 148, + ProductName: `Samsung Note`, + UnitPrice: 22260.33, + Quantity: 5, + ExtendedPrice: 111301.65, + Freight: 1530.33, + Discontinued: false, + Region: `West`, + Address: `188 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90082 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `168 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 80160, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1234, + CustomerName: `Martin Madison`, + CustomerFirstName: `Martin`, + CustomerLastName: `Madison`, + CustomerAddress: `168 Wall Street, Miami, USA, 80160`, + Salesperson: `Max Black`, + OrderID: 1855, + OrderDate: `9/9/2022`, + ProductID: 195, + ProductName: `Samsung Note`, + UnitPrice: 11120.68, + Quantity: 5, + ExtendedPrice: 55603.4, + Freight: 540.68, + Discontinued: false, + Region: `South East`, + Address: `168 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 80160 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Market`, + ShipAddress: `151 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50192, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1235, + CustomerName: `James Madison`, + CustomerFirstName: `James`, + CustomerLastName: `Madison`, + CustomerAddress: `151 Wall Street, Philadelphia, USA, 50192`, + Salesperson: `Pamela Watson`, + OrderID: 1253, + OrderDate: `9/24/2022`, + ProductID: 153, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 17650.73, + Quantity: 5, + ExtendedPrice: 88253.65, + Freight: 1010.73, + Discontinued: false, + Region: `North East`, + Address: `151 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50192 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `131 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60171, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1236, + CustomerName: `Anna Jefferson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Jefferson`, + CustomerAddress: `131 Wall Street, Philadelphia, USA, 60171`, + Salesperson: `James Jefferson`, + OrderID: 1711, + OrderDate: `9/12/2022`, + ProductID: 192, + ProductName: `IPhone`, + UnitPrice: 18980.42, + Quantity: 3, + ExtendedPrice: 56941.26, + Freight: 1070.42, + Discontinued: false, + Region: `North East`, + Address: `131 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60171 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `101 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 70109, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1237, + CustomerName: `Mike Madison`, + CustomerFirstName: `Mike`, + CustomerLastName: `Madison`, + CustomerAddress: `101 Market Street, Huston, USA, 70109`, + Salesperson: `Nancy Smith`, + OrderID: 1155, + OrderDate: `9/1/2022`, + ProductID: 174, + ProductName: `Mac Book Pro`, + UnitPrice: 22330.35, + Quantity: 2, + ExtendedPrice: 44660.7, + Freight: 250.35, + Discontinued: false, + Region: `West`, + Address: `101 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 70109 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Home`, + ShipAddress: `145 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 50126, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1238, + CustomerName: `Max Jefferson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jefferson`, + CustomerAddress: `145 Main Street, New York, USA, 50126`, + Salesperson: `Mike Watson`, + OrderID: 1656, + OrderDate: `3/7/2022`, + ProductID: 139, + ProductName: `IPhone`, + UnitPrice: 9890.72, + Quantity: 3, + ExtendedPrice: 29672.16, + Freight: 1890.72, + Discontinued: false, + Region: `West`, + Address: `145 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50126 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `190 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 60055, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1239, + CustomerName: `Martin Madison`, + CustomerFirstName: `Martin`, + CustomerLastName: `Madison`, + CustomerAddress: `190 Wall Street, Huston, USA, 60055`, + Salesperson: `Mike Smith`, + OrderID: 1192, + OrderDate: `3/12/2022`, + ProductID: 151, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 16510.6, + Quantity: 5, + ExtendedPrice: 82553, + Freight: 260.6, + Discontinued: true, + Region: `South East`, + Address: `190 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 60055 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Estate`, + ShipAddress: `114 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50122, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1240, + CustomerName: `Martin Smith`, + CustomerFirstName: `Martin`, + CustomerLastName: `Smith`, + CustomerAddress: `114 Market Street, Philadelphia, USA, 50122`, + Salesperson: `James Madison`, + OrderID: 1997, + OrderDate: `8/3/2022`, + ProductID: 195, + ProductName: `Mac Book Pro`, + UnitPrice: 20770.42, + Quantity: 4, + ExtendedPrice: 83081.68, + Freight: 920.42, + Discontinued: false, + Region: `North East`, + Address: `114 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50122 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `184 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 50147, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1241, + CustomerName: `Pamela Jackson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jackson`, + CustomerAddress: `184 Main Street, Miami, USA, 50147`, + Salesperson: `Martin Madison`, + OrderID: 1944, + OrderDate: `7/11/2022`, + ProductID: 105, + ProductName: `Samsung Note`, + UnitPrice: 22970.54, + Quantity: 3, + ExtendedPrice: 68911.62, + Freight: 2000.54, + Discontinued: false, + Region: `South East`, + Address: `184 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 50147 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `140 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50058, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1242, + CustomerName: `Pamela Watson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Watson`, + CustomerAddress: `140 Wall Street, Los Angeles, USA, 50058`, + Salesperson: `Max Madison`, + OrderID: 1076, + OrderDate: `12/1/2022`, + ProductID: 108, + ProductName: `IPhone`, + UnitPrice: 5950.69, + Quantity: 5, + ExtendedPrice: 29753.45, + Freight: 1440.69, + Discontinued: false, + Region: `South East`, + Address: `140 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50058 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `178 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 60194, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1243, + CustomerName: `James Madison`, + CustomerFirstName: `James`, + CustomerLastName: `Madison`, + CustomerAddress: `178 Market Street, New York, USA, 60194`, + Salesperson: `James Madison`, + OrderID: 1076, + OrderDate: `6/25/2022`, + ProductID: 176, + ProductName: `IPhone`, + UnitPrice: 17080.21, + Quantity: 2, + ExtendedPrice: 34160.42, + Freight: 1200.21, + Discontinued: false, + Region: `West`, + Address: `178 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 60194 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `179 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 70085, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1244, + CustomerName: `Ben Madison`, + CustomerFirstName: `Ben`, + CustomerLastName: `Madison`, + CustomerAddress: `179 Main Street, Huston, USA, 70085`, + Salesperson: `Ben Jackson`, + OrderID: 1070, + OrderDate: `5/7/2022`, + ProductID: 101, + ProductName: `IPhone`, + UnitPrice: 19310.75, + Quantity: 2, + ExtendedPrice: 38621.5, + Freight: 1270.75, + Discontinued: false, + Region: `West`, + Address: `179 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 70085 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `169 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 70087, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1245, + CustomerName: `Pamela Madison`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Madison`, + CustomerAddress: `169 Market Street, Miami, USA, 70087`, + Salesperson: `Nancy Black`, + OrderID: 1469, + OrderDate: `8/22/2022`, + ProductID: 193, + ProductName: `Samsung Note`, + UnitPrice: 25420.4, + Quantity: 2, + ExtendedPrice: 50840.8, + Freight: 1690.4, + Discontinued: false, + Region: `North East`, + Address: `169 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 70087 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `108 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90128, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1246, + CustomerName: `Martin Smith`, + CustomerFirstName: `Martin`, + CustomerLastName: `Smith`, + CustomerAddress: `108 Wall Street, Los Angeles, USA, 90128`, + Salesperson: `Pamela Smith`, + OrderID: 1948, + OrderDate: `4/25/2022`, + ProductID: 141, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 19070.55, + Quantity: 3, + ExtendedPrice: 57211.65, + Freight: 280.55, + Discontinued: false, + Region: `South East`, + Address: `108 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90128 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `195 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80141, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1247, + CustomerName: `Mike Jackson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jackson`, + CustomerAddress: `195 Market Street, Philadelphia, USA, 80141`, + Salesperson: `Martin Smith`, + OrderID: 1116, + OrderDate: `1/1/2022`, + ProductID: 162, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 22190.27, + Quantity: 5, + ExtendedPrice: 110951.35, + Freight: 1830.27, + Discontinued: false, + Region: `North East`, + Address: `195 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80141 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `142 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50163, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1248, + CustomerName: `Anna Black`, + CustomerFirstName: `Anna`, + CustomerLastName: `Black`, + CustomerAddress: `142 Main Street, Los Angeles, USA, 50163`, + Salesperson: `Pamela Jefferson`, + OrderID: 1640, + OrderDate: `5/1/2022`, + ProductID: 153, + ProductName: `Samsung Note`, + UnitPrice: 7690.79, + Quantity: 3, + ExtendedPrice: 23072.37, + Freight: 1730.79, + Discontinued: false, + Region: `South East`, + Address: `142 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50163 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `177 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80155, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1249, + CustomerName: `Mike Watson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Watson`, + CustomerAddress: `177 Market Street, Philadelphia, USA, 80155`, + Salesperson: `Anna Jefferson`, + OrderID: 1748, + OrderDate: `9/2/2022`, + ProductID: 186, + ProductName: `Mac Book Air`, + UnitPrice: 25230.84, + Quantity: 4, + ExtendedPrice: 100923.36, + Freight: 670.84, + Discontinued: true, + Region: `South East`, + Address: `177 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80155 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `175 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 80141, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1250, + CustomerName: `Mike Black`, + CustomerFirstName: `Mike`, + CustomerLastName: `Black`, + CustomerAddress: `175 Market Street, Los Angeles, USA, 80141`, + Salesperson: `Martin Black`, + OrderID: 1251, + OrderDate: `7/5/2022`, + ProductID: 140, + ProductName: `Mac Book Pro`, + UnitPrice: 25960.45, + Quantity: 2, + ExtendedPrice: 51920.9, + Freight: 260.45, + Discontinued: false, + Region: `North East`, + Address: `175 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 80141 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `110 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 90174, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1251, + CustomerName: `Pamela Watson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Watson`, + CustomerAddress: `110 Market Street, New York, USA, 90174`, + Salesperson: `Pamela Black`, + OrderID: 1397, + OrderDate: `7/2/2022`, + ProductID: 141, + ProductName: `Samsung Note`, + UnitPrice: 22150.67, + Quantity: 3, + ExtendedPrice: 66452.01, + Freight: 640.67, + Discontinued: false, + Region: `North East`, + Address: `110 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90174 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Estate`, + ShipAddress: `121 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 70083, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1252, + CustomerName: `Mike Jackson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jackson`, + CustomerAddress: `121 Wall Street, Los Angeles, USA, 70083`, + Salesperson: `Ben Jefferson`, + OrderID: 1938, + OrderDate: `1/20/2022`, + ProductID: 171, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 9220.74, + Quantity: 4, + ExtendedPrice: 36882.96, + Freight: 1030.74, + Discontinued: false, + Region: `South East`, + Address: `121 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 70083 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `122 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 70122, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1253, + CustomerName: `Mike Jackson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jackson`, + CustomerAddress: `122 Wall Street, Philadelphia, USA, 70122`, + Salesperson: `Mike Watson`, + OrderID: 1608, + OrderDate: `2/9/2022`, + ProductID: 109, + ProductName: `Samsung Note`, + UnitPrice: 11240.75, + Quantity: 2, + ExtendedPrice: 22481.5, + Freight: 1010.75, + Discontinued: false, + Region: `West`, + Address: `122 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 70122 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `151 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 50057, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1254, + CustomerName: `Pamela Watson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Watson`, + CustomerAddress: `151 Main Street, Huston, USA, 50057`, + Salesperson: `Martin Watson`, + OrderID: 1217, + OrderDate: `8/4/2022`, + ProductID: 185, + ProductName: `Mac Book Pro`, + UnitPrice: 16680.55, + Quantity: 3, + ExtendedPrice: 50041.65, + Freight: 1710.55, + Discontinued: false, + Region: `North East`, + Address: `151 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50057 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `120 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 50131, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1255, + CustomerName: `Mike Jackson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jackson`, + CustomerAddress: `120 Wall Street, Huston, USA, 50131`, + Salesperson: `Ben Jackson`, + OrderID: 1661, + OrderDate: `5/1/2022`, + ProductID: 190, + ProductName: `Mac Book Air`, + UnitPrice: 21450.85, + Quantity: 5, + ExtendedPrice: 107254.25, + Freight: 1350.85, + Discontinued: false, + Region: `South East`, + Address: `120 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50131 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Market`, + ShipAddress: `134 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 90060, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1256, + CustomerName: `Mike Madison`, + CustomerFirstName: `Mike`, + CustomerLastName: `Madison`, + CustomerAddress: `134 Main Street, Huston, USA, 90060`, + Salesperson: `James Madison`, + OrderID: 1766, + OrderDate: `11/11/2022`, + ProductID: 134, + ProductName: `Mac Book Air`, + UnitPrice: 12850.63, + Quantity: 3, + ExtendedPrice: 38551.89, + Freight: 1790.63, + Discontinued: false, + Region: `West`, + Address: `134 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90060 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `150 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 60151, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1257, + CustomerName: `James Black`, + CustomerFirstName: `James`, + CustomerLastName: `Black`, + CustomerAddress: `150 Wall Street, Huston, USA, 60151`, + Salesperson: `Martin Black`, + OrderID: 1321, + OrderDate: `8/4/2022`, + ProductID: 125, + ProductName: `Samsung Note`, + UnitPrice: 29190.24, + Quantity: 4, + ExtendedPrice: 116760.96, + Freight: 680.24, + Discontinued: false, + Region: `North East`, + Address: `150 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 60151 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `155 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 60121, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1258, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `155 Wall Street, Huston, USA, 60121`, + Salesperson: `Max Jackson`, + OrderID: 1872, + OrderDate: `2/20/2022`, + ProductID: 188, + ProductName: `Samsung Note`, + UnitPrice: 22750.45, + Quantity: 3, + ExtendedPrice: 68251.35, + Freight: 840.45, + Discontinued: false, + Region: `West`, + Address: `155 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 60121 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `184 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 90156, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1259, + CustomerName: `Anna Watson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Watson`, + CustomerAddress: `184 Market Street, New York, USA, 90156`, + Salesperson: `James Watson`, + OrderID: 1828, + OrderDate: `5/25/2022`, + ProductID: 191, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 29760.3, + Quantity: 2, + ExtendedPrice: 59520.6, + Freight: 1960.3, + Discontinued: true, + Region: `North East`, + Address: `184 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90156 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `133 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 50074, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1260, + CustomerName: `Anna Watson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Watson`, + CustomerAddress: `133 Market Street, Huston, USA, 50074`, + Salesperson: `Mike Black`, + OrderID: 1966, + OrderDate: `6/18/2022`, + ProductID: 160, + ProductName: `Mac Book Air`, + UnitPrice: 7450.44, + Quantity: 5, + ExtendedPrice: 37252.2, + Freight: 590.44, + Discontinued: false, + Region: `West`, + Address: `133 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50074 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Townhouse`, + ShipAddress: `154 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 70052, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1261, + CustomerName: `Martin Black`, + CustomerFirstName: `Martin`, + CustomerLastName: `Black`, + CustomerAddress: `154 Main Street, Philadelphia, USA, 70052`, + Salesperson: `Ben Jackson`, + OrderID: 1421, + OrderDate: `9/17/2022`, + ProductID: 127, + ProductName: `Mac Book Air`, + UnitPrice: 23000.47, + Quantity: 2, + ExtendedPrice: 46000.94, + Freight: 550.47, + Discontinued: false, + Region: `South East`, + Address: `154 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 70052 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Townhouse`, + ShipAddress: `114 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90174, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1262, + CustomerName: `Max Smith`, + CustomerFirstName: `Max`, + CustomerLastName: `Smith`, + CustomerAddress: `114 Wall Street, Philadelphia, USA, 90174`, + Salesperson: `Pamela Smith`, + OrderID: 1192, + OrderDate: `12/4/2022`, + ProductID: 105, + ProductName: `Samsung Note`, + UnitPrice: 19790.26, + Quantity: 2, + ExtendedPrice: 39580.52, + Freight: 1150.26, + Discontinued: false, + Region: `South East`, + Address: `114 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90174 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `154 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 90162, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1263, + CustomerName: `Ben Jefferson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jefferson`, + CustomerAddress: `154 Wall Street, New York, USA, 90162`, + Salesperson: `Nancy Smith`, + OrderID: 1539, + OrderDate: `7/16/2022`, + ProductID: 139, + ProductName: `Samsung Note`, + UnitPrice: 11830.34, + Quantity: 2, + ExtendedPrice: 23660.68, + Freight: 1930.34, + Discontinued: false, + Region: `West`, + Address: `154 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90162 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Townhouse`, + ShipAddress: `140 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 70136, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1264, + CustomerName: `Martin Smith`, + CustomerFirstName: `Martin`, + CustomerLastName: `Smith`, + CustomerAddress: `140 Wall Street, Los Angeles, USA, 70136`, + Salesperson: `Mike Jackson`, + OrderID: 1271, + OrderDate: `10/7/2022`, + ProductID: 124, + ProductName: `Samsung Note`, + UnitPrice: 21020.81, + Quantity: 2, + ExtendedPrice: 42041.62, + Freight: 1420.81, + Discontinued: false, + Region: `West`, + Address: `140 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 70136 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Townhouse`, + ShipAddress: `185 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60116, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1265, + CustomerName: `James Smith`, + CustomerFirstName: `James`, + CustomerLastName: `Smith`, + CustomerAddress: `185 Main Street, Philadelphia, USA, 60116`, + Salesperson: `James Watson`, + OrderID: 1090, + OrderDate: `9/11/2022`, + ProductID: 160, + ProductName: `IPhone`, + UnitPrice: 16070.46, + Quantity: 3, + ExtendedPrice: 48211.38, + Freight: 1490.46, + Discontinued: false, + Region: `West`, + Address: `185 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60116 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Estate`, + ShipAddress: `179 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 80107, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1266, + CustomerName: `Max Smith`, + CustomerFirstName: `Max`, + CustomerLastName: `Smith`, + CustomerAddress: `179 Market Street, Huston, USA, 80107`, + Salesperson: `Nancy Smith`, + OrderID: 1286, + OrderDate: `1/10/2022`, + ProductID: 161, + ProductName: `Mac Book Air`, + UnitPrice: 26160.38, + Quantity: 3, + ExtendedPrice: 78481.14, + Freight: 570.38, + Discontinued: false, + Region: `West`, + Address: `179 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80107 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Home`, + ShipAddress: `189 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 90073, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1267, + CustomerName: `Ben Jefferson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jefferson`, + CustomerAddress: `189 Wall Street, Huston, USA, 90073`, + Salesperson: `Martin Madison`, + OrderID: 1754, + OrderDate: `5/2/2022`, + ProductID: 143, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 29540.84, + Quantity: 4, + ExtendedPrice: 118163.36, + Freight: 500.84, + Discontinued: false, + Region: `North East`, + Address: `189 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90073 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `106 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 90153, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1268, + CustomerName: `Anna Madison`, + CustomerFirstName: `Anna`, + CustomerLastName: `Madison`, + CustomerAddress: `106 Market Street, Miami, USA, 90153`, + Salesperson: `Anna Black`, + OrderID: 1321, + OrderDate: `6/21/2022`, + ProductID: 136, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 12550.55, + Quantity: 5, + ExtendedPrice: 62752.75, + Freight: 1440.55, + Discontinued: false, + Region: `West`, + Address: `106 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90153 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `149 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50102, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1269, + CustomerName: `Pamela Watson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Watson`, + CustomerAddress: `149 Wall Street, Los Angeles, USA, 50102`, + Salesperson: `James Jefferson`, + OrderID: 1262, + OrderDate: `7/13/2022`, + ProductID: 178, + ProductName: `Samsung Note`, + UnitPrice: 8690.45, + Quantity: 3, + ExtendedPrice: 26071.35, + Freight: 1420.45, + Discontinued: true, + Region: `West`, + Address: `149 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50102 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `192 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 60078, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1270, + CustomerName: `Martin Watson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Watson`, + CustomerAddress: `192 Market Street, New York, USA, 60078`, + Salesperson: `Ben Jackson`, + OrderID: 1586, + OrderDate: `11/13/2022`, + ProductID: 130, + ProductName: `Mac Book Pro`, + UnitPrice: 28630.86, + Quantity: 2, + ExtendedPrice: 57261.72, + Freight: 980.86, + Discontinued: false, + Region: `West`, + Address: `192 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 60078 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `159 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 50050, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1271, + CustomerName: `James Jefferson`, + CustomerFirstName: `James`, + CustomerLastName: `Jefferson`, + CustomerAddress: `159 Main Street, New York, USA, 50050`, + Salesperson: `Max Jefferson`, + OrderID: 1915, + OrderDate: `2/10/2022`, + ProductID: 178, + ProductName: `Mac Book Pro`, + UnitPrice: 19050.75, + Quantity: 5, + ExtendedPrice: 95253.75, + Freight: 960.75, + Discontinued: false, + Region: `West`, + Address: `159 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50050 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `171 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60099, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1272, + CustomerName: `Nancy Watson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Watson`, + CustomerAddress: `171 Wall Street, Los Angeles, USA, 60099`, + Salesperson: `Pamela Jackson`, + OrderID: 1503, + OrderDate: `4/7/2022`, + ProductID: 153, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 26320.3, + Quantity: 3, + ExtendedPrice: 78960.9, + Freight: 1360.3, + Discontinued: false, + Region: `South East`, + Address: `171 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60099 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Townhouse`, + ShipAddress: `161 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 70087, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1273, + CustomerName: `Anna Madison`, + CustomerFirstName: `Anna`, + CustomerLastName: `Madison`, + CustomerAddress: `161 Main Street, Huston, USA, 70087`, + Salesperson: `Nancy Watson`, + OrderID: 1129, + OrderDate: `9/4/2022`, + ProductID: 119, + ProductName: `Samsung Note`, + UnitPrice: 26970.53, + Quantity: 3, + ExtendedPrice: 80911.59, + Freight: 1890.53, + Discontinued: false, + Region: `South East`, + Address: `161 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 70087 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `163 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50127, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1274, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `163 Market Street, Los Angeles, USA, 50127`, + Salesperson: `Nancy Jefferson`, + OrderID: 1508, + OrderDate: `1/6/2022`, + ProductID: 136, + ProductName: `Mac Book Air`, + UnitPrice: 12620.81, + Quantity: 3, + ExtendedPrice: 37862.43, + Freight: 650.81, + Discontinued: false, + Region: `North East`, + Address: `163 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50127 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `131 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 50052, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1275, + CustomerName: `James Watson`, + CustomerFirstName: `James`, + CustomerLastName: `Watson`, + CustomerAddress: `131 Market Street, Huston, USA, 50052`, + Salesperson: `Martin Watson`, + OrderID: 1285, + OrderDate: `8/6/2022`, + ProductID: 123, + ProductName: `Samsung Note`, + UnitPrice: 22790.24, + Quantity: 4, + ExtendedPrice: 91160.96, + Freight: 1140.24, + Discontinued: false, + Region: `South East`, + Address: `131 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50052 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `125 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 60101, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1276, + CustomerName: `Ben Black`, + CustomerFirstName: `Ben`, + CustomerLastName: `Black`, + CustomerAddress: `125 Wall Street, Miami, USA, 60101`, + Salesperson: `Ben Smith`, + OrderID: 1881, + OrderDate: `12/5/2022`, + ProductID: 128, + ProductName: `Mac Book Air`, + UnitPrice: 18780.56, + Quantity: 4, + ExtendedPrice: 75122.24, + Freight: 820.56, + Discontinued: false, + Region: `West`, + Address: `125 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60101 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `184 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 50157, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1277, + CustomerName: `Nancy Jackson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jackson`, + CustomerAddress: `184 Main Street, Miami, USA, 50157`, + Salesperson: `Mike Smith`, + OrderID: 1478, + OrderDate: `9/18/2022`, + ProductID: 131, + ProductName: `IPad`, + UnitPrice: 15000.21, + Quantity: 5, + ExtendedPrice: 75001.05, + Freight: 1390.21, + Discontinued: false, + Region: `North East`, + Address: `184 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 50157 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `199 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 80050, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1278, + CustomerName: `Nancy Watson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Watson`, + CustomerAddress: `199 Market Street, Huston, USA, 80050`, + Salesperson: `Max Jefferson`, + OrderID: 1767, + OrderDate: `1/17/2022`, + ProductID: 196, + ProductName: `Mac Book Pro`, + UnitPrice: 21600.31, + Quantity: 3, + ExtendedPrice: 64800.93, + Freight: 1130.31, + Discontinued: false, + Region: `North East`, + Address: `199 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80050 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Market`, + ShipAddress: `127 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 60073, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1279, + CustomerName: `Nancy Madison`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Madison`, + CustomerAddress: `127 Market Street, Miami, USA, 60073`, + Salesperson: `Mike Smith`, + OrderID: 1229, + OrderDate: `12/7/2022`, + ProductID: 184, + ProductName: `Mac Book Air`, + UnitPrice: 27500.59, + Quantity: 3, + ExtendedPrice: 82501.77, + Freight: 1380.59, + Discontinued: true, + Region: `West`, + Address: `127 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60073 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Home`, + ShipAddress: `169 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 50123, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1280, + CustomerName: `Mike Watson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Watson`, + CustomerAddress: `169 Main Street, New York, USA, 50123`, + Salesperson: `Martin Jackson`, + OrderID: 1761, + OrderDate: `2/10/2022`, + ProductID: 169, + ProductName: `IPad`, + UnitPrice: 21430.7, + Quantity: 5, + ExtendedPrice: 107153.5, + Freight: 1170.7, + Discontinued: false, + Region: `North East`, + Address: `169 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50123 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Home`, + ShipAddress: `109 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80143, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1281, + CustomerName: `James Watson`, + CustomerFirstName: `James`, + CustomerLastName: `Watson`, + CustomerAddress: `109 Main Street, Philadelphia, USA, 80143`, + Salesperson: `Anna Black`, + OrderID: 1461, + OrderDate: `9/8/2022`, + ProductID: 155, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 28470.33, + Quantity: 4, + ExtendedPrice: 113881.32, + Freight: 1750.33, + Discontinued: false, + Region: `North East`, + Address: `109 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80143 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Townhouse`, + ShipAddress: `103 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 80198, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1282, + CustomerName: `James Madison`, + CustomerFirstName: `James`, + CustomerLastName: `Madison`, + CustomerAddress: `103 Main Street, New York, USA, 80198`, + Salesperson: `Ben Black`, + OrderID: 1210, + OrderDate: `11/7/2022`, + ProductID: 123, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 11260.52, + Quantity: 5, + ExtendedPrice: 56302.6, + Freight: 330.52, + Discontinued: false, + Region: `West`, + Address: `103 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80198 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `102 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50100, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1283, + CustomerName: `Martin Jefferson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Jefferson`, + CustomerAddress: `102 Market Street, Philadelphia, USA, 50100`, + Salesperson: `Pamela Jefferson`, + OrderID: 1262, + OrderDate: `4/17/2022`, + ProductID: 134, + ProductName: `Mac Book Pro`, + UnitPrice: 21890.55, + Quantity: 4, + ExtendedPrice: 87562.2, + Freight: 500.55, + Discontinued: false, + Region: `West`, + Address: `102 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50100 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `194 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 80057, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1284, + CustomerName: `Pamela Madison`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Madison`, + CustomerAddress: `194 Market Street, New York, USA, 80057`, + Salesperson: `Pamela Jefferson`, + OrderID: 1490, + OrderDate: `4/6/2022`, + ProductID: 191, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 15670.58, + Quantity: 4, + ExtendedPrice: 62682.32, + Freight: 1320.58, + Discontinued: false, + Region: `South East`, + Address: `194 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80057 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Market`, + ShipAddress: `102 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 70175, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1285, + CustomerName: `Nancy Madison`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Madison`, + CustomerAddress: `102 Main Street, Miami, USA, 70175`, + Salesperson: `James Jackson`, + OrderID: 1031, + OrderDate: `3/18/2022`, + ProductID: 196, + ProductName: `Samsung Note`, + UnitPrice: 16280.69, + Quantity: 3, + ExtendedPrice: 48842.07, + Freight: 380.69, + Discontinued: false, + Region: `South East`, + Address: `102 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 70175 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `139 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60067, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1286, + CustomerName: `Nancy Watson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Watson`, + CustomerAddress: `139 Market Street, Philadelphia, USA, 60067`, + Salesperson: `Max Jefferson`, + OrderID: 1803, + OrderDate: `1/22/2022`, + ProductID: 134, + ProductName: `Mac Book Pro`, + UnitPrice: 7940.29, + Quantity: 4, + ExtendedPrice: 31761.16, + Freight: 620.29, + Discontinued: false, + Region: `North East`, + Address: `139 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60067 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `167 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 80115, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1287, + CustomerName: `Martin Smith`, + CustomerFirstName: `Martin`, + CustomerLastName: `Smith`, + CustomerAddress: `167 Market Street, New York, USA, 80115`, + Salesperson: `Anna Black`, + OrderID: 1465, + OrderDate: `2/14/2022`, + ProductID: 166, + ProductName: `Samsung Note`, + UnitPrice: 20420.2, + Quantity: 4, + ExtendedPrice: 81680.8, + Freight: 960.2, + Discontinued: false, + Region: `North East`, + Address: `167 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80115 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `167 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 80080, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1288, + CustomerName: `Nancy Jefferson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jefferson`, + CustomerAddress: `167 Market Street, New York, USA, 80080`, + Salesperson: `Ben Jackson`, + OrderID: 1303, + OrderDate: `12/12/2022`, + ProductID: 191, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 20080.21, + Quantity: 2, + ExtendedPrice: 40160.42, + Freight: 800.21, + Discontinued: false, + Region: `West`, + Address: `167 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80080 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `167 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 90093, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1289, + CustomerName: `Pamela Jackson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jackson`, + CustomerAddress: `167 Market Street, New York, USA, 90093`, + Salesperson: `Anna Smith`, + OrderID: 1122, + OrderDate: `8/6/2022`, + ProductID: 189, + ProductName: `Mac Book Air`, + UnitPrice: 29420.55, + Quantity: 4, + ExtendedPrice: 117682.2, + Freight: 1200.55, + Discontinued: true, + Region: `South East`, + Address: `167 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90093 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `114 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60133, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1290, + CustomerName: `Nancy Madison`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Madison`, + CustomerAddress: `114 Wall Street, Philadelphia, USA, 60133`, + Salesperson: `Anna Madison`, + OrderID: 1402, + OrderDate: `6/9/2022`, + ProductID: 161, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 16370.76, + Quantity: 3, + ExtendedPrice: 49112.28, + Freight: 590.76, + Discontinued: false, + Region: `South East`, + Address: `114 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60133 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `164 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60153, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1291, + CustomerName: `Anna Madison`, + CustomerFirstName: `Anna`, + CustomerLastName: `Madison`, + CustomerAddress: `164 Market Street, Los Angeles, USA, 60153`, + Salesperson: `Max Smith`, + OrderID: 1165, + OrderDate: `11/24/2022`, + ProductID: 193, + ProductName: `Mac Book Pro`, + UnitPrice: 19240.53, + Quantity: 4, + ExtendedPrice: 76962.12, + Freight: 1990.53, + Discontinued: false, + Region: `West`, + Address: `164 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60153 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Home`, + ShipAddress: `102 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90068, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1292, + CustomerName: `Mike Jackson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jackson`, + CustomerAddress: `102 Market Street, Philadelphia, USA, 90068`, + Salesperson: `Mike Madison`, + OrderID: 1512, + OrderDate: `9/4/2022`, + ProductID: 186, + ProductName: `Samsung Note`, + UnitPrice: 26300.88, + Quantity: 4, + ExtendedPrice: 105203.52, + Freight: 660.88, + Discontinued: false, + Region: `West`, + Address: `102 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90068 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `158 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 80149, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1293, + CustomerName: `Pamela Jefferson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jefferson`, + CustomerAddress: `158 Wall Street, Los Angeles, USA, 80149`, + Salesperson: `Max Jackson`, + OrderID: 1358, + OrderDate: `2/22/2022`, + ProductID: 110, + ProductName: `Mac Book Pro`, + UnitPrice: 23570.31, + Quantity: 5, + ExtendedPrice: 117851.55, + Freight: 1260.31, + Discontinued: false, + Region: `North East`, + Address: `158 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 80149 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `125 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 80176, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1294, + CustomerName: `Nancy Jefferson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jefferson`, + CustomerAddress: `125 Market Street, Huston, USA, 80176`, + Salesperson: `Pamela Watson`, + OrderID: 1106, + OrderDate: `2/7/2022`, + ProductID: 152, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 6100.56, + Quantity: 5, + ExtendedPrice: 30502.8, + Freight: 1900.56, + Discontinued: false, + Region: `West`, + Address: `125 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80176 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Estate`, + ShipAddress: `177 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50079, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1295, + CustomerName: `Pamela Smith`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Smith`, + CustomerAddress: `177 Main Street, Los Angeles, USA, 50079`, + Salesperson: `Max Watson`, + OrderID: 1931, + OrderDate: `6/5/2022`, + ProductID: 113, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 27350.45, + Quantity: 3, + ExtendedPrice: 82051.35, + Freight: 1170.45, + Discontinued: false, + Region: `North East`, + Address: `177 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50079 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Estate`, + ShipAddress: `148 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 90184, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1296, + CustomerName: `Mike Jackson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jackson`, + CustomerAddress: `148 Market Street, New York, USA, 90184`, + Salesperson: `James Smith`, + OrderID: 1108, + OrderDate: `8/5/2022`, + ProductID: 122, + ProductName: `Samsung Note`, + UnitPrice: 5440.75, + Quantity: 4, + ExtendedPrice: 21763, + Freight: 960.75, + Discontinued: false, + Region: `South East`, + Address: `148 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90184 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Townhouse`, + ShipAddress: `113 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 50064, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1297, + CustomerName: `Max Black`, + CustomerFirstName: `Max`, + CustomerLastName: `Black`, + CustomerAddress: `113 Wall Street, Huston, USA, 50064`, + Salesperson: `Martin Smith`, + OrderID: 1782, + OrderDate: `3/24/2022`, + ProductID: 107, + ProductName: `IPad`, + UnitPrice: 22200.88, + Quantity: 4, + ExtendedPrice: 88803.52, + Freight: 510.88, + Discontinued: false, + Region: `West`, + Address: `113 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50064 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `134 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 80155, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1298, + CustomerName: `Martin Smith`, + CustomerFirstName: `Martin`, + CustomerLastName: `Smith`, + CustomerAddress: `134 Wall Street, New York, USA, 80155`, + Salesperson: `Nancy Jefferson`, + OrderID: 1886, + OrderDate: `3/6/2022`, + ProductID: 181, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 8550.46, + Quantity: 4, + ExtendedPrice: 34201.84, + Freight: 1830.46, + Discontinued: false, + Region: `North East`, + Address: `134 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80155 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `142 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 90103, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1299, + CustomerName: `Max Jackson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jackson`, + CustomerAddress: `142 Market Street, New York, USA, 90103`, + Salesperson: `Anna Watson`, + OrderID: 1578, + OrderDate: `10/5/2022`, + ProductID: 162, + ProductName: `Mac Book Air`, + UnitPrice: 19490.84, + Quantity: 4, + ExtendedPrice: 77963.36, + Freight: 490.84, + Discontinued: true, + Region: `West`, + Address: `142 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90103 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Estate`, + ShipAddress: `132 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 90111, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1300, + CustomerName: `Anna Smith`, + CustomerFirstName: `Anna`, + CustomerLastName: `Smith`, + CustomerAddress: `132 Market Street, Miami, USA, 90111`, + Salesperson: `Ben Jefferson`, + OrderID: 1903, + OrderDate: `6/23/2022`, + ProductID: 173, + ProductName: `IPad`, + UnitPrice: 23350.52, + Quantity: 5, + ExtendedPrice: 116752.6, + Freight: 1210.52, + Discontinued: false, + Region: `South East`, + Address: `132 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90111 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `180 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50182, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1301, + CustomerName: `Mike Smith`, + CustomerFirstName: `Mike`, + CustomerLastName: `Smith`, + CustomerAddress: `180 Main Street, Los Angeles, USA, 50182`, + Salesperson: `Ben Black`, + OrderID: 1201, + OrderDate: `11/25/2022`, + ProductID: 127, + ProductName: `Mac Book Pro`, + UnitPrice: 6730.57, + Quantity: 3, + ExtendedPrice: 20191.71, + Freight: 1600.57, + Discontinued: false, + Region: `West`, + Address: `180 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50182 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Townhouse`, + ShipAddress: `135 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60076, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1302, + CustomerName: `James Smith`, + CustomerFirstName: `James`, + CustomerLastName: `Smith`, + CustomerAddress: `135 Main Street, Philadelphia, USA, 60076`, + Salesperson: `Mike Smith`, + OrderID: 1488, + OrderDate: `5/1/2022`, + ProductID: 105, + ProductName: `IPad`, + UnitPrice: 27240.3, + Quantity: 5, + ExtendedPrice: 136201.5, + Freight: 1130.3, + Discontinued: false, + Region: `West`, + Address: `135 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60076 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Townhouse`, + ShipAddress: `104 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 70191, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1303, + CustomerName: `Nancy Madison`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Madison`, + CustomerAddress: `104 Wall Street, New York, USA, 70191`, + Salesperson: `Pamela Jefferson`, + OrderID: 1636, + OrderDate: `2/16/2022`, + ProductID: 104, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 14830.46, + Quantity: 2, + ExtendedPrice: 29660.92, + Freight: 540.46, + Discontinued: false, + Region: `West`, + Address: `104 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 70191 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `122 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 70071, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1304, + CustomerName: `James Jefferson`, + CustomerFirstName: `James`, + CustomerLastName: `Jefferson`, + CustomerAddress: `122 Market Street, New York, USA, 70071`, + Salesperson: `Max Black`, + OrderID: 1588, + OrderDate: `8/22/2022`, + ProductID: 169, + ProductName: `IPhone`, + UnitPrice: 28440.73, + Quantity: 3, + ExtendedPrice: 85322.19, + Freight: 640.73, + Discontinued: false, + Region: `North East`, + Address: `122 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 70071 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `178 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80064, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1305, + CustomerName: `Anna Smith`, + CustomerFirstName: `Anna`, + CustomerLastName: `Smith`, + CustomerAddress: `178 Main Street, Philadelphia, USA, 80064`, + Salesperson: `Pamela Jackson`, + OrderID: 1422, + OrderDate: `7/3/2022`, + ProductID: 150, + ProductName: `Mac Book Air`, + UnitPrice: 7100.37, + Quantity: 4, + ExtendedPrice: 28401.48, + Freight: 1560.37, + Discontinued: false, + Region: `North East`, + Address: `178 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80064 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `199 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80126, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1306, + CustomerName: `Martin Jefferson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Jefferson`, + CustomerAddress: `199 Main Street, Philadelphia, USA, 80126`, + Salesperson: `Ben Jefferson`, + OrderID: 1922, + OrderDate: `1/13/2022`, + ProductID: 116, + ProductName: `Mac Book Air`, + UnitPrice: 15400.22, + Quantity: 4, + ExtendedPrice: 61600.88, + Freight: 1970.22, + Discontinued: false, + Region: `South East`, + Address: `199 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80126 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Home`, + ShipAddress: `187 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 70093, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1307, + CustomerName: `Nancy Watson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Watson`, + CustomerAddress: `187 Wall Street, Huston, USA, 70093`, + Salesperson: `Ben Watson`, + OrderID: 1023, + OrderDate: `8/20/2022`, + ProductID: 138, + ProductName: `Samsung Note`, + UnitPrice: 26450.63, + Quantity: 2, + ExtendedPrice: 52901.26, + Freight: 980.63, + Discontinued: false, + Region: `South East`, + Address: `187 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 70093 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `110 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50180, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1308, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `110 Market Street, Los Angeles, USA, 50180`, + Salesperson: `Martin Smith`, + OrderID: 1651, + OrderDate: `8/10/2022`, + ProductID: 131, + ProductName: `IPhone`, + UnitPrice: 11720.27, + Quantity: 2, + ExtendedPrice: 23440.54, + Freight: 300.27, + Discontinued: false, + Region: `South East`, + Address: `110 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50180 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `196 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 50190, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1309, + CustomerName: `James Madison`, + CustomerFirstName: `James`, + CustomerLastName: `Madison`, + CustomerAddress: `196 Wall Street, New York, USA, 50190`, + Salesperson: `Nancy Madison`, + OrderID: 1918, + OrderDate: `7/11/2022`, + ProductID: 160, + ProductName: `IPad`, + UnitPrice: 22400.31, + Quantity: 2, + ExtendedPrice: 44800.62, + Freight: 1310.31, + Discontinued: true, + Region: `North East`, + Address: `196 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50190 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `172 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80154, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1310, + CustomerName: `Nancy Jefferson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jefferson`, + CustomerAddress: `172 Market Street, Philadelphia, USA, 80154`, + Salesperson: `Ben Jackson`, + OrderID: 1803, + OrderDate: `2/14/2022`, + ProductID: 100, + ProductName: `Samsung Note`, + UnitPrice: 5270.34, + Quantity: 5, + ExtendedPrice: 26351.7, + Freight: 320.34, + Discontinued: false, + Region: `North East`, + Address: `172 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80154 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `181 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50200, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1311, + CustomerName: `Martin Watson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Watson`, + CustomerAddress: `181 Wall Street, Los Angeles, USA, 50200`, + Salesperson: `James Watson`, + OrderID: 1467, + OrderDate: `12/13/2022`, + ProductID: 171, + ProductName: `Mac Book Air`, + UnitPrice: 7830.21, + Quantity: 4, + ExtendedPrice: 31320.84, + Freight: 1740.21, + Discontinued: false, + Region: `South East`, + Address: `181 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50200 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `151 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 70118, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1312, + CustomerName: `Pamela Jefferson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jefferson`, + CustomerAddress: `151 Main Street, Los Angeles, USA, 70118`, + Salesperson: `Martin Watson`, + OrderID: 1359, + OrderDate: `4/5/2022`, + ProductID: 141, + ProductName: `IPhone`, + UnitPrice: 27160.77, + Quantity: 5, + ExtendedPrice: 135803.85, + Freight: 370.77, + Discontinued: false, + Region: `West`, + Address: `151 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 70118 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Home`, + ShipAddress: `156 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 90109, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1313, + CustomerName: `James Jackson`, + CustomerFirstName: `James`, + CustomerLastName: `Jackson`, + CustomerAddress: `156 Market Street, Miami, USA, 90109`, + Salesperson: `James Jackson`, + OrderID: 1592, + OrderDate: `4/16/2022`, + ProductID: 128, + ProductName: `Samsung Note`, + UnitPrice: 14910.41, + Quantity: 5, + ExtendedPrice: 74552.05, + Freight: 1790.41, + Discontinued: false, + Region: `North East`, + Address: `156 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90109 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `147 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 60054, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1314, + CustomerName: `Pamela Watson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Watson`, + CustomerAddress: `147 Main Street, Huston, USA, 60054`, + Salesperson: `Ben Watson`, + OrderID: 1454, + OrderDate: `12/12/2022`, + ProductID: 131, + ProductName: `Mac Book Air`, + UnitPrice: 11280.22, + Quantity: 3, + ExtendedPrice: 33840.66, + Freight: 1440.22, + Discontinued: false, + Region: `South East`, + Address: `147 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 60054 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `123 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90190, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1315, + CustomerName: `Ben Madison`, + CustomerFirstName: `Ben`, + CustomerLastName: `Madison`, + CustomerAddress: `123 Market Street, Philadelphia, USA, 90190`, + Salesperson: `James Jefferson`, + OrderID: 1529, + OrderDate: `4/19/2022`, + ProductID: 102, + ProductName: `IPad`, + UnitPrice: 7570.85, + Quantity: 5, + ExtendedPrice: 37854.25, + Freight: 1630.85, + Discontinued: false, + Region: `West`, + Address: `123 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90190 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Home`, + ShipAddress: `100 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90115, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1316, + CustomerName: `James Watson`, + CustomerFirstName: `James`, + CustomerLastName: `Watson`, + CustomerAddress: `100 Wall Street, Los Angeles, USA, 90115`, + Salesperson: `Nancy Smith`, + OrderID: 1783, + OrderDate: `9/2/2022`, + ProductID: 144, + ProductName: `Samsung Note`, + UnitPrice: 5530.88, + Quantity: 3, + ExtendedPrice: 16592.64, + Freight: 1800.88, + Discontinued: false, + Region: `North East`, + Address: `100 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90115 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `184 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 50144, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1317, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `184 Wall Street, Miami, USA, 50144`, + Salesperson: `Max Jackson`, + OrderID: 1533, + OrderDate: `12/19/2022`, + ProductID: 189, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 24820.6, + Quantity: 2, + ExtendedPrice: 49641.2, + Freight: 1550.6, + Discontinued: false, + Region: `South East`, + Address: `184 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 50144 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `187 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 70132, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1318, + CustomerName: `Mike Black`, + CustomerFirstName: `Mike`, + CustomerLastName: `Black`, + CustomerAddress: `187 Wall Street, Los Angeles, USA, 70132`, + Salesperson: `Nancy Jackson`, + OrderID: 1483, + OrderDate: `1/8/2022`, + ProductID: 182, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 21520.76, + Quantity: 4, + ExtendedPrice: 86083.04, + Freight: 770.76, + Discontinued: false, + Region: `North East`, + Address: `187 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 70132 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `162 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90083, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1319, + CustomerName: `Mike Black`, + CustomerFirstName: `Mike`, + CustomerLastName: `Black`, + CustomerAddress: `162 Main Street, Philadelphia, USA, 90083`, + Salesperson: `Max Jefferson`, + OrderID: 1869, + OrderDate: `6/3/2022`, + ProductID: 118, + ProductName: `IPhone`, + UnitPrice: 15930.3, + Quantity: 2, + ExtendedPrice: 31860.6, + Freight: 470.3, + Discontinued: true, + Region: `North East`, + Address: `162 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90083 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Home`, + ShipAddress: `147 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50191, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1320, + CustomerName: `Nancy Watson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Watson`, + CustomerAddress: `147 Main Street, Philadelphia, USA, 50191`, + Salesperson: `Martin Jefferson`, + OrderID: 1541, + OrderDate: `2/1/2022`, + ProductID: 159, + ProductName: `Mac Book Pro`, + UnitPrice: 29090.51, + Quantity: 4, + ExtendedPrice: 116362.04, + Freight: 900.51, + Discontinued: false, + Region: `North East`, + Address: `147 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50191 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `175 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 90056, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1321, + CustomerName: `Martin Jackson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Jackson`, + CustomerAddress: `175 Wall Street, New York, USA, 90056`, + Salesperson: `Anna Black`, + OrderID: 1050, + OrderDate: `8/6/2022`, + ProductID: 120, + ProductName: `IPad`, + UnitPrice: 28490.38, + Quantity: 5, + ExtendedPrice: 142451.9, + Freight: 860.38, + Discontinued: false, + Region: `West`, + Address: `175 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90056 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `129 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 50089, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1322, + CustomerName: `Pamela Jackson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jackson`, + CustomerAddress: `129 Market Street, Huston, USA, 50089`, + Salesperson: `Mike Jefferson`, + OrderID: 1188, + OrderDate: `7/23/2022`, + ProductID: 119, + ProductName: `Mac Book Pro`, + UnitPrice: 6710.58, + Quantity: 3, + ExtendedPrice: 20131.74, + Freight: 1160.58, + Discontinued: false, + Region: `South East`, + Address: `129 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50089 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `104 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 70079, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1323, + CustomerName: `Ben Smith`, + CustomerFirstName: `Ben`, + CustomerLastName: `Smith`, + CustomerAddress: `104 Wall Street, Philadelphia, USA, 70079`, + Salesperson: `Martin Madison`, + OrderID: 1452, + OrderDate: `2/1/2022`, + ProductID: 182, + ProductName: `IPhone`, + UnitPrice: 9260.28, + Quantity: 2, + ExtendedPrice: 18520.56, + Freight: 1960.28, + Discontinued: false, + Region: `South East`, + Address: `104 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 70079 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `167 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 70137, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1324, + CustomerName: `Mike Jefferson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jefferson`, + CustomerAddress: `167 Wall Street, Philadelphia, USA, 70137`, + Salesperson: `James Jefferson`, + OrderID: 1542, + OrderDate: `7/21/2022`, + ProductID: 107, + ProductName: `IPhone`, + UnitPrice: 5100.82, + Quantity: 5, + ExtendedPrice: 25504.1, + Freight: 610.82, + Discontinued: false, + Region: `North East`, + Address: `167 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 70137 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Market`, + ShipAddress: `128 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50188, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1325, + CustomerName: `Mike Madison`, + CustomerFirstName: `Mike`, + CustomerLastName: `Madison`, + CustomerAddress: `128 Wall Street, Philadelphia, USA, 50188`, + Salesperson: `Nancy Jefferson`, + OrderID: 1993, + OrderDate: `3/7/2022`, + ProductID: 149, + ProductName: `Samsung Note`, + UnitPrice: 27520.59, + Quantity: 4, + ExtendedPrice: 110082.36, + Freight: 1260.59, + Discontinued: false, + Region: `South East`, + Address: `128 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50188 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `171 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 70190, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1326, + CustomerName: `Martin Watson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Watson`, + CustomerAddress: `171 Market Street, Huston, USA, 70190`, + Salesperson: `Anna Madison`, + OrderID: 1815, + OrderDate: `7/4/2022`, + ProductID: 195, + ProductName: `Samsung Note`, + UnitPrice: 27340.66, + Quantity: 5, + ExtendedPrice: 136703.3, + Freight: 1790.66, + Discontinued: false, + Region: `South East`, + Address: `171 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 70190 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Home`, + ShipAddress: `191 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60123, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1327, + CustomerName: `Anna Watson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Watson`, + CustomerAddress: `191 Market Street, Philadelphia, USA, 60123`, + Salesperson: `Anna Madison`, + OrderID: 1319, + OrderDate: `8/5/2022`, + ProductID: 191, + ProductName: `Samsung Note`, + UnitPrice: 28500.5, + Quantity: 5, + ExtendedPrice: 142502.5, + Freight: 1280.5, + Discontinued: false, + Region: `West`, + Address: `191 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60123 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Townhouse`, + ShipAddress: `150 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80139, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1328, + CustomerName: `Mike Madison`, + CustomerFirstName: `Mike`, + CustomerLastName: `Madison`, + CustomerAddress: `150 Wall Street, Philadelphia, USA, 80139`, + Salesperson: `Nancy Watson`, + OrderID: 1592, + OrderDate: `2/22/2022`, + ProductID: 149, + ProductName: `Mac Book Pro`, + UnitPrice: 22890.6, + Quantity: 5, + ExtendedPrice: 114453, + Freight: 920.6, + Discontinued: false, + Region: `South East`, + Address: `150 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80139 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `112 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 70172, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1329, + CustomerName: `Nancy Jackson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jackson`, + CustomerAddress: `112 Main Street, Los Angeles, USA, 70172`, + Salesperson: `Max Jefferson`, + OrderID: 1959, + OrderDate: `10/15/2022`, + ProductID: 156, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 12050.71, + Quantity: 4, + ExtendedPrice: 48202.84, + Freight: 270.71, + Discontinued: true, + Region: `North East`, + Address: `112 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 70172 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `121 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 80122, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1330, + CustomerName: `Martin Jefferson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Jefferson`, + CustomerAddress: `121 Market Street, New York, USA, 80122`, + Salesperson: `Ben Black`, + OrderID: 1343, + OrderDate: `5/25/2022`, + ProductID: 118, + ProductName: `Mac Book Pro`, + UnitPrice: 7060.29, + Quantity: 4, + ExtendedPrice: 28241.16, + Freight: 400.29, + Discontinued: false, + Region: `West`, + Address: `121 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80122 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `183 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 90122, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1331, + CustomerName: `Pamela Watson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Watson`, + CustomerAddress: `183 Wall Street, Miami, USA, 90122`, + Salesperson: `Pamela Smith`, + OrderID: 1876, + OrderDate: `2/8/2022`, + ProductID: 137, + ProductName: `Samsung Note`, + UnitPrice: 10140.84, + Quantity: 4, + ExtendedPrice: 40563.36, + Freight: 640.84, + Discontinued: false, + Region: `North East`, + Address: `183 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90122 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `105 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50068, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1332, + CustomerName: `Mike Jefferson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jefferson`, + CustomerAddress: `105 Main Street, Los Angeles, USA, 50068`, + Salesperson: `Ben Madison`, + OrderID: 1322, + OrderDate: `6/7/2022`, + ProductID: 148, + ProductName: `Mac Book Air`, + UnitPrice: 20150.45, + Quantity: 4, + ExtendedPrice: 80601.8, + Freight: 1190.45, + Discontinued: false, + Region: `North East`, + Address: `105 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50068 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Townhouse`, + ShipAddress: `199 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 70061, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1333, + CustomerName: `Martin Madison`, + CustomerFirstName: `Martin`, + CustomerLastName: `Madison`, + CustomerAddress: `199 Market Street, Huston, USA, 70061`, + Salesperson: `Max Smith`, + OrderID: 1046, + OrderDate: `2/3/2022`, + ProductID: 162, + ProductName: `IPhone`, + UnitPrice: 28480.38, + Quantity: 2, + ExtendedPrice: 56960.76, + Freight: 1180.38, + Discontinued: false, + Region: `West`, + Address: `199 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 70061 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `142 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 60058, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1334, + CustomerName: `Ben Madison`, + CustomerFirstName: `Ben`, + CustomerLastName: `Madison`, + CustomerAddress: `142 Wall Street, Huston, USA, 60058`, + Salesperson: `Mike Madison`, + OrderID: 1433, + OrderDate: `2/1/2022`, + ProductID: 177, + ProductName: `IPhone`, + UnitPrice: 6770.89, + Quantity: 5, + ExtendedPrice: 33854.45, + Freight: 520.89, + Discontinued: false, + Region: `South East`, + Address: `142 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 60058 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `140 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90131, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1335, + CustomerName: `Martin Jefferson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Jefferson`, + CustomerAddress: `140 Market Street, Los Angeles, USA, 90131`, + Salesperson: `Pamela Black`, + OrderID: 1894, + OrderDate: `9/13/2022`, + ProductID: 151, + ProductName: `IPad`, + UnitPrice: 5280.38, + Quantity: 5, + ExtendedPrice: 26401.9, + Freight: 1610.38, + Discontinued: false, + Region: `North East`, + Address: `140 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90131 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Home`, + ShipAddress: `106 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 60063, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1336, + CustomerName: `Ben Jefferson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jefferson`, + CustomerAddress: `106 Market Street, Miami, USA, 60063`, + Salesperson: `Anna Jackson`, + OrderID: 1017, + OrderDate: `6/12/2022`, + ProductID: 173, + ProductName: `Mac Book Pro`, + UnitPrice: 27000.78, + Quantity: 2, + ExtendedPrice: 54001.56, + Freight: 540.78, + Discontinued: false, + Region: `West`, + Address: `106 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60063 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `190 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 70115, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1337, + CustomerName: `Max Jefferson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jefferson`, + CustomerAddress: `190 Market Street, Huston, USA, 70115`, + Salesperson: `Martin Smith`, + OrderID: 1583, + OrderDate: `2/12/2022`, + ProductID: 147, + ProductName: `Samsung Note`, + UnitPrice: 7560.53, + Quantity: 2, + ExtendedPrice: 15121.06, + Freight: 260.53, + Discontinued: false, + Region: `South East`, + Address: `190 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 70115 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `129 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 70051, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1338, + CustomerName: `Nancy Smith`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Smith`, + CustomerAddress: `129 Market Street, Miami, USA, 70051`, + Salesperson: `Pamela Madison`, + OrderID: 1202, + OrderDate: `3/15/2022`, + ProductID: 136, + ProductName: `IPhone`, + UnitPrice: 20520.41, + Quantity: 2, + ExtendedPrice: 41040.82, + Freight: 550.41, + Discontinued: false, + Region: `North East`, + Address: `129 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 70051 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `143 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 70144, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1339, + CustomerName: `Martin Smith`, + CustomerFirstName: `Martin`, + CustomerLastName: `Smith`, + CustomerAddress: `143 Main Street, Miami, USA, 70144`, + Salesperson: `James Jefferson`, + OrderID: 1172, + OrderDate: `10/15/2022`, + ProductID: 136, + ProductName: `IPad`, + UnitPrice: 18760.26, + Quantity: 4, + ExtendedPrice: 75041.04, + Freight: 540.26, + Discontinued: true, + Region: `North East`, + Address: `143 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 70144 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `179 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 90174, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1340, + CustomerName: `Martin Smith`, + CustomerFirstName: `Martin`, + CustomerLastName: `Smith`, + CustomerAddress: `179 Market Street, New York, USA, 90174`, + Salesperson: `Martin Madison`, + OrderID: 1491, + OrderDate: `4/19/2022`, + ProductID: 176, + ProductName: `Mac Book Air`, + UnitPrice: 16000.56, + Quantity: 4, + ExtendedPrice: 64002.24, + Freight: 690.56, + Discontinued: false, + Region: `West`, + Address: `179 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90174 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `152 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90077, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1341, + CustomerName: `Mike Madison`, + CustomerFirstName: `Mike`, + CustomerLastName: `Madison`, + CustomerAddress: `152 Main Street, Philadelphia, USA, 90077`, + Salesperson: `James Black`, + OrderID: 1351, + OrderDate: `9/19/2022`, + ProductID: 147, + ProductName: `IPhone`, + UnitPrice: 19810.36, + Quantity: 4, + ExtendedPrice: 79241.44, + Freight: 920.36, + Discontinued: false, + Region: `West`, + Address: `152 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90077 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `170 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60097, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1342, + CustomerName: `Anna Jefferson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Jefferson`, + CustomerAddress: `170 Main Street, Los Angeles, USA, 60097`, + Salesperson: `Martin Black`, + OrderID: 1619, + OrderDate: `3/13/2022`, + ProductID: 166, + ProductName: `Mac Book Air`, + UnitPrice: 27140.88, + Quantity: 3, + ExtendedPrice: 81422.64, + Freight: 1480.88, + Discontinued: false, + Region: `North East`, + Address: `170 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60097 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Townhouse`, + ShipAddress: `198 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 90077, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1343, + CustomerName: `Martin Black`, + CustomerFirstName: `Martin`, + CustomerLastName: `Black`, + CustomerAddress: `198 Wall Street, New York, USA, 90077`, + Salesperson: `James Smith`, + OrderID: 1646, + OrderDate: `9/2/2022`, + ProductID: 122, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 6160.87, + Quantity: 3, + ExtendedPrice: 18482.61, + Freight: 1480.87, + Discontinued: false, + Region: `South East`, + Address: `198 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90077 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `193 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 60165, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1344, + CustomerName: `Ben Watson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Watson`, + CustomerAddress: `193 Wall Street, New York, USA, 60165`, + Salesperson: `Ben Madison`, + OrderID: 1516, + OrderDate: `4/20/2022`, + ProductID: 113, + ProductName: `IPhone`, + UnitPrice: 22310.25, + Quantity: 2, + ExtendedPrice: 44620.5, + Freight: 1740.25, + Discontinued: false, + Region: `North East`, + Address: `193 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 60165 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `108 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 90123, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1345, + CustomerName: `James Jackson`, + CustomerFirstName: `James`, + CustomerLastName: `Jackson`, + CustomerAddress: `108 Wall Street, New York, USA, 90123`, + Salesperson: `Mike Madison`, + OrderID: 1356, + OrderDate: `11/2/2022`, + ProductID: 105, + ProductName: `Mac Book Air`, + UnitPrice: 16240.78, + Quantity: 5, + ExtendedPrice: 81203.9, + Freight: 260.78, + Discontinued: false, + Region: `North East`, + Address: `108 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90123 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `173 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 60061, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1346, + CustomerName: `Max Black`, + CustomerFirstName: `Max`, + CustomerLastName: `Black`, + CustomerAddress: `173 Main Street, Miami, USA, 60061`, + Salesperson: `Mike Jefferson`, + OrderID: 1062, + OrderDate: `3/5/2022`, + ProductID: 101, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 25540.71, + Quantity: 5, + ExtendedPrice: 127703.55, + Freight: 2000.71, + Discontinued: false, + Region: `West`, + Address: `173 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60061 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `118 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60178, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1347, + CustomerName: `Nancy Black`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Black`, + CustomerAddress: `118 Wall Street, Los Angeles, USA, 60178`, + Salesperson: `Max Madison`, + OrderID: 1482, + OrderDate: `8/24/2022`, + ProductID: 105, + ProductName: `IPhone`, + UnitPrice: 17000.6, + Quantity: 4, + ExtendedPrice: 68002.4, + Freight: 1390.6, + Discontinued: false, + Region: `West`, + Address: `118 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60178 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `134 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 60096, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1348, + CustomerName: `Martin Jackson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Jackson`, + CustomerAddress: `134 Wall Street, New York, USA, 60096`, + Salesperson: `Ben Madison`, + OrderID: 1443, + OrderDate: `7/1/2022`, + ProductID: 105, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 12670.46, + Quantity: 2, + ExtendedPrice: 25340.92, + Freight: 1280.46, + Discontinued: false, + Region: `North East`, + Address: `134 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 60096 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `125 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50134, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1349, + CustomerName: `Ben Black`, + CustomerFirstName: `Ben`, + CustomerLastName: `Black`, + CustomerAddress: `125 Market Street, Philadelphia, USA, 50134`, + Salesperson: `Mike Watson`, + OrderID: 1498, + OrderDate: `1/17/2022`, + ProductID: 194, + ProductName: `IPhone`, + UnitPrice: 23470.22, + Quantity: 3, + ExtendedPrice: 70410.66, + Freight: 1370.22, + Discontinued: true, + Region: `South East`, + Address: `125 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50134 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `145 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80099, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1350, + CustomerName: `Mike Madison`, + CustomerFirstName: `Mike`, + CustomerLastName: `Madison`, + CustomerAddress: `145 Market Street, Philadelphia, USA, 80099`, + Salesperson: `Nancy Watson`, + OrderID: 1002, + OrderDate: `11/11/2022`, + ProductID: 116, + ProductName: `Mac Book Air`, + UnitPrice: 17060.57, + Quantity: 3, + ExtendedPrice: 51181.71, + Freight: 1800.57, + Discontinued: false, + Region: `West`, + Address: `145 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80099 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Home`, + ShipAddress: `130 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 70052, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1351, + CustomerName: `Ben Watson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Watson`, + CustomerAddress: `130 Market Street, Philadelphia, USA, 70052`, + Salesperson: `Pamela Watson`, + OrderID: 1144, + OrderDate: `10/15/2022`, + ProductID: 168, + ProductName: `IPhone`, + UnitPrice: 13010.35, + Quantity: 4, + ExtendedPrice: 52041.4, + Freight: 980.35, + Discontinued: false, + Region: `South East`, + Address: `130 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 70052 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `136 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 60165, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1352, + CustomerName: `Nancy Black`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Black`, + CustomerAddress: `136 Wall Street, Miami, USA, 60165`, + Salesperson: `Mike Black`, + OrderID: 1745, + OrderDate: `4/9/2022`, + ProductID: 119, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 7900.53, + Quantity: 4, + ExtendedPrice: 31602.12, + Freight: 1400.53, + Discontinued: false, + Region: `West`, + Address: `136 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60165 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Townhouse`, + ShipAddress: `190 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60176, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1353, + CustomerName: `Pamela Madison`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Madison`, + CustomerAddress: `190 Wall Street, Philadelphia, USA, 60176`, + Salesperson: `Martin Smith`, + OrderID: 1489, + OrderDate: `3/25/2022`, + ProductID: 113, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 23420.42, + Quantity: 4, + ExtendedPrice: 93681.68, + Freight: 1660.42, + Discontinued: false, + Region: `West`, + Address: `190 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60176 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `114 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 50060, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1354, + CustomerName: `Mike Jackson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jackson`, + CustomerAddress: `114 Main Street, Huston, USA, 50060`, + Salesperson: `Nancy Jackson`, + OrderID: 1302, + OrderDate: `3/21/2022`, + ProductID: 144, + ProductName: `Mac Book Pro`, + UnitPrice: 21240.71, + Quantity: 5, + ExtendedPrice: 106203.55, + Freight: 1000.71, + Discontinued: false, + Region: `North East`, + Address: `114 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50060 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `130 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 90062, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1355, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `130 Market Street, Huston, USA, 90062`, + Salesperson: `Ben Jackson`, + OrderID: 1901, + OrderDate: `11/5/2022`, + ProductID: 101, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 17170.52, + Quantity: 4, + ExtendedPrice: 68682.08, + Freight: 1600.52, + Discontinued: false, + Region: `South East`, + Address: `130 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90062 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `160 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50149, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1356, + CustomerName: `Nancy Watson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Watson`, + CustomerAddress: `160 Market Street, Philadelphia, USA, 50149`, + Salesperson: `Ben Watson`, + OrderID: 1331, + OrderDate: `2/5/2022`, + ProductID: 151, + ProductName: `Mac Book Pro`, + UnitPrice: 17650.73, + Quantity: 4, + ExtendedPrice: 70602.92, + Freight: 1720.73, + Discontinued: false, + Region: `South East`, + Address: `160 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50149 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Townhouse`, + ShipAddress: `130 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 50184, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1357, + CustomerName: `Anna Black`, + CustomerFirstName: `Anna`, + CustomerLastName: `Black`, + CustomerAddress: `130 Main Street, New York, USA, 50184`, + Salesperson: `Anna Watson`, + OrderID: 1161, + OrderDate: `5/18/2022`, + ProductID: 185, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 12920.84, + Quantity: 3, + ExtendedPrice: 38762.52, + Freight: 780.84, + Discontinued: false, + Region: `South East`, + Address: `130 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50184 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `120 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 90122, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1358, + CustomerName: `Ben Watson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Watson`, + CustomerAddress: `120 Wall Street, New York, USA, 90122`, + Salesperson: `Martin Madison`, + OrderID: 1211, + OrderDate: `11/13/2022`, + ProductID: 136, + ProductName: `IPad`, + UnitPrice: 21380.5, + Quantity: 4, + ExtendedPrice: 85522, + Freight: 1130.5, + Discontinued: false, + Region: `West`, + Address: `120 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90122 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Market`, + ShipAddress: `108 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 80106, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1359, + CustomerName: `Pamela Madison`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Madison`, + CustomerAddress: `108 Market Street, New York, USA, 80106`, + Salesperson: `Anna Watson`, + OrderID: 1010, + OrderDate: `3/15/2022`, + ProductID: 198, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 18060.46, + Quantity: 4, + ExtendedPrice: 72241.84, + Freight: 330.46, + Discontinued: true, + Region: `North East`, + Address: `108 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80106 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `114 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 70117, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1360, + CustomerName: `Nancy Black`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Black`, + CustomerAddress: `114 Market Street, Miami, USA, 70117`, + Salesperson: `James Smith`, + OrderID: 1001, + OrderDate: `2/24/2022`, + ProductID: 121, + ProductName: `Mac Book Pro`, + UnitPrice: 22020.55, + Quantity: 5, + ExtendedPrice: 110102.75, + Freight: 1970.55, + Discontinued: false, + Region: `West`, + Address: `114 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 70117 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Home`, + ShipAddress: `134 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50108, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1361, + CustomerName: `Nancy Jackson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jackson`, + CustomerAddress: `134 Main Street, Philadelphia, USA, 50108`, + Salesperson: `Max Jefferson`, + OrderID: 1871, + OrderDate: `3/1/2022`, + ProductID: 114, + ProductName: `Mac Book Air`, + UnitPrice: 13010.27, + Quantity: 5, + ExtendedPrice: 65051.35, + Freight: 1490.27, + Discontinued: false, + Region: `North East`, + Address: `134 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50108 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `138 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 90082, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1362, + CustomerName: `Mike Jefferson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jefferson`, + CustomerAddress: `138 Market Street, Huston, USA, 90082`, + Salesperson: `Ben Watson`, + OrderID: 1175, + OrderDate: `4/11/2022`, + ProductID: 159, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 17660.27, + Quantity: 5, + ExtendedPrice: 88301.35, + Freight: 1770.27, + Discontinued: false, + Region: `South East`, + Address: `138 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90082 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Market`, + ShipAddress: `131 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 90189, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1363, + CustomerName: `James Madison`, + CustomerFirstName: `James`, + CustomerLastName: `Madison`, + CustomerAddress: `131 Main Street, Miami, USA, 90189`, + Salesperson: `Nancy Madison`, + OrderID: 1072, + OrderDate: `2/14/2022`, + ProductID: 169, + ProductName: `Mac Book Air`, + UnitPrice: 24150.8, + Quantity: 4, + ExtendedPrice: 96603.2, + Freight: 1040.8, + Discontinued: false, + Region: `South East`, + Address: `131 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90189 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `133 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90077, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1364, + CustomerName: `Martin Watson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Watson`, + CustomerAddress: `133 Wall Street, Philadelphia, USA, 90077`, + Salesperson: `Pamela Jackson`, + OrderID: 1971, + OrderDate: `10/16/2022`, + ProductID: 108, + ProductName: `Samsung Note`, + UnitPrice: 18520.3, + Quantity: 2, + ExtendedPrice: 37040.6, + Freight: 300.3, + Discontinued: false, + Region: `North East`, + Address: `133 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90077 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Estate`, + ShipAddress: `128 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 90109, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1365, + CustomerName: `Pamela Smith`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Smith`, + CustomerAddress: `128 Market Street, Huston, USA, 90109`, + Salesperson: `Nancy Jackson`, + OrderID: 1024, + OrderDate: `12/21/2022`, + ProductID: 188, + ProductName: `Samsung Note`, + UnitPrice: 10040.29, + Quantity: 4, + ExtendedPrice: 40161.16, + Freight: 1900.29, + Discontinued: false, + Region: `South East`, + Address: `128 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90109 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `154 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80119, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1366, + CustomerName: `Nancy Black`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Black`, + CustomerAddress: `154 Market Street, Philadelphia, USA, 80119`, + Salesperson: `Nancy Jackson`, + OrderID: 1537, + OrderDate: `6/24/2022`, + ProductID: 161, + ProductName: `IPhone`, + UnitPrice: 20110.8, + Quantity: 5, + ExtendedPrice: 100554, + Freight: 1990.8, + Discontinued: false, + Region: `South East`, + Address: `154 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80119 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Townhouse`, + ShipAddress: `156 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 50128, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1367, + CustomerName: `Ben Madison`, + CustomerFirstName: `Ben`, + CustomerLastName: `Madison`, + CustomerAddress: `156 Main Street, Miami, USA, 50128`, + Salesperson: `Nancy Smith`, + OrderID: 1289, + OrderDate: `7/2/2022`, + ProductID: 125, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 18320.56, + Quantity: 3, + ExtendedPrice: 54961.68, + Freight: 890.56, + Discontinued: false, + Region: `South East`, + Address: `156 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 50128 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `130 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 60146, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1368, + CustomerName: `James Madison`, + CustomerFirstName: `James`, + CustomerLastName: `Madison`, + CustomerAddress: `130 Main Street, Miami, USA, 60146`, + Salesperson: `Nancy Jackson`, + OrderID: 1451, + OrderDate: `12/4/2022`, + ProductID: 140, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 6030.21, + Quantity: 4, + ExtendedPrice: 24120.84, + Freight: 1930.21, + Discontinued: false, + Region: `North East`, + Address: `130 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60146 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `159 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 70158, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1369, + CustomerName: `Nancy Watson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Watson`, + CustomerAddress: `159 Wall Street, New York, USA, 70158`, + Salesperson: `Max Jefferson`, + OrderID: 1056, + OrderDate: `1/10/2022`, + ProductID: 151, + ProductName: `Mac Book Pro`, + UnitPrice: 27710.33, + Quantity: 3, + ExtendedPrice: 83130.99, + Freight: 300.33, + Discontinued: true, + Region: `South East`, + Address: `159 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 70158 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Townhouse`, + ShipAddress: `189 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 90186, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1370, + CustomerName: `Pamela Smith`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Smith`, + CustomerAddress: `189 Wall Street, New York, USA, 90186`, + Salesperson: `Anna Jefferson`, + OrderID: 1611, + OrderDate: `9/14/2022`, + ProductID: 180, + ProductName: `IPhone`, + UnitPrice: 15940.65, + Quantity: 4, + ExtendedPrice: 63762.6, + Freight: 1210.65, + Discontinued: false, + Region: `North East`, + Address: `189 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90186 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `190 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50065, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1371, + CustomerName: `Mike Jefferson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jefferson`, + CustomerAddress: `190 Wall Street, Philadelphia, USA, 50065`, + Salesperson: `Martin Watson`, + OrderID: 1731, + OrderDate: `2/7/2022`, + ProductID: 103, + ProductName: `Mac Book Pro`, + UnitPrice: 21560.2, + Quantity: 4, + ExtendedPrice: 86240.8, + Freight: 1880.2, + Discontinued: false, + Region: `South East`, + Address: `190 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50065 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `127 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 80182, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1372, + CustomerName: `Pamela Smith`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Smith`, + CustomerAddress: `127 Market Street, Los Angeles, USA, 80182`, + Salesperson: `Ben Jefferson`, + OrderID: 1156, + OrderDate: `7/16/2022`, + ProductID: 132, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 15440.77, + Quantity: 5, + ExtendedPrice: 77203.85, + Freight: 1730.77, + Discontinued: false, + Region: `West`, + Address: `127 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 80182 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `150 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50154, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1373, + CustomerName: `Ben Madison`, + CustomerFirstName: `Ben`, + CustomerLastName: `Madison`, + CustomerAddress: `150 Market Street, Philadelphia, USA, 50154`, + Salesperson: `Max Jackson`, + OrderID: 1592, + OrderDate: `12/25/2022`, + ProductID: 109, + ProductName: `Mac Book Air`, + UnitPrice: 25510.57, + Quantity: 2, + ExtendedPrice: 51021.14, + Freight: 1350.57, + Discontinued: false, + Region: `North East`, + Address: `150 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50154 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Estate`, + ShipAddress: `163 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 50149, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1374, + CustomerName: `Max Jackson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jackson`, + CustomerAddress: `163 Market Street, Miami, USA, 50149`, + Salesperson: `James Smith`, + OrderID: 1504, + OrderDate: `10/7/2022`, + ProductID: 197, + ProductName: `Mac Book Pro`, + UnitPrice: 23590.87, + Quantity: 5, + ExtendedPrice: 117954.35, + Freight: 460.87, + Discontinued: false, + Region: `South East`, + Address: `163 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 50149 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Townhouse`, + ShipAddress: `114 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90131, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1375, + CustomerName: `Pamela Smith`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Smith`, + CustomerAddress: `114 Wall Street, Philadelphia, USA, 90131`, + Salesperson: `Nancy Jefferson`, + OrderID: 1121, + OrderDate: `11/25/2022`, + ProductID: 148, + ProductName: `Samsung Note`, + UnitPrice: 13030.29, + Quantity: 2, + ExtendedPrice: 26060.58, + Freight: 1140.29, + Discontinued: false, + Region: `South East`, + Address: `114 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90131 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Townhouse`, + ShipAddress: `167 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 50058, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1376, + CustomerName: `Nancy Black`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Black`, + CustomerAddress: `167 Market Street, Huston, USA, 50058`, + Salesperson: `Martin Black`, + OrderID: 1455, + OrderDate: `8/6/2022`, + ProductID: 196, + ProductName: `IPhone`, + UnitPrice: 13870.29, + Quantity: 5, + ExtendedPrice: 69351.45, + Freight: 1080.29, + Discontinued: false, + Region: `West`, + Address: `167 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50058 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `181 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 80062, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1377, + CustomerName: `Anna Jackson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Jackson`, + CustomerAddress: `181 Market Street, Los Angeles, USA, 80062`, + Salesperson: `Anna Black`, + OrderID: 1320, + OrderDate: `1/15/2022`, + ProductID: 109, + ProductName: `Mac Book Pro`, + UnitPrice: 10990.65, + Quantity: 3, + ExtendedPrice: 32971.95, + Freight: 310.65, + Discontinued: false, + Region: `North East`, + Address: `181 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 80062 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `113 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 80140, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1378, + CustomerName: `Pamela Jackson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jackson`, + CustomerAddress: `113 Wall Street, Miami, USA, 80140`, + Salesperson: `Anna Jackson`, + OrderID: 1936, + OrderDate: `12/2/2022`, + ProductID: 171, + ProductName: `IPhone`, + UnitPrice: 9550.78, + Quantity: 4, + ExtendedPrice: 38203.12, + Freight: 1380.78, + Discontinued: false, + Region: `South East`, + Address: `113 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 80140 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `188 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 80072, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1379, + CustomerName: `Anna Madison`, + CustomerFirstName: `Anna`, + CustomerLastName: `Madison`, + CustomerAddress: `188 Wall Street, Los Angeles, USA, 80072`, + Salesperson: `Nancy Watson`, + OrderID: 1767, + OrderDate: `10/23/2022`, + ProductID: 130, + ProductName: `IPhone`, + UnitPrice: 21500.21, + Quantity: 2, + ExtendedPrice: 43000.42, + Freight: 1680.21, + Discontinued: true, + Region: `South East`, + Address: `188 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 80072 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `177 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 80160, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1380, + CustomerName: `Anna Madison`, + CustomerFirstName: `Anna`, + CustomerLastName: `Madison`, + CustomerAddress: `177 Market Street, Huston, USA, 80160`, + Salesperson: `Max Jackson`, + OrderID: 1118, + OrderDate: `6/2/2022`, + ProductID: 111, + ProductName: `Mac Book Air`, + UnitPrice: 20100.73, + Quantity: 4, + ExtendedPrice: 80402.92, + Freight: 540.73, + Discontinued: false, + Region: `West`, + Address: `177 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80160 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `139 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 80074, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1381, + CustomerName: `Mike Jefferson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jefferson`, + CustomerAddress: `139 Wall Street, Miami, USA, 80074`, + Salesperson: `Nancy Madison`, + OrderID: 1269, + OrderDate: `6/12/2022`, + ProductID: 192, + ProductName: `Mac Book Air`, + UnitPrice: 17200.34, + Quantity: 4, + ExtendedPrice: 68801.36, + Freight: 1280.34, + Discontinued: false, + Region: `North East`, + Address: `139 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 80074 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `115 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90081, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1382, + CustomerName: `Pamela Madison`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Madison`, + CustomerAddress: `115 Wall Street, Los Angeles, USA, 90081`, + Salesperson: `James Jackson`, + OrderID: 1587, + OrderDate: `4/9/2022`, + ProductID: 187, + ProductName: `Samsung Note`, + UnitPrice: 24670.86, + Quantity: 2, + ExtendedPrice: 49341.72, + Freight: 1360.86, + Discontinued: false, + Region: `North East`, + Address: `115 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90081 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `130 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 50175, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1383, + CustomerName: `Anna Jefferson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Jefferson`, + CustomerAddress: `130 Wall Street, Miami, USA, 50175`, + Salesperson: `Mike Smith`, + OrderID: 1632, + OrderDate: `3/3/2022`, + ProductID: 197, + ProductName: `IPad`, + UnitPrice: 9780.24, + Quantity: 3, + ExtendedPrice: 29340.72, + Freight: 1420.24, + Discontinued: false, + Region: `West`, + Address: `130 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 50175 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `110 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90171, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1384, + CustomerName: `Max Black`, + CustomerFirstName: `Max`, + CustomerLastName: `Black`, + CustomerAddress: `110 Main Street, Philadelphia, USA, 90171`, + Salesperson: `Max Jefferson`, + OrderID: 1400, + OrderDate: `6/24/2022`, + ProductID: 123, + ProductName: `IPhone`, + UnitPrice: 12010.77, + Quantity: 2, + ExtendedPrice: 24021.54, + Freight: 560.77, + Discontinued: false, + Region: `North East`, + Address: `110 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90171 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `111 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 80086, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1385, + CustomerName: `Mike Black`, + CustomerFirstName: `Mike`, + CustomerLastName: `Black`, + CustomerAddress: `111 Market Street, Huston, USA, 80086`, + Salesperson: `Ben Watson`, + OrderID: 1040, + OrderDate: `8/25/2022`, + ProductID: 192, + ProductName: `Samsung Note`, + UnitPrice: 27920.64, + Quantity: 5, + ExtendedPrice: 139603.2, + Freight: 250.64, + Discontinued: false, + Region: `South East`, + Address: `111 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80086 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Townhouse`, + ShipAddress: `132 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 60121, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1386, + CustomerName: `Mike Black`, + CustomerFirstName: `Mike`, + CustomerLastName: `Black`, + CustomerAddress: `132 Wall Street, Huston, USA, 60121`, + Salesperson: `Anna Watson`, + OrderID: 1445, + OrderDate: `6/12/2022`, + ProductID: 139, + ProductName: `IPhone`, + UnitPrice: 17460.46, + Quantity: 3, + ExtendedPrice: 52381.38, + Freight: 1060.46, + Discontinued: false, + Region: `South East`, + Address: `132 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 60121 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Townhouse`, + ShipAddress: `150 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60127, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1387, + CustomerName: `Ben Smith`, + CustomerFirstName: `Ben`, + CustomerLastName: `Smith`, + CustomerAddress: `150 Main Street, Philadelphia, USA, 60127`, + Salesperson: `Max Smith`, + OrderID: 1803, + OrderDate: `4/15/2022`, + ProductID: 172, + ProductName: `Mac Book Air`, + UnitPrice: 17820.62, + Quantity: 4, + ExtendedPrice: 71282.48, + Freight: 1150.62, + Discontinued: false, + Region: `West`, + Address: `150 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60127 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `173 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50160, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1388, + CustomerName: `Anna Watson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Watson`, + CustomerAddress: `173 Market Street, Philadelphia, USA, 50160`, + Salesperson: `Nancy Jefferson`, + OrderID: 1719, + OrderDate: `4/23/2022`, + ProductID: 134, + ProductName: `IPhone`, + UnitPrice: 22780.47, + Quantity: 3, + ExtendedPrice: 68341.41, + Freight: 500.47, + Discontinued: false, + Region: `West`, + Address: `173 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50160 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `120 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60064, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1389, + CustomerName: `Max Jefferson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jefferson`, + CustomerAddress: `120 Wall Street, Philadelphia, USA, 60064`, + Salesperson: `Martin Jefferson`, + OrderID: 1706, + OrderDate: `5/15/2022`, + ProductID: 151, + ProductName: `Samsung Note`, + UnitPrice: 16430.61, + Quantity: 3, + ExtendedPrice: 49291.83, + Freight: 1650.61, + Discontinued: true, + Region: `West`, + Address: `120 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60064 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `109 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 70200, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1390, + CustomerName: `Ben Jackson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jackson`, + CustomerAddress: `109 Main Street, Huston, USA, 70200`, + Salesperson: `James Watson`, + OrderID: 1318, + OrderDate: `6/10/2022`, + ProductID: 163, + ProductName: `IPad`, + UnitPrice: 26710.76, + Quantity: 4, + ExtendedPrice: 106843.04, + Freight: 330.76, + Discontinued: false, + Region: `South East`, + Address: `109 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 70200 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Townhouse`, + ShipAddress: `161 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 60159, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1391, + CustomerName: `Mike Madison`, + CustomerFirstName: `Mike`, + CustomerLastName: `Madison`, + CustomerAddress: `161 Main Street, Huston, USA, 60159`, + Salesperson: `Ben Smith`, + OrderID: 1322, + OrderDate: `6/3/2022`, + ProductID: 170, + ProductName: `IPad`, + UnitPrice: 18660.7, + Quantity: 4, + ExtendedPrice: 74642.8, + Freight: 1480.7, + Discontinued: false, + Region: `North East`, + Address: `161 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 60159 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `194 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60148, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1392, + CustomerName: `Ben Watson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Watson`, + CustomerAddress: `194 Main Street, Los Angeles, USA, 60148`, + Salesperson: `Pamela Black`, + OrderID: 1664, + OrderDate: `9/11/2022`, + ProductID: 131, + ProductName: `Mac Book Pro`, + UnitPrice: 16990.84, + Quantity: 5, + ExtendedPrice: 84954.2, + Freight: 1870.84, + Discontinued: false, + Region: `West`, + Address: `194 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60148 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `191 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60148, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1393, + CustomerName: `James Jefferson`, + CustomerFirstName: `James`, + CustomerLastName: `Jefferson`, + CustomerAddress: `191 Main Street, Los Angeles, USA, 60148`, + Salesperson: `Martin Jackson`, + OrderID: 1995, + OrderDate: `7/3/2022`, + ProductID: 107, + ProductName: `Mac Book Pro`, + UnitPrice: 18490.66, + Quantity: 2, + ExtendedPrice: 36981.32, + Freight: 690.66, + Discontinued: false, + Region: `West`, + Address: `191 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60148 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `129 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80148, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1394, + CustomerName: `Martin Jefferson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Jefferson`, + CustomerAddress: `129 Wall Street, Philadelphia, USA, 80148`, + Salesperson: `Ben Jefferson`, + OrderID: 1344, + OrderDate: `10/13/2022`, + ProductID: 168, + ProductName: `IPhone`, + UnitPrice: 5870.82, + Quantity: 5, + ExtendedPrice: 29354.1, + Freight: 400.82, + Discontinued: false, + Region: `West`, + Address: `129 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80148 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `148 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 70084, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1395, + CustomerName: `Anna Jefferson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Jefferson`, + CustomerAddress: `148 Market Street, Philadelphia, USA, 70084`, + Salesperson: `Martin Smith`, + OrderID: 1602, + OrderDate: `3/2/2022`, + ProductID: 153, + ProductName: `Samsung Note`, + UnitPrice: 8490.68, + Quantity: 3, + ExtendedPrice: 25472.04, + Freight: 1650.68, + Discontinued: false, + Region: `North East`, + Address: `148 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 70084 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `152 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 90101, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1396, + CustomerName: `Max Black`, + CustomerFirstName: `Max`, + CustomerLastName: `Black`, + CustomerAddress: `152 Wall Street, Miami, USA, 90101`, + Salesperson: `Ben Black`, + OrderID: 1059, + OrderDate: `4/12/2022`, + ProductID: 164, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 12460.5, + Quantity: 3, + ExtendedPrice: 37381.5, + Freight: 280.5, + Discontinued: false, + Region: `North East`, + Address: `152 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90101 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Estate`, + ShipAddress: `147 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50200, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1397, + CustomerName: `Nancy Jackson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jackson`, + CustomerAddress: `147 Market Street, Philadelphia, USA, 50200`, + Salesperson: `Nancy Watson`, + OrderID: 1159, + OrderDate: `5/12/2022`, + ProductID: 136, + ProductName: `IPhone`, + UnitPrice: 20790.46, + Quantity: 4, + ExtendedPrice: 83161.84, + Freight: 780.46, + Discontinued: false, + Region: `North East`, + Address: `147 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50200 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Estate`, + ShipAddress: `106 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 60064, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1398, + CustomerName: `Max Jackson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jackson`, + CustomerAddress: `106 Main Street, Miami, USA, 60064`, + Salesperson: `Nancy Watson`, + OrderID: 1646, + OrderDate: `2/13/2022`, + ProductID: 143, + ProductName: `IPad`, + UnitPrice: 19180.29, + Quantity: 4, + ExtendedPrice: 76721.16, + Freight: 1760.29, + Discontinued: false, + Region: `North East`, + Address: `106 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60064 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `112 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 90118, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1399, + CustomerName: `Nancy Black`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Black`, + CustomerAddress: `112 Main Street, Miami, USA, 90118`, + Salesperson: `Martin Black`, + OrderID: 1205, + OrderDate: `9/24/2022`, + ProductID: 109, + ProductName: `IPad`, + UnitPrice: 25950.86, + Quantity: 4, + ExtendedPrice: 103803.44, + Freight: 1780.86, + Discontinued: true, + Region: `North East`, + Address: `112 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90118 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `135 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 80177, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1400, + CustomerName: `Mike Watson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Watson`, + CustomerAddress: `135 Main Street, Huston, USA, 80177`, + Salesperson: `Max Madison`, + OrderID: 1619, + OrderDate: `7/15/2022`, + ProductID: 174, + ProductName: `Mac Book Pro`, + UnitPrice: 24890.31, + Quantity: 2, + ExtendedPrice: 49780.62, + Freight: 1540.31, + Discontinued: false, + Region: `West`, + Address: `135 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80177 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `156 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 70110, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1401, + CustomerName: `Max Smith`, + CustomerFirstName: `Max`, + CustomerLastName: `Smith`, + CustomerAddress: `156 Main Street, Miami, USA, 70110`, + Salesperson: `Anna Watson`, + OrderID: 1160, + OrderDate: `10/21/2022`, + ProductID: 127, + ProductName: `IPad`, + UnitPrice: 18400.21, + Quantity: 3, + ExtendedPrice: 55200.63, + Freight: 580.21, + Discontinued: false, + Region: `South East`, + Address: `156 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 70110 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Home`, + ShipAddress: `124 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90077, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1402, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `124 Wall Street, Los Angeles, USA, 90077`, + Salesperson: `Ben Jefferson`, + OrderID: 1017, + OrderDate: `7/21/2022`, + ProductID: 160, + ProductName: `Samsung Note`, + UnitPrice: 15430.8, + Quantity: 5, + ExtendedPrice: 77154, + Freight: 1660.8, + Discontinued: false, + Region: `North East`, + Address: `124 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90077 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Townhouse`, + ShipAddress: `144 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 50110, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1403, + CustomerName: `Anna Black`, + CustomerFirstName: `Anna`, + CustomerLastName: `Black`, + CustomerAddress: `144 Market Street, New York, USA, 50110`, + Salesperson: `James Jefferson`, + OrderID: 1990, + OrderDate: `5/17/2022`, + ProductID: 112, + ProductName: `IPhone`, + UnitPrice: 20040.37, + Quantity: 3, + ExtendedPrice: 60121.11, + Freight: 1710.37, + Discontinued: false, + Region: `South East`, + Address: `144 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50110 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `105 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 80117, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1404, + CustomerName: `James Smith`, + CustomerFirstName: `James`, + CustomerLastName: `Smith`, + CustomerAddress: `105 Main Street, Miami, USA, 80117`, + Salesperson: `Max Watson`, + OrderID: 1002, + OrderDate: `10/25/2022`, + ProductID: 119, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 28760.88, + Quantity: 5, + ExtendedPrice: 143804.4, + Freight: 1220.88, + Discontinued: false, + Region: `West`, + Address: `105 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 80117 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `142 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90124, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1405, + CustomerName: `Anna Madison`, + CustomerFirstName: `Anna`, + CustomerLastName: `Madison`, + CustomerAddress: `142 Main Street, Los Angeles, USA, 90124`, + Salesperson: `James Madison`, + OrderID: 1433, + OrderDate: `7/22/2022`, + ProductID: 158, + ProductName: `Mac Book Pro`, + UnitPrice: 17750.64, + Quantity: 5, + ExtendedPrice: 88753.2, + Freight: 1300.64, + Discontinued: false, + Region: `West`, + Address: `142 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90124 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `141 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 50115, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1406, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `141 Market Street, Huston, USA, 50115`, + Salesperson: `Anna Watson`, + OrderID: 1195, + OrderDate: `8/12/2022`, + ProductID: 124, + ProductName: `Mac Book Pro`, + UnitPrice: 22040.48, + Quantity: 2, + ExtendedPrice: 44080.96, + Freight: 1260.48, + Discontinued: false, + Region: `North East`, + Address: `141 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50115 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `145 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 70160, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1407, + CustomerName: `Mike Jefferson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jefferson`, + CustomerAddress: `145 Main Street, Los Angeles, USA, 70160`, + Salesperson: `Max Watson`, + OrderID: 1486, + OrderDate: `1/13/2022`, + ProductID: 103, + ProductName: `Mac Book Air`, + UnitPrice: 29480.67, + Quantity: 3, + ExtendedPrice: 88442.01, + Freight: 1810.67, + Discontinued: false, + Region: `North East`, + Address: `145 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 70160 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `106 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 80149, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1408, + CustomerName: `Ben Black`, + CustomerFirstName: `Ben`, + CustomerLastName: `Black`, + CustomerAddress: `106 Main Street, Los Angeles, USA, 80149`, + Salesperson: `James Smith`, + OrderID: 1646, + OrderDate: `9/4/2022`, + ProductID: 191, + ProductName: `Mac Book Pro`, + UnitPrice: 5890.71, + Quantity: 5, + ExtendedPrice: 29453.55, + Freight: 670.71, + Discontinued: false, + Region: `North East`, + Address: `106 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 80149 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `171 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60182, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1409, + CustomerName: `Anna Madison`, + CustomerFirstName: `Anna`, + CustomerLastName: `Madison`, + CustomerAddress: `171 Market Street, Los Angeles, USA, 60182`, + Salesperson: `James Smith`, + OrderID: 1839, + OrderDate: `12/12/2022`, + ProductID: 120, + ProductName: `IPhone`, + UnitPrice: 17510.64, + Quantity: 5, + ExtendedPrice: 87553.2, + Freight: 1150.64, + Discontinued: true, + Region: `West`, + Address: `171 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60182 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Home`, + ShipAddress: `195 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60122, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1410, + CustomerName: `Ben Jefferson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jefferson`, + CustomerAddress: `195 Market Street, Los Angeles, USA, 60122`, + Salesperson: `Martin Madison`, + OrderID: 1925, + OrderDate: `1/22/2022`, + ProductID: 164, + ProductName: `Mac Book Pro`, + UnitPrice: 12920.58, + Quantity: 2, + ExtendedPrice: 25841.16, + Freight: 690.58, + Discontinued: false, + Region: `West`, + Address: `195 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60122 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `137 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 70152, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1411, + CustomerName: `James Black`, + CustomerFirstName: `James`, + CustomerLastName: `Black`, + CustomerAddress: `137 Wall Street, Miami, USA, 70152`, + Salesperson: `Anna Jackson`, + OrderID: 1055, + OrderDate: `12/9/2022`, + ProductID: 198, + ProductName: `IPad`, + UnitPrice: 9640.43, + Quantity: 4, + ExtendedPrice: 38561.72, + Freight: 1930.43, + Discontinued: false, + Region: `North East`, + Address: `137 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 70152 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Estate`, + ShipAddress: `129 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 50177, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1412, + CustomerName: `Anna Smith`, + CustomerFirstName: `Anna`, + CustomerLastName: `Smith`, + CustomerAddress: `129 Wall Street, Miami, USA, 50177`, + Salesperson: `Martin Smith`, + OrderID: 1845, + OrderDate: `10/21/2022`, + ProductID: 142, + ProductName: `IPad`, + UnitPrice: 16040.31, + Quantity: 3, + ExtendedPrice: 48120.93, + Freight: 1050.31, + Discontinued: false, + Region: `West`, + Address: `129 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 50177 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `174 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 90080, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1413, + CustomerName: `Mike Black`, + CustomerFirstName: `Mike`, + CustomerLastName: `Black`, + CustomerAddress: `174 Main Street, Huston, USA, 90080`, + Salesperson: `Nancy Jefferson`, + OrderID: 1560, + OrderDate: `6/23/2022`, + ProductID: 110, + ProductName: `Mac Book Pro`, + UnitPrice: 25850.87, + Quantity: 4, + ExtendedPrice: 103403.48, + Freight: 940.87, + Discontinued: false, + Region: `West`, + Address: `174 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90080 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `139 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 60178, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1414, + CustomerName: `Nancy Jackson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jackson`, + CustomerAddress: `139 Market Street, New York, USA, 60178`, + Salesperson: `Pamela Jefferson`, + OrderID: 1102, + OrderDate: `2/18/2022`, + ProductID: 154, + ProductName: `Mac Book Air`, + UnitPrice: 13210.48, + Quantity: 4, + ExtendedPrice: 52841.92, + Freight: 960.48, + Discontinued: false, + Region: `South East`, + Address: `139 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 60178 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `127 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60192, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1415, + CustomerName: `Max Madison`, + CustomerFirstName: `Max`, + CustomerLastName: `Madison`, + CustomerAddress: `127 Wall Street, Los Angeles, USA, 60192`, + Salesperson: `Ben Smith`, + OrderID: 1570, + OrderDate: `5/19/2022`, + ProductID: 105, + ProductName: `Samsung Note`, + UnitPrice: 24890.59, + Quantity: 5, + ExtendedPrice: 124452.95, + Freight: 1860.59, + Discontinued: false, + Region: `West`, + Address: `127 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60192 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `186 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90145, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1416, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `186 Market Street, Philadelphia, USA, 90145`, + Salesperson: `Mike Jefferson`, + OrderID: 1872, + OrderDate: `11/18/2022`, + ProductID: 165, + ProductName: `IPhone`, + UnitPrice: 19720.85, + Quantity: 2, + ExtendedPrice: 39441.7, + Freight: 690.85, + Discontinued: false, + Region: `South East`, + Address: `186 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90145 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Estate`, + ShipAddress: `198 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 70160, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1417, + CustomerName: `Anna Jackson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Jackson`, + CustomerAddress: `198 Main Street, Philadelphia, USA, 70160`, + Salesperson: `Martin Madison`, + OrderID: 1155, + OrderDate: `11/1/2022`, + ProductID: 138, + ProductName: `IPhone`, + UnitPrice: 12260.46, + Quantity: 2, + ExtendedPrice: 24520.92, + Freight: 1680.46, + Discontinued: false, + Region: `West`, + Address: `198 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 70160 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `110 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 80119, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1418, + CustomerName: `Ben Jefferson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jefferson`, + CustomerAddress: `110 Main Street, New York, USA, 80119`, + Salesperson: `Anna Black`, + OrderID: 1600, + OrderDate: `8/12/2022`, + ProductID: 118, + ProductName: `Mac Book Air`, + UnitPrice: 9840.45, + Quantity: 4, + ExtendedPrice: 39361.8, + Freight: 1410.45, + Discontinued: false, + Region: `South East`, + Address: `110 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80119 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Market`, + ShipAddress: `187 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50082, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1419, + CustomerName: `Ben Madison`, + CustomerFirstName: `Ben`, + CustomerLastName: `Madison`, + CustomerAddress: `187 Main Street, Los Angeles, USA, 50082`, + Salesperson: `Pamela Watson`, + OrderID: 1451, + OrderDate: `12/10/2022`, + ProductID: 144, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 25180.7, + Quantity: 2, + ExtendedPrice: 50361.4, + Freight: 560.7, + Discontinued: true, + Region: `North East`, + Address: `187 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50082 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `121 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 60178, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1420, + CustomerName: `Mike Jackson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jackson`, + CustomerAddress: `121 Main Street, Miami, USA, 60178`, + Salesperson: `Ben Jackson`, + OrderID: 1294, + OrderDate: `2/18/2022`, + ProductID: 168, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 18670.31, + Quantity: 5, + ExtendedPrice: 93351.55, + Freight: 1410.31, + Discontinued: false, + Region: `West`, + Address: `121 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60178 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `185 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 50177, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1421, + CustomerName: `Anna Smith`, + CustomerFirstName: `Anna`, + CustomerLastName: `Smith`, + CustomerAddress: `185 Wall Street, New York, USA, 50177`, + Salesperson: `James Watson`, + OrderID: 1095, + OrderDate: `6/16/2022`, + ProductID: 182, + ProductName: `Samsung Note`, + UnitPrice: 10450.44, + Quantity: 5, + ExtendedPrice: 52252.2, + Freight: 1030.44, + Discontinued: false, + Region: `West`, + Address: `185 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50177 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `177 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 90081, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1422, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `177 Market Street, New York, USA, 90081`, + Salesperson: `Pamela Smith`, + OrderID: 1333, + OrderDate: `5/21/2022`, + ProductID: 159, + ProductName: `Mac Book Air`, + UnitPrice: 23900.49, + Quantity: 5, + ExtendedPrice: 119502.45, + Freight: 1700.49, + Discontinued: false, + Region: `South East`, + Address: `177 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90081 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Home`, + ShipAddress: `106 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 70099, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1423, + CustomerName: `Anna Watson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Watson`, + CustomerAddress: `106 Market Street, Miami, USA, 70099`, + Salesperson: `Pamela Jackson`, + OrderID: 1147, + OrderDate: `6/13/2022`, + ProductID: 174, + ProductName: `Mac Book Pro`, + UnitPrice: 29460.63, + Quantity: 2, + ExtendedPrice: 58921.26, + Freight: 1280.63, + Discontinued: false, + Region: `North East`, + Address: `106 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 70099 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Townhouse`, + ShipAddress: `179 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80150, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1424, + CustomerName: `Martin Madison`, + CustomerFirstName: `Martin`, + CustomerLastName: `Madison`, + CustomerAddress: `179 Main Street, Philadelphia, USA, 80150`, + Salesperson: `James Jefferson`, + OrderID: 1595, + OrderDate: `7/19/2022`, + ProductID: 183, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 19060.64, + Quantity: 5, + ExtendedPrice: 95303.2, + Freight: 980.64, + Discontinued: false, + Region: `North East`, + Address: `179 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80150 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Home`, + ShipAddress: `142 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 90100, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1425, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `142 Main Street, Huston, USA, 90100`, + Salesperson: `Martin Black`, + OrderID: 1061, + OrderDate: `4/4/2022`, + ProductID: 118, + ProductName: `IPad`, + UnitPrice: 17400.83, + Quantity: 2, + ExtendedPrice: 34801.66, + Freight: 370.83, + Discontinued: false, + Region: `North East`, + Address: `142 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90100 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `189 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90144, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1426, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `189 Main Street, Philadelphia, USA, 90144`, + Salesperson: `Martin Smith`, + OrderID: 1114, + OrderDate: `2/13/2022`, + ProductID: 146, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 16860.57, + Quantity: 5, + ExtendedPrice: 84302.85, + Freight: 1050.57, + Discontinued: false, + Region: `North East`, + Address: `189 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90144 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `130 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 90175, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1427, + CustomerName: `Pamela Madison`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Madison`, + CustomerAddress: `130 Wall Street, New York, USA, 90175`, + Salesperson: `Nancy Black`, + OrderID: 1716, + OrderDate: `11/6/2022`, + ProductID: 157, + ProductName: `IPad`, + UnitPrice: 19570.85, + Quantity: 3, + ExtendedPrice: 58712.55, + Freight: 1620.85, + Discontinued: false, + Region: `North East`, + Address: `130 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90175 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Market`, + ShipAddress: `144 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80153, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1428, + CustomerName: `Anna Smith`, + CustomerFirstName: `Anna`, + CustomerLastName: `Smith`, + CustomerAddress: `144 Market Street, Philadelphia, USA, 80153`, + Salesperson: `Mike Smith`, + OrderID: 1523, + OrderDate: `8/5/2022`, + ProductID: 139, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 5100.26, + Quantity: 3, + ExtendedPrice: 15300.78, + Freight: 1630.26, + Discontinued: false, + Region: `North East`, + Address: `144 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80153 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `175 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 50150, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1429, + CustomerName: `James Smith`, + CustomerFirstName: `James`, + CustomerLastName: `Smith`, + CustomerAddress: `175 Wall Street, New York, USA, 50150`, + Salesperson: `James Jefferson`, + OrderID: 1027, + OrderDate: `12/7/2022`, + ProductID: 151, + ProductName: `IPad`, + UnitPrice: 18940.75, + Quantity: 4, + ExtendedPrice: 75763, + Freight: 1130.75, + Discontinued: true, + Region: `North East`, + Address: `175 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50150 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `152 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 70091, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1430, + CustomerName: `Max Smith`, + CustomerFirstName: `Max`, + CustomerLastName: `Smith`, + CustomerAddress: `152 Wall Street, New York, USA, 70091`, + Salesperson: `Ben Smith`, + OrderID: 1626, + OrderDate: `1/1/2022`, + ProductID: 145, + ProductName: `IPhone`, + UnitPrice: 29800.74, + Quantity: 4, + ExtendedPrice: 119202.96, + Freight: 1440.74, + Discontinued: false, + Region: `West`, + Address: `152 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 70091 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `127 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 90099, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1431, + CustomerName: `Martin Jackson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Jackson`, + CustomerAddress: `127 Main Street, Miami, USA, 90099`, + Salesperson: `Anna Smith`, + OrderID: 1789, + OrderDate: `10/15/2022`, + ProductID: 139, + ProductName: `Mac Book Air`, + UnitPrice: 16220.23, + Quantity: 2, + ExtendedPrice: 32440.46, + Freight: 1170.23, + Discontinued: false, + Region: `West`, + Address: `127 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90099 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Home`, + ShipAddress: `157 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 70162, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1432, + CustomerName: `Mike Jefferson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jefferson`, + CustomerAddress: `157 Wall Street, Huston, USA, 70162`, + Salesperson: `Martin Madison`, + OrderID: 1622, + OrderDate: `6/6/2022`, + ProductID: 133, + ProductName: `Samsung Note`, + UnitPrice: 7410.73, + Quantity: 4, + ExtendedPrice: 29642.92, + Freight: 1660.73, + Discontinued: false, + Region: `South East`, + Address: `157 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 70162 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `159 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 50198, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1433, + CustomerName: `Mike Smith`, + CustomerFirstName: `Mike`, + CustomerLastName: `Smith`, + CustomerAddress: `159 Market Street, New York, USA, 50198`, + Salesperson: `Mike Smith`, + OrderID: 1961, + OrderDate: `9/7/2022`, + ProductID: 120, + ProductName: `Mac Book Pro`, + UnitPrice: 9150.59, + Quantity: 3, + ExtendedPrice: 27451.77, + Freight: 550.59, + Discontinued: false, + Region: `South East`, + Address: `159 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50198 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Estate`, + ShipAddress: `109 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60160, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1434, + CustomerName: `Ben Jackson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jackson`, + CustomerAddress: `109 Market Street, Philadelphia, USA, 60160`, + Salesperson: `Mike Madison`, + OrderID: 1868, + OrderDate: `2/5/2022`, + ProductID: 131, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 20400.46, + Quantity: 2, + ExtendedPrice: 40800.92, + Freight: 1640.46, + Discontinued: false, + Region: `South East`, + Address: `109 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60160 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `138 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80164, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1435, + CustomerName: `Max Madison`, + CustomerFirstName: `Max`, + CustomerLastName: `Madison`, + CustomerAddress: `138 Wall Street, Philadelphia, USA, 80164`, + Salesperson: `Mike Smith`, + OrderID: 1223, + OrderDate: `7/4/2022`, + ProductID: 199, + ProductName: `Samsung Note`, + UnitPrice: 23980.42, + Quantity: 5, + ExtendedPrice: 119902.1, + Freight: 410.42, + Discontinued: false, + Region: `West`, + Address: `138 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80164 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `164 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 90183, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1436, + CustomerName: `Pamela Jackson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jackson`, + CustomerAddress: `164 Main Street, New York, USA, 90183`, + Salesperson: `James Watson`, + OrderID: 1766, + OrderDate: `7/14/2022`, + ProductID: 160, + ProductName: `Samsung Note`, + UnitPrice: 12280.79, + Quantity: 2, + ExtendedPrice: 24561.58, + Freight: 1140.79, + Discontinued: false, + Region: `West`, + Address: `164 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 90183 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `187 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 80053, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1437, + CustomerName: `Nancy Jefferson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jefferson`, + CustomerAddress: `187 Main Street, New York, USA, 80053`, + Salesperson: `Martin Watson`, + OrderID: 1602, + OrderDate: `12/25/2022`, + ProductID: 112, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 14860.39, + Quantity: 5, + ExtendedPrice: 74301.95, + Freight: 1920.39, + Discontinued: false, + Region: `West`, + Address: `187 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80053 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `197 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 50076, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1438, + CustomerName: `Max Black`, + CustomerFirstName: `Max`, + CustomerLastName: `Black`, + CustomerAddress: `197 Wall Street, Miami, USA, 50076`, + Salesperson: `James Jefferson`, + OrderID: 1281, + OrderDate: `3/18/2022`, + ProductID: 102, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 11120.87, + Quantity: 2, + ExtendedPrice: 22241.74, + Freight: 720.87, + Discontinued: false, + Region: `North East`, + Address: `197 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 50076 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `127 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90067, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1439, + CustomerName: `James Watson`, + CustomerFirstName: `James`, + CustomerLastName: `Watson`, + CustomerAddress: `127 Market Street, Los Angeles, USA, 90067`, + Salesperson: `James Madison`, + OrderID: 1736, + OrderDate: `2/4/2022`, + ProductID: 172, + ProductName: `IPad`, + UnitPrice: 20090.62, + Quantity: 4, + ExtendedPrice: 80362.48, + Freight: 630.62, + Discontinued: true, + Region: `West`, + Address: `127 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90067 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `150 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90161, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1440, + CustomerName: `Max Black`, + CustomerFirstName: `Max`, + CustomerLastName: `Black`, + CustomerAddress: `150 Market Street, Philadelphia, USA, 90161`, + Salesperson: `Anna Watson`, + OrderID: 1683, + OrderDate: `5/15/2022`, + ProductID: 192, + ProductName: `Mac Book Air`, + UnitPrice: 7270.76, + Quantity: 3, + ExtendedPrice: 21812.28, + Freight: 1880.76, + Discontinued: false, + Region: `West`, + Address: `150 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90161 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `128 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 70131, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1441, + CustomerName: `Pamela Watson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Watson`, + CustomerAddress: `128 Market Street, Huston, USA, 70131`, + Salesperson: `Ben Smith`, + OrderID: 1652, + OrderDate: `11/16/2022`, + ProductID: 107, + ProductName: `Samsung Note`, + UnitPrice: 23290.38, + Quantity: 2, + ExtendedPrice: 46580.76, + Freight: 400.38, + Discontinued: false, + Region: `West`, + Address: `128 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 70131 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Home`, + ShipAddress: `151 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 70185, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1442, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `151 Wall Street, Miami, USA, 70185`, + Salesperson: `Nancy Black`, + OrderID: 1385, + OrderDate: `6/12/2022`, + ProductID: 110, + ProductName: `Mac Book Pro`, + UnitPrice: 14390.77, + Quantity: 2, + ExtendedPrice: 28781.54, + Freight: 1600.77, + Discontinued: false, + Region: `West`, + Address: `151 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 70185 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `183 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 60080, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1443, + CustomerName: `Pamela Madison`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Madison`, + CustomerAddress: `183 Wall Street, New York, USA, 60080`, + Salesperson: `Mike Madison`, + OrderID: 1158, + OrderDate: `3/11/2022`, + ProductID: 172, + ProductName: `Samsung Note`, + UnitPrice: 25230.25, + Quantity: 3, + ExtendedPrice: 75690.75, + Freight: 340.25, + Discontinued: false, + Region: `South East`, + Address: `183 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 60080 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `137 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80117, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1444, + CustomerName: `James Black`, + CustomerFirstName: `James`, + CustomerLastName: `Black`, + CustomerAddress: `137 Wall Street, Philadelphia, USA, 80117`, + Salesperson: `Anna Black`, + OrderID: 1310, + OrderDate: `9/5/2022`, + ProductID: 157, + ProductName: `IPad`, + UnitPrice: 21970.48, + Quantity: 2, + ExtendedPrice: 43940.96, + Freight: 1420.48, + Discontinued: false, + Region: `South East`, + Address: `137 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80117 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `158 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 80138, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1445, + CustomerName: `Anna Black`, + CustomerFirstName: `Anna`, + CustomerLastName: `Black`, + CustomerAddress: `158 Wall Street, New York, USA, 80138`, + Salesperson: `Martin Madison`, + OrderID: 1385, + OrderDate: `5/9/2022`, + ProductID: 127, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 12610.37, + Quantity: 5, + ExtendedPrice: 63051.85, + Freight: 1410.37, + Discontinued: false, + Region: `West`, + Address: `158 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80138 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `145 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 70189, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1446, + CustomerName: `Mike Madison`, + CustomerFirstName: `Mike`, + CustomerLastName: `Madison`, + CustomerAddress: `145 Wall Street, Los Angeles, USA, 70189`, + Salesperson: `Mike Jackson`, + OrderID: 1725, + OrderDate: `9/6/2022`, + ProductID: 112, + ProductName: `Mac Book Pro`, + UnitPrice: 20520.26, + Quantity: 4, + ExtendedPrice: 82081.04, + Freight: 710.26, + Discontinued: false, + Region: `West`, + Address: `145 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 70189 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `155 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 60114, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1447, + CustomerName: `Pamela Black`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Black`, + CustomerAddress: `155 Wall Street, Miami, USA, 60114`, + Salesperson: `Martin Madison`, + OrderID: 1520, + OrderDate: `6/15/2022`, + ProductID: 174, + ProductName: `IPhone`, + UnitPrice: 16730.88, + Quantity: 2, + ExtendedPrice: 33461.76, + Freight: 1020.88, + Discontinued: false, + Region: `South East`, + Address: `155 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60114 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `184 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 80059, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1448, + CustomerName: `Max Madison`, + CustomerFirstName: `Max`, + CustomerLastName: `Madison`, + CustomerAddress: `184 Main Street, Los Angeles, USA, 80059`, + Salesperson: `Max Smith`, + OrderID: 1764, + OrderDate: `4/4/2022`, + ProductID: 147, + ProductName: `Mac Book Air`, + UnitPrice: 29810.31, + Quantity: 2, + ExtendedPrice: 59620.62, + Freight: 1200.31, + Discontinued: false, + Region: `West`, + Address: `184 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 80059 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `195 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 80052, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1449, + CustomerName: `Ben Black`, + CustomerFirstName: `Ben`, + CustomerLastName: `Black`, + CustomerAddress: `195 Wall Street, Huston, USA, 80052`, + Salesperson: `Max Jefferson`, + OrderID: 1325, + OrderDate: `8/23/2022`, + ProductID: 186, + ProductName: `Mac Book Pro`, + UnitPrice: 19780.82, + Quantity: 3, + ExtendedPrice: 59342.46, + Freight: 720.82, + Discontinued: true, + Region: `South East`, + Address: `195 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80052 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `168 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 70196, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1450, + CustomerName: `Anna Black`, + CustomerFirstName: `Anna`, + CustomerLastName: `Black`, + CustomerAddress: `168 Market Street, Miami, USA, 70196`, + Salesperson: `Martin Madison`, + OrderID: 1216, + OrderDate: `9/9/2022`, + ProductID: 134, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 25110.88, + Quantity: 2, + ExtendedPrice: 50221.76, + Freight: 1040.88, + Discontinued: false, + Region: `West`, + Address: `168 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 70196 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `196 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 70064, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1451, + CustomerName: `Anna Black`, + CustomerFirstName: `Anna`, + CustomerLastName: `Black`, + CustomerAddress: `196 Wall Street, Philadelphia, USA, 70064`, + Salesperson: `Nancy Madison`, + OrderID: 1924, + OrderDate: `9/9/2022`, + ProductID: 108, + ProductName: `IPhone`, + UnitPrice: 14220.86, + Quantity: 2, + ExtendedPrice: 28441.72, + Freight: 1220.86, + Discontinued: false, + Region: `West`, + Address: `196 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 70064 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `125 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 90158, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1452, + CustomerName: `Max Madison`, + CustomerFirstName: `Max`, + CustomerLastName: `Madison`, + CustomerAddress: `125 Wall Street, Huston, USA, 90158`, + Salesperson: `Martin Jackson`, + OrderID: 1952, + OrderDate: `8/23/2022`, + ProductID: 177, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 11460.48, + Quantity: 3, + ExtendedPrice: 34381.44, + Freight: 1140.48, + Discontinued: false, + Region: `West`, + Address: `125 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90158 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Home`, + ShipAddress: `113 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50104, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1453, + CustomerName: `Ben Watson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Watson`, + CustomerAddress: `113 Wall Street, Los Angeles, USA, 50104`, + Salesperson: `Mike Black`, + OrderID: 1388, + OrderDate: `7/12/2022`, + ProductID: 142, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 25460.85, + Quantity: 2, + ExtendedPrice: 50921.7, + Freight: 360.85, + Discontinued: false, + Region: `West`, + Address: `113 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50104 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `176 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90069, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1454, + CustomerName: `Nancy Black`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Black`, + CustomerAddress: `176 Market Street, Philadelphia, USA, 90069`, + Salesperson: `Max Jefferson`, + OrderID: 1197, + OrderDate: `9/3/2022`, + ProductID: 132, + ProductName: `IPhone`, + UnitPrice: 5760.67, + Quantity: 3, + ExtendedPrice: 17282.01, + Freight: 1350.67, + Discontinued: false, + Region: `South East`, + Address: `176 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90069 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Townhouse`, + ShipAddress: `142 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50098, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1455, + CustomerName: `Max Jefferson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jefferson`, + CustomerAddress: `142 Market Street, Los Angeles, USA, 50098`, + Salesperson: `Nancy Smith`, + OrderID: 1808, + OrderDate: `3/2/2022`, + ProductID: 145, + ProductName: `Mac Book Pro`, + UnitPrice: 18130.62, + Quantity: 3, + ExtendedPrice: 54391.86, + Freight: 660.62, + Discontinued: false, + Region: `North East`, + Address: `142 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50098 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Home`, + ShipAddress: `184 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 50125, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1456, + CustomerName: `Pamela Jefferson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jefferson`, + CustomerAddress: `184 Main Street, New York, USA, 50125`, + Salesperson: `Pamela Jackson`, + OrderID: 1098, + OrderDate: `9/11/2022`, + ProductID: 106, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 29450.81, + Quantity: 5, + ExtendedPrice: 147254.05, + Freight: 820.81, + Discontinued: false, + Region: `North East`, + Address: `184 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50125 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `190 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 70130, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1457, + CustomerName: `Nancy Jefferson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jefferson`, + CustomerAddress: `190 Main Street, Philadelphia, USA, 70130`, + Salesperson: `Max Madison`, + OrderID: 1942, + OrderDate: `9/1/2022`, + ProductID: 136, + ProductName: `Mac Book Pro`, + UnitPrice: 28790.51, + Quantity: 3, + ExtendedPrice: 86371.53, + Freight: 460.51, + Discontinued: false, + Region: `North East`, + Address: `190 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 70130 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `121 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 70093, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1458, + CustomerName: `Mike Jefferson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jefferson`, + CustomerAddress: `121 Main Street, Los Angeles, USA, 70093`, + Salesperson: `James Black`, + OrderID: 1815, + OrderDate: `6/16/2022`, + ProductID: 144, + ProductName: `Mac Book Pro`, + UnitPrice: 9060.8, + Quantity: 3, + ExtendedPrice: 27182.4, + Freight: 1990.8, + Discontinued: false, + Region: `North East`, + Address: `121 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 70093 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `111 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 50082, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1459, + CustomerName: `Nancy Smith`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Smith`, + CustomerAddress: `111 Main Street, Huston, USA, 50082`, + Salesperson: `Max Black`, + OrderID: 1551, + OrderDate: `4/6/2022`, + ProductID: 130, + ProductName: `Mac Book Pro`, + UnitPrice: 29370.56, + Quantity: 3, + ExtendedPrice: 88111.68, + Freight: 1970.56, + Discontinued: true, + Region: `North East`, + Address: `111 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50082 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `128 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90155, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1460, + CustomerName: `Max Jefferson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jefferson`, + CustomerAddress: `128 Market Street, Los Angeles, USA, 90155`, + Salesperson: `James Smith`, + OrderID: 1660, + OrderDate: `6/6/2022`, + ProductID: 175, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 29130.58, + Quantity: 2, + ExtendedPrice: 58261.16, + Freight: 340.58, + Discontinued: false, + Region: `West`, + Address: `128 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90155 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `159 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 60166, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1461, + CustomerName: `Mike Smith`, + CustomerFirstName: `Mike`, + CustomerLastName: `Smith`, + CustomerAddress: `159 Main Street, Huston, USA, 60166`, + Salesperson: `Mike Black`, + OrderID: 1860, + OrderDate: `5/20/2022`, + ProductID: 197, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 18630.66, + Quantity: 4, + ExtendedPrice: 74522.64, + Freight: 1540.66, + Discontinued: false, + Region: `South East`, + Address: `159 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 60166 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Home`, + ShipAddress: `115 Market Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60171, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1462, + CustomerName: `Nancy Jefferson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jefferson`, + CustomerAddress: `115 Market Street, Los Angeles, USA, 60171`, + Salesperson: `Mike Jackson`, + OrderID: 1312, + OrderDate: `9/12/2022`, + ProductID: 182, + ProductName: `Samsung Note`, + UnitPrice: 19120.8, + Quantity: 3, + ExtendedPrice: 57362.4, + Freight: 470.8, + Discontinued: false, + Region: `North East`, + Address: `115 Market Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60171 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `184 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 80169, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1463, + CustomerName: `Nancy Watson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Watson`, + CustomerAddress: `184 Main Street, New York, USA, 80169`, + Salesperson: `Nancy Madison`, + OrderID: 1738, + OrderDate: `1/7/2022`, + ProductID: 161, + ProductName: `Mac Book Air`, + UnitPrice: 9160.8, + Quantity: 2, + ExtendedPrice: 18321.6, + Freight: 1850.8, + Discontinued: false, + Region: `West`, + Address: `184 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80169 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `147 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 60068, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1464, + CustomerName: `Ben Black`, + CustomerFirstName: `Ben`, + CustomerLastName: `Black`, + CustomerAddress: `147 Main Street, Miami, USA, 60068`, + Salesperson: `Nancy Madison`, + OrderID: 1981, + OrderDate: `5/23/2022`, + ProductID: 110, + ProductName: `Samsung Note`, + UnitPrice: 19100.54, + Quantity: 5, + ExtendedPrice: 95502.7, + Freight: 1720.54, + Discontinued: false, + Region: `North East`, + Address: `147 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60068 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `143 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 80182, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1465, + CustomerName: `Ben Black`, + CustomerFirstName: `Ben`, + CustomerLastName: `Black`, + CustomerAddress: `143 Wall Street, Huston, USA, 80182`, + Salesperson: `Anna Watson`, + OrderID: 1067, + OrderDate: `12/19/2022`, + ProductID: 103, + ProductName: `Samsung Note`, + UnitPrice: 28900.7, + Quantity: 3, + ExtendedPrice: 86702.1, + Freight: 770.7, + Discontinued: false, + Region: `North East`, + Address: `143 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80182 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Estate`, + ShipAddress: `170 Main Street`, + ShipCity: `New York`, + ShipPostalCode: 60155, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1466, + CustomerName: `Max Watson`, + CustomerFirstName: `Max`, + CustomerLastName: `Watson`, + CustomerAddress: `170 Main Street, New York, USA, 60155`, + Salesperson: `James Jackson`, + OrderID: 1746, + OrderDate: `9/2/2022`, + ProductID: 148, + ProductName: `IPad`, + UnitPrice: 25390.4, + Quantity: 5, + ExtendedPrice: 126952, + Freight: 550.4, + Discontinued: false, + Region: `South East`, + Address: `170 Main Street`, + City: `New York`, + Country: `USA`, + PostalCode: 60155 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `111 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60079, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1467, + CustomerName: `Pamela Jackson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jackson`, + CustomerAddress: `111 Wall Street, Philadelphia, USA, 60079`, + Salesperson: `Nancy Jefferson`, + OrderID: 1334, + OrderDate: `5/23/2022`, + ProductID: 129, + ProductName: `Mac Book Air`, + UnitPrice: 14520.65, + Quantity: 2, + ExtendedPrice: 29041.3, + Freight: 1250.65, + Discontinued: false, + Region: `West`, + Address: `111 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60079 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `153 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 90056, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1468, + CustomerName: `Anna Black`, + CustomerFirstName: `Anna`, + CustomerLastName: `Black`, + CustomerAddress: `153 Wall Street, Huston, USA, 90056`, + Salesperson: `Anna Jackson`, + OrderID: 1230, + OrderDate: `4/15/2022`, + ProductID: 128, + ProductName: `IPhone`, + UnitPrice: 14930.82, + Quantity: 5, + ExtendedPrice: 74654.1, + Freight: 1470.82, + Discontinued: false, + Region: `North East`, + Address: `153 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90056 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `143 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50070, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1469, + CustomerName: `Max Jackson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jackson`, + CustomerAddress: `143 Main Street, Philadelphia, USA, 50070`, + Salesperson: `Nancy Madison`, + OrderID: 1761, + OrderDate: `1/23/2022`, + ProductID: 136, + ProductName: `IPad`, + UnitPrice: 10810.43, + Quantity: 4, + ExtendedPrice: 43241.72, + Freight: 1910.43, + Discontinued: true, + Region: `South East`, + Address: `143 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50070 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `174 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 80126, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1470, + CustomerName: `Pamela Black`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Black`, + CustomerAddress: `174 Market Street, Philadelphia, USA, 80126`, + Salesperson: `Martin Madison`, + OrderID: 1217, + OrderDate: `7/7/2022`, + ProductID: 170, + ProductName: `IPhone`, + UnitPrice: 16660.27, + Quantity: 4, + ExtendedPrice: 66641.08, + Freight: 790.27, + Discontinued: false, + Region: `North East`, + Address: `174 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 80126 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Home`, + ShipAddress: `189 Wall Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 60161, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1471, + CustomerName: `Max Smith`, + CustomerFirstName: `Max`, + CustomerLastName: `Smith`, + CustomerAddress: `189 Wall Street, Los Angeles, USA, 60161`, + Salesperson: `Max Madison`, + OrderID: 1882, + OrderDate: `11/5/2022`, + ProductID: 141, + ProductName: `Mac Book Air`, + UnitPrice: 18210.39, + Quantity: 3, + ExtendedPrice: 54631.17, + Freight: 990.39, + Discontinued: false, + Region: `South East`, + Address: `189 Wall Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 60161 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `193 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 50163, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1472, + CustomerName: `Max Black`, + CustomerFirstName: `Max`, + CustomerLastName: `Black`, + CustomerAddress: `193 Market Street, Huston, USA, 50163`, + Salesperson: `Mike Black`, + OrderID: 1855, + OrderDate: `5/3/2022`, + ProductID: 188, + ProductName: `Samsung Note`, + UnitPrice: 9860.59, + Quantity: 5, + ExtendedPrice: 49302.95, + Freight: 1610.59, + Discontinued: false, + Region: `South East`, + Address: `193 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50163 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `128 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 60162, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1473, + CustomerName: `Max Jackson`, + CustomerFirstName: `Max`, + CustomerLastName: `Jackson`, + CustomerAddress: `128 Main Street, Miami, USA, 60162`, + Salesperson: `Nancy Black`, + OrderID: 1087, + OrderDate: `4/5/2022`, + ProductID: 166, + ProductName: `Mac Book Air`, + UnitPrice: 12090.33, + Quantity: 4, + ExtendedPrice: 48361.32, + Freight: 1020.33, + Discontinued: false, + Region: `West`, + Address: `128 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60162 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `179 Wall Street`, + ShipCity: `New York`, + ShipPostalCode: 50104, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1474, + CustomerName: `Ben Jackson`, + CustomerFirstName: `Ben`, + CustomerLastName: `Jackson`, + CustomerAddress: `179 Wall Street, New York, USA, 50104`, + Salesperson: `Martin Black`, + OrderID: 1121, + OrderDate: `12/2/2022`, + ProductID: 169, + ProductName: `IPad`, + UnitPrice: 18020.22, + Quantity: 4, + ExtendedPrice: 72080.88, + Freight: 830.22, + Discontinued: false, + Region: `West`, + Address: `179 Wall Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50104 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Townhouse`, + ShipAddress: `168 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 60117, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1475, + CustomerName: `Martin Jackson`, + CustomerFirstName: `Martin`, + CustomerLastName: `Jackson`, + CustomerAddress: `168 Market Street, Huston, USA, 60117`, + Salesperson: `James Madison`, + OrderID: 1965, + OrderDate: `10/17/2022`, + ProductID: 166, + ProductName: `Mac Book Pro`, + UnitPrice: 6770.39, + Quantity: 5, + ExtendedPrice: 33851.95, + Freight: 240.39, + Discontinued: false, + Region: `West`, + Address: `168 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 60117 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Market`, + ShipAddress: `195 Wall Street`, + ShipCity: `Huston`, + ShipPostalCode: 50103, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1476, + CustomerName: `Mike Black`, + CustomerFirstName: `Mike`, + CustomerLastName: `Black`, + CustomerAddress: `195 Wall Street, Huston, USA, 50103`, + Salesperson: `Ben Jackson`, + OrderID: 1241, + OrderDate: `2/3/2022`, + ProductID: 159, + ProductName: `Samsung Note`, + UnitPrice: 14250.8, + Quantity: 5, + ExtendedPrice: 71254, + Freight: 1870.8, + Discontinued: false, + Region: `North East`, + Address: `195 Wall Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 50103 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Market`, + ShipAddress: `192 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 70069, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1477, + CustomerName: `Pamela Jefferson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jefferson`, + CustomerAddress: `192 Main Street, Los Angeles, USA, 70069`, + Salesperson: `Pamela Watson`, + OrderID: 1440, + OrderDate: `6/4/2022`, + ProductID: 191, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 23000.87, + Quantity: 3, + ExtendedPrice: 69002.61, + Freight: 1680.87, + Discontinued: false, + Region: `North East`, + Address: `192 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 70069 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `139 Wall Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50143, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `United Package`, + CustomerID: 1478, + CustomerName: `Pamela Jefferson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jefferson`, + CustomerAddress: `139 Wall Street, Philadelphia, USA, 50143`, + Salesperson: `Nancy Madison`, + OrderID: 1507, + OrderDate: `10/10/2022`, + ProductID: 176, + ProductName: `Mac Book Air`, + UnitPrice: 25490.8, + Quantity: 3, + ExtendedPrice: 76472.4, + Freight: 830.8, + Discontinued: false, + Region: `North East`, + Address: `139 Wall Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50143 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Estate`, + ShipAddress: `131 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 80108, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Federal Shipping`, + CustomerID: 1479, + CustomerName: `Mike Madison`, + CustomerFirstName: `Mike`, + CustomerLastName: `Madison`, + CustomerAddress: `131 Wall Street, Miami, USA, 80108`, + Salesperson: `Ben Jefferson`, + OrderID: 1702, + OrderDate: `10/16/2022`, + ProductID: 174, + ProductName: `Mac Book Pro`, + UnitPrice: 28620.58, + Quantity: 4, + ExtendedPrice: 114482.32, + Freight: 950.58, + Discontinued: true, + Region: `South East`, + Address: `131 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 80108 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Smith Estate`, + ShipAddress: `127 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 90097, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1480, + CustomerName: `James Smith`, + CustomerFirstName: `James`, + CustomerLastName: `Smith`, + CustomerAddress: `127 Market Street, Huston, USA, 90097`, + Salesperson: `Pamela Black`, + OrderID: 1875, + OrderDate: `7/24/2022`, + ProductID: 164, + ProductName: `Mac Book Air`, + UnitPrice: 6750.85, + Quantity: 2, + ExtendedPrice: 13501.7, + Freight: 1160.85, + Discontinued: false, + Region: `North East`, + Address: `127 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 90097 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `190 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 70142, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1481, + CustomerName: `Pamela Madison`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Madison`, + CustomerAddress: `190 Market Street, New York, USA, 70142`, + Salesperson: `Pamela Smith`, + OrderID: 1373, + OrderDate: `5/19/2022`, + ProductID: 108, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 17230.33, + Quantity: 3, + ExtendedPrice: 51690.99, + Freight: 1270.33, + Discontinued: false, + Region: `West`, + Address: `190 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 70142 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Market`, + ShipAddress: `179 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 90146, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1482, + CustomerName: `Nancy Jackson`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Jackson`, + CustomerAddress: `179 Main Street, Philadelphia, USA, 90146`, + Salesperson: `James Jefferson`, + OrderID: 1452, + OrderDate: `5/16/2022`, + ProductID: 170, + ProductName: `Mac Book Air`, + UnitPrice: 8320.5, + Quantity: 4, + ExtendedPrice: 33282, + Freight: 510.5, + Discontinued: false, + Region: `North East`, + Address: `179 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 90146 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Townhouse`, + ShipAddress: `183 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 90165, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1483, + CustomerName: `Anna Black`, + CustomerFirstName: `Anna`, + CustomerLastName: `Black`, + CustomerAddress: `183 Main Street, Los Angeles, USA, 90165`, + Salesperson: `Max Watson`, + OrderID: 1835, + OrderDate: `9/8/2022`, + ProductID: 198, + ProductName: `Samsung Note`, + UnitPrice: 13800.6, + Quantity: 3, + ExtendedPrice: 41401.8, + Freight: 700.6, + Discontinued: false, + Region: `West`, + Address: `183 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 90165 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Townhouse`, + ShipAddress: `108 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 50151, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `Speedy Express`, + CustomerID: 1484, + CustomerName: `Max Black`, + CustomerFirstName: `Max`, + CustomerLastName: `Black`, + CustomerAddress: `108 Main Street, Philadelphia, USA, 50151`, + Salesperson: `Mike Jefferson`, + OrderID: 1448, + OrderDate: `11/16/2022`, + ProductID: 103, + ProductName: `Samsung Note`, + UnitPrice: 21840.84, + Quantity: 5, + ExtendedPrice: 109204.2, + Freight: 1500.84, + Discontinued: false, + Region: `South East`, + Address: `108 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 50151 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `150 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 80053, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1485, + CustomerName: `James Jefferson`, + CustomerFirstName: `James`, + CustomerLastName: `Jefferson`, + CustomerAddress: `150 Market Street, New York, USA, 80053`, + Salesperson: `Anna Black`, + OrderID: 1160, + OrderDate: `6/7/2022`, + ProductID: 156, + ProductName: `IPhone`, + UnitPrice: 24480.65, + Quantity: 2, + ExtendedPrice: 48961.3, + Freight: 860.65, + Discontinued: false, + Region: `West`, + Address: `150 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 80053 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Estate`, + ShipAddress: `121 Wall Street`, + ShipCity: `Miami`, + ShipPostalCode: 50087, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1486, + CustomerName: `Mike Jefferson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Jefferson`, + CustomerAddress: `121 Wall Street, Miami, USA, 50087`, + Salesperson: `Anna Jackson`, + OrderID: 1277, + OrderDate: `8/16/2022`, + ProductID: 108, + ProductName: `Mac Book Air`, + UnitPrice: 27370.31, + Quantity: 2, + ExtendedPrice: 54740.62, + Freight: 350.31, + Discontinued: false, + Region: `North East`, + Address: `121 Wall Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 50087 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `187 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 90094, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `United Package`, + CustomerID: 1487, + CustomerName: `Anna Watson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Watson`, + CustomerAddress: `187 Market Street, Miami, USA, 90094`, + Salesperson: `Pamela Jefferson`, + OrderID: 1895, + OrderDate: `7/18/2022`, + ProductID: 138, + ProductName: `IPad`, + UnitPrice: 15270.6, + Quantity: 3, + ExtendedPrice: 45811.8, + Freight: 1920.6, + Discontinued: false, + Region: `West`, + Address: `187 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90094 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Market`, + ShipAddress: `142 Main Street`, + ShipCity: `Los Angeles`, + ShipPostalCode: 50160, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1488, + CustomerName: `Pamela Watson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Watson`, + CustomerAddress: `142 Main Street, Los Angeles, USA, 50160`, + Salesperson: `Max Smith`, + OrderID: 1559, + OrderDate: `11/2/2022`, + ProductID: 129, + ProductName: `Samsung Note`, + UnitPrice: 19940.22, + Quantity: 5, + ExtendedPrice: 99701.1, + Freight: 540.22, + Discontinued: false, + Region: `West`, + Address: `142 Main Street`, + City: `Los Angeles`, + Country: `USA`, + PostalCode: 50160 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Townhouse`, + ShipAddress: `190 Market Street`, + ShipCity: `Miami`, + ShipPostalCode: 60164, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1489, + CustomerName: `James Black`, + CustomerFirstName: `James`, + CustomerLastName: `Black`, + CustomerAddress: `190 Market Street, Miami, USA, 60164`, + Salesperson: `Nancy Jefferson`, + OrderID: 1144, + OrderDate: `5/7/2022`, + ProductID: 169, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 29010.82, + Quantity: 4, + ExtendedPrice: 116043.28, + Freight: 1870.82, + Discontinued: true, + Region: `North East`, + Address: `190 Market Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60164 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Market`, + ShipAddress: `180 Main Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 70181, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1490, + CustomerName: `Ben Madison`, + CustomerFirstName: `Ben`, + CustomerLastName: `Madison`, + CustomerAddress: `180 Main Street, Philadelphia, USA, 70181`, + Salesperson: `Ben Black`, + OrderID: 1396, + OrderDate: `2/24/2022`, + ProductID: 137, + ProductName: `IPhone`, + UnitPrice: 15420.8, + Quantity: 4, + ExtendedPrice: 61683.2, + Freight: 1870.8, + Discontinued: false, + Region: `West`, + Address: `180 Main Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 70181 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Home`, + ShipAddress: `152 Market Street`, + ShipCity: `Philadelphia`, + ShipPostalCode: 60139, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1491, + CustomerName: `Anna Watson`, + CustomerFirstName: `Anna`, + CustomerLastName: `Watson`, + CustomerAddress: `152 Market Street, Philadelphia, USA, 60139`, + Salesperson: `Mike Madison`, + OrderID: 1733, + OrderDate: `9/23/2022`, + ProductID: 117, + ProductName: `Mac Book Pro`, + UnitPrice: 26430.79, + Quantity: 5, + ExtendedPrice: 132153.95, + Freight: 270.79, + Discontinued: false, + Region: `North East`, + Address: `152 Market Street`, + City: `Philadelphia`, + Country: `USA`, + PostalCode: 60139 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Home`, + ShipAddress: `176 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 60072, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1492, + CustomerName: `Nancy Black`, + CustomerFirstName: `Nancy`, + CustomerLastName: `Black`, + CustomerAddress: `176 Main Street, Miami, USA, 60072`, + Salesperson: `Mike Black`, + OrderID: 1473, + OrderDate: `6/23/2022`, + ProductID: 175, + ProductName: `Samsung Note`, + UnitPrice: 18440.43, + Quantity: 4, + ExtendedPrice: 73761.72, + Freight: 1770.43, + Discontinued: false, + Region: `West`, + Address: `176 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 60072 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Home`, + ShipAddress: `120 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 80161, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1493, + CustomerName: `Martin Madison`, + CustomerFirstName: `Martin`, + CustomerLastName: `Madison`, + CustomerAddress: `120 Main Street, Miami, USA, 80161`, + Salesperson: `Ben Watson`, + OrderID: 1674, + OrderDate: `5/1/2022`, + ProductID: 175, + ProductName: `Samsung Galaxy 22`, + UnitPrice: 23490.67, + Quantity: 3, + ExtendedPrice: 70472.01, + Freight: 820.67, + Discontinued: false, + Region: `West`, + Address: `120 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 80161 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Black Estate`, + ShipAddress: `127 Main Street`, + ShipCity: `Miami`, + ShipPostalCode: 90183, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Federal Shipping`, + CustomerID: 1494, + CustomerName: `Ben Black`, + CustomerFirstName: `Ben`, + CustomerLastName: `Black`, + CustomerAddress: `127 Main Street, Miami, USA, 90183`, + Salesperson: `Pamela Smith`, + OrderID: 1279, + OrderDate: `2/9/2022`, + ProductID: 108, + ProductName: `Samsung Note`, + UnitPrice: 7560.83, + Quantity: 4, + ExtendedPrice: 30243.32, + Freight: 470.83, + Discontinued: false, + Region: `West`, + Address: `127 Main Street`, + City: `Miami`, + Country: `USA`, + PostalCode: 90183 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jackson Estate`, + ShipAddress: `129 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 50067, + ShipCountry: `USA`, + ShipRegion: `South East`, + ShipperName: `United Package`, + CustomerID: 1495, + CustomerName: `Pamela Jackson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jackson`, + CustomerAddress: `129 Market Street, New York, USA, 50067`, + Salesperson: `Nancy Jackson`, + OrderID: 1502, + OrderDate: `9/25/2022`, + ProductID: 175, + ProductName: `Samsung Note`, + UnitPrice: 24020.51, + Quantity: 4, + ExtendedPrice: 96082.04, + Freight: 1320.51, + Discontinued: false, + Region: `South East`, + Address: `129 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 50067 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Madison Townhouse`, + ShipAddress: `118 Market Street`, + ShipCity: `New York`, + ShipPostalCode: 70088, + ShipCountry: `USA`, + ShipRegion: `West`, + ShipperName: `Speedy Express`, + CustomerID: 1496, + CustomerName: `Mike Madison`, + CustomerFirstName: `Mike`, + CustomerLastName: `Madison`, + CustomerAddress: `118 Market Street, New York, USA, 70088`, + Salesperson: `Anna Watson`, + OrderID: 1672, + OrderDate: `7/8/2022`, + ProductID: 178, + ProductName: `Mac Book Air`, + UnitPrice: 9150.21, + Quantity: 2, + ExtendedPrice: 18300.42, + Freight: 470.21, + Discontinued: false, + Region: `West`, + Address: `118 Market Street`, + City: `New York`, + Country: `USA`, + PostalCode: 70088 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Watson Townhouse`, + ShipAddress: `146 Main Street`, + ShipCity: `Huston`, + ShipPostalCode: 60135, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Speedy Express`, + CustomerID: 1497, + CustomerName: `Mike Watson`, + CustomerFirstName: `Mike`, + CustomerLastName: `Watson`, + CustomerAddress: `146 Main Street, Huston, USA, 60135`, + Salesperson: `Anna Black`, + OrderID: 1449, + OrderDate: `4/4/2022`, + ProductID: 194, + ProductName: `IPhone`, + UnitPrice: 19390.48, + Quantity: 4, + ExtendedPrice: 77561.92, + Freight: 1350.48, + Discontinued: false, + Region: `North East`, + Address: `146 Main Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 60135 + })); + this.push(new InvoicesDataItem( + { + ShipName: `Jefferson Home`, + ShipAddress: `146 Market Street`, + ShipCity: `Huston`, + ShipPostalCode: 80195, + ShipCountry: `USA`, + ShipRegion: `North East`, + ShipperName: `Federal Shipping`, + CustomerID: 1498, + CustomerName: `Pamela Jefferson`, + CustomerFirstName: `Pamela`, + CustomerLastName: `Jefferson`, + CustomerAddress: `146 Market Street, Huston, USA, 80195`, + Salesperson: `Ben Black`, + OrderID: 1100, + OrderDate: `7/1/2022`, + ProductID: 103, + ProductName: `IPhone`, + UnitPrice: 12430.89, + Quantity: 3, + ExtendedPrice: 37292.67, + Freight: 1060.89, + Discontinued: false, + Region: `North East`, + Address: `146 Market Street`, + City: `Huston`, + Country: `USA`, + PostalCode: 80195 + })); + } +} diff --git a/samples/grids/grid/keyboard-navigation-guide/src/Item.ts b/samples/grids/grid/keyboard-navigation-guide/src/Item.ts new file mode 100644 index 0000000000..85f4949d4f --- /dev/null +++ b/samples/grids/grid/keyboard-navigation-guide/src/Item.ts @@ -0,0 +1,45 @@ +export enum ItemAction { + Filterable, + Sortable, + Selectable, + Groupable, + Collapsible, + Expandable, + Editable, + Always +} + +export enum GridSection { + THEAD = 'igx-grid__thead-wrapper', + TBODY = 'igx-grid__tbody-content', + FOOTER = 'igx-grid__tfoot' +} +export class Item { + public title: string; + public subTitle: string; + public action: ItemAction; + public active = false; + + private _completed: boolean; + + public constructor(title: string, subTitle: string, completed: boolean, itemAction?: ItemAction) { + this.title = title; + this.subTitle = subTitle; + this.completed = completed; + this.action = itemAction; + + if (itemAction === ItemAction.Always) { + this.active = true; + } + } + + public set completed(value: boolean) { + if (this.active || (!value && !this.completed)) { + this._completed = value; + } + } + + public get completed() { + return this._completed; + } +} diff --git a/samples/grids/grid/keyboard-navigation-guide/src/index.css b/samples/grids/grid/keyboard-navigation-guide/src/index.css new file mode 100644 index 0000000000..35149fb7ad --- /dev/null +++ b/samples/grids/grid/keyboard-navigation-guide/src/index.css @@ -0,0 +1,29 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + +.grid_wrapper { + width: 75%; +} + +.list_wrapper { + width: 20%; +} + +.container { + display: flex; + flex-direction: row; +} + +.empty-list > h6 { + padding: 15px; + font-size: 15px; +} + +.empty-list > ul { + margin-left: 15px; + font-weight: 400; +} + +.disabled { + opacity: .4; +} \ No newline at end of file diff --git a/samples/grids/grid/keyboard-navigation-guide/src/index.ts b/samples/grids/grid/keyboard-navigation-guide/src/index.ts new file mode 100644 index 0000000000..8d9d0b0ef1 --- /dev/null +++ b/samples/grids/grid/keyboard-navigation-guide/src/index.ts @@ -0,0 +1,302 @@ +import 'igniteui-webcomponents-grids/grids/combined'; +import { IgcActiveNodeChangeEventArgs, IgcCellType, IgcColumnComponent, IgcColumnGroupComponent, IgcGridComponent, IgcGridMasterDetailContext, SortingDirection } from 'igniteui-webcomponents-grids/grids'; +import { InvoicesDataItem, InvoicesData } from './InvoicesData'; +import { html } from 'igniteui-webcomponents-core'; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; +import { Item, ItemAction, GridSection } from './Item'; +import { defineComponents, IgcListComponent, IgcCheckboxComponent } from 'igniteui-webcomponents'; + +defineComponents(IgcListComponent, IgcCheckboxComponent); + +const theadKeyCombinations = [ + new Item('space key', 'select column', false, ItemAction.Selectable), + new Item('ctrl + arrow up/down', 'sorts the column asc/desc', false, ItemAction.Sortable), + new Item('shift + alt + arrow left/right', 'group/ungroup the active column', false, ItemAction.Groupable), + new Item('alt + arrow left/right/up/down', 'expand/collapse active multi column header', + false, ItemAction.Collapsible), + new Item('ctrl + shift + l', 'opens the excel style filtering', false, ItemAction.Filterable), + new Item('alt + l', 'opens the advanced filtering', false, ItemAction.Filterable) +]; + +const tbodyKeyCombinations: Item[] = [ + new Item('enter', 'enter in edit mode', false, ItemAction.Editable), + new Item('alt + arrow left/up', 'collapse master details row', false, ItemAction.Collapsible), + new Item('alt + arrow right/down', 'expand master details row', false, ItemAction.Collapsible), + new Item('alt + arrow right/left', 'expand/collapse the group row', false, ItemAction.Expandable), + new Item('ctrl + Home/End', 'navigates to the upper-left/bottom-right cell', false, ItemAction.Always) +]; + +const summaryCombinations: Item[] = [ + new Item('ArrowLeft', 'navigates one summary cell left', false, ItemAction.Always), + new Item('ArrowRight', 'navigates one summary cell right', false, ItemAction.Always), + new Item('Home', 'navigates to the first summary cell', false, ItemAction.Always), + new Item('End', 'navigates to the last summary cell', false, ItemAction.Always) +]; + + +export class Sample { + + private grid: IgcGridComponent + private list: IgcListComponent + private _bind: () => void; + private activeCollection: Item[]; + private gridSection: GridSection; + private activeNode: any; + + constructor() { + var grid = this.grid = document.getElementById('grid') as IgcGridComponent; + var list = this.list = document.getElementById('list') as IgcListComponent; + this.onActiveNodeChange = this.onActiveNodeChange.bind(this); + this.gridKeydown = this.gridKeydown.bind(this); + this.keydown = this.keydown.bind(this); + this._bind = () => { + grid.groupingExpressions = [ + { + dir: SortingDirection.Asc, + fieldName: "City" + } + ]; + grid.data = this.invoicesData; + grid.detailTemplate = this.masterDetailTemplate; + grid.addEventListener("activeNodeChange", this.onActiveNodeChange); + grid.addEventListener("gridKeydown", this.gridKeydown); + grid.addEventListener("keydown", this.keydown); + } + this._bind(); + + } + + public masterDetailTemplate = (ctx: IgcGridMasterDetailContext) => { + var data = (ctx as any)["$implicit"]; + return html`
+ First Name: ${data.CustomerFirstName} +
+ Last Name: ${data.CustomerLastName} +
+ Address: ${data.CustomerAddress} +
+
`; + } + + public changeCombinationsCollection(gridSection: GridSection, evt: any) { + switch (gridSection) { + case GridSection.THEAD: + this.activeCollection = theadKeyCombinations; + this.toggleHeaderCombinations(evt); + + break; + case GridSection.TBODY: + this.activeCollection = tbodyKeyCombinations; + this.toggleBodyCombinations(evt); + break; + case GridSection.FOOTER: + this.activeCollection = summaryCombinations; + break; + default: + this.activeCollection = []; + return; + } + this.updateList(); + } + + public updateList() { + this.list.innerHTML = this.listTemplate(); + } + + public toggleHeaderCombinations(activeNode: any) { + const currColumn = this.grid.columns + .find(c => c.visibleIndex === activeNode.column && c.level === activeNode.level); + this.activeCollection.forEach(x => x.active = true); + const actions = this.extractColumnActions(currColumn); + this.activeCollection.filter(x => actions.indexOf(x.action) === -1 && x.action !== ItemAction.Always)?.forEach(x => x.active = false); + } + + public toggleBodyCombinations(activeNode: any) { + const rowRef = this.grid.getRowByIndex(activeNode.row); + + if (rowRef.isGroupByRow) { + this.activeCollection.forEach(x => x.active = false); + this.activeCollection.filter(x => x.action === ItemAction.Expandable || x.action === ItemAction.Always)?.forEach(x => x.active = true); + } else { + const currColumn = this.grid.columns.filter(x => !x.columnGroup) + .find(c => c.visibleIndex === activeNode.column); + const cell = this.grid.getCellByColumn(activeNode.row, currColumn.field); + this.toggleCellCombinations(cell); + } + } + + public toggleCellCombinations(cell?: IgcCellType) { + this.activeCollection.forEach(x => x.active = true); + const actions = this.extractCellActions(cell); + this.activeCollection.filter(x => actions.indexOf(x.action) === -1 && x.action !== ItemAction.Always)?.forEach(x => x.active = false); + } + + public extractCellActions(cell: IgcCellType) { + const res: any[] = []; + if(!cell) return res; + if (cell?.editable) { + res.push(ItemAction.Editable); + } + + res.push(ItemAction.Collapsible); + return res; + } + + public extractColumnActions(col: IgcColumnComponent | IgcColumnGroupComponent) { + const res = []; + if (col.sortable) { + res.push(ItemAction.Sortable); + } + + if (col.filterable && !col.columnGroup) { + res.push(ItemAction.Filterable); + } + + if ((col as IgcColumnGroupComponent).collapsible) { + res.push(ItemAction.Collapsible); + } + + if (col.groupable) { + res.push(ItemAction.Groupable); + } + + if (col.selectable) { + res.push(ItemAction.Selectable); + } + + return res; + } + + public onActiveNodeChange(event: any) { + const evt = (event as any).detail; + this.activeNode = evt; + const row = this.grid.getRowByIndex(evt.row); + this.gridSection = evt.row < 0 ? GridSection.THEAD : row === undefined || row.isSummaryRow ? + GridSection.FOOTER : GridSection.TBODY; + this.changeCombinationsCollection(this.gridSection, evt); + } + + public keydown(event: any) { + const key = event.key.toLowerCase(); + if (key === 'tab') { return; } + if (this.gridSection === GridSection.FOOTER) { + switch (key) { + case 'end': + this.activeCollection.at(3).completed = true; + break; + case 'home': + this.activeCollection.at(2).completed = true; + break; + case 'arrowleft': + this.activeCollection.at(0).completed = true; + break; + case 'arrowright': + this.activeCollection.at(1).completed = true; + break; + default: + break; + } + return; + } + + const activeNode = this.activeNode; + if (this.gridSection === GridSection.THEAD) { + if (key === 'l' && event.altKey) { + this.activeCollection.at(5).completed = true; + } + const col = this.grid.columns + .find(c => c.visibleIndex === activeNode.column && c.level === activeNode.level); + if (key === 'l' && event.ctrlKey && event.shiftKey && col && !col.columnGroup && col.filterable) { + this.activeCollection.at(4).completed = true; + } + + if ((key === 'arrowleft' || key === 'arrowright') && event.altKey && event.shiftKey && + col && !col.columnGroup && col.groupable) { + this.activeCollection.at(2).completed = true; + } + + if ((key === 'arrowup' || key === 'arrowdown') && event.ctrlKey) { + if (col && !col.columnGroup && col.sortable) { + this.activeCollection.at(1).completed = true; + } + } + + if (key === " ") { + this.activeCollection.at(0).completed = true; + } + + if (col && col.columnGroup && (key === 'arrowup' || key === 'arrowdown' || key === 'arrowleft' || key === 'arrowright') && event.altKey) { + this.activeCollection.at(3).completed = true; + } + } + + if (this.gridSection === GridSection.TBODY) { + if (key === 'enter') { + const currColumn = this.grid.columns.filter(x => !x.columnGroup) + .find(c => c.visibleIndex === activeNode.column); + const cell = this.grid.getCellByColumn(activeNode.row, currColumn.field); + if (cell && cell.column.editable) { + this.activeCollection.at(0).completed = true; + } + } + if ((key === 'end' || key === 'home') && event.ctrlKey) { + this.activeCollection.at(4).completed = true; + } + const rowRef = this.grid.getRowByIndex(activeNode.row); + const isGroupByRow = rowRef.isGroupByRow; + if (!isGroupByRow && (key === 'arrowdown' || key === 'arrowright') && event.altKey) { + this.activeCollection.at(2).completed = true; + } + + if (!isGroupByRow && (key === 'arrowup' || key === 'arrowleft') && event.altKey) { + this.activeCollection.at(1).completed = true; + } + + if (isGroupByRow && (key === 'arrowright' || key === 'arrowleft') && event.altKey ) { + this.activeCollection.at(3).completed = true; + } + } + this.updateList(); + } + + public gridKeydown(event: any) { + const evt = event.detail.event; + this.keydown(evt); + } + + + public listTemplate = () => { + let htmlContent = ""; + (window as any).onChangeHandler = (i: number) => { + this.activeCollection.at(i).completed = (event.currentTarget as any).checked; + } + let i = 0; + const headerText = this.gridSection === GridSection.THEAD ? "HEADER COMBINATIONS" : this.gridSection === GridSection.TBODY ? "BODY COMBINATIONS" : "SUMMARY COMBINATIONS"; + const header = "

"+ headerText +"

"; + htmlContent += header; + for (const elem of this.activeCollection) { + const checkbox = elem.completed ? "" : ""; + const disabledClass = !elem.active ? "disabled" : ""; + htmlContent += "

" + elem.title + "

" + + "" + elem.subTitle +"" + + checkbox + + "
"; + i++; + } + return htmlContent; + } + + private _invoicesData: InvoicesData = null; + public get invoicesData(): InvoicesData { + if (this._invoicesData == null) + { + this._invoicesData = new InvoicesData(); + } + return this._invoicesData; + } + +} + +new Sample(); diff --git a/samples/grids/grid/keyboard-navigation-guide/tsconfig.json b/samples/grids/grid/keyboard-navigation-guide/tsconfig.json new file mode 100644 index 0000000000..861fa3aeb1 --- /dev/null +++ b/samples/grids/grid/keyboard-navigation-guide/tsconfig.json @@ -0,0 +1,39 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/grids/grid/keyboard-navigation-guide/tslint.json b/samples/grids/grid/keyboard-navigation-guide/tslint.json new file mode 100644 index 0000000000..18e202b1f9 --- /dev/null +++ b/samples/grids/grid/keyboard-navigation-guide/tslint.json @@ -0,0 +1,53 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "only-arrow-functions": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "no-var-requires": false, + "no-var": false, + "no-var-keyword": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "@typescript-eslint/no-unused-vars": "off", + "jsx-no-lambda": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "member-ordering": false, + "curly": [false, "ignore-same-line"], + "max-classes-per-file": [true, 10], + "prefer-const": false, + "prefer-for-of": false, + "no-useless-constructor": false, + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "only-arrow-functions": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "no-var-requires": false, + "no-console": false, + "no-unused-vars": false, + "@typescript-eslint/no-unused-vars": "off", + "jsx-no-lambda": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "curly": [false, "ignore-same-line"], + "max-classes-per-file": [true, 10], + "prefer-const": false, + "prefer-for-of": false, + "no-useless-constructor": false, + "@typescript-eslint/no-useless-constructor": "off" + } + } \ No newline at end of file diff --git a/samples/grids/grid/keyboard-navigation-guide/webpack.config.js b/samples/grids/grid/keyboard-navigation-guide/webpack.config.js new file mode 100644 index 0000000000..9d11a6155c --- /dev/null +++ b/samples/grids/grid/keyboard-navigation-guide/webpack.config.js @@ -0,0 +1,105 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), + path.resolve(__dirname, 'node_modules/@webcomponents/template'), + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; From 0415ba28886f5c1f1c020177ab45048875ccd8e8 Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Wed, 13 Dec 2023 13:32:40 -0500 Subject: [PATCH 16/20] Update build-pipeline.yml (#614) --- azure-pipelines/build-pipeline.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/azure-pipelines/build-pipeline.yml b/azure-pipelines/build-pipeline.yml index 7547aac37d..c7b769cc32 100644 --- a/azure-pipelines/build-pipeline.yml +++ b/azure-pipelines/build-pipeline.yml @@ -60,6 +60,9 @@ stages: showWarnings: true workingDirectory: '$(Build.SourcesDirectory)' targetType: 'inline' + + # use this only for proget packages: + # $npmInstallPackages += "@infragistics/" + $_.Name + "@" + $_.Value + " " script: | Get-Content -Path .\.npmrc $packageJson = Get-Content -Raw .\package.json | ConvertFrom-Json @@ -71,7 +74,7 @@ stages: } | ` ForEach-Object { ` $npmUninstallPackages += $_.Name + " " - $npmInstallPackages += "@infragistics/" + $_.Name + "@" + $_.Value + " " + $npmInstallPackages += $_.Name + "@" + $_.Value + " " } Write-Host $npmUninstallPackages Write-Host $npmInstallPackages From c3d12cd1c6283bd0b8bd75d7362734a7d5a8cb84 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 22:13:22 +0200 Subject: [PATCH 17/20] Adding changes from build igniteui-xplat-examples-output+PRs_2023.12.13.3 (#616) --- .../grids/grid/action-strip/src/NwindData.ts | 68 +- .../src/NwindData.ts | 68 +- .../advanced-filtering-style/src/NwindData.ts | 68 +- .../grid/binding-crud-data/src/NwindData.ts | 68 +- .../src/EmployeesNestedData.ts | 46 +- .../cell-editing-styling/src/NwindData.ts | 68 +- .../grid/cell-selection-mode/src/NwindData.ts | 68 +- .../src/NwindData.ts | 68 +- .../data-summary-formatter/src/NwindData.ts | 68 +- .../data-summary-options/src/NwindData.ts | 68 +- .../data-summary-template/src/NwindData.ts | 68 +- .../data-validation-style/src/NwindData.ts | 68 +- .../src/NwindData.ts | 68 +- .../src/NwindData.ts | 68 +- .../src/EmployeesData.ts | 3608 ++++++++--------- .../grid/editing-columns/src/NwindData.ts | 68 +- .../grid/editing-events/src/NwindData.ts | 68 +- .../grid/editing-excel-style/src/NwindData.ts | 68 +- .../grid/editing-lifecycle/src/NwindData.ts | 68 +- .../src/NwindData.ts | 68 +- .../src/NwindData.ts | 68 +- .../src/NwindData.ts | 68 +- .../src/NwindData.ts | 68 +- .../src/NwindData.ts | 68 +- .../grid/filtering-options/src/NwindData.ts | 68 +- .../grid/filtering-strategy/src/NwindData.ts | 68 +- .../grid/filtering-style/src/NwindData.ts | 68 +- .../src/NwindData.ts | 68 +- samples/grids/grid/overview/src/NwindData.ts | 68 +- .../grid/remote-paging-data/src/NwindData.ts | 68 +- .../grids/grid/row-adding/src/NwindData.ts | 68 +- .../grids/grid/row-classes/src/NwindData.ts | 68 +- .../grid/row-editing-options/src/NwindData.ts | 68 +- .../grid/row-editing-style/src/NwindData.ts | 68 +- .../aggregate-max-sales/src/PivotSalesData.ts | 2084 +++++----- .../src/PivotSalesData.ts | 2084 +++++----- .../action-strip/src/EmployeesFlatDetails.ts | 36 +- .../src/EmployeesFlatData.ts | 36 +- .../src/EmployeesFlatData.ts | 36 +- .../src/EmployeesFlatData.ts | 36 +- .../src/EmployeesFlatDetails.ts | 36 +- .../src/EmployeesFlatDetails.ts | 36 +- .../src/EmployeesFlatDetails.ts | 36 +- .../src/EmployeesFlatDetails.ts | 36 +- .../src/EmployeesFlatDetails.ts | 36 +- .../src/EmployeesFlatData.ts | 36 +- .../src/EmployeesFlatDetails.ts | 36 +- .../src/EmployeesFlatData.ts | 36 +- .../src/EmployeesFlatDetails.ts | 36 +- .../column-pinning/src/EmployeesFlatData.ts | 36 +- .../src/EmployeesFlatDetails.ts | 36 +- .../src/EmployeesFlatDetails.ts | 36 +- .../src/EmployeesFlatDetails.ts | 36 +- .../src/EmployeesFlatDetails.ts | 36 +- .../src/EmployeesFlatData.ts | 36 +- .../src/EmployeesNestedData.ts | 46 +- .../src/EmployeesNestedData.ts | 46 +- .../src/EmployeesFlatDetails.ts | 36 +- .../src/EmployeesFlatDetails.ts | 36 +- .../src/EmployeesFlatDetails.ts | 36 +- .../src/EmployeesFlatDetails.ts | 36 +- .../src/EmployeesFlatDetails.ts | 36 +- .../src/EmployeesNestedData.ts | 46 +- .../overview/src/EmployeesNestedData.ts | 46 +- .../src/EmployeesFlatData.ts | 36 +- .../src/EmployeesFlatData.ts | 36 +- .../row-styles/src/EmployeesFlatDetails.ts | 36 +- .../src/EmployeesFlatData.ts | 36 +- 68 files changed, 5595 insertions(+), 5595 deletions(-) diff --git a/samples/grids/grid/action-strip/src/NwindData.ts b/samples/grids/grid/action-strip/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/action-strip/src/NwindData.ts +++ b/samples/grids/grid/action-strip/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/advanced-filtering-options/src/NwindData.ts b/samples/grids/grid/advanced-filtering-options/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/advanced-filtering-options/src/NwindData.ts +++ b/samples/grids/grid/advanced-filtering-options/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/advanced-filtering-style/src/NwindData.ts b/samples/grids/grid/advanced-filtering-style/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/advanced-filtering-style/src/NwindData.ts +++ b/samples/grids/grid/advanced-filtering-style/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/binding-crud-data/src/NwindData.ts b/samples/grids/grid/binding-crud-data/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/binding-crud-data/src/NwindData.ts +++ b/samples/grids/grid/binding-crud-data/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/binding-nested-data-1/src/EmployeesNestedData.ts b/samples/grids/grid/binding-nested-data-1/src/EmployeesNestedData.ts index 0b59637306..4a386f8be4 100644 --- a/samples/grids/grid/binding-nested-data-1/src/EmployeesNestedData.ts +++ b/samples/grids/grid/binding-nested-data-1/src/EmployeesNestedData.ts @@ -45,7 +45,7 @@ export class EmployeesNestedData extends Array { City: `Berlin`, Country: `Germany`, Phone: `609-202-505`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, Name: `John Winchester`, Title: `Development Manager`, Employees: [ @@ -57,7 +57,7 @@ export class EmployeesNestedData extends Array { City: `Hamburg`, Country: `Germany`, Phone: `609-444-555`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Title: `Senior Software Developer` @@ -70,7 +70,7 @@ export class EmployeesNestedData extends Array { City: `Munich`, Country: `Germany`, Phone: `609-333-444`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Title: `Senior Software Developer` @@ -83,7 +83,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Title: `Software Development Team Lead` @@ -96,7 +96,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Title: `Senior Software Developer` @@ -112,7 +112,7 @@ export class EmployeesNestedData extends Array { City: `Kielce`, Country: `Poland`, Phone: `609-202-505`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, Name: `Ana Sanders`, Title: `CEO`, Employees: [ @@ -124,7 +124,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-202-505`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, Title: `Director` @@ -137,7 +137,7 @@ export class EmployeesNestedData extends Array { City: `Paris`, Country: `France`, Phone: `609-202-505`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 5, Name: `Elizabeth Richards`, Title: `Vice President` @@ -150,7 +150,7 @@ export class EmployeesNestedData extends Array { City: `London`, Country: `UK`, Phone: `609-202-505`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, Title: `Director` @@ -166,7 +166,7 @@ export class EmployeesNestedData extends Array { City: `Manchester`, Country: `UK`, Phone: `222-555-577`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, Name: `Victoria Lincoln`, Title: `Senior Accountant`, Employees: [ @@ -178,7 +178,7 @@ export class EmployeesNestedData extends Array { City: `Hamburg`, Country: `Germany`, Phone: `609-444-555`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 23, Name: `Thomas Burke`, Title: `Senior Accountant` @@ -191,7 +191,7 @@ export class EmployeesNestedData extends Array { City: `Munich`, Country: `Germany`, Phone: `609-333-444`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 22, Name: `Michael Anderson`, Title: `Junior Accountant` @@ -204,7 +204,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 21, Name: `Roland Reyes`, Title: `Accountant Team Lead` @@ -217,7 +217,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 24, Name: `Monica Mendel`, Title: `Senior Software Developer` @@ -233,7 +233,7 @@ export class EmployeesNestedData extends Array { City: `Lyon`, Country: `France`, Phone: `259-266-887`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, Name: `Yang Wang`, Title: `Localization Developer`, Employees: [ @@ -245,7 +245,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Title: `Software Development Team Lead` @@ -258,7 +258,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Title: `Senior Software Developer` @@ -274,7 +274,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `688-244-844`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, Name: `Janine Munoz`, Title: `HR`, Employees: [ @@ -286,7 +286,7 @@ export class EmployeesNestedData extends Array { City: `Hamburg`, Country: `Germany`, Phone: `609-444-555`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Title: `Senior Software Developer` @@ -299,7 +299,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Title: `Software Development Team Lead` @@ -315,7 +315,7 @@ export class EmployeesNestedData extends Array { City: `Krakow`, Country: `Poland`, Phone: `677-266-555`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, Name: `Yang Wang`, Title: `Sales Manager`, Employees: [ @@ -327,7 +327,7 @@ export class EmployeesNestedData extends Array { City: `Munich`, Country: `Germany`, Phone: `609-333-444`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Title: `Senior Software Developer` @@ -340,7 +340,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Title: `Senior Software Developer` diff --git a/samples/grids/grid/cell-editing-styling/src/NwindData.ts b/samples/grids/grid/cell-editing-styling/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/cell-editing-styling/src/NwindData.ts +++ b/samples/grids/grid/cell-editing-styling/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/cell-selection-mode/src/NwindData.ts b/samples/grids/grid/cell-selection-mode/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/cell-selection-mode/src/NwindData.ts +++ b/samples/grids/grid/cell-selection-mode/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/data-batch-editing-actions/src/NwindData.ts b/samples/grids/grid/data-batch-editing-actions/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/data-batch-editing-actions/src/NwindData.ts +++ b/samples/grids/grid/data-batch-editing-actions/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/data-summary-formatter/src/NwindData.ts b/samples/grids/grid/data-summary-formatter/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/data-summary-formatter/src/NwindData.ts +++ b/samples/grids/grid/data-summary-formatter/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/data-summary-options/src/NwindData.ts b/samples/grids/grid/data-summary-options/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/data-summary-options/src/NwindData.ts +++ b/samples/grids/grid/data-summary-options/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/data-summary-template/src/NwindData.ts b/samples/grids/grid/data-summary-template/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/data-summary-template/src/NwindData.ts +++ b/samples/grids/grid/data-summary-template/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/data-validation-style/src/NwindData.ts b/samples/grids/grid/data-validation-style/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/data-validation-style/src/NwindData.ts +++ b/samples/grids/grid/data-validation-style/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/data-validator-service-cross-field/src/NwindData.ts b/samples/grids/grid/data-validator-service-cross-field/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/data-validator-service-cross-field/src/NwindData.ts +++ b/samples/grids/grid/data-validator-service-cross-field/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/data-validator-service-extended/src/NwindData.ts b/samples/grids/grid/data-validator-service-extended/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/data-validator-service-extended/src/NwindData.ts +++ b/samples/grids/grid/data-validator-service-extended/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/data-validator-service/src/EmployeesData.ts b/samples/grids/grid/data-validator-service/src/EmployeesData.ts index 2f90e545a2..833d20e92a 100644 --- a/samples/grids/grid/data-validator-service/src/EmployeesData.ts +++ b/samples/grids/grid/data-validator-service/src/EmployeesData.ts @@ -52,10 +52,10 @@ export class EmployeesData extends Array { State: `IN`, Country: `United States`, ReferredBy: `Vyky Corwin`, - CreatedOn: `12/8/2017`, - Birthday: `2/10/2002`, - LastActivity: `12/16/2017`, - NextActivity: `4/16/2019`, + CreatedOn: `2017-12-08`, + Birthday: `2002-02-10`, + LastActivity: `2017-12-16`, + NextActivity: `2019-04-16`, DealsWon: 5, DealsLost: 13, DealsPending: 7, @@ -82,10 +82,10 @@ export class EmployeesData extends Array { State: `GA`, Country: `United States`, ReferredBy: `Hew Chung`, - CreatedOn: `6/24/2017`, - Birthday: `1/1/1997`, - LastActivity: `7/15/2017`, - NextActivity: `6/15/2019`, + CreatedOn: `2017-06-24`, + Birthday: `1997-01-01`, + LastActivity: `2017-07-15`, + NextActivity: `2019-06-15`, DealsWon: 2, DealsLost: 4, DealsPending: 29, @@ -112,10 +112,10 @@ export class EmployeesData extends Array { State: `VA`, Country: `United States`, ReferredBy: `Web Ondrak`, - CreatedOn: `9/12/2017`, - Birthday: `3/14/1997`, - LastActivity: `10/8/2017`, - NextActivity: `8/8/2018`, + CreatedOn: `2017-09-12`, + Birthday: `1997-03-14`, + LastActivity: `2017-10-08`, + NextActivity: `2018-08-08`, DealsWon: 18, DealsLost: 19, DealsPending: 7, @@ -142,10 +142,10 @@ export class EmployeesData extends Array { State: `MI`, Country: `United States`, ReferredBy: `Seana Yegorshin`, - CreatedOn: `5/31/2017`, - Birthday: `5/5/1988`, - LastActivity: `6/4/2017`, - NextActivity: `9/4/2018`, + CreatedOn: `2017-05-31`, + Birthday: `1988-05-05`, + LastActivity: `2017-06-04`, + NextActivity: `2018-09-04`, DealsWon: 23, DealsLost: 22, DealsPending: 2, @@ -172,10 +172,10 @@ export class EmployeesData extends Array { State: `AL`, Country: `United States`, ReferredBy: `Costa Saveall`, - CreatedOn: `11/9/2017`, - Birthday: `10/25/1983`, - LastActivity: `11/22/2017`, - NextActivity: `3/22/2019`, + CreatedOn: `2017-11-09`, + Birthday: `1983-10-25`, + LastActivity: `2017-11-22`, + NextActivity: `2019-03-22`, DealsWon: 6, DealsLost: 28, DealsPending: 11, @@ -202,10 +202,10 @@ export class EmployeesData extends Array { State: `GA`, Country: `United States`, ReferredBy: `Morie Ralph`, - CreatedOn: `1/11/2018`, - Birthday: `7/4/1999`, - LastActivity: `2/7/2018`, - NextActivity: `7/7/2018`, + CreatedOn: `2018-01-11`, + Birthday: `1999-07-04`, + LastActivity: `2018-02-07`, + NextActivity: `2018-07-07`, DealsWon: 7, DealsLost: 9, DealsPending: 6, @@ -232,10 +232,10 @@ export class EmployeesData extends Array { State: `OR`, Country: `United States`, ReferredBy: `Saleem Grayling`, - CreatedOn: `11/30/2017`, - Birthday: `8/15/1987`, - LastActivity: `12/3/2017`, - NextActivity: `8/3/2019`, + CreatedOn: `2017-11-30`, + Birthday: `1987-08-15`, + LastActivity: `2017-12-03`, + NextActivity: `2019-08-03`, DealsWon: 27, DealsLost: 23, DealsPending: 8, @@ -262,10 +262,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Noelyn Chong`, - CreatedOn: `7/5/2017`, - Birthday: `10/5/1971`, - LastActivity: `7/22/2017`, - NextActivity: `6/22/2019`, + CreatedOn: `2017-07-05`, + Birthday: `1971-10-05`, + LastActivity: `2017-07-22`, + NextActivity: `2019-06-22`, DealsWon: 28, DealsLost: 30, DealsPending: 30, @@ -292,10 +292,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Clea Spinetti`, - CreatedOn: `3/30/2017`, - Birthday: `4/13/1999`, - LastActivity: `4/25/2017`, - NextActivity: `12/25/2017`, + CreatedOn: `2017-03-30`, + Birthday: `1999-04-13`, + LastActivity: `2017-04-25`, + NextActivity: `2017-12-25`, DealsWon: 29, DealsLost: 7, DealsPending: 25, @@ -322,10 +322,10 @@ export class EmployeesData extends Array { State: `WI`, Country: `United States`, ReferredBy: `Charlotta Sebborn`, - CreatedOn: `5/10/2017`, - Birthday: `9/12/1984`, - LastActivity: `5/12/2017`, - NextActivity: `7/12/2017`, + CreatedOn: `2017-05-10`, + Birthday: `1984-09-12`, + LastActivity: `2017-05-12`, + NextActivity: `2017-07-12`, DealsWon: 29, DealsLost: 27, DealsPending: 30, @@ -352,10 +352,10 @@ export class EmployeesData extends Array { State: `PA`, Country: `United States`, ReferredBy: `Roseann Cauthra`, - CreatedOn: `5/1/2017`, - Birthday: `5/16/1992`, - LastActivity: `5/20/2017`, - NextActivity: `11/20/2017`, + CreatedOn: `2017-05-01`, + Birthday: `1992-05-16`, + LastActivity: `2017-05-20`, + NextActivity: `2017-11-20`, DealsWon: 6, DealsLost: 10, DealsPending: 7, @@ -382,10 +382,10 @@ export class EmployeesData extends Array { State: `OR`, Country: `United States`, ReferredBy: `Alla Bridgnell`, - CreatedOn: `8/22/2017`, - Birthday: `1/12/1978`, - LastActivity: `9/1/2017`, - NextActivity: `5/1/2019`, + CreatedOn: `2017-08-22`, + Birthday: `1978-01-12`, + LastActivity: `2017-09-01`, + NextActivity: `2019-05-01`, DealsWon: 29, DealsLost: 25, DealsPending: 0, @@ -412,10 +412,10 @@ export class EmployeesData extends Array { State: `PA`, Country: `United States`, ReferredBy: `Timofei Jeves`, - CreatedOn: `2/12/2018`, - Birthday: `11/12/1976`, - LastActivity: `2/15/2018`, - NextActivity: `3/15/2019`, + CreatedOn: `2018-02-12`, + Birthday: `1976-11-12`, + LastActivity: `2018-02-15`, + NextActivity: `2019-03-15`, DealsWon: 7, DealsLost: 25, DealsPending: 20, @@ -442,10 +442,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Nisse Cullity`, - CreatedOn: `1/4/2017`, - Birthday: `11/15/1980`, - LastActivity: `1/27/2017`, - NextActivity: `6/27/2018`, + CreatedOn: `2017-01-04`, + Birthday: `1980-11-15`, + LastActivity: `2017-01-27`, + NextActivity: `2018-06-27`, DealsWon: 0, DealsLost: 3, DealsPending: 22, @@ -472,10 +472,10 @@ export class EmployeesData extends Array { State: `WA`, Country: `United States`, ReferredBy: `Chrysa Bernakiewicz`, - CreatedOn: `3/1/2018`, - Birthday: `6/7/1970`, - LastActivity: `3/27/2018`, - NextActivity: `10/27/2019`, + CreatedOn: `2018-03-01`, + Birthday: `1970-06-07`, + LastActivity: `2018-03-27`, + NextActivity: `2019-10-27`, DealsWon: 27, DealsLost: 10, DealsPending: 5, @@ -502,10 +502,10 @@ export class EmployeesData extends Array { State: `AL`, Country: `United States`, ReferredBy: `Blondie Brownsell`, - CreatedOn: `11/25/2017`, - Birthday: `6/18/1987`, - LastActivity: `12/11/2017`, - NextActivity: `7/11/2019`, + CreatedOn: `2017-11-25`, + Birthday: `1987-06-18`, + LastActivity: `2017-12-11`, + NextActivity: `2019-07-11`, DealsWon: 21, DealsLost: 2, DealsPending: 11, @@ -532,10 +532,10 @@ export class EmployeesData extends Array { State: `WA`, Country: `United States`, ReferredBy: `Willard Worters`, - CreatedOn: `3/8/2018`, - Birthday: `2/22/1996`, - LastActivity: `3/29/2018`, - NextActivity: `8/29/2018`, + CreatedOn: `2018-03-08`, + Birthday: `1996-02-22`, + LastActivity: `2018-03-29`, + NextActivity: `2018-08-29`, DealsWon: 28, DealsLost: 5, DealsPending: 13, @@ -562,10 +562,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Gloria Pleace`, - CreatedOn: `4/22/2017`, - Birthday: `9/11/2002`, - LastActivity: `5/3/2017`, - NextActivity: `5/3/2018`, + CreatedOn: `2017-04-22`, + Birthday: `2002-09-11`, + LastActivity: `2017-05-03`, + NextActivity: `2018-05-03`, DealsWon: 16, DealsLost: 5, DealsPending: 21, @@ -592,10 +592,10 @@ export class EmployeesData extends Array { State: `NV`, Country: `United States`, ReferredBy: `Rebekah Eldin`, - CreatedOn: `4/22/2017`, - Birthday: `10/18/1974`, - LastActivity: `4/29/2017`, - NextActivity: `2/28/2018`, + CreatedOn: `2017-04-22`, + Birthday: `1974-10-18`, + LastActivity: `2017-04-29`, + NextActivity: `2018-02-28`, DealsWon: 16, DealsLost: 3, DealsPending: 11, @@ -622,10 +622,10 @@ export class EmployeesData extends Array { State: `AR`, Country: `United States`, ReferredBy: `Catha Landy`, - CreatedOn: `2/4/2018`, - Birthday: `2/12/2000`, - LastActivity: `2/25/2018`, - NextActivity: `4/25/2019`, + CreatedOn: `2018-02-04`, + Birthday: `2000-02-12`, + LastActivity: `2018-02-25`, + NextActivity: `2019-04-25`, DealsWon: 11, DealsLost: 19, DealsPending: 5, @@ -652,10 +652,10 @@ export class EmployeesData extends Array { State: `MA`, Country: `United States`, ReferredBy: `Rudie Roser`, - CreatedOn: `8/1/2017`, - Birthday: `12/16/1988`, - LastActivity: `8/16/2017`, - NextActivity: `11/16/2017`, + CreatedOn: `2017-08-01`, + Birthday: `1988-12-16`, + LastActivity: `2017-08-16`, + NextActivity: `2017-11-16`, DealsWon: 1, DealsLost: 7, DealsPending: 26, @@ -682,10 +682,10 @@ export class EmployeesData extends Array { State: `WV`, Country: `United States`, ReferredBy: `Blaire Mullinder`, - CreatedOn: `2/16/2017`, - Birthday: `5/27/2001`, - LastActivity: `2/19/2017`, - NextActivity: `3/19/2017`, + CreatedOn: `2017-02-16`, + Birthday: `2001-05-27`, + LastActivity: `2017-02-19`, + NextActivity: `2017-03-19`, DealsWon: 13, DealsLost: 16, DealsPending: 5, @@ -712,10 +712,10 @@ export class EmployeesData extends Array { State: `MO`, Country: `United States`, ReferredBy: `Wilma Dow`, - CreatedOn: `4/2/2018`, - Birthday: `1/6/1997`, - LastActivity: `4/28/2018`, - NextActivity: `8/28/2019`, + CreatedOn: `2018-04-02`, + Birthday: `1997-01-06`, + LastActivity: `2018-04-28`, + NextActivity: `2019-08-28`, DealsWon: 19, DealsLost: 18, DealsPending: 21, @@ -742,10 +742,10 @@ export class EmployeesData extends Array { State: `NV`, Country: `United States`, ReferredBy: `Stevana Lucia`, - CreatedOn: `3/1/2018`, - Birthday: `5/3/1984`, - LastActivity: `3/10/2018`, - NextActivity: `2/10/2019`, + CreatedOn: `2018-03-01`, + Birthday: `1984-05-03`, + LastActivity: `2018-03-10`, + NextActivity: `2019-02-10`, DealsWon: 4, DealsLost: 8, DealsPending: 17, @@ -772,10 +772,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Hewett Starmont`, - CreatedOn: `3/7/2017`, - Birthday: `6/9/1994`, - LastActivity: `3/30/2017`, - NextActivity: `5/30/2017`, + CreatedOn: `2017-03-07`, + Birthday: `1994-06-09`, + LastActivity: `2017-03-30`, + NextActivity: `2017-05-30`, DealsWon: 1, DealsLost: 28, DealsPending: 29, @@ -802,10 +802,10 @@ export class EmployeesData extends Array { State: `IN`, Country: `United States`, ReferredBy: `Raquel Goulbourne`, - CreatedOn: `8/21/2017`, - Birthday: `12/23/1982`, - LastActivity: `8/22/2017`, - NextActivity: `4/22/2018`, + CreatedOn: `2017-08-21`, + Birthday: `1982-12-23`, + LastActivity: `2017-08-22`, + NextActivity: `2018-04-22`, DealsWon: 6, DealsLost: 19, DealsPending: 18, @@ -832,10 +832,10 @@ export class EmployeesData extends Array { State: `MN`, Country: `United States`, ReferredBy: `Bethany Chesney`, - CreatedOn: `3/26/2018`, - Birthday: `3/3/1995`, - LastActivity: `4/13/2018`, - NextActivity: `12/13/2018`, + CreatedOn: `2018-03-26`, + Birthday: `1995-03-03`, + LastActivity: `2018-04-13`, + NextActivity: `2018-12-13`, DealsWon: 8, DealsLost: 21, DealsPending: 30, @@ -862,10 +862,10 @@ export class EmployeesData extends Array { State: `TN`, Country: `United States`, ReferredBy: `Tommy Phythien`, - CreatedOn: `4/6/2018`, - Birthday: `1/28/1971`, - LastActivity: `4/24/2018`, - NextActivity: `12/24/2018`, + CreatedOn: `2018-04-06`, + Birthday: `1971-01-28`, + LastActivity: `2018-04-24`, + NextActivity: `2018-12-24`, DealsWon: 0, DealsLost: 18, DealsPending: 11, @@ -892,10 +892,10 @@ export class EmployeesData extends Array { State: `NV`, Country: `United States`, ReferredBy: `Leontine Warmisham`, - CreatedOn: `3/10/2017`, - Birthday: `4/7/1976`, - LastActivity: `4/2/2017`, - NextActivity: `8/2/2017`, + CreatedOn: `2017-03-10`, + Birthday: `1976-04-07`, + LastActivity: `2017-04-02`, + NextActivity: `2017-08-02`, DealsWon: 6, DealsLost: 10, DealsPending: 17, @@ -922,10 +922,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Marigold Kearsley`, - CreatedOn: `1/19/2018`, - Birthday: `10/25/1978`, - LastActivity: `2/3/2018`, - NextActivity: `9/3/2018`, + CreatedOn: `2018-01-19`, + Birthday: `1978-10-25`, + LastActivity: `2018-02-03`, + NextActivity: `2018-09-03`, DealsWon: 10, DealsLost: 6, DealsPending: 5, @@ -952,10 +952,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Audra Barnfield`, - CreatedOn: `5/14/2017`, - Birthday: `7/3/1996`, - LastActivity: `6/7/2017`, - NextActivity: `10/7/2018`, + CreatedOn: `2017-05-14`, + Birthday: `1996-07-03`, + LastActivity: `2017-06-07`, + NextActivity: `2018-10-07`, DealsWon: 16, DealsLost: 19, DealsPending: 20, @@ -982,10 +982,10 @@ export class EmployeesData extends Array { State: `GA`, Country: `United States`, ReferredBy: `Benedick Dockwra`, - CreatedOn: `5/6/2017`, - Birthday: `1/1/1991`, - LastActivity: `6/5/2017`, - NextActivity: `3/5/2018`, + CreatedOn: `2017-05-06`, + Birthday: `1991-01-01`, + LastActivity: `2017-06-05`, + NextActivity: `2018-03-05`, DealsWon: 4, DealsLost: 5, DealsPending: 7, @@ -1012,10 +1012,10 @@ export class EmployeesData extends Array { State: `TN`, Country: `United States`, ReferredBy: `Talya Livezley`, - CreatedOn: `11/9/2017`, - Birthday: `12/17/1987`, - LastActivity: `11/28/2017`, - NextActivity: `10/28/2018`, + CreatedOn: `2017-11-09`, + Birthday: `1987-12-17`, + LastActivity: `2017-11-28`, + NextActivity: `2018-10-28`, DealsWon: 30, DealsLost: 16, DealsPending: 16, @@ -1042,10 +1042,10 @@ export class EmployeesData extends Array { State: `VT`, Country: `United States`, ReferredBy: `Vera Heathcote`, - CreatedOn: `6/3/2017`, - Birthday: `6/6/1992`, - LastActivity: `6/17/2017`, - NextActivity: `4/17/2018`, + CreatedOn: `2017-06-03`, + Birthday: `1992-06-06`, + LastActivity: `2017-06-17`, + NextActivity: `2018-04-17`, DealsWon: 30, DealsLost: 2, DealsPending: 14, @@ -1072,10 +1072,10 @@ export class EmployeesData extends Array { State: `WI`, Country: `United States`, ReferredBy: `Veriee Ruffler`, - CreatedOn: `11/3/2017`, - Birthday: `9/18/1974`, - LastActivity: `11/24/2017`, - NextActivity: `12/24/2017`, + CreatedOn: `2017-11-03`, + Birthday: `1974-09-18`, + LastActivity: `2017-11-24`, + NextActivity: `2017-12-24`, DealsWon: 21, DealsLost: 14, DealsPending: 1, @@ -1102,10 +1102,10 @@ export class EmployeesData extends Array { State: `PA`, Country: `United States`, ReferredBy: `Ame Sheara`, - CreatedOn: `2/26/2017`, - Birthday: `11/24/1974`, - LastActivity: `3/11/2017`, - NextActivity: `8/11/2018`, + CreatedOn: `2017-02-26`, + Birthday: `1974-11-24`, + LastActivity: `2017-03-11`, + NextActivity: `2018-08-11`, DealsWon: 11, DealsLost: 10, DealsPending: 8, @@ -1132,10 +1132,10 @@ export class EmployeesData extends Array { State: `IL`, Country: `United States`, ReferredBy: `Curtis Orrom`, - CreatedOn: `9/1/2017`, - Birthday: `8/25/1988`, - LastActivity: `9/18/2017`, - NextActivity: `10/18/2017`, + CreatedOn: `2017-09-01`, + Birthday: `1988-08-25`, + LastActivity: `2017-09-18`, + NextActivity: `2017-10-18`, DealsWon: 11, DealsLost: 9, DealsPending: 8, @@ -1162,10 +1162,10 @@ export class EmployeesData extends Array { State: `AZ`, Country: `United States`, ReferredBy: `Theressa Nerney`, - CreatedOn: `11/12/2017`, - Birthday: `4/20/1993`, - LastActivity: `12/11/2017`, - NextActivity: `8/11/2019`, + CreatedOn: `2017-11-12`, + Birthday: `1993-04-20`, + LastActivity: `2017-12-11`, + NextActivity: `2019-08-11`, DealsWon: 3, DealsLost: 1, DealsPending: 2, @@ -1192,10 +1192,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Sanford Guitonneau`, - CreatedOn: `1/20/2018`, - Birthday: `3/25/1983`, - LastActivity: `1/23/2018`, - NextActivity: `9/23/2018`, + CreatedOn: `2018-01-20`, + Birthday: `1983-03-25`, + LastActivity: `2018-01-23`, + NextActivity: `2018-09-23`, DealsWon: 26, DealsLost: 27, DealsPending: 26, @@ -1222,10 +1222,10 @@ export class EmployeesData extends Array { State: `IN`, Country: `United States`, ReferredBy: `Helli Dumphy`, - CreatedOn: `12/7/2017`, - Birthday: `7/5/1973`, - LastActivity: `12/28/2017`, - NextActivity: `6/28/2019`, + CreatedOn: `2017-12-07`, + Birthday: `1973-07-05`, + LastActivity: `2017-12-28`, + NextActivity: `2019-06-28`, DealsWon: 27, DealsLost: 19, DealsPending: 10, @@ -1252,10 +1252,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Rudie Olifard`, - CreatedOn: `11/17/2017`, - Birthday: `4/13/1979`, - LastActivity: `11/19/2017`, - NextActivity: `3/19/2019`, + CreatedOn: `2017-11-17`, + Birthday: `1979-04-13`, + LastActivity: `2017-11-19`, + NextActivity: `2019-03-19`, DealsWon: 25, DealsLost: 17, DealsPending: 2, @@ -1282,10 +1282,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Clotilda Androsik`, - CreatedOn: `5/4/2017`, - Birthday: `6/8/1974`, - LastActivity: `5/25/2017`, - NextActivity: `6/25/2018`, + CreatedOn: `2017-05-04`, + Birthday: `1974-06-08`, + LastActivity: `2017-05-25`, + NextActivity: `2018-06-25`, DealsWon: 29, DealsLost: 9, DealsPending: 13, @@ -1312,10 +1312,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Wilma Stannislawski`, - CreatedOn: `10/29/2017`, - Birthday: `7/14/1993`, - LastActivity: `11/9/2017`, - NextActivity: `6/9/2018`, + CreatedOn: `2017-10-29`, + Birthday: `1993-07-14`, + LastActivity: `2017-11-09`, + NextActivity: `2018-06-09`, DealsWon: 22, DealsLost: 26, DealsPending: 9, @@ -1342,10 +1342,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Morgun Kubicka`, - CreatedOn: `3/1/2017`, - Birthday: `5/18/1983`, - LastActivity: `3/22/2017`, - NextActivity: `1/22/2018`, + CreatedOn: `2017-03-01`, + Birthday: `1983-05-18`, + LastActivity: `2017-03-22`, + NextActivity: `2018-01-22`, DealsWon: 17, DealsLost: 11, DealsPending: 5, @@ -1372,10 +1372,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Alden Winfred`, - CreatedOn: `12/22/2017`, - Birthday: `9/19/1975`, - LastActivity: `1/15/2018`, - NextActivity: `10/15/2018`, + CreatedOn: `2017-12-22`, + Birthday: `1975-09-19`, + LastActivity: `2018-01-15`, + NextActivity: `2018-10-15`, DealsWon: 1, DealsLost: 1, DealsPending: 28, @@ -1402,10 +1402,10 @@ export class EmployeesData extends Array { State: `KY`, Country: `United States`, ReferredBy: `Bethany Gipp`, - CreatedOn: `2/17/2017`, - Birthday: `3/27/1986`, - LastActivity: `2/20/2017`, - NextActivity: `8/20/2017`, + CreatedOn: `2017-02-17`, + Birthday: `1986-03-27`, + LastActivity: `2017-02-20`, + NextActivity: `2017-08-20`, DealsWon: 29, DealsLost: 14, DealsPending: 6, @@ -1432,10 +1432,10 @@ export class EmployeesData extends Array { State: `NJ`, Country: `United States`, ReferredBy: `Shell Hanmore`, - CreatedOn: `12/26/2017`, - Birthday: `12/13/1994`, - LastActivity: `1/16/2018`, - NextActivity: `6/16/2018`, + CreatedOn: `2017-12-26`, + Birthday: `1994-12-13`, + LastActivity: `2018-01-16`, + NextActivity: `2018-06-16`, DealsWon: 23, DealsLost: 26, DealsPending: 19, @@ -1462,10 +1462,10 @@ export class EmployeesData extends Array { State: `IL`, Country: `United States`, ReferredBy: `Fernande Berrick`, - CreatedOn: `4/14/2017`, - Birthday: `7/6/1997`, - LastActivity: `4/24/2017`, - NextActivity: `5/24/2017`, + CreatedOn: `2017-04-14`, + Birthday: `1997-07-06`, + LastActivity: `2017-04-24`, + NextActivity: `2017-05-24`, DealsWon: 4, DealsLost: 24, DealsPending: 3, @@ -1492,10 +1492,10 @@ export class EmployeesData extends Array { State: `WV`, Country: `United States`, ReferredBy: `Vance Dadd`, - CreatedOn: `8/9/2017`, - Birthday: `11/13/1975`, - LastActivity: `8/29/2017`, - NextActivity: `1/29/2019`, + CreatedOn: `2017-08-09`, + Birthday: `1975-11-13`, + LastActivity: `2017-08-29`, + NextActivity: `2019-01-29`, DealsWon: 20, DealsLost: 8, DealsPending: 10, @@ -1522,10 +1522,10 @@ export class EmployeesData extends Array { State: `GA`, Country: `United States`, ReferredBy: `Maggi Aspling`, - CreatedOn: `4/4/2017`, - Birthday: `9/4/1997`, - LastActivity: `4/9/2017`, - NextActivity: `12/9/2018`, + CreatedOn: `2017-04-04`, + Birthday: `1997-09-04`, + LastActivity: `2017-04-09`, + NextActivity: `2018-12-09`, DealsWon: 0, DealsLost: 2, DealsPending: 8, @@ -1552,10 +1552,10 @@ export class EmployeesData extends Array { State: `MN`, Country: `United States`, ReferredBy: `Axel Giacomasso`, - CreatedOn: `1/19/2018`, - Birthday: `7/19/1974`, - LastActivity: `2/5/2018`, - NextActivity: `6/5/2019`, + CreatedOn: `2018-01-19`, + Birthday: `1974-07-19`, + LastActivity: `2018-02-05`, + NextActivity: `2019-06-05`, DealsWon: 2, DealsLost: 20, DealsPending: 18, @@ -1582,10 +1582,10 @@ export class EmployeesData extends Array { State: `MI`, Country: `United States`, ReferredBy: `Perice Labell`, - CreatedOn: `4/16/2017`, - Birthday: `1/28/1992`, - LastActivity: `5/16/2017`, - NextActivity: `2/16/2018`, + CreatedOn: `2017-04-16`, + Birthday: `1992-01-28`, + LastActivity: `2017-05-16`, + NextActivity: `2018-02-16`, DealsWon: 22, DealsLost: 10, DealsPending: 22, @@ -1612,10 +1612,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Piggy Kaveney`, - CreatedOn: `11/8/2017`, - Birthday: `6/18/1970`, - LastActivity: `11/17/2017`, - NextActivity: `11/17/2018`, + CreatedOn: `2017-11-08`, + Birthday: `1970-06-18`, + LastActivity: `2017-11-17`, + NextActivity: `2018-11-17`, DealsWon: 20, DealsLost: 20, DealsPending: 15, @@ -1642,10 +1642,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Junia Casazza`, - CreatedOn: `10/13/2017`, - Birthday: `11/26/1973`, - LastActivity: `11/8/2017`, - NextActivity: `9/8/2019`, + CreatedOn: `2017-10-13`, + Birthday: `1973-11-26`, + LastActivity: `2017-11-08`, + NextActivity: `2019-09-08`, DealsWon: 16, DealsLost: 16, DealsPending: 27, @@ -1672,10 +1672,10 @@ export class EmployeesData extends Array { State: `AZ`, Country: `United States`, ReferredBy: `Xenos Krook`, - CreatedOn: `6/19/2017`, - Birthday: `11/20/1977`, - LastActivity: `6/30/2017`, - NextActivity: `11/30/2017`, + CreatedOn: `2017-06-19`, + Birthday: `1977-11-20`, + LastActivity: `2017-06-30`, + NextActivity: `2017-11-30`, DealsWon: 27, DealsLost: 2, DealsPending: 28, @@ -1702,10 +1702,10 @@ export class EmployeesData extends Array { State: `VA`, Country: `United States`, ReferredBy: `Kanya Lafayette`, - CreatedOn: `4/4/2018`, - Birthday: `6/14/1976`, - LastActivity: `4/7/2018`, - NextActivity: `2/7/2019`, + CreatedOn: `2018-04-04`, + Birthday: `1976-06-14`, + LastActivity: `2018-04-07`, + NextActivity: `2019-02-07`, DealsWon: 24, DealsLost: 4, DealsPending: 26, @@ -1732,10 +1732,10 @@ export class EmployeesData extends Array { State: `NJ`, Country: `United States`, ReferredBy: `Temp Smallcombe`, - CreatedOn: `11/30/2017`, - Birthday: `8/5/1972`, - LastActivity: `12/13/2017`, - NextActivity: `11/13/2018`, + CreatedOn: `2017-11-30`, + Birthday: `1972-08-05`, + LastActivity: `2017-12-13`, + NextActivity: `2018-11-13`, DealsWon: 11, DealsLost: 30, DealsPending: 14, @@ -1762,10 +1762,10 @@ export class EmployeesData extends Array { State: `WA`, Country: `United States`, ReferredBy: `Arturo Comben`, - CreatedOn: `2/22/2018`, - Birthday: `4/17/1976`, - LastActivity: `3/24/2018`, - NextActivity: `4/24/2019`, + CreatedOn: `2018-02-22`, + Birthday: `1976-04-17`, + LastActivity: `2018-03-24`, + NextActivity: `2019-04-24`, DealsWon: 12, DealsLost: 6, DealsPending: 30, @@ -1792,10 +1792,10 @@ export class EmployeesData extends Array { State: `VA`, Country: `United States`, ReferredBy: `Addy Rides`, - CreatedOn: `5/29/2017`, - Birthday: `9/3/2002`, - LastActivity: `6/6/2017`, - NextActivity: `9/6/2017`, + CreatedOn: `2017-05-29`, + Birthday: `2002-09-03`, + LastActivity: `2017-06-06`, + NextActivity: `2017-09-06`, DealsWon: 23, DealsLost: 10, DealsPending: 0, @@ -1822,10 +1822,10 @@ export class EmployeesData extends Array { State: `OK`, Country: `United States`, ReferredBy: `Silvester Segges`, - CreatedOn: `8/16/2017`, - Birthday: `5/30/1999`, - LastActivity: `9/9/2017`, - NextActivity: `12/9/2017`, + CreatedOn: `2017-08-16`, + Birthday: `1999-05-30`, + LastActivity: `2017-09-09`, + NextActivity: `2017-12-09`, DealsWon: 2, DealsLost: 13, DealsPending: 20, @@ -1852,10 +1852,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Lou Ruffle`, - CreatedOn: `5/22/2017`, - Birthday: `9/8/1973`, - LastActivity: `6/4/2017`, - NextActivity: `11/4/2018`, + CreatedOn: `2017-05-22`, + Birthday: `1973-09-08`, + LastActivity: `2017-06-04`, + NextActivity: `2018-11-04`, DealsWon: 1, DealsLost: 22, DealsPending: 27, @@ -1882,10 +1882,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Constantino Yatman`, - CreatedOn: `9/4/2017`, - Birthday: `6/26/2000`, - LastActivity: `9/14/2017`, - NextActivity: `3/14/2018`, + CreatedOn: `2017-09-04`, + Birthday: `2000-06-26`, + LastActivity: `2017-09-14`, + NextActivity: `2018-03-14`, DealsWon: 11, DealsLost: 27, DealsPending: 29, @@ -1912,10 +1912,10 @@ export class EmployeesData extends Array { State: `TN`, Country: `United States`, ReferredBy: `Augustine Glasser`, - CreatedOn: `6/18/2017`, - Birthday: `3/10/1979`, - LastActivity: `6/20/2017`, - NextActivity: `10/20/2018`, + CreatedOn: `2017-06-18`, + Birthday: `1979-03-10`, + LastActivity: `2017-06-20`, + NextActivity: `2018-10-20`, DealsWon: 25, DealsLost: 10, DealsPending: 25, @@ -1942,10 +1942,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Ramsay Ugolini`, - CreatedOn: `12/30/2017`, - Birthday: `12/17/1985`, - LastActivity: `1/24/2018`, - NextActivity: `9/24/2018`, + CreatedOn: `2017-12-30`, + Birthday: `1985-12-17`, + LastActivity: `2018-01-24`, + NextActivity: `2018-09-24`, DealsWon: 9, DealsLost: 3, DealsPending: 0, @@ -1972,10 +1972,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Jaynell Innis`, - CreatedOn: `7/10/2017`, - Birthday: `8/26/1970`, - LastActivity: `7/27/2017`, - NextActivity: `1/27/2018`, + CreatedOn: `2017-07-10`, + Birthday: `1970-08-26`, + LastActivity: `2017-07-27`, + NextActivity: `2018-01-27`, DealsWon: 3, DealsLost: 27, DealsPending: 2, @@ -2002,10 +2002,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Wynn Chamberlin`, - CreatedOn: `3/13/2018`, - Birthday: `4/5/1994`, - LastActivity: `3/21/2018`, - NextActivity: `3/21/2019`, + CreatedOn: `2018-03-13`, + Birthday: `1994-04-05`, + LastActivity: `2018-03-21`, + NextActivity: `2019-03-21`, DealsWon: 9, DealsLost: 11, DealsPending: 21, @@ -2032,10 +2032,10 @@ export class EmployeesData extends Array { State: `TN`, Country: `United States`, ReferredBy: `Kendal Lenin`, - CreatedOn: `2/12/2017`, - Birthday: `7/9/1975`, - LastActivity: `2/14/2017`, - NextActivity: `5/14/2018`, + CreatedOn: `2017-02-12`, + Birthday: `1975-07-09`, + LastActivity: `2017-02-14`, + NextActivity: `2018-05-14`, DealsWon: 15, DealsLost: 22, DealsPending: 16, @@ -2062,10 +2062,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Westleigh Grimsdell`, - CreatedOn: `2/15/2017`, - Birthday: `11/19/1981`, - LastActivity: `3/4/2017`, - NextActivity: `9/4/2017`, + CreatedOn: `2017-02-15`, + Birthday: `1981-11-19`, + LastActivity: `2017-03-04`, + NextActivity: `2017-09-04`, DealsWon: 10, DealsLost: 23, DealsPending: 9, @@ -2092,10 +2092,10 @@ export class EmployeesData extends Array { State: `OR`, Country: `United States`, ReferredBy: `Caldwell Village`, - CreatedOn: `11/17/2017`, - Birthday: `8/22/1999`, - LastActivity: `12/9/2017`, - NextActivity: `7/9/2018`, + CreatedOn: `2017-11-17`, + Birthday: `1999-08-22`, + LastActivity: `2017-12-09`, + NextActivity: `2018-07-09`, DealsWon: 6, DealsLost: 10, DealsPending: 12, @@ -2122,10 +2122,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Ammamaria Wahner`, - CreatedOn: `10/18/2017`, - Birthday: `7/13/1995`, - LastActivity: `10/31/2017`, - NextActivity: `6/30/2018`, + CreatedOn: `2017-10-18`, + Birthday: `1995-07-13`, + LastActivity: `2017-10-31`, + NextActivity: `2018-06-30`, DealsWon: 12, DealsLost: 5, DealsPending: 15, @@ -2152,10 +2152,10 @@ export class EmployeesData extends Array { State: `AR`, Country: `United States`, ReferredBy: `Saleem Grocock`, - CreatedOn: `6/7/2017`, - Birthday: `5/26/1978`, - LastActivity: `7/5/2017`, - NextActivity: `6/5/2018`, + CreatedOn: `2017-06-07`, + Birthday: `1978-05-26`, + LastActivity: `2017-07-05`, + NextActivity: `2018-06-05`, DealsWon: 19, DealsLost: 7, DealsPending: 8, @@ -2182,10 +2182,10 @@ export class EmployeesData extends Array { State: `LA`, Country: `United States`, ReferredBy: `Charmian Ajsik`, - CreatedOn: `12/18/2017`, - Birthday: `2/24/1982`, - LastActivity: `1/15/2018`, - NextActivity: `10/15/2019`, + CreatedOn: `2017-12-18`, + Birthday: `1982-02-24`, + LastActivity: `2018-01-15`, + NextActivity: `2019-10-15`, DealsWon: 3, DealsLost: 1, DealsPending: 26, @@ -2212,10 +2212,10 @@ export class EmployeesData extends Array { State: `PA`, Country: `United States`, ReferredBy: `Joey Harce`, - CreatedOn: `7/18/2017`, - Birthday: `2/22/1981`, - LastActivity: `8/6/2017`, - NextActivity: `4/6/2018`, + CreatedOn: `2017-07-18`, + Birthday: `1981-02-22`, + LastActivity: `2017-08-06`, + NextActivity: `2018-04-06`, DealsWon: 16, DealsLost: 8, DealsPending: 24, @@ -2242,10 +2242,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Monte Norcott`, - CreatedOn: `2/12/2018`, - Birthday: `7/6/1978`, - LastActivity: `3/12/2018`, - NextActivity: `10/12/2018`, + CreatedOn: `2018-02-12`, + Birthday: `1978-07-06`, + LastActivity: `2018-03-12`, + NextActivity: `2018-10-12`, DealsWon: 14, DealsLost: 13, DealsPending: 22, @@ -2272,10 +2272,10 @@ export class EmployeesData extends Array { State: `MD`, Country: `United States`, ReferredBy: `Ivett Olechnowicz`, - CreatedOn: `2/23/2017`, - Birthday: `6/3/1986`, - LastActivity: `3/2/2017`, - NextActivity: `12/2/2017`, + CreatedOn: `2017-02-23`, + Birthday: `1986-06-03`, + LastActivity: `2017-03-02`, + NextActivity: `2017-12-02`, DealsWon: 8, DealsLost: 26, DealsPending: 12, @@ -2302,10 +2302,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Cristionna Madine`, - CreatedOn: `2/6/2018`, - Birthday: `1/19/1975`, - LastActivity: `3/4/2018`, - NextActivity: `9/4/2019`, + CreatedOn: `2018-02-06`, + Birthday: `1975-01-19`, + LastActivity: `2018-03-04`, + NextActivity: `2019-09-04`, DealsWon: 25, DealsLost: 6, DealsPending: 26, @@ -2332,10 +2332,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Noellyn Pass`, - CreatedOn: `11/24/2017`, - Birthday: `7/20/2001`, - LastActivity: `12/21/2017`, - NextActivity: `6/21/2018`, + CreatedOn: `2017-11-24`, + Birthday: `2001-07-20`, + LastActivity: `2017-12-21`, + NextActivity: `2018-06-21`, DealsWon: 28, DealsLost: 29, DealsPending: 8, @@ -2362,10 +2362,10 @@ export class EmployeesData extends Array { State: `OH`, Country: `United States`, ReferredBy: `Trula Jozsika`, - CreatedOn: `12/12/2017`, - Birthday: `9/30/1989`, - LastActivity: `12/28/2017`, - NextActivity: `5/28/2019`, + CreatedOn: `2017-12-12`, + Birthday: `1989-09-30`, + LastActivity: `2017-12-28`, + NextActivity: `2019-05-28`, DealsWon: 11, DealsLost: 3, DealsPending: 12, @@ -2392,10 +2392,10 @@ export class EmployeesData extends Array { State: `NC`, Country: `United States`, ReferredBy: `Chet Lydall`, - CreatedOn: `12/10/2017`, - Birthday: `5/12/1977`, - LastActivity: `12/17/2017`, - NextActivity: `12/17/2018`, + CreatedOn: `2017-12-10`, + Birthday: `1977-05-12`, + LastActivity: `2017-12-17`, + NextActivity: `2018-12-17`, DealsWon: 5, DealsLost: 15, DealsPending: 22, @@ -2422,10 +2422,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Corabella Netherwood`, - CreatedOn: `3/29/2017`, - Birthday: `8/30/1975`, - LastActivity: `4/28/2017`, - NextActivity: `8/28/2017`, + CreatedOn: `2017-03-29`, + Birthday: `1975-08-30`, + LastActivity: `2017-04-28`, + NextActivity: `2017-08-28`, DealsWon: 26, DealsLost: 19, DealsPending: 1, @@ -2452,10 +2452,10 @@ export class EmployeesData extends Array { State: `TN`, Country: `United States`, ReferredBy: `Elayne Barg`, - CreatedOn: `2/5/2018`, - Birthday: `1/19/1972`, - LastActivity: `2/28/2018`, - NextActivity: `12/28/2018`, + CreatedOn: `2018-02-05`, + Birthday: `1972-01-19`, + LastActivity: `2018-02-28`, + NextActivity: `2018-12-28`, DealsWon: 25, DealsLost: 7, DealsPending: 27, @@ -2482,10 +2482,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Sheffy Jenoure`, - CreatedOn: `3/28/2017`, - Birthday: `4/20/1976`, - LastActivity: `4/5/2017`, - NextActivity: `2/5/2019`, + CreatedOn: `2017-03-28`, + Birthday: `1976-04-20`, + LastActivity: `2017-04-05`, + NextActivity: `2019-02-05`, DealsWon: 12, DealsLost: 26, DealsPending: 6, @@ -2512,10 +2512,10 @@ export class EmployeesData extends Array { State: `IL`, Country: `United States`, ReferredBy: `Clovis Tease`, - CreatedOn: `11/15/2017`, - Birthday: `5/16/1979`, - LastActivity: `11/24/2017`, - NextActivity: `5/24/2019`, + CreatedOn: `2017-11-15`, + Birthday: `1979-05-16`, + LastActivity: `2017-11-24`, + NextActivity: `2019-05-24`, DealsWon: 14, DealsLost: 22, DealsPending: 9, @@ -2542,10 +2542,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Madelene Coudray`, - CreatedOn: `6/17/2017`, - Birthday: `1/6/1986`, - LastActivity: `6/18/2017`, - NextActivity: `5/18/2018`, + CreatedOn: `2017-06-17`, + Birthday: `1986-01-06`, + LastActivity: `2017-06-18`, + NextActivity: `2018-05-18`, DealsWon: 21, DealsLost: 1, DealsPending: 29, @@ -2572,10 +2572,10 @@ export class EmployeesData extends Array { State: `NC`, Country: `United States`, ReferredBy: `Sheila Halgarth`, - CreatedOn: `10/3/2017`, - Birthday: `8/24/1981`, - LastActivity: `10/23/2017`, - NextActivity: `3/23/2018`, + CreatedOn: `2017-10-03`, + Birthday: `1981-08-24`, + LastActivity: `2017-10-23`, + NextActivity: `2018-03-23`, DealsWon: 9, DealsLost: 30, DealsPending: 18, @@ -2602,10 +2602,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Kania Mazzei`, - CreatedOn: `7/31/2017`, - Birthday: `6/28/2001`, - LastActivity: `8/29/2017`, - NextActivity: `11/29/2017`, + CreatedOn: `2017-07-31`, + Birthday: `2001-06-28`, + LastActivity: `2017-08-29`, + NextActivity: `2017-11-29`, DealsWon: 10, DealsLost: 23, DealsPending: 21, @@ -2632,10 +2632,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Barrie MacParland`, - CreatedOn: `8/27/2017`, - Birthday: `2/7/1981`, - LastActivity: `9/21/2017`, - NextActivity: `2/21/2019`, + CreatedOn: `2017-08-27`, + Birthday: `1981-02-07`, + LastActivity: `2017-09-21`, + NextActivity: `2019-02-21`, DealsWon: 19, DealsLost: 3, DealsPending: 13, @@ -2662,10 +2662,10 @@ export class EmployeesData extends Array { State: `VT`, Country: `United States`, ReferredBy: `Norton Dagwell`, - CreatedOn: `1/16/2018`, - Birthday: `11/20/1970`, - LastActivity: `1/30/2018`, - NextActivity: `2/28/2018`, + CreatedOn: `2018-01-16`, + Birthday: `1970-11-20`, + LastActivity: `2018-01-30`, + NextActivity: `2018-02-28`, DealsWon: 5, DealsLost: 13, DealsPending: 26, @@ -2692,10 +2692,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Antonio Giriardelli`, - CreatedOn: `2/11/2017`, - Birthday: `6/2/1978`, - LastActivity: `3/8/2017`, - NextActivity: `7/8/2018`, + CreatedOn: `2017-02-11`, + Birthday: `1978-06-02`, + LastActivity: `2017-03-08`, + NextActivity: `2018-07-08`, DealsWon: 9, DealsLost: 13, DealsPending: 19, @@ -2722,10 +2722,10 @@ export class EmployeesData extends Array { State: `AR`, Country: `United States`, ReferredBy: `Claude MacLaverty`, - CreatedOn: `7/31/2017`, - Birthday: `9/22/1979`, - LastActivity: `8/17/2017`, - NextActivity: `3/17/2019`, + CreatedOn: `2017-07-31`, + Birthday: `1979-09-22`, + LastActivity: `2017-08-17`, + NextActivity: `2019-03-17`, DealsWon: 0, DealsLost: 8, DealsPending: 21, @@ -2752,10 +2752,10 @@ export class EmployeesData extends Array { State: `CO`, Country: `United States`, ReferredBy: `Zilvia Boulding`, - CreatedOn: `5/1/2017`, - Birthday: `3/6/1991`, - LastActivity: `5/2/2017`, - NextActivity: `12/2/2018`, + CreatedOn: `2017-05-01`, + Birthday: `1991-03-06`, + LastActivity: `2017-05-02`, + NextActivity: `2018-12-02`, DealsWon: 23, DealsLost: 24, DealsPending: 5, @@ -2782,10 +2782,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Kip Croster`, - CreatedOn: `3/12/2018`, - Birthday: `12/2/1989`, - LastActivity: `4/9/2018`, - NextActivity: `8/9/2018`, + CreatedOn: `2018-03-12`, + Birthday: `1989-12-02`, + LastActivity: `2018-04-09`, + NextActivity: `2018-08-09`, DealsWon: 13, DealsLost: 3, DealsPending: 19, @@ -2812,10 +2812,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Berget Harome`, - CreatedOn: `3/16/2017`, - Birthday: `12/12/1999`, - LastActivity: `4/13/2017`, - NextActivity: `9/13/2017`, + CreatedOn: `2017-03-16`, + Birthday: `1999-12-12`, + LastActivity: `2017-04-13`, + NextActivity: `2017-09-13`, DealsWon: 8, DealsLost: 15, DealsPending: 24, @@ -2842,10 +2842,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Junia Scrowston`, - CreatedOn: `12/9/2017`, - Birthday: `4/10/1997`, - LastActivity: `12/20/2017`, - NextActivity: `1/20/2019`, + CreatedOn: `2017-12-09`, + Birthday: `1997-04-10`, + LastActivity: `2017-12-20`, + NextActivity: `2019-01-20`, DealsWon: 1, DealsLost: 19, DealsPending: 8, @@ -2872,10 +2872,10 @@ export class EmployeesData extends Array { State: `WA`, Country: `United States`, ReferredBy: `Ahmad Ewbank`, - CreatedOn: `11/2/2017`, - Birthday: `12/21/1970`, - LastActivity: `11/18/2017`, - NextActivity: `12/18/2017`, + CreatedOn: `2017-11-02`, + Birthday: `1970-12-21`, + LastActivity: `2017-11-18`, + NextActivity: `2017-12-18`, DealsWon: 19, DealsLost: 2, DealsPending: 9, @@ -2902,10 +2902,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Isacco McVeighty`, - CreatedOn: `9/4/2017`, - Birthday: `5/28/1975`, - LastActivity: `9/30/2017`, - NextActivity: `2/28/2018`, + CreatedOn: `2017-09-04`, + Birthday: `1975-05-28`, + LastActivity: `2017-09-30`, + NextActivity: `2018-02-28`, DealsWon: 22, DealsLost: 24, DealsPending: 18, @@ -2932,10 +2932,10 @@ export class EmployeesData extends Array { State: `LA`, Country: `United States`, ReferredBy: `Chrissie L'Episcopio`, - CreatedOn: `9/26/2017`, - Birthday: `10/15/1992`, - LastActivity: `10/19/2017`, - NextActivity: `9/19/2018`, + CreatedOn: `2017-09-26`, + Birthday: `1992-10-15`, + LastActivity: `2017-10-19`, + NextActivity: `2018-09-19`, DealsWon: 8, DealsLost: 4, DealsPending: 1, @@ -2962,10 +2962,10 @@ export class EmployeesData extends Array { State: `MA`, Country: `United States`, ReferredBy: `Allister De Metz`, - CreatedOn: `2/11/2017`, - Birthday: `11/8/1987`, - LastActivity: `2/20/2017`, - NextActivity: `12/20/2017`, + CreatedOn: `2017-02-11`, + Birthday: `1987-11-08`, + LastActivity: `2017-02-20`, + NextActivity: `2017-12-20`, DealsWon: 21, DealsLost: 27, DealsPending: 0, @@ -2992,10 +2992,10 @@ export class EmployeesData extends Array { State: `OK`, Country: `United States`, ReferredBy: `Trey Pavlishchev`, - CreatedOn: `1/12/2017`, - Birthday: `9/21/1979`, - LastActivity: `1/21/2017`, - NextActivity: `10/21/2018`, + CreatedOn: `2017-01-12`, + Birthday: `1979-09-21`, + LastActivity: `2017-01-21`, + NextActivity: `2018-10-21`, DealsWon: 2, DealsLost: 5, DealsPending: 8, @@ -3022,10 +3022,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Shanie Simenon`, - CreatedOn: `11/4/2017`, - Birthday: `3/7/1975`, - LastActivity: `11/28/2017`, - NextActivity: `3/28/2018`, + CreatedOn: `2017-11-04`, + Birthday: `1975-03-07`, + LastActivity: `2017-11-28`, + NextActivity: `2018-03-28`, DealsWon: 16, DealsLost: 4, DealsPending: 29, @@ -3052,10 +3052,10 @@ export class EmployeesData extends Array { State: `CT`, Country: `United States`, ReferredBy: `Glenden Arminger`, - CreatedOn: `1/12/2017`, - Birthday: `3/1/2002`, - LastActivity: `1/21/2017`, - NextActivity: `3/21/2017`, + CreatedOn: `2017-01-12`, + Birthday: `2002-03-01`, + LastActivity: `2017-01-21`, + NextActivity: `2017-03-21`, DealsWon: 15, DealsLost: 9, DealsPending: 17, @@ -3082,10 +3082,10 @@ export class EmployeesData extends Array { State: `LA`, Country: `United States`, ReferredBy: `Fremont Tommei`, - CreatedOn: `9/12/2017`, - Birthday: `11/2/1980`, - LastActivity: `9/28/2017`, - NextActivity: `8/28/2018`, + CreatedOn: `2017-09-12`, + Birthday: `1980-11-02`, + LastActivity: `2017-09-28`, + NextActivity: `2018-08-28`, DealsWon: 17, DealsLost: 25, DealsPending: 19, @@ -3112,10 +3112,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Raimundo Desorts`, - CreatedOn: `9/28/2017`, - Birthday: `7/25/1986`, - LastActivity: `10/27/2017`, - NextActivity: `3/27/2019`, + CreatedOn: `2017-09-28`, + Birthday: `1986-07-25`, + LastActivity: `2017-10-27`, + NextActivity: `2019-03-27`, DealsWon: 0, DealsLost: 15, DealsPending: 18, @@ -3142,10 +3142,10 @@ export class EmployeesData extends Array { State: `MN`, Country: `United States`, ReferredBy: `Alejandro Hands`, - CreatedOn: `10/6/2017`, - Birthday: `8/21/1973`, - LastActivity: `10/9/2017`, - NextActivity: `10/9/2019`, + CreatedOn: `2017-10-06`, + Birthday: `1973-08-21`, + LastActivity: `2017-10-09`, + NextActivity: `2019-10-09`, DealsWon: 20, DealsLost: 24, DealsPending: 28, @@ -3172,10 +3172,10 @@ export class EmployeesData extends Array { State: `GA`, Country: `United States`, ReferredBy: `Thea Clemo`, - CreatedOn: `4/16/2018`, - Birthday: `12/13/1988`, - LastActivity: `4/24/2018`, - NextActivity: `2/24/2020`, + CreatedOn: `2018-04-16`, + Birthday: `1988-12-13`, + LastActivity: `2018-04-24`, + NextActivity: `2020-02-24`, DealsWon: 20, DealsLost: 19, DealsPending: 25, @@ -3202,10 +3202,10 @@ export class EmployeesData extends Array { State: `GA`, Country: `United States`, ReferredBy: `Frayda Bullocke`, - CreatedOn: `11/10/2017`, - Birthday: `4/14/1972`, - LastActivity: `12/10/2017`, - NextActivity: `8/10/2018`, + CreatedOn: `2017-11-10`, + Birthday: `1972-04-14`, + LastActivity: `2017-12-10`, + NextActivity: `2018-08-10`, DealsWon: 30, DealsLost: 26, DealsPending: 28, @@ -3232,10 +3232,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Irena Creelman`, - CreatedOn: `5/29/2017`, - Birthday: `8/14/1995`, - LastActivity: `6/28/2017`, - NextActivity: `7/28/2017`, + CreatedOn: `2017-05-29`, + Birthday: `1995-08-14`, + LastActivity: `2017-06-28`, + NextActivity: `2017-07-28`, DealsWon: 14, DealsLost: 30, DealsPending: 19, @@ -3262,10 +3262,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Fremont Houldin`, - CreatedOn: `10/25/2017`, - Birthday: `12/3/1976`, - LastActivity: `10/28/2017`, - NextActivity: `8/28/2018`, + CreatedOn: `2017-10-25`, + Birthday: `1976-12-03`, + LastActivity: `2017-10-28`, + NextActivity: `2018-08-28`, DealsWon: 15, DealsLost: 10, DealsPending: 8, @@ -3292,10 +3292,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Madalena Biagioni`, - CreatedOn: `3/28/2017`, - Birthday: `6/23/1977`, - LastActivity: `4/16/2017`, - NextActivity: `5/16/2017`, + CreatedOn: `2017-03-28`, + Birthday: `1977-06-23`, + LastActivity: `2017-04-16`, + NextActivity: `2017-05-16`, DealsWon: 24, DealsLost: 3, DealsPending: 7, @@ -3322,10 +3322,10 @@ export class EmployeesData extends Array { State: `CO`, Country: `United States`, ReferredBy: `Emerson Finden`, - CreatedOn: `7/3/2017`, - Birthday: `6/19/1986`, - LastActivity: `7/16/2017`, - NextActivity: `8/16/2017`, + CreatedOn: `2017-07-03`, + Birthday: `1986-06-19`, + LastActivity: `2017-07-16`, + NextActivity: `2017-08-16`, DealsWon: 15, DealsLost: 1, DealsPending: 9, @@ -3352,10 +3352,10 @@ export class EmployeesData extends Array { State: `MN`, Country: `United States`, ReferredBy: `Rinaldo Clail`, - CreatedOn: `12/26/2017`, - Birthday: `6/2/1973`, - LastActivity: `1/18/2018`, - NextActivity: `4/18/2018`, + CreatedOn: `2017-12-26`, + Birthday: `1973-06-02`, + LastActivity: `2018-01-18`, + NextActivity: `2018-04-18`, DealsWon: 23, DealsLost: 20, DealsPending: 3, @@ -3382,10 +3382,10 @@ export class EmployeesData extends Array { State: `WV`, Country: `United States`, ReferredBy: `Shurwood Fullbrook`, - CreatedOn: `1/17/2018`, - Birthday: `6/10/1976`, - LastActivity: `2/11/2018`, - NextActivity: `8/11/2019`, + CreatedOn: `2018-01-17`, + Birthday: `1976-06-10`, + LastActivity: `2018-02-11`, + NextActivity: `2019-08-11`, DealsWon: 7, DealsLost: 6, DealsPending: 16, @@ -3412,10 +3412,10 @@ export class EmployeesData extends Array { State: `OH`, Country: `United States`, ReferredBy: `Emlen Werner`, - CreatedOn: `5/28/2017`, - Birthday: `6/15/1983`, - LastActivity: `6/17/2017`, - NextActivity: `6/17/2019`, + CreatedOn: `2017-05-28`, + Birthday: `1983-06-15`, + LastActivity: `2017-06-17`, + NextActivity: `2019-06-17`, DealsWon: 23, DealsLost: 16, DealsPending: 21, @@ -3442,10 +3442,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Kurt Gianiello`, - CreatedOn: `6/5/2017`, - Birthday: `11/29/1985`, - LastActivity: `6/21/2017`, - NextActivity: `8/21/2018`, + CreatedOn: `2017-06-05`, + Birthday: `1985-11-29`, + LastActivity: `2017-06-21`, + NextActivity: `2018-08-21`, DealsWon: 21, DealsLost: 5, DealsPending: 19, @@ -3472,10 +3472,10 @@ export class EmployeesData extends Array { State: `NE`, Country: `United States`, ReferredBy: `Dewain Lundie`, - CreatedOn: `1/18/2017`, - Birthday: `8/16/1989`, - LastActivity: `1/29/2017`, - NextActivity: `7/29/2017`, + CreatedOn: `2017-01-18`, + Birthday: `1989-08-16`, + LastActivity: `2017-01-29`, + NextActivity: `2017-07-29`, DealsWon: 16, DealsLost: 2, DealsPending: 30, @@ -3502,10 +3502,10 @@ export class EmployeesData extends Array { State: `MI`, Country: `United States`, ReferredBy: `Georg Goody`, - CreatedOn: `6/25/2017`, - Birthday: `1/4/2000`, - LastActivity: `7/6/2017`, - NextActivity: `9/6/2018`, + CreatedOn: `2017-06-25`, + Birthday: `2000-01-04`, + LastActivity: `2017-07-06`, + NextActivity: `2018-09-06`, DealsWon: 20, DealsLost: 17, DealsPending: 13, @@ -3532,10 +3532,10 @@ export class EmployeesData extends Array { State: `CO`, Country: `United States`, ReferredBy: `Agna Hickeringill`, - CreatedOn: `2/10/2018`, - Birthday: `5/11/1979`, - LastActivity: `3/8/2018`, - NextActivity: `8/8/2019`, + CreatedOn: `2018-02-10`, + Birthday: `1979-05-11`, + LastActivity: `2018-03-08`, + NextActivity: `2019-08-08`, DealsWon: 6, DealsLost: 11, DealsPending: 12, @@ -3562,10 +3562,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Dyane Riddiford`, - CreatedOn: `5/15/2017`, - Birthday: `4/28/1994`, - LastActivity: `6/5/2017`, - NextActivity: `1/5/2019`, + CreatedOn: `2017-05-15`, + Birthday: `1994-04-28`, + LastActivity: `2017-06-05`, + NextActivity: `2019-01-05`, DealsWon: 19, DealsLost: 14, DealsPending: 15, @@ -3592,10 +3592,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Saunders Headan`, - CreatedOn: `6/29/2017`, - Birthday: `11/1/1984`, - LastActivity: `7/8/2017`, - NextActivity: `11/8/2018`, + CreatedOn: `2017-06-29`, + Birthday: `1984-11-01`, + LastActivity: `2017-07-08`, + NextActivity: `2018-11-08`, DealsWon: 16, DealsLost: 16, DealsPending: 7, @@ -3622,10 +3622,10 @@ export class EmployeesData extends Array { State: `AZ`, Country: `United States`, ReferredBy: `Thornton Ansley`, - CreatedOn: `4/13/2017`, - Birthday: `8/19/2002`, - LastActivity: `4/25/2017`, - NextActivity: `12/25/2017`, + CreatedOn: `2017-04-13`, + Birthday: `2002-08-19`, + LastActivity: `2017-04-25`, + NextActivity: `2017-12-25`, DealsWon: 6, DealsLost: 2, DealsPending: 22, @@ -3652,10 +3652,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Robbyn Ommundsen`, - CreatedOn: `10/8/2017`, - Birthday: `2/21/1973`, - LastActivity: `10/24/2017`, - NextActivity: `4/24/2018`, + CreatedOn: `2017-10-08`, + Birthday: `1973-02-21`, + LastActivity: `2017-10-24`, + NextActivity: `2018-04-24`, DealsWon: 3, DealsLost: 6, DealsPending: 8, @@ -3682,10 +3682,10 @@ export class EmployeesData extends Array { State: `MI`, Country: `United States`, ReferredBy: `Everett M'Barron`, - CreatedOn: `1/16/2018`, - Birthday: `10/16/1975`, - LastActivity: `2/11/2018`, - NextActivity: `3/11/2018`, + CreatedOn: `2018-01-16`, + Birthday: `1975-10-16`, + LastActivity: `2018-02-11`, + NextActivity: `2018-03-11`, DealsWon: 29, DealsLost: 13, DealsPending: 6, @@ -3712,10 +3712,10 @@ export class EmployeesData extends Array { State: `NE`, Country: `United States`, ReferredBy: `Muffin Macilhench`, - CreatedOn: `7/13/2017`, - Birthday: `1/29/1986`, - LastActivity: `7/14/2017`, - NextActivity: `10/14/2018`, + CreatedOn: `2017-07-13`, + Birthday: `1986-01-29`, + LastActivity: `2017-07-14`, + NextActivity: `2018-10-14`, DealsWon: 9, DealsLost: 15, DealsPending: 10, @@ -3742,10 +3742,10 @@ export class EmployeesData extends Array { State: `OH`, Country: `United States`, ReferredBy: `Doralynne Chard`, - CreatedOn: `4/6/2017`, - Birthday: `7/17/1984`, - LastActivity: `4/25/2017`, - NextActivity: `7/25/2017`, + CreatedOn: `2017-04-06`, + Birthday: `1984-07-17`, + LastActivity: `2017-04-25`, + NextActivity: `2017-07-25`, DealsWon: 27, DealsLost: 16, DealsPending: 7, @@ -3772,10 +3772,10 @@ export class EmployeesData extends Array { State: `WV`, Country: `United States`, ReferredBy: `Emlen Beecham`, - CreatedOn: `3/18/2018`, - Birthday: `2/25/1977`, - LastActivity: `4/2/2018`, - NextActivity: `7/2/2019`, + CreatedOn: `2018-03-18`, + Birthday: `1977-02-25`, + LastActivity: `2018-04-02`, + NextActivity: `2019-07-02`, DealsWon: 20, DealsLost: 26, DealsPending: 30, @@ -3802,10 +3802,10 @@ export class EmployeesData extends Array { State: `OH`, Country: `United States`, ReferredBy: `Martynne Geekin`, - CreatedOn: `10/30/2017`, - Birthday: `1/16/1988`, - LastActivity: `11/27/2017`, - NextActivity: `2/27/2019`, + CreatedOn: `2017-10-30`, + Birthday: `1988-01-16`, + LastActivity: `2017-11-27`, + NextActivity: `2019-02-27`, DealsWon: 20, DealsLost: 1, DealsPending: 25, @@ -3832,10 +3832,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Bette-ann Housden`, - CreatedOn: `7/4/2017`, - Birthday: `11/23/1972`, - LastActivity: `7/16/2017`, - NextActivity: `6/16/2019`, + CreatedOn: `2017-07-04`, + Birthday: `1972-11-23`, + LastActivity: `2017-07-16`, + NextActivity: `2019-06-16`, DealsWon: 7, DealsLost: 29, DealsPending: 9, @@ -3862,10 +3862,10 @@ export class EmployeesData extends Array { State: `OR`, Country: `United States`, ReferredBy: `Lou Eastridge`, - CreatedOn: `3/12/2017`, - Birthday: `4/30/1982`, - LastActivity: `3/23/2017`, - NextActivity: `7/23/2017`, + CreatedOn: `2017-03-12`, + Birthday: `1982-04-30`, + LastActivity: `2017-03-23`, + NextActivity: `2017-07-23`, DealsWon: 18, DealsLost: 24, DealsPending: 15, @@ -3892,10 +3892,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Bev Destouche`, - CreatedOn: `2/22/2018`, - Birthday: `10/12/2001`, - LastActivity: `3/12/2018`, - NextActivity: `4/12/2019`, + CreatedOn: `2018-02-22`, + Birthday: `2001-10-12`, + LastActivity: `2018-03-12`, + NextActivity: `2019-04-12`, DealsWon: 30, DealsLost: 10, DealsPending: 23, @@ -3922,10 +3922,10 @@ export class EmployeesData extends Array { State: `CO`, Country: `United States`, ReferredBy: `Vitoria Tulleth`, - CreatedOn: `6/18/2017`, - Birthday: `3/17/1996`, - LastActivity: `7/9/2017`, - NextActivity: `12/9/2017`, + CreatedOn: `2017-06-18`, + Birthday: `1996-03-17`, + LastActivity: `2017-07-09`, + NextActivity: `2017-12-09`, DealsWon: 28, DealsLost: 17, DealsPending: 5, @@ -3952,10 +3952,10 @@ export class EmployeesData extends Array { State: `KS`, Country: `United States`, ReferredBy: `Melisande Barneveld`, - CreatedOn: `6/7/2017`, - Birthday: `9/15/1978`, - LastActivity: `6/17/2017`, - NextActivity: `7/17/2018`, + CreatedOn: `2017-06-07`, + Birthday: `1978-09-15`, + LastActivity: `2017-06-17`, + NextActivity: `2018-07-17`, DealsWon: 4, DealsLost: 19, DealsPending: 26, @@ -3982,10 +3982,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Holly Fonteyne`, - CreatedOn: `4/16/2017`, - Birthday: `10/2/1991`, - LastActivity: `5/6/2017`, - NextActivity: `11/6/2017`, + CreatedOn: `2017-04-16`, + Birthday: `1991-10-02`, + LastActivity: `2017-05-06`, + NextActivity: `2017-11-06`, DealsWon: 6, DealsLost: 3, DealsPending: 15, @@ -4012,10 +4012,10 @@ export class EmployeesData extends Array { State: `ND`, Country: `United States`, ReferredBy: `Neely Dee`, - CreatedOn: `10/4/2017`, - Birthday: `2/20/2003`, - LastActivity: `10/12/2017`, - NextActivity: `1/12/2019`, + CreatedOn: `2017-10-04`, + Birthday: `2003-02-20`, + LastActivity: `2017-10-12`, + NextActivity: `2019-01-12`, DealsWon: 13, DealsLost: 19, DealsPending: 14, @@ -4042,10 +4042,10 @@ export class EmployeesData extends Array { State: `MN`, Country: `United States`, ReferredBy: `Vitoria Bullivent`, - CreatedOn: `4/13/2018`, - Birthday: `8/11/1974`, - LastActivity: `5/8/2018`, - NextActivity: `4/8/2019`, + CreatedOn: `2018-04-13`, + Birthday: `1974-08-11`, + LastActivity: `2018-05-08`, + NextActivity: `2019-04-08`, DealsWon: 30, DealsLost: 1, DealsPending: 1, @@ -4072,10 +4072,10 @@ export class EmployeesData extends Array { State: `CT`, Country: `United States`, ReferredBy: `Wendall Sands`, - CreatedOn: `11/3/2017`, - Birthday: `4/2/1977`, - LastActivity: `11/21/2017`, - NextActivity: `10/21/2019`, + CreatedOn: `2017-11-03`, + Birthday: `1977-04-02`, + LastActivity: `2017-11-21`, + NextActivity: `2019-10-21`, DealsWon: 4, DealsLost: 1, DealsPending: 17, @@ -4102,10 +4102,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Elbertina Huelin`, - CreatedOn: `11/5/2017`, - Birthday: `7/29/1995`, - LastActivity: `11/11/2017`, - NextActivity: `10/11/2018`, + CreatedOn: `2017-11-05`, + Birthday: `1995-07-29`, + LastActivity: `2017-11-11`, + NextActivity: `2018-10-11`, DealsWon: 7, DealsLost: 6, DealsPending: 17, @@ -4132,10 +4132,10 @@ export class EmployeesData extends Array { State: `NE`, Country: `United States`, ReferredBy: `Eward Croke`, - CreatedOn: `12/16/2017`, - Birthday: `1/4/1988`, - LastActivity: `1/7/2018`, - NextActivity: `7/7/2018`, + CreatedOn: `2017-12-16`, + Birthday: `1988-01-04`, + LastActivity: `2018-01-07`, + NextActivity: `2018-07-07`, DealsWon: 17, DealsLost: 27, DealsPending: 11, @@ -4162,10 +4162,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Hobie Polglaze`, - CreatedOn: `12/25/2017`, - Birthday: `4/5/2002`, - LastActivity: `1/9/2018`, - NextActivity: `2/9/2018`, + CreatedOn: `2017-12-25`, + Birthday: `2002-04-05`, + LastActivity: `2018-01-09`, + NextActivity: `2018-02-09`, DealsWon: 16, DealsLost: 17, DealsPending: 23, @@ -4192,10 +4192,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Merry McVittie`, - CreatedOn: `3/15/2018`, - Birthday: `6/12/1981`, - LastActivity: `4/14/2018`, - NextActivity: `6/14/2019`, + CreatedOn: `2018-03-15`, + Birthday: `1981-06-12`, + LastActivity: `2018-04-14`, + NextActivity: `2019-06-14`, DealsWon: 26, DealsLost: 29, DealsPending: 16, @@ -4222,10 +4222,10 @@ export class EmployeesData extends Array { State: `WV`, Country: `United States`, ReferredBy: `Minette Bridgement`, - CreatedOn: `10/12/2017`, - Birthday: `11/6/1993`, - LastActivity: `11/1/2017`, - NextActivity: `1/1/2018`, + CreatedOn: `2017-10-12`, + Birthday: `1993-11-06`, + LastActivity: `2017-11-01`, + NextActivity: `2018-01-01`, DealsWon: 12, DealsLost: 10, DealsPending: 8, @@ -4252,10 +4252,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Blondie Dolley`, - CreatedOn: `3/13/2018`, - Birthday: `2/28/1979`, - LastActivity: `3/21/2018`, - NextActivity: `10/21/2019`, + CreatedOn: `2018-03-13`, + Birthday: `1979-02-28`, + LastActivity: `2018-03-21`, + NextActivity: `2019-10-21`, DealsWon: 16, DealsLost: 6, DealsPending: 20, @@ -4282,10 +4282,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Patience Popelay`, - CreatedOn: `12/15/2017`, - Birthday: `6/22/1992`, - LastActivity: `12/24/2017`, - NextActivity: `12/24/2018`, + CreatedOn: `2017-12-15`, + Birthday: `1992-06-22`, + LastActivity: `2017-12-24`, + NextActivity: `2018-12-24`, DealsWon: 18, DealsLost: 7, DealsPending: 18, @@ -4312,10 +4312,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Lucien Elt`, - CreatedOn: `5/21/2017`, - Birthday: `9/15/1988`, - LastActivity: `6/19/2017`, - NextActivity: `4/19/2018`, + CreatedOn: `2017-05-21`, + Birthday: `1988-09-15`, + LastActivity: `2017-06-19`, + NextActivity: `2018-04-19`, DealsWon: 10, DealsLost: 7, DealsPending: 0, @@ -4342,10 +4342,10 @@ export class EmployeesData extends Array { State: `WV`, Country: `United States`, ReferredBy: `Allin Beagles`, - CreatedOn: `9/12/2017`, - Birthday: `9/10/1995`, - LastActivity: `9/17/2017`, - NextActivity: `9/17/2019`, + CreatedOn: `2017-09-12`, + Birthday: `1995-09-10`, + LastActivity: `2017-09-17`, + NextActivity: `2019-09-17`, DealsWon: 12, DealsLost: 26, DealsPending: 6, @@ -4372,10 +4372,10 @@ export class EmployeesData extends Array { State: `SC`, Country: `United States`, ReferredBy: `Valentine Armour`, - CreatedOn: `7/6/2017`, - Birthday: `7/3/1973`, - LastActivity: `7/8/2017`, - NextActivity: `1/8/2019`, + CreatedOn: `2017-07-06`, + Birthday: `1973-07-03`, + LastActivity: `2017-07-08`, + NextActivity: `2019-01-08`, DealsWon: 11, DealsLost: 13, DealsPending: 8, @@ -4402,10 +4402,10 @@ export class EmployeesData extends Array { State: `MN`, Country: `United States`, ReferredBy: `Chlo Vasyukhin`, - CreatedOn: `3/6/2017`, - Birthday: `4/30/1997`, - LastActivity: `3/22/2017`, - NextActivity: `10/22/2018`, + CreatedOn: `2017-03-06`, + Birthday: `1997-04-30`, + LastActivity: `2017-03-22`, + NextActivity: `2018-10-22`, DealsWon: 17, DealsLost: 20, DealsPending: 8, @@ -4432,10 +4432,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Saunder Tawse`, - CreatedOn: `10/3/2017`, - Birthday: `6/6/1978`, - LastActivity: `10/6/2017`, - NextActivity: `7/6/2018`, + CreatedOn: `2017-10-03`, + Birthday: `1978-06-06`, + LastActivity: `2017-10-06`, + NextActivity: `2018-07-06`, DealsWon: 1, DealsLost: 29, DealsPending: 28, @@ -4462,10 +4462,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Raimund Renihan`, - CreatedOn: `6/12/2017`, - Birthday: `10/2/1974`, - LastActivity: `7/3/2017`, - NextActivity: `12/3/2017`, + CreatedOn: `2017-06-12`, + Birthday: `1974-10-02`, + LastActivity: `2017-07-03`, + NextActivity: `2017-12-03`, DealsWon: 4, DealsLost: 14, DealsPending: 2, @@ -4492,10 +4492,10 @@ export class EmployeesData extends Array { State: `AZ`, Country: `United States`, ReferredBy: `Martie Hearns`, - CreatedOn: `4/8/2018`, - Birthday: `1/21/1996`, - LastActivity: `5/5/2018`, - NextActivity: `7/5/2019`, + CreatedOn: `2018-04-08`, + Birthday: `1996-01-21`, + LastActivity: `2018-05-05`, + NextActivity: `2019-07-05`, DealsWon: 7, DealsLost: 12, DealsPending: 0, @@ -4522,10 +4522,10 @@ export class EmployeesData extends Array { State: `MO`, Country: `United States`, ReferredBy: `Jorey Durtnall`, - CreatedOn: `10/6/2017`, - Birthday: `10/1/1988`, - LastActivity: `11/4/2017`, - NextActivity: `4/4/2018`, + CreatedOn: `2017-10-06`, + Birthday: `1988-10-01`, + LastActivity: `2017-11-04`, + NextActivity: `2018-04-04`, DealsWon: 0, DealsLost: 18, DealsPending: 5, @@ -4552,10 +4552,10 @@ export class EmployeesData extends Array { State: `IL`, Country: `United States`, ReferredBy: `Kristian Llewellyn`, - CreatedOn: `12/22/2017`, - Birthday: `5/10/1973`, - LastActivity: `1/8/2018`, - NextActivity: `11/8/2018`, + CreatedOn: `2017-12-22`, + Birthday: `1973-05-10`, + LastActivity: `2018-01-08`, + NextActivity: `2018-11-08`, DealsWon: 1, DealsLost: 5, DealsPending: 21, @@ -4582,10 +4582,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Karoly Oakley`, - CreatedOn: `5/27/2017`, - Birthday: `3/21/1985`, - LastActivity: `6/6/2017`, - NextActivity: `7/6/2017`, + CreatedOn: `2017-05-27`, + Birthday: `1985-03-21`, + LastActivity: `2017-06-06`, + NextActivity: `2017-07-06`, DealsWon: 30, DealsLost: 8, DealsPending: 19, @@ -4612,10 +4612,10 @@ export class EmployeesData extends Array { State: `WA`, Country: `United States`, ReferredBy: `Lenee Troyes`, - CreatedOn: `3/19/2017`, - Birthday: `2/3/1978`, - LastActivity: `4/15/2017`, - NextActivity: `6/15/2017`, + CreatedOn: `2017-03-19`, + Birthday: `1978-02-03`, + LastActivity: `2017-04-15`, + NextActivity: `2017-06-15`, DealsWon: 7, DealsLost: 30, DealsPending: 18, @@ -4642,10 +4642,10 @@ export class EmployeesData extends Array { State: `WA`, Country: `United States`, ReferredBy: `Phaidra Kingsford`, - CreatedOn: `12/10/2017`, - Birthday: `9/6/1976`, - LastActivity: `1/7/2018`, - NextActivity: `5/7/2018`, + CreatedOn: `2017-12-10`, + Birthday: `1976-09-06`, + LastActivity: `2018-01-07`, + NextActivity: `2018-05-07`, DealsWon: 13, DealsLost: 17, DealsPending: 0, @@ -4672,10 +4672,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Sheppard McKinie`, - CreatedOn: `2/21/2018`, - Birthday: `11/2/1999`, - LastActivity: `3/16/2018`, - NextActivity: `1/16/2019`, + CreatedOn: `2018-02-21`, + Birthday: `1999-11-02`, + LastActivity: `2018-03-16`, + NextActivity: `2019-01-16`, DealsWon: 30, DealsLost: 5, DealsPending: 26, @@ -4702,10 +4702,10 @@ export class EmployeesData extends Array { State: `VA`, Country: `United States`, ReferredBy: `Doro Varty`, - CreatedOn: `5/14/2017`, - Birthday: `8/24/1984`, - LastActivity: `6/2/2017`, - NextActivity: `10/2/2017`, + CreatedOn: `2017-05-14`, + Birthday: `1984-08-24`, + LastActivity: `2017-06-02`, + NextActivity: `2017-10-02`, DealsWon: 26, DealsLost: 16, DealsPending: 7, @@ -4732,10 +4732,10 @@ export class EmployeesData extends Array { State: `CT`, Country: `United States`, ReferredBy: `Giulietta Nasey`, - CreatedOn: `3/11/2018`, - Birthday: `12/9/1985`, - LastActivity: `3/22/2018`, - NextActivity: `9/22/2018`, + CreatedOn: `2018-03-11`, + Birthday: `1985-12-09`, + LastActivity: `2018-03-22`, + NextActivity: `2018-09-22`, DealsWon: 14, DealsLost: 1, DealsPending: 7, @@ -4762,10 +4762,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Anabal Dancer`, - CreatedOn: `12/14/2017`, - Birthday: `2/4/2003`, - LastActivity: `1/5/2018`, - NextActivity: `3/5/2018`, + CreatedOn: `2017-12-14`, + Birthday: `2003-02-04`, + LastActivity: `2018-01-05`, + NextActivity: `2018-03-05`, DealsWon: 0, DealsLost: 14, DealsPending: 2, @@ -4792,10 +4792,10 @@ export class EmployeesData extends Array { State: `AZ`, Country: `United States`, ReferredBy: `Tiffi Keighley`, - CreatedOn: `3/5/2018`, - Birthday: `10/17/1997`, - LastActivity: `3/11/2018`, - NextActivity: `4/11/2018`, + CreatedOn: `2018-03-05`, + Birthday: `1997-10-17`, + LastActivity: `2018-03-11`, + NextActivity: `2018-04-11`, DealsWon: 1, DealsLost: 9, DealsPending: 26, @@ -4822,10 +4822,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Cyrille Norrie`, - CreatedOn: `7/25/2017`, - Birthday: `12/21/1993`, - LastActivity: `8/13/2017`, - NextActivity: `8/13/2018`, + CreatedOn: `2017-07-25`, + Birthday: `1993-12-21`, + LastActivity: `2017-08-13`, + NextActivity: `2018-08-13`, DealsWon: 21, DealsLost: 9, DealsPending: 1, @@ -4852,10 +4852,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Leanna Saffen`, - CreatedOn: `1/26/2017`, - Birthday: `5/19/2002`, - LastActivity: `2/20/2017`, - NextActivity: `12/20/2017`, + CreatedOn: `2017-01-26`, + Birthday: `2002-05-19`, + LastActivity: `2017-02-20`, + NextActivity: `2017-12-20`, DealsWon: 1, DealsLost: 8, DealsPending: 30, @@ -4882,10 +4882,10 @@ export class EmployeesData extends Array { State: `KS`, Country: `United States`, ReferredBy: `Jeremias Hamblyn`, - CreatedOn: `10/27/2017`, - Birthday: `4/26/1971`, - LastActivity: `11/20/2017`, - NextActivity: `7/20/2019`, + CreatedOn: `2017-10-27`, + Birthday: `1971-04-26`, + LastActivity: `2017-11-20`, + NextActivity: `2019-07-20`, DealsWon: 12, DealsLost: 18, DealsPending: 19, @@ -4912,10 +4912,10 @@ export class EmployeesData extends Array { State: `VA`, Country: `United States`, ReferredBy: `Ase Lewisham`, - CreatedOn: `6/28/2017`, - Birthday: `4/4/1985`, - LastActivity: `7/4/2017`, - NextActivity: `11/4/2018`, + CreatedOn: `2017-06-28`, + Birthday: `1985-04-04`, + LastActivity: `2017-07-04`, + NextActivity: `2018-11-04`, DealsWon: 15, DealsLost: 17, DealsPending: 14, @@ -4942,10 +4942,10 @@ export class EmployeesData extends Array { State: `LA`, Country: `United States`, ReferredBy: `Haily Cabrara`, - CreatedOn: `7/12/2017`, - Birthday: `12/23/1981`, - LastActivity: `7/20/2017`, - NextActivity: `3/20/2018`, + CreatedOn: `2017-07-12`, + Birthday: `1981-12-23`, + LastActivity: `2017-07-20`, + NextActivity: `2018-03-20`, DealsWon: 4, DealsLost: 10, DealsPending: 22, @@ -4972,10 +4972,10 @@ export class EmployeesData extends Array { State: `WA`, Country: `United States`, ReferredBy: `Joshia Carragher`, - CreatedOn: `1/2/2018`, - Birthday: `7/14/1992`, - LastActivity: `1/27/2018`, - NextActivity: `1/27/2019`, + CreatedOn: `2018-01-02`, + Birthday: `1992-07-14`, + LastActivity: `2018-01-27`, + NextActivity: `2019-01-27`, DealsWon: 27, DealsLost: 27, DealsPending: 24, @@ -5002,10 +5002,10 @@ export class EmployeesData extends Array { State: `MA`, Country: `United States`, ReferredBy: `Andree Larder`, - CreatedOn: `3/14/2017`, - Birthday: `9/12/1978`, - LastActivity: `4/4/2017`, - NextActivity: `5/4/2017`, + CreatedOn: `2017-03-14`, + Birthday: `1978-09-12`, + LastActivity: `2017-04-04`, + NextActivity: `2017-05-04`, DealsWon: 7, DealsLost: 18, DealsPending: 2, @@ -5032,10 +5032,10 @@ export class EmployeesData extends Array { State: `NV`, Country: `United States`, ReferredBy: `Bale McPhee`, - CreatedOn: `7/4/2017`, - Birthday: `5/12/1979`, - LastActivity: `7/28/2017`, - NextActivity: `9/28/2017`, + CreatedOn: `2017-07-04`, + Birthday: `1979-05-12`, + LastActivity: `2017-07-28`, + NextActivity: `2017-09-28`, DealsWon: 4, DealsLost: 10, DealsPending: 25, @@ -5062,10 +5062,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Tamiko Smales`, - CreatedOn: `3/7/2018`, - Birthday: `9/11/1995`, - LastActivity: `3/24/2018`, - NextActivity: `7/24/2018`, + CreatedOn: `2018-03-07`, + Birthday: `1995-09-11`, + LastActivity: `2018-03-24`, + NextActivity: `2018-07-24`, DealsWon: 0, DealsLost: 28, DealsPending: 17, @@ -5092,10 +5092,10 @@ export class EmployeesData extends Array { State: `MN`, Country: `United States`, ReferredBy: `Gearalt Slot`, - CreatedOn: `11/20/2017`, - Birthday: `8/29/1975`, - LastActivity: `12/5/2017`, - NextActivity: `5/5/2019`, + CreatedOn: `2017-11-20`, + Birthday: `1975-08-29`, + LastActivity: `2017-12-05`, + NextActivity: `2019-05-05`, DealsWon: 22, DealsLost: 28, DealsPending: 4, @@ -5122,10 +5122,10 @@ export class EmployeesData extends Array { State: `MO`, Country: `United States`, ReferredBy: `Gustie Karsh`, - CreatedOn: `3/22/2017`, - Birthday: `5/17/2000`, - LastActivity: `4/14/2017`, - NextActivity: `8/14/2018`, + CreatedOn: `2017-03-22`, + Birthday: `2000-05-17`, + LastActivity: `2017-04-14`, + NextActivity: `2018-08-14`, DealsWon: 4, DealsLost: 24, DealsPending: 12, @@ -5152,10 +5152,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Virgilio Ebbetts`, - CreatedOn: `1/17/2018`, - Birthday: `11/11/1980`, - LastActivity: `2/13/2018`, - NextActivity: `5/13/2018`, + CreatedOn: `2018-01-17`, + Birthday: `1980-11-11`, + LastActivity: `2018-02-13`, + NextActivity: `2018-05-13`, DealsWon: 0, DealsLost: 3, DealsPending: 26, @@ -5182,10 +5182,10 @@ export class EmployeesData extends Array { State: `LA`, Country: `United States`, ReferredBy: `Mycah Melburg`, - CreatedOn: `2/15/2018`, - Birthday: `3/18/1972`, - LastActivity: `2/22/2018`, - NextActivity: `7/22/2018`, + CreatedOn: `2018-02-15`, + Birthday: `1972-03-18`, + LastActivity: `2018-02-22`, + NextActivity: `2018-07-22`, DealsWon: 20, DealsLost: 10, DealsPending: 1, @@ -5212,10 +5212,10 @@ export class EmployeesData extends Array { State: `KS`, Country: `United States`, ReferredBy: `Malia Roskams`, - CreatedOn: `1/7/2017`, - Birthday: `9/17/2001`, - LastActivity: `1/12/2017`, - NextActivity: `5/12/2017`, + CreatedOn: `2017-01-07`, + Birthday: `2001-09-17`, + LastActivity: `2017-01-12`, + NextActivity: `2017-05-12`, DealsWon: 7, DealsLost: 10, DealsPending: 30, @@ -5242,10 +5242,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Audi Bissiker`, - CreatedOn: `9/30/2017`, - Birthday: `12/7/1970`, - LastActivity: `10/6/2017`, - NextActivity: `7/6/2018`, + CreatedOn: `2017-09-30`, + Birthday: `1970-12-07`, + LastActivity: `2017-10-06`, + NextActivity: `2018-07-06`, DealsWon: 4, DealsLost: 14, DealsPending: 5, @@ -5272,10 +5272,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Kayla Macconachy`, - CreatedOn: `1/25/2018`, - Birthday: `3/1/1985`, - LastActivity: `2/15/2018`, - NextActivity: `2/15/2020`, + CreatedOn: `2018-01-25`, + Birthday: `1985-03-01`, + LastActivity: `2018-02-15`, + NextActivity: `2020-02-15`, DealsWon: 9, DealsLost: 16, DealsPending: 12, @@ -5302,10 +5302,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Arly Heinke`, - CreatedOn: `7/31/2017`, - Birthday: `12/18/1972`, - LastActivity: `8/29/2017`, - NextActivity: `4/29/2018`, + CreatedOn: `2017-07-31`, + Birthday: `1972-12-18`, + LastActivity: `2017-08-29`, + NextActivity: `2018-04-29`, DealsWon: 8, DealsLost: 16, DealsPending: 13, @@ -5332,10 +5332,10 @@ export class EmployeesData extends Array { State: `PA`, Country: `United States`, ReferredBy: `Ernaline Ainsby`, - CreatedOn: `9/6/2017`, - Birthday: `12/4/1989`, - LastActivity: `10/4/2017`, - NextActivity: `8/4/2018`, + CreatedOn: `2017-09-06`, + Birthday: `1989-12-04`, + LastActivity: `2017-10-04`, + NextActivity: `2018-08-04`, DealsWon: 23, DealsLost: 12, DealsPending: 0, @@ -5362,10 +5362,10 @@ export class EmployeesData extends Array { State: `OH`, Country: `United States`, ReferredBy: `Kippy Vennings`, - CreatedOn: `2/28/2018`, - Birthday: `7/28/1990`, - LastActivity: `3/29/2018`, - NextActivity: `8/29/2018`, + CreatedOn: `2018-02-28`, + Birthday: `1990-07-28`, + LastActivity: `2018-03-29`, + NextActivity: `2018-08-29`, DealsWon: 1, DealsLost: 17, DealsPending: 7, @@ -5392,10 +5392,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Hastings Hadwen`, - CreatedOn: `4/19/2017`, - Birthday: `11/4/1978`, - LastActivity: `5/9/2017`, - NextActivity: `4/9/2019`, + CreatedOn: `2017-04-19`, + Birthday: `1978-11-04`, + LastActivity: `2017-05-09`, + NextActivity: `2019-04-09`, DealsWon: 4, DealsLost: 11, DealsPending: 19, @@ -5422,10 +5422,10 @@ export class EmployeesData extends Array { State: `MA`, Country: `United States`, ReferredBy: `Gizela Larimer`, - CreatedOn: `3/20/2017`, - Birthday: `7/27/1985`, - LastActivity: `4/1/2017`, - NextActivity: `6/1/2018`, + CreatedOn: `2017-03-20`, + Birthday: `1985-07-27`, + LastActivity: `2017-04-01`, + NextActivity: `2018-06-01`, DealsWon: 23, DealsLost: 10, DealsPending: 14, @@ -5452,10 +5452,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Meghann Zanni`, - CreatedOn: `6/3/2017`, - Birthday: `9/26/2002`, - LastActivity: `6/22/2017`, - NextActivity: `1/22/2018`, + CreatedOn: `2017-06-03`, + Birthday: `2002-09-26`, + LastActivity: `2017-06-22`, + NextActivity: `2018-01-22`, DealsWon: 3, DealsLost: 13, DealsPending: 5, @@ -5482,10 +5482,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Rozele Gilardengo`, - CreatedOn: `9/1/2017`, - Birthday: `2/5/1985`, - LastActivity: `9/9/2017`, - NextActivity: `5/9/2019`, + CreatedOn: `2017-09-01`, + Birthday: `1985-02-05`, + LastActivity: `2017-09-09`, + NextActivity: `2019-05-09`, DealsWon: 13, DealsLost: 15, DealsPending: 24, @@ -5512,10 +5512,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Eula Downing`, - CreatedOn: `1/8/2018`, - Birthday: `9/19/1982`, - LastActivity: `1/30/2018`, - NextActivity: `10/30/2018`, + CreatedOn: `2018-01-08`, + Birthday: `1982-09-19`, + LastActivity: `2018-01-30`, + NextActivity: `2018-10-30`, DealsWon: 16, DealsLost: 15, DealsPending: 0, @@ -5542,10 +5542,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Wendye Pettiford`, - CreatedOn: `5/16/2017`, - Birthday: `2/10/1988`, - LastActivity: `5/21/2017`, - NextActivity: `6/21/2017`, + CreatedOn: `2017-05-16`, + Birthday: `1988-02-10`, + LastActivity: `2017-05-21`, + NextActivity: `2017-06-21`, DealsWon: 14, DealsLost: 25, DealsPending: 3, @@ -5572,10 +5572,10 @@ export class EmployeesData extends Array { State: `KS`, Country: `United States`, ReferredBy: `Kay McKitterick`, - CreatedOn: `4/7/2018`, - Birthday: `11/25/1993`, - LastActivity: `4/27/2018`, - NextActivity: `11/27/2019`, + CreatedOn: `2018-04-07`, + Birthday: `1993-11-25`, + LastActivity: `2018-04-27`, + NextActivity: `2019-11-27`, DealsWon: 20, DealsLost: 29, DealsPending: 8, @@ -5602,10 +5602,10 @@ export class EmployeesData extends Array { State: `RI`, Country: `United States`, ReferredBy: `Jone Tennant`, - CreatedOn: `12/31/2017`, - Birthday: `8/21/1980`, - LastActivity: `1/3/2018`, - NextActivity: `11/3/2018`, + CreatedOn: `2017-12-31`, + Birthday: `1980-08-21`, + LastActivity: `2018-01-03`, + NextActivity: `2018-11-03`, DealsWon: 5, DealsLost: 7, DealsPending: 5, @@ -5632,10 +5632,10 @@ export class EmployeesData extends Array { State: `NV`, Country: `United States`, ReferredBy: `Xylina Daventry`, - CreatedOn: `2/23/2017`, - Birthday: `10/15/1972`, - LastActivity: `2/25/2017`, - NextActivity: `7/25/2017`, + CreatedOn: `2017-02-23`, + Birthday: `1972-10-15`, + LastActivity: `2017-02-25`, + NextActivity: `2017-07-25`, DealsWon: 21, DealsLost: 26, DealsPending: 29, @@ -5662,10 +5662,10 @@ export class EmployeesData extends Array { State: `MA`, Country: `United States`, ReferredBy: `Beverley Belton`, - CreatedOn: `12/17/2017`, - Birthday: `1/9/1994`, - LastActivity: `12/19/2017`, - NextActivity: `12/19/2019`, + CreatedOn: `2017-12-17`, + Birthday: `1994-01-09`, + LastActivity: `2017-12-19`, + NextActivity: `2019-12-19`, DealsWon: 24, DealsLost: 1, DealsPending: 16, @@ -5692,10 +5692,10 @@ export class EmployeesData extends Array { State: `MI`, Country: `United States`, ReferredBy: `Dyana Aleksashin`, - CreatedOn: `12/23/2017`, - Birthday: `6/3/1976`, - LastActivity: `1/10/2018`, - NextActivity: `2/10/2018`, + CreatedOn: `2017-12-23`, + Birthday: `1976-06-03`, + LastActivity: `2018-01-10`, + NextActivity: `2018-02-10`, DealsWon: 29, DealsLost: 12, DealsPending: 17, @@ -5722,10 +5722,10 @@ export class EmployeesData extends Array { State: `MS`, Country: `United States`, ReferredBy: `Eimile Benjafield`, - CreatedOn: `6/11/2017`, - Birthday: `7/11/2001`, - LastActivity: `7/2/2017`, - NextActivity: `12/2/2017`, + CreatedOn: `2017-06-11`, + Birthday: `2001-07-11`, + LastActivity: `2017-07-02`, + NextActivity: `2017-12-02`, DealsWon: 26, DealsLost: 12, DealsPending: 28, @@ -5752,10 +5752,10 @@ export class EmployeesData extends Array { State: `WA`, Country: `United States`, ReferredBy: `Ellynn Fretwell`, - CreatedOn: `4/19/2017`, - Birthday: `7/30/1994`, - LastActivity: `5/3/2017`, - NextActivity: `8/3/2018`, + CreatedOn: `2017-04-19`, + Birthday: `1994-07-30`, + LastActivity: `2017-05-03`, + NextActivity: `2018-08-03`, DealsWon: 27, DealsLost: 17, DealsPending: 21, @@ -5782,10 +5782,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Kelsy Dragonette`, - CreatedOn: `6/13/2017`, - Birthday: `2/3/1995`, - LastActivity: `7/7/2017`, - NextActivity: `7/7/2018`, + CreatedOn: `2017-06-13`, + Birthday: `1995-02-03`, + LastActivity: `2017-07-07`, + NextActivity: `2018-07-07`, DealsWon: 16, DealsLost: 9, DealsPending: 6, @@ -5812,10 +5812,10 @@ export class EmployeesData extends Array { State: `AZ`, Country: `United States`, ReferredBy: `Annalee Swoffer`, - CreatedOn: `11/27/2017`, - Birthday: `10/7/1986`, - LastActivity: `12/13/2017`, - NextActivity: `5/13/2018`, + CreatedOn: `2017-11-27`, + Birthday: `1986-10-07`, + LastActivity: `2017-12-13`, + NextActivity: `2018-05-13`, DealsWon: 27, DealsLost: 26, DealsPending: 9, @@ -5842,10 +5842,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Harlie Wellsman`, - CreatedOn: `2/14/2018`, - Birthday: `7/22/2002`, - LastActivity: `3/2/2018`, - NextActivity: `4/2/2019`, + CreatedOn: `2018-02-14`, + Birthday: `2002-07-22`, + LastActivity: `2018-03-02`, + NextActivity: `2019-04-02`, DealsWon: 5, DealsLost: 12, DealsPending: 29, @@ -5872,10 +5872,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Valentino Pinel`, - CreatedOn: `1/15/2017`, - Birthday: `6/27/1970`, - LastActivity: `1/23/2017`, - NextActivity: `12/23/2018`, + CreatedOn: `2017-01-15`, + Birthday: `1970-06-27`, + LastActivity: `2017-01-23`, + NextActivity: `2018-12-23`, DealsWon: 18, DealsLost: 26, DealsPending: 12, @@ -5902,10 +5902,10 @@ export class EmployeesData extends Array { State: `MI`, Country: `United States`, ReferredBy: `Hersh Stallard`, - CreatedOn: `3/3/2017`, - Birthday: `2/22/2003`, - LastActivity: `3/17/2017`, - NextActivity: `3/17/2019`, + CreatedOn: `2017-03-03`, + Birthday: `2003-02-22`, + LastActivity: `2017-03-17`, + NextActivity: `2019-03-17`, DealsWon: 28, DealsLost: 18, DealsPending: 24, @@ -5932,10 +5932,10 @@ export class EmployeesData extends Array { State: `OH`, Country: `United States`, ReferredBy: `Kori Chataignier`, - CreatedOn: `4/8/2017`, - Birthday: `7/8/2002`, - LastActivity: `4/23/2017`, - NextActivity: `7/23/2017`, + CreatedOn: `2017-04-08`, + Birthday: `2002-07-08`, + LastActivity: `2017-04-23`, + NextActivity: `2017-07-23`, DealsWon: 27, DealsLost: 3, DealsPending: 9, @@ -5962,10 +5962,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Lian Krochmann`, - CreatedOn: `7/16/2017`, - Birthday: `10/21/1994`, - LastActivity: `8/8/2017`, - NextActivity: `5/8/2019`, + CreatedOn: `2017-07-16`, + Birthday: `1994-10-21`, + LastActivity: `2017-08-08`, + NextActivity: `2019-05-08`, DealsWon: 28, DealsLost: 4, DealsPending: 10, @@ -5992,10 +5992,10 @@ export class EmployeesData extends Array { State: `MI`, Country: `United States`, ReferredBy: `Celesta Dunlap`, - CreatedOn: `2/17/2018`, - Birthday: `10/19/1998`, - LastActivity: `3/3/2018`, - NextActivity: `6/3/2018`, + CreatedOn: `2018-02-17`, + Birthday: `1998-10-19`, + LastActivity: `2018-03-03`, + NextActivity: `2018-06-03`, DealsWon: 12, DealsLost: 2, DealsPending: 16, @@ -6022,10 +6022,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Eveleen Huglin`, - CreatedOn: `10/12/2017`, - Birthday: `6/11/1977`, - LastActivity: `10/30/2017`, - NextActivity: `4/30/2019`, + CreatedOn: `2017-10-12`, + Birthday: `1977-06-11`, + LastActivity: `2017-10-30`, + NextActivity: `2019-04-30`, DealsWon: 2, DealsLost: 4, DealsPending: 3, @@ -6052,10 +6052,10 @@ export class EmployeesData extends Array { State: `TN`, Country: `United States`, ReferredBy: `Rachael Bims`, - CreatedOn: `2/8/2018`, - Birthday: `6/26/1983`, - LastActivity: `3/7/2018`, - NextActivity: `1/7/2019`, + CreatedOn: `2018-02-08`, + Birthday: `1983-06-26`, + LastActivity: `2018-03-07`, + NextActivity: `2019-01-07`, DealsWon: 6, DealsLost: 20, DealsPending: 21, @@ -6082,10 +6082,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Cosimo Clementet`, - CreatedOn: `4/27/2017`, - Birthday: `4/27/1977`, - LastActivity: `5/16/2017`, - NextActivity: `3/16/2018`, + CreatedOn: `2017-04-27`, + Birthday: `1977-04-27`, + LastActivity: `2017-05-16`, + NextActivity: `2018-03-16`, DealsWon: 19, DealsLost: 24, DealsPending: 3, @@ -6112,10 +6112,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Terence Proffer`, - CreatedOn: `10/6/2017`, - Birthday: `12/9/2002`, - LastActivity: `11/2/2017`, - NextActivity: `1/2/2018`, + CreatedOn: `2017-10-06`, + Birthday: `2002-12-09`, + LastActivity: `2017-11-02`, + NextActivity: `2018-01-02`, DealsWon: 7, DealsLost: 29, DealsPending: 8, @@ -6142,10 +6142,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Pippy Romer`, - CreatedOn: `11/1/2017`, - Birthday: `5/23/1971`, - LastActivity: `11/11/2017`, - NextActivity: `6/11/2018`, + CreatedOn: `2017-11-01`, + Birthday: `1971-05-23`, + LastActivity: `2017-11-11`, + NextActivity: `2018-06-11`, DealsWon: 8, DealsLost: 7, DealsPending: 29, @@ -6172,10 +6172,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Patten Gheorghe`, - CreatedOn: `11/19/2017`, - Birthday: `3/27/1972`, - LastActivity: `12/1/2017`, - NextActivity: `9/1/2019`, + CreatedOn: `2017-11-19`, + Birthday: `1972-03-27`, + LastActivity: `2017-12-01`, + NextActivity: `2019-09-01`, DealsWon: 28, DealsLost: 22, DealsPending: 1, @@ -6202,10 +6202,10 @@ export class EmployeesData extends Array { State: `NV`, Country: `United States`, ReferredBy: `Mame Branchet`, - CreatedOn: `4/8/2018`, - Birthday: `1/3/1987`, - LastActivity: `4/18/2018`, - NextActivity: `10/18/2018`, + CreatedOn: `2018-04-08`, + Birthday: `1987-01-03`, + LastActivity: `2018-04-18`, + NextActivity: `2018-10-18`, DealsWon: 22, DealsLost: 24, DealsPending: 29, @@ -6232,10 +6232,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Wayland Bettlestone`, - CreatedOn: `10/20/2017`, - Birthday: `4/17/1972`, - LastActivity: `11/17/2017`, - NextActivity: `3/17/2018`, + CreatedOn: `2017-10-20`, + Birthday: `1972-04-17`, + LastActivity: `2017-11-17`, + NextActivity: `2018-03-17`, DealsWon: 29, DealsLost: 15, DealsPending: 20, @@ -6262,10 +6262,10 @@ export class EmployeesData extends Array { State: `LA`, Country: `United States`, ReferredBy: `Tonie Merkel`, - CreatedOn: `7/11/2017`, - Birthday: `2/13/1982`, - LastActivity: `7/21/2017`, - NextActivity: `8/21/2017`, + CreatedOn: `2017-07-11`, + Birthday: `1982-02-13`, + LastActivity: `2017-07-21`, + NextActivity: `2017-08-21`, DealsWon: 25, DealsLost: 26, DealsPending: 8, @@ -6292,10 +6292,10 @@ export class EmployeesData extends Array { State: `OH`, Country: `United States`, ReferredBy: `Estrellita McNeil`, - CreatedOn: `3/21/2018`, - Birthday: `10/24/1989`, - LastActivity: `3/30/2018`, - NextActivity: `12/30/2019`, + CreatedOn: `2018-03-21`, + Birthday: `1989-10-24`, + LastActivity: `2018-03-30`, + NextActivity: `2019-12-30`, DealsWon: 0, DealsLost: 3, DealsPending: 4, @@ -6322,10 +6322,10 @@ export class EmployeesData extends Array { State: `NV`, Country: `United States`, ReferredBy: `Corby Dudbridge`, - CreatedOn: `2/13/2018`, - Birthday: `8/4/1970`, - LastActivity: `3/15/2018`, - NextActivity: `4/15/2018`, + CreatedOn: `2018-02-13`, + Birthday: `1970-08-04`, + LastActivity: `2018-03-15`, + NextActivity: `2018-04-15`, DealsWon: 11, DealsLost: 6, DealsPending: 30, @@ -6352,10 +6352,10 @@ export class EmployeesData extends Array { State: `MD`, Country: `United States`, ReferredBy: `Karoly Habden`, - CreatedOn: `1/17/2017`, - Birthday: `1/8/1997`, - LastActivity: `1/26/2017`, - NextActivity: `9/26/2018`, + CreatedOn: `2017-01-17`, + Birthday: `1997-01-08`, + LastActivity: `2017-01-26`, + NextActivity: `2018-09-26`, DealsWon: 28, DealsLost: 28, DealsPending: 10, @@ -6382,10 +6382,10 @@ export class EmployeesData extends Array { State: `UT`, Country: `United States`, ReferredBy: `Viviyan Symes`, - CreatedOn: `9/12/2017`, - Birthday: `10/7/1974`, - LastActivity: `9/13/2017`, - NextActivity: `3/13/2019`, + CreatedOn: `2017-09-12`, + Birthday: `1974-10-07`, + LastActivity: `2017-09-13`, + NextActivity: `2019-03-13`, DealsWon: 17, DealsLost: 7, DealsPending: 29, @@ -6412,10 +6412,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Ginevra De Vaux`, - CreatedOn: `12/1/2017`, - Birthday: `10/28/1971`, - LastActivity: `12/11/2017`, - NextActivity: `8/11/2019`, + CreatedOn: `2017-12-01`, + Birthday: `1971-10-28`, + LastActivity: `2017-12-11`, + NextActivity: `2019-08-11`, DealsWon: 0, DealsLost: 7, DealsPending: 20, @@ -6442,10 +6442,10 @@ export class EmployeesData extends Array { State: `AL`, Country: `United States`, ReferredBy: `Stefano Caunter`, - CreatedOn: `8/14/2017`, - Birthday: `5/8/1983`, - LastActivity: `9/12/2017`, - NextActivity: `12/12/2018`, + CreatedOn: `2017-08-14`, + Birthday: `1983-05-08`, + LastActivity: `2017-09-12`, + NextActivity: `2018-12-12`, DealsWon: 28, DealsLost: 29, DealsPending: 16, @@ -6472,10 +6472,10 @@ export class EmployeesData extends Array { State: `WI`, Country: `United States`, ReferredBy: `Aeriell McEllen`, - CreatedOn: `1/13/2017`, - Birthday: `3/24/1971`, - LastActivity: `2/8/2017`, - NextActivity: `5/8/2017`, + CreatedOn: `2017-01-13`, + Birthday: `1971-03-24`, + LastActivity: `2017-02-08`, + NextActivity: `2017-05-08`, DealsWon: 9, DealsLost: 30, DealsPending: 10, @@ -6502,10 +6502,10 @@ export class EmployeesData extends Array { State: `KY`, Country: `United States`, ReferredBy: `King Ingliby`, - CreatedOn: `2/20/2017`, - Birthday: `9/11/1996`, - LastActivity: `3/5/2017`, - NextActivity: `7/5/2018`, + CreatedOn: `2017-02-20`, + Birthday: `1996-09-11`, + LastActivity: `2017-03-05`, + NextActivity: `2018-07-05`, DealsWon: 20, DealsLost: 29, DealsPending: 4, @@ -6532,10 +6532,10 @@ export class EmployeesData extends Array { State: `MD`, Country: `United States`, ReferredBy: `Lonnie Sherrington`, - CreatedOn: `2/16/2017`, - Birthday: `1/6/1988`, - LastActivity: `3/6/2017`, - NextActivity: `7/6/2018`, + CreatedOn: `2017-02-16`, + Birthday: `1988-01-06`, + LastActivity: `2017-03-06`, + NextActivity: `2018-07-06`, DealsWon: 27, DealsLost: 3, DealsPending: 4, @@ -6562,10 +6562,10 @@ export class EmployeesData extends Array { State: `KS`, Country: `United States`, ReferredBy: `Job Ghelardoni`, - CreatedOn: `2/12/2018`, - Birthday: `10/19/1994`, - LastActivity: `3/8/2018`, - NextActivity: `7/8/2019`, + CreatedOn: `2018-02-12`, + Birthday: `1994-10-19`, + LastActivity: `2018-03-08`, + NextActivity: `2019-07-08`, DealsWon: 0, DealsLost: 28, DealsPending: 17, @@ -6592,10 +6592,10 @@ export class EmployeesData extends Array { State: `GA`, Country: `United States`, ReferredBy: `Elsbeth MacAlaster`, - CreatedOn: `8/11/2017`, - Birthday: `8/21/1984`, - LastActivity: `8/14/2017`, - NextActivity: `7/14/2019`, + CreatedOn: `2017-08-11`, + Birthday: `1984-08-21`, + LastActivity: `2017-08-14`, + NextActivity: `2019-07-14`, DealsWon: 30, DealsLost: 15, DealsPending: 22, @@ -6622,10 +6622,10 @@ export class EmployeesData extends Array { State: `GA`, Country: `United States`, ReferredBy: `Aubrette Roblin`, - CreatedOn: `3/19/2017`, - Birthday: `6/7/1995`, - LastActivity: `3/29/2017`, - NextActivity: `11/29/2018`, + CreatedOn: `2017-03-19`, + Birthday: `1995-06-07`, + LastActivity: `2017-03-29`, + NextActivity: `2018-11-29`, DealsWon: 14, DealsLost: 17, DealsPending: 12, @@ -6652,10 +6652,10 @@ export class EmployeesData extends Array { State: `AR`, Country: `United States`, ReferredBy: `Isaac Bront`, - CreatedOn: `4/8/2017`, - Birthday: `1/4/1977`, - LastActivity: `5/2/2017`, - NextActivity: `1/2/2019`, + CreatedOn: `2017-04-08`, + Birthday: `1977-01-04`, + LastActivity: `2017-05-02`, + NextActivity: `2019-01-02`, DealsWon: 6, DealsLost: 19, DealsPending: 29, @@ -6682,10 +6682,10 @@ export class EmployeesData extends Array { State: `OH`, Country: `United States`, ReferredBy: `Vivia Eastope`, - CreatedOn: `7/29/2017`, - Birthday: `2/5/1981`, - LastActivity: `8/20/2017`, - NextActivity: `6/20/2018`, + CreatedOn: `2017-07-29`, + Birthday: `1981-02-05`, + LastActivity: `2017-08-20`, + NextActivity: `2018-06-20`, DealsWon: 15, DealsLost: 21, DealsPending: 14, @@ -6712,10 +6712,10 @@ export class EmployeesData extends Array { State: `OH`, Country: `United States`, ReferredBy: `Silvio Darke`, - CreatedOn: `4/6/2018`, - Birthday: `5/29/1990`, - LastActivity: `4/21/2018`, - NextActivity: `7/21/2018`, + CreatedOn: `2018-04-06`, + Birthday: `1990-05-29`, + LastActivity: `2018-04-21`, + NextActivity: `2018-07-21`, DealsWon: 6, DealsLost: 9, DealsPending: 24, @@ -6742,10 +6742,10 @@ export class EmployeesData extends Array { State: `KY`, Country: `United States`, ReferredBy: `Blanche Pagelsen`, - CreatedOn: `10/25/2017`, - Birthday: `5/9/1982`, - LastActivity: `11/7/2017`, - NextActivity: `3/7/2018`, + CreatedOn: `2017-10-25`, + Birthday: `1982-05-09`, + LastActivity: `2017-11-07`, + NextActivity: `2018-03-07`, DealsWon: 5, DealsLost: 16, DealsPending: 19, @@ -6772,10 +6772,10 @@ export class EmployeesData extends Array { State: `VA`, Country: `United States`, ReferredBy: `Marnia Ibbett`, - CreatedOn: `1/9/2018`, - Birthday: `9/29/1984`, - LastActivity: `1/23/2018`, - NextActivity: `8/23/2018`, + CreatedOn: `2018-01-09`, + Birthday: `1984-09-29`, + LastActivity: `2018-01-23`, + NextActivity: `2018-08-23`, DealsWon: 11, DealsLost: 8, DealsPending: 5, @@ -6802,10 +6802,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Axel Kierans`, - CreatedOn: `3/2/2017`, - Birthday: `4/11/1976`, - LastActivity: `3/5/2017`, - NextActivity: `10/5/2018`, + CreatedOn: `2017-03-02`, + Birthday: `1976-04-11`, + LastActivity: `2017-03-05`, + NextActivity: `2018-10-05`, DealsWon: 25, DealsLost: 12, DealsPending: 3, @@ -6832,10 +6832,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Benita Clinton`, - CreatedOn: `1/24/2018`, - Birthday: `9/13/1974`, - LastActivity: `2/19/2018`, - NextActivity: `1/19/2020`, + CreatedOn: `2018-01-24`, + Birthday: `1974-09-13`, + LastActivity: `2018-02-19`, + NextActivity: `2020-01-19`, DealsWon: 12, DealsLost: 21, DealsPending: 22, @@ -6862,10 +6862,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Merissa Scotchforth`, - CreatedOn: `10/11/2017`, - Birthday: `12/16/1973`, - LastActivity: `10/21/2017`, - NextActivity: `8/21/2018`, + CreatedOn: `2017-10-11`, + Birthday: `1973-12-16`, + LastActivity: `2017-10-21`, + NextActivity: `2018-08-21`, DealsWon: 29, DealsLost: 5, DealsPending: 20, @@ -6892,10 +6892,10 @@ export class EmployeesData extends Array { State: `MI`, Country: `United States`, ReferredBy: `Raffaello Carlyle`, - CreatedOn: `10/23/2017`, - Birthday: `7/2/1995`, - LastActivity: `11/11/2017`, - NextActivity: `6/11/2019`, + CreatedOn: `2017-10-23`, + Birthday: `1995-07-02`, + LastActivity: `2017-11-11`, + NextActivity: `2019-06-11`, DealsWon: 13, DealsLost: 15, DealsPending: 22, @@ -6922,10 +6922,10 @@ export class EmployeesData extends Array { State: `NE`, Country: `United States`, ReferredBy: `Dacie Semper`, - CreatedOn: `4/5/2017`, - Birthday: `3/20/1972`, - LastActivity: `5/4/2017`, - NextActivity: `1/4/2019`, + CreatedOn: `2017-04-05`, + Birthday: `1972-03-20`, + LastActivity: `2017-05-04`, + NextActivity: `2019-01-04`, DealsWon: 20, DealsLost: 5, DealsPending: 23, @@ -6952,10 +6952,10 @@ export class EmployeesData extends Array { State: `PA`, Country: `United States`, ReferredBy: `Renado Alsobrook`, - CreatedOn: `8/10/2017`, - Birthday: `3/13/1987`, - LastActivity: `8/20/2017`, - NextActivity: `9/20/2018`, + CreatedOn: `2017-08-10`, + Birthday: `1987-03-13`, + LastActivity: `2017-08-20`, + NextActivity: `2018-09-20`, DealsWon: 8, DealsLost: 25, DealsPending: 7, @@ -6982,10 +6982,10 @@ export class EmployeesData extends Array { State: `OH`, Country: `United States`, ReferredBy: `Thia Rasmus`, - CreatedOn: `2/24/2017`, - Birthday: `8/17/1982`, - LastActivity: `3/9/2017`, - NextActivity: `9/9/2018`, + CreatedOn: `2017-02-24`, + Birthday: `1982-08-17`, + LastActivity: `2017-03-09`, + NextActivity: `2018-09-09`, DealsWon: 3, DealsLost: 12, DealsPending: 22, @@ -7012,10 +7012,10 @@ export class EmployeesData extends Array { State: `PA`, Country: `United States`, ReferredBy: `Haskell Kleanthous`, - CreatedOn: `1/13/2017`, - Birthday: `10/8/1978`, - LastActivity: `2/5/2017`, - NextActivity: `7/5/2017`, + CreatedOn: `2017-01-13`, + Birthday: `1978-10-08`, + LastActivity: `2017-02-05`, + NextActivity: `2017-07-05`, DealsWon: 19, DealsLost: 13, DealsPending: 30, @@ -7042,10 +7042,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Cayla Zima`, - CreatedOn: `4/24/2017`, - Birthday: `1/17/1986`, - LastActivity: `5/5/2017`, - NextActivity: `2/5/2018`, + CreatedOn: `2017-04-24`, + Birthday: `1986-01-17`, + LastActivity: `2017-05-05`, + NextActivity: `2018-02-05`, DealsWon: 7, DealsLost: 5, DealsPending: 9, @@ -7072,10 +7072,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Beau Pero`, - CreatedOn: `10/15/2017`, - Birthday: `1/24/2003`, - LastActivity: `11/14/2017`, - NextActivity: `3/14/2019`, + CreatedOn: `2017-10-15`, + Birthday: `2003-01-24`, + LastActivity: `2017-11-14`, + NextActivity: `2019-03-14`, DealsWon: 4, DealsLost: 26, DealsPending: 18, @@ -7102,10 +7102,10 @@ export class EmployeesData extends Array { State: `IN`, Country: `United States`, ReferredBy: `Delores Leamon`, - CreatedOn: `4/13/2018`, - Birthday: `3/15/1985`, - LastActivity: `4/27/2018`, - NextActivity: `11/27/2018`, + CreatedOn: `2018-04-13`, + Birthday: `1985-03-15`, + LastActivity: `2018-04-27`, + NextActivity: `2018-11-27`, DealsWon: 9, DealsLost: 17, DealsPending: 8, @@ -7132,10 +7132,10 @@ export class EmployeesData extends Array { State: `HI`, Country: `United States`, ReferredBy: `Catherina Tabb`, - CreatedOn: `12/6/2017`, - Birthday: `2/7/1974`, - LastActivity: `12/19/2017`, - NextActivity: `12/19/2019`, + CreatedOn: `2017-12-06`, + Birthday: `1974-02-07`, + LastActivity: `2017-12-19`, + NextActivity: `2019-12-19`, DealsWon: 28, DealsLost: 9, DealsPending: 6, @@ -7162,10 +7162,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Dag Grisley`, - CreatedOn: `1/15/2017`, - Birthday: `12/26/1986`, - LastActivity: `1/30/2017`, - NextActivity: `6/30/2018`, + CreatedOn: `2017-01-15`, + Birthday: `1986-12-26`, + LastActivity: `2017-01-30`, + NextActivity: `2018-06-30`, DealsWon: 26, DealsLost: 8, DealsPending: 0, @@ -7192,10 +7192,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Aubert McRobbie`, - CreatedOn: `3/30/2017`, - Birthday: `1/27/1981`, - LastActivity: `4/11/2017`, - NextActivity: `10/11/2018`, + CreatedOn: `2017-03-30`, + Birthday: `1981-01-27`, + LastActivity: `2017-04-11`, + NextActivity: `2018-10-11`, DealsWon: 4, DealsLost: 17, DealsPending: 1, @@ -7222,10 +7222,10 @@ export class EmployeesData extends Array { State: `AL`, Country: `United States`, ReferredBy: `Catrina Almon`, - CreatedOn: `4/11/2017`, - Birthday: `9/24/1979`, - LastActivity: `4/23/2017`, - NextActivity: `10/23/2017`, + CreatedOn: `2017-04-11`, + Birthday: `1979-09-24`, + LastActivity: `2017-04-23`, + NextActivity: `2017-10-23`, DealsWon: 27, DealsLost: 5, DealsPending: 0, @@ -7252,10 +7252,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Eunice Gerant`, - CreatedOn: `12/17/2017`, - Birthday: `8/10/1981`, - LastActivity: `1/1/2018`, - NextActivity: `6/1/2019`, + CreatedOn: `2017-12-17`, + Birthday: `1981-08-10`, + LastActivity: `2018-01-01`, + NextActivity: `2019-06-01`, DealsWon: 23, DealsLost: 25, DealsPending: 2, @@ -7282,10 +7282,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Allene Instrell`, - CreatedOn: `12/29/2017`, - Birthday: `4/3/1981`, - LastActivity: `1/15/2018`, - NextActivity: `4/15/2019`, + CreatedOn: `2017-12-29`, + Birthday: `1981-04-03`, + LastActivity: `2018-01-15`, + NextActivity: `2019-04-15`, DealsWon: 2, DealsLost: 20, DealsPending: 25, @@ -7312,10 +7312,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Cletis Gres`, - CreatedOn: `12/9/2017`, - Birthday: `4/29/1999`, - LastActivity: `12/26/2017`, - NextActivity: `8/26/2018`, + CreatedOn: `2017-12-09`, + Birthday: `1999-04-29`, + LastActivity: `2017-12-26`, + NextActivity: `2018-08-26`, DealsWon: 25, DealsLost: 23, DealsPending: 19, @@ -7342,10 +7342,10 @@ export class EmployeesData extends Array { State: `MA`, Country: `United States`, ReferredBy: `Gamaliel Calloway`, - CreatedOn: `9/20/2017`, - Birthday: `3/27/1981`, - LastActivity: `10/3/2017`, - NextActivity: `6/3/2018`, + CreatedOn: `2017-09-20`, + Birthday: `1981-03-27`, + LastActivity: `2017-10-03`, + NextActivity: `2018-06-03`, DealsWon: 26, DealsLost: 28, DealsPending: 26, @@ -7372,10 +7372,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Sherlocke Reidie`, - CreatedOn: `4/17/2018`, - Birthday: `10/8/1981`, - LastActivity: `4/25/2018`, - NextActivity: `11/25/2018`, + CreatedOn: `2018-04-17`, + Birthday: `1981-10-08`, + LastActivity: `2018-04-25`, + NextActivity: `2018-11-25`, DealsWon: 7, DealsLost: 3, DealsPending: 28, @@ -7402,10 +7402,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Rochette Dzeniskevich`, - CreatedOn: `1/30/2017`, - Birthday: `1/31/1979`, - LastActivity: `1/31/2017`, - NextActivity: `5/31/2017`, + CreatedOn: `2017-01-30`, + Birthday: `1979-01-31`, + LastActivity: `2017-01-31`, + NextActivity: `2017-05-31`, DealsWon: 14, DealsLost: 9, DealsPending: 27, @@ -7432,10 +7432,10 @@ export class EmployeesData extends Array { State: `CO`, Country: `United States`, ReferredBy: `Malory Dufton`, - CreatedOn: `2/1/2017`, - Birthday: `3/29/2001`, - LastActivity: `2/21/2017`, - NextActivity: `11/21/2017`, + CreatedOn: `2017-02-01`, + Birthday: `2001-03-29`, + LastActivity: `2017-02-21`, + NextActivity: `2017-11-21`, DealsWon: 7, DealsLost: 12, DealsPending: 17, @@ -7462,10 +7462,10 @@ export class EmployeesData extends Array { State: `IA`, Country: `United States`, ReferredBy: `Alexine Arnett`, - CreatedOn: `4/16/2017`, - Birthday: `12/12/1985`, - LastActivity: `4/29/2017`, - NextActivity: `8/29/2018`, + CreatedOn: `2017-04-16`, + Birthday: `1985-12-12`, + LastActivity: `2017-04-29`, + NextActivity: `2018-08-29`, DealsWon: 9, DealsLost: 23, DealsPending: 2, @@ -7492,10 +7492,10 @@ export class EmployeesData extends Array { State: `VA`, Country: `United States`, ReferredBy: `Deane Adriani`, - CreatedOn: `5/18/2017`, - Birthday: `6/5/1974`, - LastActivity: `5/30/2017`, - NextActivity: `5/30/2019`, + CreatedOn: `2017-05-18`, + Birthday: `1974-06-05`, + LastActivity: `2017-05-30`, + NextActivity: `2019-05-30`, DealsWon: 4, DealsLost: 16, DealsPending: 19, @@ -7522,10 +7522,10 @@ export class EmployeesData extends Array { State: `NE`, Country: `United States`, ReferredBy: `Alayne Blemings`, - CreatedOn: `2/26/2018`, - Birthday: `9/18/1996`, - LastActivity: `3/24/2018`, - NextActivity: `1/24/2020`, + CreatedOn: `2018-02-26`, + Birthday: `1996-09-18`, + LastActivity: `2018-03-24`, + NextActivity: `2020-01-24`, DealsWon: 30, DealsLost: 17, DealsPending: 15, @@ -7552,10 +7552,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Chaddie Cowey`, - CreatedOn: `12/8/2017`, - Birthday: `7/10/1984`, - LastActivity: `12/23/2017`, - NextActivity: `5/23/2019`, + CreatedOn: `2017-12-08`, + Birthday: `1984-07-10`, + LastActivity: `2017-12-23`, + NextActivity: `2019-05-23`, DealsWon: 3, DealsLost: 25, DealsPending: 25, @@ -7582,10 +7582,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Godart Butner`, - CreatedOn: `5/6/2017`, - Birthday: `11/21/1989`, - LastActivity: `5/28/2017`, - NextActivity: `2/28/2018`, + CreatedOn: `2017-05-06`, + Birthday: `1989-11-21`, + LastActivity: `2017-05-28`, + NextActivity: `2018-02-28`, DealsWon: 2, DealsLost: 9, DealsPending: 7, @@ -7612,10 +7612,10 @@ export class EmployeesData extends Array { State: `MD`, Country: `United States`, ReferredBy: `Ethelyn Klamp`, - CreatedOn: `11/8/2017`, - Birthday: `6/13/2002`, - LastActivity: `12/5/2017`, - NextActivity: `11/5/2019`, + CreatedOn: `2017-11-08`, + Birthday: `2002-06-13`, + LastActivity: `2017-12-05`, + NextActivity: `2019-11-05`, DealsWon: 30, DealsLost: 17, DealsPending: 10, @@ -7642,10 +7642,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Vick Galliver`, - CreatedOn: `1/3/2018`, - Birthday: `11/9/1983`, - LastActivity: `1/23/2018`, - NextActivity: `10/23/2019`, + CreatedOn: `2018-01-03`, + Birthday: `1983-11-09`, + LastActivity: `2018-01-23`, + NextActivity: `2019-10-23`, DealsWon: 28, DealsLost: 18, DealsPending: 22, @@ -7672,10 +7672,10 @@ export class EmployeesData extends Array { State: `AL`, Country: `United States`, ReferredBy: `Deana Swainger`, - CreatedOn: `7/29/2017`, - Birthday: `10/14/2000`, - LastActivity: `8/23/2017`, - NextActivity: `5/23/2018`, + CreatedOn: `2017-07-29`, + Birthday: `2000-10-14`, + LastActivity: `2017-08-23`, + NextActivity: `2018-05-23`, DealsWon: 20, DealsLost: 19, DealsPending: 21, @@ -7702,10 +7702,10 @@ export class EmployeesData extends Array { State: `VA`, Country: `United States`, ReferredBy: `Orsola Swallow`, - CreatedOn: `2/13/2018`, - Birthday: `11/20/1992`, - LastActivity: `2/14/2018`, - NextActivity: `8/14/2019`, + CreatedOn: `2018-02-13`, + Birthday: `1992-11-20`, + LastActivity: `2018-02-14`, + NextActivity: `2019-08-14`, DealsWon: 12, DealsLost: 1, DealsPending: 22, @@ -7732,10 +7732,10 @@ export class EmployeesData extends Array { State: `AL`, Country: `United States`, ReferredBy: `Ruddy Sandcraft`, - CreatedOn: `5/4/2017`, - Birthday: `1/30/1996`, - LastActivity: `5/6/2017`, - NextActivity: `3/6/2018`, + CreatedOn: `2017-05-04`, + Birthday: `1996-01-30`, + LastActivity: `2017-05-06`, + NextActivity: `2018-03-06`, DealsWon: 25, DealsLost: 2, DealsPending: 23, @@ -7762,10 +7762,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Vinnie Olivera`, - CreatedOn: `5/22/2017`, - Birthday: `1/18/1972`, - LastActivity: `5/30/2017`, - NextActivity: `9/30/2018`, + CreatedOn: `2017-05-22`, + Birthday: `1972-01-18`, + LastActivity: `2017-05-30`, + NextActivity: `2018-09-30`, DealsWon: 29, DealsLost: 12, DealsPending: 0, @@ -7792,10 +7792,10 @@ export class EmployeesData extends Array { State: `NJ`, Country: `United States`, ReferredBy: `Starlene Bartolomeu`, - CreatedOn: `12/1/2017`, - Birthday: `10/4/1990`, - LastActivity: `12/29/2017`, - NextActivity: `2/28/2019`, + CreatedOn: `2017-12-01`, + Birthday: `1990-10-04`, + LastActivity: `2017-12-29`, + NextActivity: `2019-02-28`, DealsWon: 9, DealsLost: 5, DealsPending: 26, @@ -7822,10 +7822,10 @@ export class EmployeesData extends Array { State: `OH`, Country: `United States`, ReferredBy: `Annissa Rey`, - CreatedOn: `6/10/2017`, - Birthday: `2/26/1988`, - LastActivity: `6/18/2017`, - NextActivity: `4/18/2018`, + CreatedOn: `2017-06-10`, + Birthday: `1988-02-26`, + LastActivity: `2017-06-18`, + NextActivity: `2018-04-18`, DealsWon: 11, DealsLost: 23, DealsPending: 11, @@ -7852,10 +7852,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Cesar Walsh`, - CreatedOn: `2/14/2018`, - Birthday: `1/30/1984`, - LastActivity: `3/7/2018`, - NextActivity: `1/7/2019`, + CreatedOn: `2018-02-14`, + Birthday: `1984-01-30`, + LastActivity: `2018-03-07`, + NextActivity: `2019-01-07`, DealsWon: 18, DealsLost: 27, DealsPending: 6, @@ -7882,10 +7882,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Mira Shirley`, - CreatedOn: `1/2/2017`, - Birthday: `8/12/1998`, - LastActivity: `1/9/2017`, - NextActivity: `4/9/2018`, + CreatedOn: `2017-01-02`, + Birthday: `1998-08-12`, + LastActivity: `2017-01-09`, + NextActivity: `2018-04-09`, DealsWon: 2, DealsLost: 12, DealsPending: 5, @@ -7912,10 +7912,10 @@ export class EmployeesData extends Array { State: `PA`, Country: `United States`, ReferredBy: `Collen Norcliff`, - CreatedOn: `9/20/2017`, - Birthday: `11/29/1998`, - LastActivity: `10/2/2017`, - NextActivity: `5/2/2018`, + CreatedOn: `2017-09-20`, + Birthday: `1998-11-29`, + LastActivity: `2017-10-02`, + NextActivity: `2018-05-02`, DealsWon: 21, DealsLost: 10, DealsPending: 5, @@ -7942,10 +7942,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Matt Shortell`, - CreatedOn: `12/16/2017`, - Birthday: `6/13/1989`, - LastActivity: `1/7/2018`, - NextActivity: `11/7/2019`, + CreatedOn: `2017-12-16`, + Birthday: `1989-06-13`, + LastActivity: `2018-01-07`, + NextActivity: `2019-11-07`, DealsWon: 6, DealsLost: 20, DealsPending: 28, @@ -7972,10 +7972,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Kinna Norcutt`, - CreatedOn: `1/29/2018`, - Birthday: `5/27/1993`, - LastActivity: `2/4/2018`, - NextActivity: `3/4/2018`, + CreatedOn: `2018-01-29`, + Birthday: `1993-05-27`, + LastActivity: `2018-02-04`, + NextActivity: `2018-03-04`, DealsWon: 4, DealsLost: 6, DealsPending: 12, @@ -8002,10 +8002,10 @@ export class EmployeesData extends Array { State: `CO`, Country: `United States`, ReferredBy: `Freddy Perico`, - CreatedOn: `1/13/2017`, - Birthday: `11/11/1995`, - LastActivity: `1/22/2017`, - NextActivity: `10/22/2018`, + CreatedOn: `2017-01-13`, + Birthday: `1995-11-11`, + LastActivity: `2017-01-22`, + NextActivity: `2018-10-22`, DealsWon: 2, DealsLost: 1, DealsPending: 21, @@ -8032,10 +8032,10 @@ export class EmployeesData extends Array { State: `NE`, Country: `United States`, ReferredBy: `Lilah Beeton`, - CreatedOn: `1/4/2017`, - Birthday: `11/30/1983`, - LastActivity: `1/27/2017`, - NextActivity: `1/27/2018`, + CreatedOn: `2017-01-04`, + Birthday: `1983-11-30`, + LastActivity: `2017-01-27`, + NextActivity: `2018-01-27`, DealsWon: 12, DealsLost: 17, DealsPending: 25, @@ -8062,10 +8062,10 @@ export class EmployeesData extends Array { State: `WV`, Country: `United States`, ReferredBy: `Allistir Tomasi`, - CreatedOn: `11/14/2017`, - Birthday: `12/20/1995`, - LastActivity: `11/26/2017`, - NextActivity: `7/26/2018`, + CreatedOn: `2017-11-14`, + Birthday: `1995-12-20`, + LastActivity: `2017-11-26`, + NextActivity: `2018-07-26`, DealsWon: 22, DealsLost: 27, DealsPending: 20, @@ -8092,10 +8092,10 @@ export class EmployeesData extends Array { State: `VA`, Country: `United States`, ReferredBy: `Louella Pandey`, - CreatedOn: `2/27/2017`, - Birthday: `4/12/1986`, - LastActivity: `3/7/2017`, - NextActivity: `11/7/2017`, + CreatedOn: `2017-02-27`, + Birthday: `1986-04-12`, + LastActivity: `2017-03-07`, + NextActivity: `2017-11-07`, DealsWon: 9, DealsLost: 24, DealsPending: 2, @@ -8122,10 +8122,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Angelique Barrasse`, - CreatedOn: `1/6/2018`, - Birthday: `12/22/1972`, - LastActivity: `2/3/2018`, - NextActivity: `9/3/2019`, + CreatedOn: `2018-01-06`, + Birthday: `1972-12-22`, + LastActivity: `2018-02-03`, + NextActivity: `2019-09-03`, DealsWon: 11, DealsLost: 12, DealsPending: 25, @@ -8152,10 +8152,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Erminie Tredget`, - CreatedOn: `3/13/2017`, - Birthday: `1/14/1991`, - LastActivity: `3/17/2017`, - NextActivity: `4/17/2018`, + CreatedOn: `2017-03-13`, + Birthday: `1991-01-14`, + LastActivity: `2017-03-17`, + NextActivity: `2018-04-17`, DealsWon: 18, DealsLost: 7, DealsPending: 27, @@ -8182,10 +8182,10 @@ export class EmployeesData extends Array { State: `VA`, Country: `United States`, ReferredBy: `My Javes`, - CreatedOn: `12/11/2017`, - Birthday: `10/28/1988`, - LastActivity: `12/26/2017`, - NextActivity: `12/26/2019`, + CreatedOn: `2017-12-11`, + Birthday: `1988-10-28`, + LastActivity: `2017-12-26`, + NextActivity: `2019-12-26`, DealsWon: 18, DealsLost: 4, DealsPending: 27, @@ -8212,10 +8212,10 @@ export class EmployeesData extends Array { State: `KY`, Country: `United States`, ReferredBy: `Newton Pimblott`, - CreatedOn: `11/17/2017`, - Birthday: `5/31/1987`, - LastActivity: `12/11/2017`, - NextActivity: `11/11/2018`, + CreatedOn: `2017-11-17`, + Birthday: `1987-05-31`, + LastActivity: `2017-12-11`, + NextActivity: `2018-11-11`, DealsWon: 10, DealsLost: 20, DealsPending: 1, @@ -8242,10 +8242,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Steven Oultram`, - CreatedOn: `1/21/2018`, - Birthday: `1/19/1998`, - LastActivity: `1/29/2018`, - NextActivity: `3/29/2019`, + CreatedOn: `2018-01-21`, + Birthday: `1998-01-19`, + LastActivity: `2018-01-29`, + NextActivity: `2019-03-29`, DealsWon: 23, DealsLost: 29, DealsPending: 17, @@ -8272,10 +8272,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Alick Hawkridge`, - CreatedOn: `4/22/2017`, - Birthday: `1/22/1985`, - LastActivity: `5/8/2017`, - NextActivity: `10/8/2017`, + CreatedOn: `2017-04-22`, + Birthday: `1985-01-22`, + LastActivity: `2017-05-08`, + NextActivity: `2017-10-08`, DealsWon: 6, DealsLost: 27, DealsPending: 20, @@ -8302,10 +8302,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Armando Izzatt`, - CreatedOn: `3/17/2018`, - Birthday: `11/6/1979`, - LastActivity: `4/10/2018`, - NextActivity: `4/10/2020`, + CreatedOn: `2018-03-17`, + Birthday: `1979-11-06`, + LastActivity: `2018-04-10`, + NextActivity: `2020-04-10`, DealsWon: 27, DealsLost: 30, DealsPending: 21, @@ -8332,10 +8332,10 @@ export class EmployeesData extends Array { State: `TN`, Country: `United States`, ReferredBy: `Maggie Simeone`, - CreatedOn: `12/22/2017`, - Birthday: `11/11/1979`, - LastActivity: `12/31/2017`, - NextActivity: `10/31/2019`, + CreatedOn: `2017-12-22`, + Birthday: `1979-11-11`, + LastActivity: `2017-12-31`, + NextActivity: `2019-10-31`, DealsWon: 17, DealsLost: 27, DealsPending: 8, @@ -8362,10 +8362,10 @@ export class EmployeesData extends Array { State: `AL`, Country: `United States`, ReferredBy: `Yvette Tosdevin`, - CreatedOn: `9/27/2017`, - Birthday: `8/26/1993`, - LastActivity: `9/29/2017`, - NextActivity: `12/29/2018`, + CreatedOn: `2017-09-27`, + Birthday: `1993-08-26`, + LastActivity: `2017-09-29`, + NextActivity: `2018-12-29`, DealsWon: 27, DealsLost: 11, DealsPending: 13, @@ -8392,10 +8392,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Moina Plan`, - CreatedOn: `1/19/2018`, - Birthday: `11/20/1971`, - LastActivity: `2/11/2018`, - NextActivity: `1/11/2020`, + CreatedOn: `2018-01-19`, + Birthday: `1971-11-20`, + LastActivity: `2018-02-11`, + NextActivity: `2020-01-11`, DealsWon: 7, DealsLost: 19, DealsPending: 17, @@ -8422,10 +8422,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Neddy Bardwell`, - CreatedOn: `9/1/2017`, - Birthday: `11/3/1976`, - LastActivity: `9/6/2017`, - NextActivity: `5/6/2019`, + CreatedOn: `2017-09-01`, + Birthday: `1976-11-03`, + LastActivity: `2017-09-06`, + NextActivity: `2019-05-06`, DealsWon: 27, DealsLost: 29, DealsPending: 29, @@ -8452,10 +8452,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Reynard Aleksich`, - CreatedOn: `7/4/2017`, - Birthday: `9/17/1974`, - LastActivity: `7/31/2017`, - NextActivity: `12/31/2017`, + CreatedOn: `2017-07-04`, + Birthday: `1974-09-17`, + LastActivity: `2017-07-31`, + NextActivity: `2017-12-31`, DealsWon: 15, DealsLost: 30, DealsPending: 12, @@ -8482,10 +8482,10 @@ export class EmployeesData extends Array { State: `MI`, Country: `United States`, ReferredBy: `Abramo MacKeever`, - CreatedOn: `3/25/2017`, - Birthday: `6/2/1975`, - LastActivity: `4/16/2017`, - NextActivity: `4/16/2019`, + CreatedOn: `2017-03-25`, + Birthday: `1975-06-02`, + LastActivity: `2017-04-16`, + NextActivity: `2019-04-16`, DealsWon: 13, DealsLost: 12, DealsPending: 0, @@ -8512,10 +8512,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Milzie Brokenshire`, - CreatedOn: `8/26/2017`, - Birthday: `6/17/1971`, - LastActivity: `9/10/2017`, - NextActivity: `9/10/2018`, + CreatedOn: `2017-08-26`, + Birthday: `1971-06-17`, + LastActivity: `2017-09-10`, + NextActivity: `2018-09-10`, DealsWon: 13, DealsLost: 26, DealsPending: 20, @@ -8542,10 +8542,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Lida Napoleone`, - CreatedOn: `3/26/2018`, - Birthday: `9/22/1992`, - LastActivity: `4/23/2018`, - NextActivity: `3/23/2019`, + CreatedOn: `2018-03-26`, + Birthday: `1992-09-22`, + LastActivity: `2018-04-23`, + NextActivity: `2019-03-23`, DealsWon: 19, DealsLost: 3, DealsPending: 27, @@ -8572,10 +8572,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Simonne Mathevon`, - CreatedOn: `7/10/2017`, - Birthday: `1/26/1995`, - LastActivity: `7/12/2017`, - NextActivity: `9/12/2018`, + CreatedOn: `2017-07-10`, + Birthday: `1995-01-26`, + LastActivity: `2017-07-12`, + NextActivity: `2018-09-12`, DealsWon: 17, DealsLost: 5, DealsPending: 0, @@ -8602,10 +8602,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Waite Bendson`, - CreatedOn: `3/21/2018`, - Birthday: `5/20/1978`, - LastActivity: `4/8/2018`, - NextActivity: `7/8/2018`, + CreatedOn: `2018-03-21`, + Birthday: `1978-05-20`, + LastActivity: `2018-04-08`, + NextActivity: `2018-07-08`, DealsWon: 12, DealsLost: 26, DealsPending: 13, @@ -8632,10 +8632,10 @@ export class EmployeesData extends Array { State: `ID`, Country: `United States`, ReferredBy: `Quintilla Hopkynson`, - CreatedOn: `1/14/2018`, - Birthday: `11/14/2001`, - LastActivity: `1/17/2018`, - NextActivity: `12/17/2019`, + CreatedOn: `2018-01-14`, + Birthday: `2001-11-14`, + LastActivity: `2018-01-17`, + NextActivity: `2019-12-17`, DealsWon: 16, DealsLost: 15, DealsPending: 0, @@ -8662,10 +8662,10 @@ export class EmployeesData extends Array { State: `WV`, Country: `United States`, ReferredBy: `Amos Vorley`, - CreatedOn: `10/16/2017`, - Birthday: `6/12/1978`, - LastActivity: `11/6/2017`, - NextActivity: `9/6/2019`, + CreatedOn: `2017-10-16`, + Birthday: `1978-06-12`, + LastActivity: `2017-11-06`, + NextActivity: `2019-09-06`, DealsWon: 21, DealsLost: 21, DealsPending: 17, @@ -8692,10 +8692,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Jehu MacShirie`, - CreatedOn: `1/12/2018`, - Birthday: `9/22/1971`, - LastActivity: `2/3/2018`, - NextActivity: `6/3/2019`, + CreatedOn: `2018-01-12`, + Birthday: `1971-09-22`, + LastActivity: `2018-02-03`, + NextActivity: `2019-06-03`, DealsWon: 10, DealsLost: 26, DealsPending: 22, @@ -8722,10 +8722,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Hamil Bower`, - CreatedOn: `1/6/2017`, - Birthday: `6/7/1992`, - LastActivity: `1/18/2017`, - NextActivity: `4/18/2018`, + CreatedOn: `2017-01-06`, + Birthday: `1992-06-07`, + LastActivity: `2017-01-18`, + NextActivity: `2018-04-18`, DealsWon: 15, DealsLost: 11, DealsPending: 22, @@ -8752,10 +8752,10 @@ export class EmployeesData extends Array { State: `CT`, Country: `United States`, ReferredBy: `Michaella D'Onisi`, - CreatedOn: `3/26/2017`, - Birthday: `6/26/1994`, - LastActivity: `4/6/2017`, - NextActivity: `6/6/2018`, + CreatedOn: `2017-03-26`, + Birthday: `1994-06-26`, + LastActivity: `2017-04-06`, + NextActivity: `2018-06-06`, DealsWon: 9, DealsLost: 22, DealsPending: 20, @@ -8782,10 +8782,10 @@ export class EmployeesData extends Array { State: `CO`, Country: `United States`, ReferredBy: `Jeni O' Brian`, - CreatedOn: `6/15/2017`, - Birthday: `4/24/1991`, - LastActivity: `6/25/2017`, - NextActivity: `7/25/2018`, + CreatedOn: `2017-06-15`, + Birthday: `1991-04-24`, + LastActivity: `2017-06-25`, + NextActivity: `2018-07-25`, DealsWon: 11, DealsLost: 26, DealsPending: 11, @@ -8812,10 +8812,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `George Batteson`, - CreatedOn: `6/1/2017`, - Birthday: `1/3/1994`, - LastActivity: `6/16/2017`, - NextActivity: `11/16/2017`, + CreatedOn: `2017-06-01`, + Birthday: `1994-01-03`, + LastActivity: `2017-06-16`, + NextActivity: `2017-11-16`, DealsWon: 0, DealsLost: 6, DealsPending: 6, @@ -8842,10 +8842,10 @@ export class EmployeesData extends Array { State: `GA`, Country: `United States`, ReferredBy: `Jessey Boken`, - CreatedOn: `8/9/2017`, - Birthday: `11/2/1998`, - LastActivity: `9/5/2017`, - NextActivity: `8/5/2019`, + CreatedOn: `2017-08-09`, + Birthday: `1998-11-02`, + LastActivity: `2017-09-05`, + NextActivity: `2019-08-05`, DealsWon: 11, DealsLost: 18, DealsPending: 17, @@ -8872,10 +8872,10 @@ export class EmployeesData extends Array { State: `TN`, Country: `United States`, ReferredBy: `Andie McCullouch`, - CreatedOn: `8/3/2017`, - Birthday: `1/14/1995`, - LastActivity: `8/8/2017`, - NextActivity: `1/8/2018`, + CreatedOn: `2017-08-03`, + Birthday: `1995-01-14`, + LastActivity: `2017-08-08`, + NextActivity: `2018-01-08`, DealsWon: 3, DealsLost: 17, DealsPending: 3, @@ -8902,10 +8902,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Martelle Vanlint`, - CreatedOn: `12/11/2017`, - Birthday: `10/24/1996`, - LastActivity: `12/14/2017`, - NextActivity: `1/14/2018`, + CreatedOn: `2017-12-11`, + Birthday: `1996-10-24`, + LastActivity: `2017-12-14`, + NextActivity: `2018-01-14`, DealsWon: 14, DealsLost: 21, DealsPending: 23, @@ -8932,10 +8932,10 @@ export class EmployeesData extends Array { State: `NC`, Country: `United States`, ReferredBy: `Freddie Siddons`, - CreatedOn: `2/4/2018`, - Birthday: `11/7/1976`, - LastActivity: `3/2/2018`, - NextActivity: `8/2/2019`, + CreatedOn: `2018-02-04`, + Birthday: `1976-11-07`, + LastActivity: `2018-03-02`, + NextActivity: `2019-08-02`, DealsWon: 2, DealsLost: 9, DealsPending: 13, @@ -8962,10 +8962,10 @@ export class EmployeesData extends Array { State: `NC`, Country: `United States`, ReferredBy: `Cleveland Kleisle`, - CreatedOn: `7/29/2017`, - Birthday: `8/5/1975`, - LastActivity: `8/18/2017`, - NextActivity: `11/18/2017`, + CreatedOn: `2017-07-29`, + Birthday: `1975-08-05`, + LastActivity: `2017-08-18`, + NextActivity: `2017-11-18`, DealsWon: 24, DealsLost: 6, DealsPending: 13, @@ -8992,10 +8992,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Merrili Fuxman`, - CreatedOn: `2/7/2017`, - Birthday: `10/8/1988`, - LastActivity: `2/11/2017`, - NextActivity: `7/11/2018`, + CreatedOn: `2017-02-07`, + Birthday: `1988-10-08`, + LastActivity: `2017-02-11`, + NextActivity: `2018-07-11`, DealsWon: 27, DealsLost: 26, DealsPending: 10, @@ -9022,10 +9022,10 @@ export class EmployeesData extends Array { State: `KY`, Country: `United States`, ReferredBy: `Janessa Mariot`, - CreatedOn: `5/11/2017`, - Birthday: `7/17/1999`, - LastActivity: `5/14/2017`, - NextActivity: `1/14/2019`, + CreatedOn: `2017-05-11`, + Birthday: `1999-07-17`, + LastActivity: `2017-05-14`, + NextActivity: `2019-01-14`, DealsWon: 30, DealsLost: 27, DealsPending: 12, @@ -9052,10 +9052,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Dwain Taffe`, - CreatedOn: `7/11/2017`, - Birthday: `4/8/1995`, - LastActivity: `7/12/2017`, - NextActivity: `3/12/2018`, + CreatedOn: `2017-07-11`, + Birthday: `1995-04-08`, + LastActivity: `2017-07-12`, + NextActivity: `2018-03-12`, DealsWon: 29, DealsLost: 24, DealsPending: 11, @@ -9082,10 +9082,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Berny Avo`, - CreatedOn: `3/19/2018`, - Birthday: `1/9/1981`, - LastActivity: `4/2/2018`, - NextActivity: `7/2/2019`, + CreatedOn: `2018-03-19`, + Birthday: `1981-01-09`, + LastActivity: `2018-04-02`, + NextActivity: `2019-07-02`, DealsWon: 0, DealsLost: 11, DealsPending: 1, @@ -9112,10 +9112,10 @@ export class EmployeesData extends Array { State: `AZ`, Country: `United States`, ReferredBy: `Fabe Cramb`, - CreatedOn: `6/24/2017`, - Birthday: `7/2/1971`, - LastActivity: `7/20/2017`, - NextActivity: `12/20/2017`, + CreatedOn: `2017-06-24`, + Birthday: `1971-07-02`, + LastActivity: `2017-07-20`, + NextActivity: `2017-12-20`, DealsWon: 30, DealsLost: 29, DealsPending: 19, @@ -9142,10 +9142,10 @@ export class EmployeesData extends Array { State: `IL`, Country: `United States`, ReferredBy: `Cinda Gehring`, - CreatedOn: `1/3/2017`, - Birthday: `10/3/1992`, - LastActivity: `1/9/2017`, - NextActivity: `3/9/2017`, + CreatedOn: `2017-01-03`, + Birthday: `1992-10-03`, + LastActivity: `2017-01-09`, + NextActivity: `2017-03-09`, DealsWon: 19, DealsLost: 16, DealsPending: 22, @@ -9172,10 +9172,10 @@ export class EmployeesData extends Array { State: `OR`, Country: `United States`, ReferredBy: `Gunner McCerery`, - CreatedOn: `4/15/2018`, - Birthday: `8/6/1996`, - LastActivity: `5/2/2018`, - NextActivity: `9/2/2019`, + CreatedOn: `2018-04-15`, + Birthday: `1996-08-06`, + LastActivity: `2018-05-02`, + NextActivity: `2019-09-02`, DealsWon: 22, DealsLost: 13, DealsPending: 6, @@ -9202,10 +9202,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Frannie Orteaux`, - CreatedOn: `1/4/2017`, - Birthday: `3/7/1977`, - LastActivity: `1/12/2017`, - NextActivity: `6/12/2017`, + CreatedOn: `2017-01-04`, + Birthday: `1977-03-07`, + LastActivity: `2017-01-12`, + NextActivity: `2017-06-12`, DealsWon: 22, DealsLost: 12, DealsPending: 16, @@ -9232,10 +9232,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Gray Odams`, - CreatedOn: `12/26/2017`, - Birthday: `6/11/1999`, - LastActivity: `1/3/2018`, - NextActivity: `9/3/2018`, + CreatedOn: `2017-12-26`, + Birthday: `1999-06-11`, + LastActivity: `2018-01-03`, + NextActivity: `2018-09-03`, DealsWon: 10, DealsLost: 24, DealsPending: 30, @@ -9262,10 +9262,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Laural Massy`, - CreatedOn: `7/7/2017`, - Birthday: `10/31/1973`, - LastActivity: `7/27/2017`, - NextActivity: `10/27/2017`, + CreatedOn: `2017-07-07`, + Birthday: `1973-10-31`, + LastActivity: `2017-07-27`, + NextActivity: `2017-10-27`, DealsWon: 28, DealsLost: 28, DealsPending: 20, @@ -9292,10 +9292,10 @@ export class EmployeesData extends Array { State: `VT`, Country: `United States`, ReferredBy: `Babbette Linkie`, - CreatedOn: `8/19/2017`, - Birthday: `11/6/1979`, - LastActivity: `8/25/2017`, - NextActivity: `3/25/2018`, + CreatedOn: `2017-08-19`, + Birthday: `1979-11-06`, + LastActivity: `2017-08-25`, + NextActivity: `2018-03-25`, DealsWon: 30, DealsLost: 20, DealsPending: 23, @@ -9322,10 +9322,10 @@ export class EmployeesData extends Array { State: `MN`, Country: `United States`, ReferredBy: `Saunders Glossop`, - CreatedOn: `5/10/2017`, - Birthday: `1/28/1986`, - LastActivity: `5/27/2017`, - NextActivity: `2/27/2019`, + CreatedOn: `2017-05-10`, + Birthday: `1986-01-28`, + LastActivity: `2017-05-27`, + NextActivity: `2019-02-27`, DealsWon: 21, DealsLost: 25, DealsPending: 4, @@ -9352,10 +9352,10 @@ export class EmployeesData extends Array { State: `PA`, Country: `United States`, ReferredBy: `Lucian Beet`, - CreatedOn: `10/1/2017`, - Birthday: `12/19/1999`, - LastActivity: `10/21/2017`, - NextActivity: `12/21/2018`, + CreatedOn: `2017-10-01`, + Birthday: `1999-12-19`, + LastActivity: `2017-10-21`, + NextActivity: `2018-12-21`, DealsWon: 29, DealsLost: 8, DealsPending: 21, @@ -9382,10 +9382,10 @@ export class EmployeesData extends Array { State: `CT`, Country: `United States`, ReferredBy: `Adair Tomashov`, - CreatedOn: `5/30/2017`, - Birthday: `1/26/1985`, - LastActivity: `6/29/2017`, - NextActivity: `10/29/2018`, + CreatedOn: `2017-05-30`, + Birthday: `1985-01-26`, + LastActivity: `2017-06-29`, + NextActivity: `2018-10-29`, DealsWon: 14, DealsLost: 25, DealsPending: 28, @@ -9412,10 +9412,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Clementine Alchin`, - CreatedOn: `6/29/2017`, - Birthday: `5/3/1997`, - LastActivity: `6/30/2017`, - NextActivity: `4/30/2018`, + CreatedOn: `2017-06-29`, + Birthday: `1997-05-03`, + LastActivity: `2017-06-30`, + NextActivity: `2018-04-30`, DealsWon: 28, DealsLost: 19, DealsPending: 19, @@ -9442,10 +9442,10 @@ export class EmployeesData extends Array { State: `UT`, Country: `United States`, ReferredBy: `Shari Otto`, - CreatedOn: `10/19/2017`, - Birthday: `9/15/1970`, - LastActivity: `10/24/2017`, - NextActivity: `7/24/2019`, + CreatedOn: `2017-10-19`, + Birthday: `1970-09-15`, + LastActivity: `2017-10-24`, + NextActivity: `2019-07-24`, DealsWon: 29, DealsLost: 22, DealsPending: 11, @@ -9472,10 +9472,10 @@ export class EmployeesData extends Array { State: `IN`, Country: `United States`, ReferredBy: `Daloris Prahm`, - CreatedOn: `1/21/2017`, - Birthday: `5/13/1995`, - LastActivity: `1/26/2017`, - NextActivity: `11/26/2018`, + CreatedOn: `2017-01-21`, + Birthday: `1995-05-13`, + LastActivity: `2017-01-26`, + NextActivity: `2018-11-26`, DealsWon: 26, DealsLost: 12, DealsPending: 3, @@ -9502,10 +9502,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Isaak Bracknall`, - CreatedOn: `7/27/2017`, - Birthday: `9/24/1999`, - LastActivity: `8/19/2017`, - NextActivity: `4/19/2019`, + CreatedOn: `2017-07-27`, + Birthday: `1999-09-24`, + LastActivity: `2017-08-19`, + NextActivity: `2019-04-19`, DealsWon: 18, DealsLost: 23, DealsPending: 14, @@ -9532,10 +9532,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Wernher Saint`, - CreatedOn: `10/26/2017`, - Birthday: `12/11/1982`, - LastActivity: `11/16/2017`, - NextActivity: `6/16/2018`, + CreatedOn: `2017-10-26`, + Birthday: `1982-12-11`, + LastActivity: `2017-11-16`, + NextActivity: `2018-06-16`, DealsWon: 2, DealsLost: 24, DealsPending: 9, @@ -9562,10 +9562,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Suzy Milhench`, - CreatedOn: `4/13/2018`, - Birthday: `2/9/1992`, - LastActivity: `5/11/2018`, - NextActivity: `3/11/2020`, + CreatedOn: `2018-04-13`, + Birthday: `1992-02-09`, + LastActivity: `2018-05-11`, + NextActivity: `2020-03-11`, DealsWon: 8, DealsLost: 23, DealsPending: 15, @@ -9592,10 +9592,10 @@ export class EmployeesData extends Array { State: `GA`, Country: `United States`, ReferredBy: `Cassius Chastenet`, - CreatedOn: `2/17/2017`, - Birthday: `5/3/1993`, - LastActivity: `2/22/2017`, - NextActivity: `3/22/2018`, + CreatedOn: `2017-02-17`, + Birthday: `1993-05-03`, + LastActivity: `2017-02-22`, + NextActivity: `2018-03-22`, DealsWon: 29, DealsLost: 25, DealsPending: 25, @@ -9622,10 +9622,10 @@ export class EmployeesData extends Array { State: `AZ`, Country: `United States`, ReferredBy: `Ives McGlaud`, - CreatedOn: `1/11/2017`, - Birthday: `2/12/1971`, - LastActivity: `1/19/2017`, - NextActivity: `4/19/2017`, + CreatedOn: `2017-01-11`, + Birthday: `1971-02-12`, + LastActivity: `2017-01-19`, + NextActivity: `2017-04-19`, DealsWon: 24, DealsLost: 16, DealsPending: 10, @@ -9652,10 +9652,10 @@ export class EmployeesData extends Array { State: `AZ`, Country: `United States`, ReferredBy: `Porter Dannehl`, - CreatedOn: `2/20/2017`, - Birthday: `8/26/1976`, - LastActivity: `2/22/2017`, - NextActivity: `6/22/2018`, + CreatedOn: `2017-02-20`, + Birthday: `1976-08-26`, + LastActivity: `2017-02-22`, + NextActivity: `2018-06-22`, DealsWon: 29, DealsLost: 16, DealsPending: 13, @@ -9682,10 +9682,10 @@ export class EmployeesData extends Array { State: `AL`, Country: `United States`, ReferredBy: `Galvan Emmott`, - CreatedOn: `6/24/2017`, - Birthday: `3/2/1976`, - LastActivity: `7/5/2017`, - NextActivity: `2/5/2018`, + CreatedOn: `2017-06-24`, + Birthday: `1976-03-02`, + LastActivity: `2017-07-05`, + NextActivity: `2018-02-05`, DealsWon: 30, DealsLost: 23, DealsPending: 20, @@ -9712,10 +9712,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Terrence Crowcher`, - CreatedOn: `5/24/2017`, - Birthday: `4/5/1980`, - LastActivity: `6/11/2017`, - NextActivity: `3/11/2019`, + CreatedOn: `2017-05-24`, + Birthday: `1980-04-05`, + LastActivity: `2017-06-11`, + NextActivity: `2019-03-11`, DealsWon: 8, DealsLost: 6, DealsPending: 14, @@ -9742,10 +9742,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Sada Guest`, - CreatedOn: `11/10/2017`, - Birthday: `12/19/1984`, - LastActivity: `11/12/2017`, - NextActivity: `6/12/2018`, + CreatedOn: `2017-11-10`, + Birthday: `1984-12-19`, + LastActivity: `2017-11-12`, + NextActivity: `2018-06-12`, DealsWon: 1, DealsLost: 8, DealsPending: 16, @@ -9772,10 +9772,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Aldis Anderson`, - CreatedOn: `4/8/2017`, - Birthday: `7/27/1996`, - LastActivity: `4/19/2017`, - NextActivity: `10/19/2018`, + CreatedOn: `2017-04-08`, + Birthday: `1996-07-27`, + LastActivity: `2017-04-19`, + NextActivity: `2018-10-19`, DealsWon: 26, DealsLost: 26, DealsPending: 1, @@ -9802,10 +9802,10 @@ export class EmployeesData extends Array { State: `TN`, Country: `United States`, ReferredBy: `Dannye Holstein`, - CreatedOn: `7/28/2017`, - Birthday: `10/25/1970`, - LastActivity: `8/26/2017`, - NextActivity: `2/26/2018`, + CreatedOn: `2017-07-28`, + Birthday: `1970-10-25`, + LastActivity: `2017-08-26`, + NextActivity: `2018-02-26`, DealsWon: 17, DealsLost: 7, DealsPending: 11, @@ -9832,10 +9832,10 @@ export class EmployeesData extends Array { State: `MI`, Country: `United States`, ReferredBy: `Sibylla Dicken`, - CreatedOn: `8/20/2017`, - Birthday: `1/27/1986`, - LastActivity: `9/9/2017`, - NextActivity: `9/9/2019`, + CreatedOn: `2017-08-20`, + Birthday: `1986-01-27`, + LastActivity: `2017-09-09`, + NextActivity: `2019-09-09`, DealsWon: 25, DealsLost: 2, DealsPending: 5, @@ -9862,10 +9862,10 @@ export class EmployeesData extends Array { State: `PA`, Country: `United States`, ReferredBy: `Emmalynn Bramhill`, - CreatedOn: `7/27/2017`, - Birthday: `9/18/1984`, - LastActivity: `8/20/2017`, - NextActivity: `2/20/2018`, + CreatedOn: `2017-07-27`, + Birthday: `1984-09-18`, + LastActivity: `2017-08-20`, + NextActivity: `2018-02-20`, DealsWon: 24, DealsLost: 18, DealsPending: 1, @@ -9892,10 +9892,10 @@ export class EmployeesData extends Array { State: `MN`, Country: `United States`, ReferredBy: `Stan Colley`, - CreatedOn: `11/17/2017`, - Birthday: `4/20/1984`, - LastActivity: `11/21/2017`, - NextActivity: `6/21/2018`, + CreatedOn: `2017-11-17`, + Birthday: `1984-04-20`, + LastActivity: `2017-11-21`, + NextActivity: `2018-06-21`, DealsWon: 9, DealsLost: 25, DealsPending: 10, @@ -9922,10 +9922,10 @@ export class EmployeesData extends Array { State: `NM`, Country: `United States`, ReferredBy: `Henryetta Holttom`, - CreatedOn: `3/29/2018`, - Birthday: `8/13/1974`, - LastActivity: `3/30/2018`, - NextActivity: `3/30/2019`, + CreatedOn: `2018-03-29`, + Birthday: `1974-08-13`, + LastActivity: `2018-03-30`, + NextActivity: `2019-03-30`, DealsWon: 16, DealsLost: 4, DealsPending: 15, @@ -9952,10 +9952,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Lion Badam`, - CreatedOn: `1/15/2017`, - Birthday: `2/4/1976`, - LastActivity: `2/6/2017`, - NextActivity: `1/6/2018`, + CreatedOn: `2017-01-15`, + Birthday: `1976-02-04`, + LastActivity: `2017-02-06`, + NextActivity: `2018-01-06`, DealsWon: 25, DealsLost: 9, DealsPending: 0, @@ -9982,10 +9982,10 @@ export class EmployeesData extends Array { State: `NM`, Country: `United States`, ReferredBy: `Cari Oxborough`, - CreatedOn: `4/26/2017`, - Birthday: `6/15/1998`, - LastActivity: `5/21/2017`, - NextActivity: `4/21/2018`, + CreatedOn: `2017-04-26`, + Birthday: `1998-06-15`, + LastActivity: `2017-05-21`, + NextActivity: `2018-04-21`, DealsWon: 3, DealsLost: 17, DealsPending: 15, @@ -10012,10 +10012,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Sebastien Huyche`, - CreatedOn: `2/13/2018`, - Birthday: `8/19/1979`, - LastActivity: `3/8/2018`, - NextActivity: `9/8/2019`, + CreatedOn: `2018-02-13`, + Birthday: `1979-08-19`, + LastActivity: `2018-03-08`, + NextActivity: `2019-09-08`, DealsWon: 12, DealsLost: 10, DealsPending: 19, @@ -10042,10 +10042,10 @@ export class EmployeesData extends Array { State: `CO`, Country: `United States`, ReferredBy: `Thomasin Bente`, - CreatedOn: `2/22/2017`, - Birthday: `9/3/1970`, - LastActivity: `3/16/2017`, - NextActivity: `1/16/2018`, + CreatedOn: `2017-02-22`, + Birthday: `1970-09-03`, + LastActivity: `2017-03-16`, + NextActivity: `2018-01-16`, DealsWon: 27, DealsLost: 28, DealsPending: 1, @@ -10072,10 +10072,10 @@ export class EmployeesData extends Array { State: `OK`, Country: `United States`, ReferredBy: `Finlay Vannini`, - CreatedOn: `1/22/2018`, - Birthday: `8/27/1988`, - LastActivity: `1/24/2018`, - NextActivity: `6/24/2019`, + CreatedOn: `2018-01-22`, + Birthday: `1988-08-27`, + LastActivity: `2018-01-24`, + NextActivity: `2019-06-24`, DealsWon: 9, DealsLost: 24, DealsPending: 3, @@ -10102,10 +10102,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Amalita Gunney`, - CreatedOn: `11/1/2017`, - Birthday: `2/2/2003`, - LastActivity: `11/18/2017`, - NextActivity: `11/18/2019`, + CreatedOn: `2017-11-01`, + Birthday: `2003-02-02`, + LastActivity: `2017-11-18`, + NextActivity: `2019-11-18`, DealsWon: 8, DealsLost: 24, DealsPending: 9, @@ -10132,10 +10132,10 @@ export class EmployeesData extends Array { State: `MD`, Country: `United States`, ReferredBy: `Oby Gallie`, - CreatedOn: `6/30/2017`, - Birthday: `12/24/1986`, - LastActivity: `7/13/2017`, - NextActivity: `9/13/2017`, + CreatedOn: `2017-06-30`, + Birthday: `1986-12-24`, + LastActivity: `2017-07-13`, + NextActivity: `2017-09-13`, DealsWon: 21, DealsLost: 28, DealsPending: 15, @@ -10162,10 +10162,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Felike Rosenstein`, - CreatedOn: `8/1/2017`, - Birthday: `4/25/2000`, - LastActivity: `8/7/2017`, - NextActivity: `1/7/2018`, + CreatedOn: `2017-08-01`, + Birthday: `2000-04-25`, + LastActivity: `2017-08-07`, + NextActivity: `2018-01-07`, DealsWon: 24, DealsLost: 25, DealsPending: 21, @@ -10192,10 +10192,10 @@ export class EmployeesData extends Array { State: `IA`, Country: `United States`, ReferredBy: `Lem Coye`, - CreatedOn: `11/7/2017`, - Birthday: `1/3/1992`, - LastActivity: `11/20/2017`, - NextActivity: `7/20/2018`, + CreatedOn: `2017-11-07`, + Birthday: `1992-01-03`, + LastActivity: `2017-11-20`, + NextActivity: `2018-07-20`, DealsWon: 25, DealsLost: 25, DealsPending: 30, @@ -10222,10 +10222,10 @@ export class EmployeesData extends Array { State: `VA`, Country: `United States`, ReferredBy: `Harrie Russe`, - CreatedOn: `9/2/2017`, - Birthday: `6/7/1984`, - LastActivity: `9/13/2017`, - NextActivity: `3/13/2019`, + CreatedOn: `2017-09-02`, + Birthday: `1984-06-07`, + LastActivity: `2017-09-13`, + NextActivity: `2019-03-13`, DealsWon: 5, DealsLost: 20, DealsPending: 6, @@ -10252,10 +10252,10 @@ export class EmployeesData extends Array { State: `NV`, Country: `United States`, ReferredBy: `Filia Whettleton`, - CreatedOn: `11/2/2017`, - Birthday: `3/25/1990`, - LastActivity: `11/12/2017`, - NextActivity: `9/12/2018`, + CreatedOn: `2017-11-02`, + Birthday: `1990-03-25`, + LastActivity: `2017-11-12`, + NextActivity: `2018-09-12`, DealsWon: 12, DealsLost: 19, DealsPending: 29, @@ -10282,10 +10282,10 @@ export class EmployeesData extends Array { State: `AZ`, Country: `United States`, ReferredBy: `Ester Deaville`, - CreatedOn: `8/14/2017`, - Birthday: `5/16/1992`, - LastActivity: `8/19/2017`, - NextActivity: `4/19/2019`, + CreatedOn: `2017-08-14`, + Birthday: `1992-05-16`, + LastActivity: `2017-08-19`, + NextActivity: `2019-04-19`, DealsWon: 0, DealsLost: 1, DealsPending: 20, @@ -10312,10 +10312,10 @@ export class EmployeesData extends Array { State: `CO`, Country: `United States`, ReferredBy: `Samaria Pockey`, - CreatedOn: `8/15/2017`, - Birthday: `8/16/1998`, - LastActivity: `9/10/2017`, - NextActivity: `8/10/2018`, + CreatedOn: `2017-08-15`, + Birthday: `1998-08-16`, + LastActivity: `2017-09-10`, + NextActivity: `2018-08-10`, DealsWon: 9, DealsLost: 25, DealsPending: 26, @@ -10342,10 +10342,10 @@ export class EmployeesData extends Array { State: `IN`, Country: `United States`, ReferredBy: `Harrietta Nancekivell`, - CreatedOn: `9/18/2017`, - Birthday: `11/16/2001`, - LastActivity: `10/10/2017`, - NextActivity: `4/10/2019`, + CreatedOn: `2017-09-18`, + Birthday: `2001-11-16`, + LastActivity: `2017-10-10`, + NextActivity: `2019-04-10`, DealsWon: 4, DealsLost: 27, DealsPending: 19, @@ -10372,10 +10372,10 @@ export class EmployeesData extends Array { State: `PA`, Country: `United States`, ReferredBy: `Jaimie Grombridge`, - CreatedOn: `2/22/2018`, - Birthday: `11/5/2000`, - LastActivity: `3/13/2018`, - NextActivity: `1/13/2020`, + CreatedOn: `2018-02-22`, + Birthday: `2000-11-05`, + LastActivity: `2018-03-13`, + NextActivity: `2020-01-13`, DealsWon: 18, DealsLost: 4, DealsPending: 17, @@ -10402,10 +10402,10 @@ export class EmployeesData extends Array { State: `UT`, Country: `United States`, ReferredBy: `Merry Ramirez`, - CreatedOn: `10/23/2017`, - Birthday: `4/3/1982`, - LastActivity: `11/5/2017`, - NextActivity: `10/5/2018`, + CreatedOn: `2017-10-23`, + Birthday: `1982-04-03`, + LastActivity: `2017-11-05`, + NextActivity: `2018-10-05`, DealsWon: 24, DealsLost: 12, DealsPending: 30, @@ -10432,10 +10432,10 @@ export class EmployeesData extends Array { State: `MO`, Country: `United States`, ReferredBy: `Willdon Spottswood`, - CreatedOn: `1/10/2017`, - Birthday: `2/26/1980`, - LastActivity: `1/21/2017`, - NextActivity: `11/21/2017`, + CreatedOn: `2017-01-10`, + Birthday: `1980-02-26`, + LastActivity: `2017-01-21`, + NextActivity: `2017-11-21`, DealsWon: 7, DealsLost: 2, DealsPending: 19, @@ -10462,10 +10462,10 @@ export class EmployeesData extends Array { State: `GA`, Country: `United States`, ReferredBy: `Sigismund Rohfsen`, - CreatedOn: `2/26/2018`, - Birthday: `5/8/1999`, - LastActivity: `3/12/2018`, - NextActivity: `11/12/2019`, + CreatedOn: `2018-02-26`, + Birthday: `1999-05-08`, + LastActivity: `2018-03-12`, + NextActivity: `2019-11-12`, DealsWon: 20, DealsLost: 28, DealsPending: 15, @@ -10492,10 +10492,10 @@ export class EmployeesData extends Array { State: `NV`, Country: `United States`, ReferredBy: `Malynda Marrows`, - CreatedOn: `5/2/2017`, - Birthday: `9/30/1996`, - LastActivity: `5/26/2017`, - NextActivity: `5/26/2019`, + CreatedOn: `2017-05-02`, + Birthday: `1996-09-30`, + LastActivity: `2017-05-26`, + NextActivity: `2019-05-26`, DealsWon: 19, DealsLost: 17, DealsPending: 11, @@ -10522,10 +10522,10 @@ export class EmployeesData extends Array { State: `NC`, Country: `United States`, ReferredBy: `Desmund Paslow`, - CreatedOn: `12/11/2017`, - Birthday: `7/27/1971`, - LastActivity: `12/29/2017`, - NextActivity: `3/29/2019`, + CreatedOn: `2017-12-11`, + Birthday: `1971-07-27`, + LastActivity: `2017-12-29`, + NextActivity: `2019-03-29`, DealsWon: 5, DealsLost: 28, DealsPending: 10, @@ -10552,10 +10552,10 @@ export class EmployeesData extends Array { State: `IA`, Country: `United States`, ReferredBy: `Blair Cochern`, - CreatedOn: `4/16/2017`, - Birthday: `11/19/1983`, - LastActivity: `4/21/2017`, - NextActivity: `4/21/2019`, + CreatedOn: `2017-04-16`, + Birthday: `1983-11-19`, + LastActivity: `2017-04-21`, + NextActivity: `2019-04-21`, DealsWon: 4, DealsLost: 27, DealsPending: 23, @@ -10582,10 +10582,10 @@ export class EmployeesData extends Array { State: `MO`, Country: `United States`, ReferredBy: `Becky Gabitis`, - CreatedOn: `11/7/2017`, - Birthday: `9/13/1993`, - LastActivity: `11/26/2017`, - NextActivity: `7/26/2019`, + CreatedOn: `2017-11-07`, + Birthday: `1993-09-13`, + LastActivity: `2017-11-26`, + NextActivity: `2019-07-26`, DealsWon: 21, DealsLost: 18, DealsPending: 24, @@ -10612,10 +10612,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Zilvia Clere`, - CreatedOn: `5/21/2017`, - Birthday: `7/11/1976`, - LastActivity: `6/17/2017`, - NextActivity: `2/17/2019`, + CreatedOn: `2017-05-21`, + Birthday: `1976-07-11`, + LastActivity: `2017-06-17`, + NextActivity: `2019-02-17`, DealsWon: 13, DealsLost: 19, DealsPending: 27, @@ -10642,10 +10642,10 @@ export class EmployeesData extends Array { State: `OH`, Country: `United States`, ReferredBy: `Ilse Shayler`, - CreatedOn: `3/29/2017`, - Birthday: `2/28/1990`, - LastActivity: `4/7/2017`, - NextActivity: `2/7/2019`, + CreatedOn: `2017-03-29`, + Birthday: `1990-02-28`, + LastActivity: `2017-04-07`, + NextActivity: `2019-02-07`, DealsWon: 19, DealsLost: 23, DealsPending: 13, @@ -10672,10 +10672,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Clarie McCrystal`, - CreatedOn: `1/3/2017`, - Birthday: `12/22/1978`, - LastActivity: `1/30/2017`, - NextActivity: `5/30/2017`, + CreatedOn: `2017-01-03`, + Birthday: `1978-12-22`, + LastActivity: `2017-01-30`, + NextActivity: `2017-05-30`, DealsWon: 29, DealsLost: 12, DealsPending: 1, @@ -10702,10 +10702,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Kleon Slocum`, - CreatedOn: `3/20/2017`, - Birthday: `4/4/1974`, - LastActivity: `3/30/2017`, - NextActivity: `5/30/2018`, + CreatedOn: `2017-03-20`, + Birthday: `1974-04-04`, + LastActivity: `2017-03-30`, + NextActivity: `2018-05-30`, DealsWon: 4, DealsLost: 2, DealsPending: 19, @@ -10732,10 +10732,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Nichols Sarjant`, - CreatedOn: `7/20/2017`, - Birthday: `9/14/1979`, - LastActivity: `8/7/2017`, - NextActivity: `12/7/2017`, + CreatedOn: `2017-07-20`, + Birthday: `1979-09-14`, + LastActivity: `2017-08-07`, + NextActivity: `2017-12-07`, DealsWon: 28, DealsLost: 12, DealsPending: 4, @@ -10762,10 +10762,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Miquela Schimonek`, - CreatedOn: `8/24/2017`, - Birthday: `12/15/1979`, - LastActivity: `8/29/2017`, - NextActivity: `5/29/2019`, + CreatedOn: `2017-08-24`, + Birthday: `1979-12-15`, + LastActivity: `2017-08-29`, + NextActivity: `2019-05-29`, DealsWon: 18, DealsLost: 16, DealsPending: 0, @@ -10792,10 +10792,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Diandra McGirl`, - CreatedOn: `11/5/2017`, - Birthday: `1/16/2001`, - LastActivity: `11/20/2017`, - NextActivity: `2/20/2019`, + CreatedOn: `2017-11-05`, + Birthday: `2001-01-16`, + LastActivity: `2017-11-20`, + NextActivity: `2019-02-20`, DealsWon: 16, DealsLost: 30, DealsPending: 30, @@ -10822,10 +10822,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Berna Crampsy`, - CreatedOn: `11/22/2017`, - Birthday: `6/22/1982`, - LastActivity: `11/26/2017`, - NextActivity: `10/26/2018`, + CreatedOn: `2017-11-22`, + Birthday: `1982-06-22`, + LastActivity: `2017-11-26`, + NextActivity: `2018-10-26`, DealsWon: 30, DealsLost: 8, DealsPending: 7, @@ -10852,10 +10852,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Odo Valerio`, - CreatedOn: `7/30/2017`, - Birthday: `11/19/1971`, - LastActivity: `8/26/2017`, - NextActivity: `2/26/2019`, + CreatedOn: `2017-07-30`, + Birthday: `1971-11-19`, + LastActivity: `2017-08-26`, + NextActivity: `2019-02-26`, DealsWon: 14, DealsLost: 5, DealsPending: 27, @@ -10882,10 +10882,10 @@ export class EmployeesData extends Array { State: `VA`, Country: `United States`, ReferredBy: `Allis Sebring`, - CreatedOn: `2/11/2018`, - Birthday: `6/24/1979`, - LastActivity: `3/9/2018`, - NextActivity: `3/9/2019`, + CreatedOn: `2018-02-11`, + Birthday: `1979-06-24`, + LastActivity: `2018-03-09`, + NextActivity: `2019-03-09`, DealsWon: 1, DealsLost: 16, DealsPending: 1, @@ -10912,10 +10912,10 @@ export class EmployeesData extends Array { State: `MD`, Country: `United States`, ReferredBy: `Hildagarde Kennewell`, - CreatedOn: `4/11/2018`, - Birthday: `11/12/1999`, - LastActivity: `4/13/2018`, - NextActivity: `12/13/2019`, + CreatedOn: `2018-04-11`, + Birthday: `1999-11-12`, + LastActivity: `2018-04-13`, + NextActivity: `2019-12-13`, DealsWon: 25, DealsLost: 25, DealsPending: 17, @@ -10942,10 +10942,10 @@ export class EmployeesData extends Array { State: `PA`, Country: `United States`, ReferredBy: `Meggie Gaudon`, - CreatedOn: `2/11/2018`, - Birthday: `1/5/1994`, - LastActivity: `3/6/2018`, - NextActivity: `4/6/2018`, + CreatedOn: `2018-02-11`, + Birthday: `1994-01-05`, + LastActivity: `2018-03-06`, + NextActivity: `2018-04-06`, DealsWon: 1, DealsLost: 14, DealsPending: 27, @@ -10972,10 +10972,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Chico Tompkin`, - CreatedOn: `4/4/2017`, - Birthday: `10/13/1999`, - LastActivity: `4/24/2017`, - NextActivity: `2/24/2019`, + CreatedOn: `2017-04-04`, + Birthday: `1999-10-13`, + LastActivity: `2017-04-24`, + NextActivity: `2019-02-24`, DealsWon: 29, DealsLost: 16, DealsPending: 18, @@ -11002,10 +11002,10 @@ export class EmployeesData extends Array { State: `NE`, Country: `United States`, ReferredBy: `Tim Bowes`, - CreatedOn: `7/10/2017`, - Birthday: `7/12/1986`, - LastActivity: `7/28/2017`, - NextActivity: `7/28/2018`, + CreatedOn: `2017-07-10`, + Birthday: `1986-07-12`, + LastActivity: `2017-07-28`, + NextActivity: `2018-07-28`, DealsWon: 27, DealsLost: 7, DealsPending: 4, @@ -11032,10 +11032,10 @@ export class EmployeesData extends Array { State: `NC`, Country: `United States`, ReferredBy: `Sigismondo Drake`, - CreatedOn: `2/22/2017`, - Birthday: `9/13/1999`, - LastActivity: `3/6/2017`, - NextActivity: `11/6/2017`, + CreatedOn: `2017-02-22`, + Birthday: `1999-09-13`, + LastActivity: `2017-03-06`, + NextActivity: `2017-11-06`, DealsWon: 25, DealsLost: 7, DealsPending: 24, @@ -11062,10 +11062,10 @@ export class EmployeesData extends Array { State: `WA`, Country: `United States`, ReferredBy: `Ginger Cutriss`, - CreatedOn: `4/10/2018`, - Birthday: `2/3/1976`, - LastActivity: `5/3/2018`, - NextActivity: `7/3/2018`, + CreatedOn: `2018-04-10`, + Birthday: `1976-02-03`, + LastActivity: `2018-05-03`, + NextActivity: `2018-07-03`, DealsWon: 30, DealsLost: 10, DealsPending: 13, @@ -11092,10 +11092,10 @@ export class EmployeesData extends Array { State: `NC`, Country: `United States`, ReferredBy: `Cally Bortolussi`, - CreatedOn: `5/4/2017`, - Birthday: `9/27/1984`, - LastActivity: `5/9/2017`, - NextActivity: `1/9/2018`, + CreatedOn: `2017-05-04`, + Birthday: `1984-09-27`, + LastActivity: `2017-05-09`, + NextActivity: `2018-01-09`, DealsWon: 25, DealsLost: 14, DealsPending: 11, @@ -11122,10 +11122,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Iver Iddison`, - CreatedOn: `2/16/2017`, - Birthday: `11/26/1984`, - LastActivity: `3/4/2017`, - NextActivity: `9/4/2018`, + CreatedOn: `2017-02-16`, + Birthday: `1984-11-26`, + LastActivity: `2017-03-04`, + NextActivity: `2018-09-04`, DealsWon: 11, DealsLost: 8, DealsPending: 6, @@ -11152,10 +11152,10 @@ export class EmployeesData extends Array { State: `IL`, Country: `United States`, ReferredBy: `Sherlock Bootyman`, - CreatedOn: `1/1/2017`, - Birthday: `12/1/1989`, - LastActivity: `1/27/2017`, - NextActivity: `1/27/2018`, + CreatedOn: `2017-01-01`, + Birthday: `1989-12-01`, + LastActivity: `2017-01-27`, + NextActivity: `2018-01-27`, DealsWon: 0, DealsLost: 2, DealsPending: 13, @@ -11182,10 +11182,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Aura Lease`, - CreatedOn: `4/12/2017`, - Birthday: `7/20/1991`, - LastActivity: `5/4/2017`, - NextActivity: `10/4/2018`, + CreatedOn: `2017-04-12`, + Birthday: `1991-07-20`, + LastActivity: `2017-05-04`, + NextActivity: `2018-10-04`, DealsWon: 15, DealsLost: 2, DealsPending: 11, @@ -11212,10 +11212,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Ali Porkiss`, - CreatedOn: `5/2/2017`, - Birthday: `11/2/1973`, - LastActivity: `5/28/2017`, - NextActivity: `8/28/2017`, + CreatedOn: `2017-05-02`, + Birthday: `1973-11-02`, + LastActivity: `2017-05-28`, + NextActivity: `2017-08-28`, DealsWon: 12, DealsLost: 28, DealsPending: 19, @@ -11242,10 +11242,10 @@ export class EmployeesData extends Array { State: `AZ`, Country: `United States`, ReferredBy: `Tam David`, - CreatedOn: `4/30/2017`, - Birthday: `10/30/2001`, - LastActivity: `5/24/2017`, - NextActivity: `4/24/2018`, + CreatedOn: `2017-04-30`, + Birthday: `2001-10-30`, + LastActivity: `2017-05-24`, + NextActivity: `2018-04-24`, DealsWon: 10, DealsLost: 25, DealsPending: 15, @@ -11272,10 +11272,10 @@ export class EmployeesData extends Array { State: `TN`, Country: `United States`, ReferredBy: `Nerta McOwan`, - CreatedOn: `9/5/2017`, - Birthday: `12/2/1990`, - LastActivity: `9/22/2017`, - NextActivity: `12/22/2018`, + CreatedOn: `2017-09-05`, + Birthday: `1990-12-02`, + LastActivity: `2017-09-22`, + NextActivity: `2018-12-22`, DealsWon: 6, DealsLost: 12, DealsPending: 1, @@ -11302,10 +11302,10 @@ export class EmployeesData extends Array { State: `PA`, Country: `United States`, ReferredBy: `Ange Iacomo`, - CreatedOn: `10/6/2017`, - Birthday: `10/4/1972`, - LastActivity: `10/24/2017`, - NextActivity: `2/24/2019`, + CreatedOn: `2017-10-06`, + Birthday: `1972-10-04`, + LastActivity: `2017-10-24`, + NextActivity: `2019-02-24`, DealsWon: 24, DealsLost: 9, DealsPending: 30, @@ -11332,10 +11332,10 @@ export class EmployeesData extends Array { State: `OK`, Country: `United States`, ReferredBy: `Chryste Neljes`, - CreatedOn: `5/7/2017`, - Birthday: `6/30/1983`, - LastActivity: `5/31/2017`, - NextActivity: `2/28/2019`, + CreatedOn: `2017-05-07`, + Birthday: `1983-06-30`, + LastActivity: `2017-05-31`, + NextActivity: `2019-02-28`, DealsWon: 0, DealsLost: 6, DealsPending: 1, @@ -11362,10 +11362,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Dare Steanson`, - CreatedOn: `12/9/2017`, - Birthday: `10/30/1994`, - LastActivity: `12/29/2017`, - NextActivity: `2/28/2018`, + CreatedOn: `2017-12-09`, + Birthday: `1994-10-30`, + LastActivity: `2017-12-29`, + NextActivity: `2018-02-28`, DealsWon: 26, DealsLost: 7, DealsPending: 24, @@ -11392,10 +11392,10 @@ export class EmployeesData extends Array { State: `WV`, Country: `United States`, ReferredBy: `Leda Thurman`, - CreatedOn: `4/19/2017`, - Birthday: `1/25/1982`, - LastActivity: `4/22/2017`, - NextActivity: `12/22/2017`, + CreatedOn: `2017-04-19`, + Birthday: `1982-01-25`, + LastActivity: `2017-04-22`, + NextActivity: `2017-12-22`, DealsWon: 8, DealsLost: 10, DealsPending: 25, @@ -11422,10 +11422,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Cordelia Mannie`, - CreatedOn: `8/12/2017`, - Birthday: `5/30/1975`, - LastActivity: `9/2/2017`, - NextActivity: `6/2/2018`, + CreatedOn: `2017-08-12`, + Birthday: `1975-05-30`, + LastActivity: `2017-09-02`, + NextActivity: `2018-06-02`, DealsWon: 27, DealsLost: 15, DealsPending: 25, @@ -11452,10 +11452,10 @@ export class EmployeesData extends Array { State: `AZ`, Country: `United States`, ReferredBy: `Kessia Mancktelow`, - CreatedOn: `2/12/2018`, - Birthday: `9/28/1976`, - LastActivity: `3/4/2018`, - NextActivity: `2/4/2019`, + CreatedOn: `2018-02-12`, + Birthday: `1976-09-28`, + LastActivity: `2018-03-04`, + NextActivity: `2019-02-04`, DealsWon: 29, DealsLost: 3, DealsPending: 20, @@ -11482,10 +11482,10 @@ export class EmployeesData extends Array { State: `VA`, Country: `United States`, ReferredBy: `Gizela Officer`, - CreatedOn: `2/20/2017`, - Birthday: `6/24/1979`, - LastActivity: `2/26/2017`, - NextActivity: `6/26/2018`, + CreatedOn: `2017-02-20`, + Birthday: `1979-06-24`, + LastActivity: `2017-02-26`, + NextActivity: `2018-06-26`, DealsWon: 30, DealsLost: 9, DealsPending: 1, @@ -11512,10 +11512,10 @@ export class EmployeesData extends Array { State: `VA`, Country: `United States`, ReferredBy: `Kaitlynn Botting`, - CreatedOn: `11/15/2017`, - Birthday: `4/24/1980`, - LastActivity: `11/23/2017`, - NextActivity: `11/23/2018`, + CreatedOn: `2017-11-15`, + Birthday: `1980-04-24`, + LastActivity: `2017-11-23`, + NextActivity: `2018-11-23`, DealsWon: 13, DealsLost: 25, DealsPending: 4, @@ -11542,10 +11542,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Ferdinande Flintoft`, - CreatedOn: `7/18/2017`, - Birthday: `10/15/1990`, - LastActivity: `7/26/2017`, - NextActivity: `10/26/2018`, + CreatedOn: `2017-07-18`, + Birthday: `1990-10-15`, + LastActivity: `2017-07-26`, + NextActivity: `2018-10-26`, DealsWon: 13, DealsLost: 23, DealsPending: 17, @@ -11572,10 +11572,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Sonni Cancutt`, - CreatedOn: `9/12/2017`, - Birthday: `8/13/1992`, - LastActivity: `9/28/2017`, - NextActivity: `6/28/2019`, + CreatedOn: `2017-09-12`, + Birthday: `1992-08-13`, + LastActivity: `2017-09-28`, + NextActivity: `2019-06-28`, DealsWon: 16, DealsLost: 7, DealsPending: 13, @@ -11602,10 +11602,10 @@ export class EmployeesData extends Array { State: `WV`, Country: `United States`, ReferredBy: `Kaia Matejka`, - CreatedOn: `5/29/2017`, - Birthday: `4/6/1988`, - LastActivity: `6/14/2017`, - NextActivity: `3/14/2019`, + CreatedOn: `2017-05-29`, + Birthday: `1988-04-06`, + LastActivity: `2017-06-14`, + NextActivity: `2019-03-14`, DealsWon: 20, DealsLost: 25, DealsPending: 10, @@ -11632,10 +11632,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Jorge Lavens`, - CreatedOn: `11/8/2017`, - Birthday: `6/3/1989`, - LastActivity: `11/11/2017`, - NextActivity: `9/11/2019`, + CreatedOn: `2017-11-08`, + Birthday: `1989-06-03`, + LastActivity: `2017-11-11`, + NextActivity: `2019-09-11`, DealsWon: 30, DealsLost: 27, DealsPending: 27, @@ -11662,10 +11662,10 @@ export class EmployeesData extends Array { State: `WA`, Country: `United States`, ReferredBy: `Marcello Bakhrushin`, - CreatedOn: `7/22/2017`, - Birthday: `6/27/1976`, - LastActivity: `8/2/2017`, - NextActivity: `1/2/2018`, + CreatedOn: `2017-07-22`, + Birthday: `1976-06-27`, + LastActivity: `2017-08-02`, + NextActivity: `2018-01-02`, DealsWon: 7, DealsLost: 1, DealsPending: 14, @@ -11692,10 +11692,10 @@ export class EmployeesData extends Array { State: `NC`, Country: `United States`, ReferredBy: `Sela Jerzyk`, - CreatedOn: `7/20/2017`, - Birthday: `8/24/1993`, - LastActivity: `7/23/2017`, - NextActivity: `6/23/2018`, + CreatedOn: `2017-07-20`, + Birthday: `1993-08-24`, + LastActivity: `2017-07-23`, + NextActivity: `2018-06-23`, DealsWon: 26, DealsLost: 4, DealsPending: 22, @@ -11722,10 +11722,10 @@ export class EmployeesData extends Array { State: `OH`, Country: `United States`, ReferredBy: `Tracy Golby`, - CreatedOn: `8/31/2017`, - Birthday: `1/12/1984`, - LastActivity: `9/24/2017`, - NextActivity: `8/24/2019`, + CreatedOn: `2017-08-31`, + Birthday: `1984-01-12`, + LastActivity: `2017-09-24`, + NextActivity: `2019-08-24`, DealsWon: 6, DealsLost: 14, DealsPending: 29, @@ -11752,10 +11752,10 @@ export class EmployeesData extends Array { State: `MD`, Country: `United States`, ReferredBy: `Gweneth Ealles`, - CreatedOn: `11/4/2017`, - Birthday: `10/4/1991`, - LastActivity: `11/13/2017`, - NextActivity: `3/13/2018`, + CreatedOn: `2017-11-04`, + Birthday: `1991-10-04`, + LastActivity: `2017-11-13`, + NextActivity: `2018-03-13`, DealsWon: 10, DealsLost: 13, DealsPending: 18, @@ -11782,10 +11782,10 @@ export class EmployeesData extends Array { State: `CO`, Country: `United States`, ReferredBy: `Cary Melley`, - CreatedOn: `6/29/2017`, - Birthday: `10/1/1984`, - LastActivity: `7/6/2017`, - NextActivity: `5/6/2019`, + CreatedOn: `2017-06-29`, + Birthday: `1984-10-01`, + LastActivity: `2017-07-06`, + NextActivity: `2019-05-06`, DealsWon: 23, DealsLost: 13, DealsPending: 29, @@ -11812,10 +11812,10 @@ export class EmployeesData extends Array { State: `MD`, Country: `United States`, ReferredBy: `Timi Lealle`, - CreatedOn: `6/18/2017`, - Birthday: `6/8/1992`, - LastActivity: `6/25/2017`, - NextActivity: `5/25/2019`, + CreatedOn: `2017-06-18`, + Birthday: `1992-06-08`, + LastActivity: `2017-06-25`, + NextActivity: `2019-05-25`, DealsWon: 25, DealsLost: 5, DealsPending: 14, @@ -11842,10 +11842,10 @@ export class EmployeesData extends Array { State: `MA`, Country: `United States`, ReferredBy: `Celestia Fillingham`, - CreatedOn: `1/12/2018`, - Birthday: `12/30/1976`, - LastActivity: `1/31/2018`, - NextActivity: `6/30/2019`, + CreatedOn: `2018-01-12`, + Birthday: `1976-12-30`, + LastActivity: `2018-01-31`, + NextActivity: `2019-06-30`, DealsWon: 9, DealsLost: 30, DealsPending: 17, @@ -11872,10 +11872,10 @@ export class EmployeesData extends Array { State: `OK`, Country: `United States`, ReferredBy: `Margret Atmore`, - CreatedOn: `4/18/2017`, - Birthday: `6/14/1975`, - LastActivity: `4/25/2017`, - NextActivity: `7/25/2018`, + CreatedOn: `2017-04-18`, + Birthday: `1975-06-14`, + LastActivity: `2017-04-25`, + NextActivity: `2018-07-25`, DealsWon: 16, DealsLost: 17, DealsPending: 9, @@ -11902,10 +11902,10 @@ export class EmployeesData extends Array { State: `MS`, Country: `United States`, ReferredBy: `Alyss Greenless`, - CreatedOn: `10/31/2017`, - Birthday: `8/13/1970`, - LastActivity: `11/9/2017`, - NextActivity: `2/9/2019`, + CreatedOn: `2017-10-31`, + Birthday: `1970-08-13`, + LastActivity: `2017-11-09`, + NextActivity: `2019-02-09`, DealsWon: 24, DealsLost: 7, DealsPending: 1, @@ -11932,10 +11932,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Albrecht Dixson`, - CreatedOn: `7/15/2017`, - Birthday: `11/29/1986`, - LastActivity: `8/10/2017`, - NextActivity: `2/10/2019`, + CreatedOn: `2017-07-15`, + Birthday: `1986-11-29`, + LastActivity: `2017-08-10`, + NextActivity: `2019-02-10`, DealsWon: 4, DealsLost: 22, DealsPending: 3, @@ -11962,10 +11962,10 @@ export class EmployeesData extends Array { State: `NV`, Country: `United States`, ReferredBy: `Beniamino Mathey`, - CreatedOn: `3/2/2017`, - Birthday: `11/8/1989`, - LastActivity: `3/17/2017`, - NextActivity: `12/17/2018`, + CreatedOn: `2017-03-02`, + Birthday: `1989-11-08`, + LastActivity: `2017-03-17`, + NextActivity: `2018-12-17`, DealsWon: 28, DealsLost: 19, DealsPending: 21, @@ -11992,10 +11992,10 @@ export class EmployeesData extends Array { State: `OK`, Country: `United States`, ReferredBy: `Boyd Piggin`, - CreatedOn: `8/4/2017`, - Birthday: `3/15/1987`, - LastActivity: `8/14/2017`, - NextActivity: `8/14/2019`, + CreatedOn: `2017-08-04`, + Birthday: `1987-03-15`, + LastActivity: `2017-08-14`, + NextActivity: `2019-08-14`, DealsWon: 28, DealsLost: 28, DealsPending: 10, @@ -12022,10 +12022,10 @@ export class EmployeesData extends Array { State: `NC`, Country: `United States`, ReferredBy: `Evanne Maddin`, - CreatedOn: `4/13/2017`, - Birthday: `5/9/1974`, - LastActivity: `4/29/2017`, - NextActivity: `3/29/2019`, + CreatedOn: `2017-04-13`, + Birthday: `1974-05-09`, + LastActivity: `2017-04-29`, + NextActivity: `2019-03-29`, DealsWon: 10, DealsLost: 13, DealsPending: 19, @@ -12052,10 +12052,10 @@ export class EmployeesData extends Array { State: `IL`, Country: `United States`, ReferredBy: `Dacey Mundow`, - CreatedOn: `8/26/2017`, - Birthday: `10/17/1983`, - LastActivity: `8/31/2017`, - NextActivity: `5/31/2019`, + CreatedOn: `2017-08-26`, + Birthday: `1983-10-17`, + LastActivity: `2017-08-31`, + NextActivity: `2019-05-31`, DealsWon: 17, DealsLost: 9, DealsPending: 24, @@ -12082,10 +12082,10 @@ export class EmployeesData extends Array { State: `OR`, Country: `United States`, ReferredBy: `Scarlett Askey`, - CreatedOn: `9/29/2017`, - Birthday: `7/9/1982`, - LastActivity: `10/14/2017`, - NextActivity: `5/14/2019`, + CreatedOn: `2017-09-29`, + Birthday: `1982-07-09`, + LastActivity: `2017-10-14`, + NextActivity: `2019-05-14`, DealsWon: 27, DealsLost: 10, DealsPending: 15, @@ -12112,10 +12112,10 @@ export class EmployeesData extends Array { State: `KY`, Country: `United States`, ReferredBy: `Ellwood Phython`, - CreatedOn: `3/23/2018`, - Birthday: `11/26/1985`, - LastActivity: `4/1/2018`, - NextActivity: `7/1/2018`, + CreatedOn: `2018-03-23`, + Birthday: `1985-11-26`, + LastActivity: `2018-04-01`, + NextActivity: `2018-07-01`, DealsWon: 23, DealsLost: 26, DealsPending: 8, @@ -12142,10 +12142,10 @@ export class EmployeesData extends Array { State: `WV`, Country: `United States`, ReferredBy: `Lemmie Parkyn`, - CreatedOn: `11/14/2017`, - Birthday: `12/7/1981`, - LastActivity: `12/12/2017`, - NextActivity: `8/12/2019`, + CreatedOn: `2017-11-14`, + Birthday: `1981-12-07`, + LastActivity: `2017-12-12`, + NextActivity: `2019-08-12`, DealsWon: 22, DealsLost: 15, DealsPending: 22, @@ -12172,10 +12172,10 @@ export class EmployeesData extends Array { State: `CT`, Country: `United States`, ReferredBy: `Barnie Kose`, - CreatedOn: `4/9/2018`, - Birthday: `7/10/1970`, - LastActivity: `4/28/2018`, - NextActivity: `9/28/2019`, + CreatedOn: `2018-04-09`, + Birthday: `1970-07-10`, + LastActivity: `2018-04-28`, + NextActivity: `2019-09-28`, DealsWon: 27, DealsLost: 17, DealsPending: 10, @@ -12202,10 +12202,10 @@ export class EmployeesData extends Array { State: `MA`, Country: `United States`, ReferredBy: `Veda Barrow`, - CreatedOn: `2/13/2017`, - Birthday: `7/13/1984`, - LastActivity: `3/12/2017`, - NextActivity: `6/12/2017`, + CreatedOn: `2017-02-13`, + Birthday: `1984-07-13`, + LastActivity: `2017-03-12`, + NextActivity: `2017-06-12`, DealsWon: 3, DealsLost: 8, DealsPending: 2, @@ -12232,10 +12232,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Deedee Argile`, - CreatedOn: `1/1/2018`, - Birthday: `11/9/1997`, - LastActivity: `1/18/2018`, - NextActivity: `4/18/2019`, + CreatedOn: `2018-01-01`, + Birthday: `1997-11-09`, + LastActivity: `2018-01-18`, + NextActivity: `2019-04-18`, DealsWon: 13, DealsLost: 19, DealsPending: 17, @@ -12262,10 +12262,10 @@ export class EmployeesData extends Array { State: `KY`, Country: `United States`, ReferredBy: `Lethia Gedge`, - CreatedOn: `4/23/2017`, - Birthday: `1/26/1971`, - LastActivity: `5/13/2017`, - NextActivity: `3/13/2018`, + CreatedOn: `2017-04-23`, + Birthday: `1971-01-26`, + LastActivity: `2017-05-13`, + NextActivity: `2018-03-13`, DealsWon: 30, DealsLost: 30, DealsPending: 14, @@ -12292,10 +12292,10 @@ export class EmployeesData extends Array { State: `AL`, Country: `United States`, ReferredBy: `Malorie Sellner`, - CreatedOn: `1/13/2017`, - Birthday: `11/21/1994`, - LastActivity: `1/21/2017`, - NextActivity: `8/21/2017`, + CreatedOn: `2017-01-13`, + Birthday: `1994-11-21`, + LastActivity: `2017-01-21`, + NextActivity: `2017-08-21`, DealsWon: 14, DealsLost: 14, DealsPending: 1, @@ -12322,10 +12322,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Tilda Pratley`, - CreatedOn: `1/11/2017`, - Birthday: `11/13/1989`, - LastActivity: `1/20/2017`, - NextActivity: `4/20/2018`, + CreatedOn: `2017-01-11`, + Birthday: `1989-11-13`, + LastActivity: `2017-01-20`, + NextActivity: `2018-04-20`, DealsWon: 7, DealsLost: 8, DealsPending: 21, @@ -12352,10 +12352,10 @@ export class EmployeesData extends Array { State: `OH`, Country: `United States`, ReferredBy: `Mignonne Habbergham`, - CreatedOn: `7/1/2017`, - Birthday: `8/31/1985`, - LastActivity: `7/26/2017`, - NextActivity: `4/26/2019`, + CreatedOn: `2017-07-01`, + Birthday: `1985-08-31`, + LastActivity: `2017-07-26`, + NextActivity: `2019-04-26`, DealsWon: 11, DealsLost: 30, DealsPending: 24, @@ -12382,10 +12382,10 @@ export class EmployeesData extends Array { State: `OH`, Country: `United States`, ReferredBy: `Zacharias Pollastrino`, - CreatedOn: `7/16/2017`, - Birthday: `6/5/1988`, - LastActivity: `7/29/2017`, - NextActivity: `11/29/2017`, + CreatedOn: `2017-07-16`, + Birthday: `1988-06-05`, + LastActivity: `2017-07-29`, + NextActivity: `2017-11-29`, DealsWon: 4, DealsLost: 5, DealsPending: 6, @@ -12412,10 +12412,10 @@ export class EmployeesData extends Array { State: `SC`, Country: `United States`, ReferredBy: `Devi Full`, - CreatedOn: `3/31/2018`, - Birthday: `4/25/1984`, - LastActivity: `4/24/2018`, - NextActivity: `3/24/2019`, + CreatedOn: `2018-03-31`, + Birthday: `1984-04-25`, + LastActivity: `2018-04-24`, + NextActivity: `2019-03-24`, DealsWon: 11, DealsLost: 3, DealsPending: 12, @@ -12442,10 +12442,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Annissa Henworth`, - CreatedOn: `1/11/2018`, - Birthday: `7/22/1977`, - LastActivity: `1/21/2018`, - NextActivity: `12/21/2018`, + CreatedOn: `2018-01-11`, + Birthday: `1977-07-22`, + LastActivity: `2018-01-21`, + NextActivity: `2018-12-21`, DealsWon: 19, DealsLost: 29, DealsPending: 23, @@ -12472,10 +12472,10 @@ export class EmployeesData extends Array { State: `AZ`, Country: `United States`, ReferredBy: `Lusa Rilston`, - CreatedOn: `2/21/2017`, - Birthday: `11/17/2000`, - LastActivity: `3/2/2017`, - NextActivity: `4/2/2017`, + CreatedOn: `2017-02-21`, + Birthday: `2000-11-17`, + LastActivity: `2017-03-02`, + NextActivity: `2017-04-02`, DealsWon: 16, DealsLost: 26, DealsPending: 11, @@ -12502,10 +12502,10 @@ export class EmployeesData extends Array { State: `NM`, Country: `United States`, ReferredBy: `Dodi Gommey`, - CreatedOn: `1/30/2017`, - Birthday: `12/15/1980`, - LastActivity: `2/5/2017`, - NextActivity: `10/5/2017`, + CreatedOn: `2017-01-30`, + Birthday: `1980-12-15`, + LastActivity: `2017-02-05`, + NextActivity: `2017-10-05`, DealsWon: 6, DealsLost: 22, DealsPending: 17, @@ -12532,10 +12532,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Alta Burrett`, - CreatedOn: `2/10/2018`, - Birthday: `2/4/1972`, - LastActivity: `3/8/2018`, - NextActivity: `9/8/2019`, + CreatedOn: `2018-02-10`, + Birthday: `1972-02-04`, + LastActivity: `2018-03-08`, + NextActivity: `2019-09-08`, DealsWon: 18, DealsLost: 28, DealsPending: 24, @@ -12562,10 +12562,10 @@ export class EmployeesData extends Array { State: `HI`, Country: `United States`, ReferredBy: `Laina Duplock`, - CreatedOn: `2/17/2017`, - Birthday: `6/1/1970`, - LastActivity: `2/19/2017`, - NextActivity: `3/19/2017`, + CreatedOn: `2017-02-17`, + Birthday: `1970-06-01`, + LastActivity: `2017-02-19`, + NextActivity: `2017-03-19`, DealsWon: 16, DealsLost: 16, DealsPending: 24, @@ -12592,10 +12592,10 @@ export class EmployeesData extends Array { State: `PA`, Country: `United States`, ReferredBy: `Collin Tinan`, - CreatedOn: `10/7/2017`, - Birthday: `1/28/1999`, - LastActivity: `10/15/2017`, - NextActivity: `10/15/2019`, + CreatedOn: `2017-10-07`, + Birthday: `1999-01-28`, + LastActivity: `2017-10-15`, + NextActivity: `2019-10-15`, DealsWon: 12, DealsLost: 2, DealsPending: 2, @@ -12622,10 +12622,10 @@ export class EmployeesData extends Array { State: `MI`, Country: `United States`, ReferredBy: `Jimmy Schade`, - CreatedOn: `7/8/2017`, - Birthday: `1/19/1976`, - LastActivity: `7/19/2017`, - NextActivity: `1/19/2018`, + CreatedOn: `2017-07-08`, + Birthday: `1976-01-19`, + LastActivity: `2017-07-19`, + NextActivity: `2018-01-19`, DealsWon: 27, DealsLost: 20, DealsPending: 9, @@ -12652,10 +12652,10 @@ export class EmployeesData extends Array { State: `WA`, Country: `United States`, ReferredBy: `Carling Howsin`, - CreatedOn: `8/22/2017`, - Birthday: `1/1/1988`, - LastActivity: `8/26/2017`, - NextActivity: `7/26/2019`, + CreatedOn: `2017-08-22`, + Birthday: `1988-01-01`, + LastActivity: `2017-08-26`, + NextActivity: `2019-07-26`, DealsWon: 20, DealsLost: 2, DealsPending: 9, @@ -12682,10 +12682,10 @@ export class EmployeesData extends Array { State: `UT`, Country: `United States`, ReferredBy: `Burlie Peinke`, - CreatedOn: `1/7/2018`, - Birthday: `3/10/1990`, - LastActivity: `2/6/2018`, - NextActivity: `8/6/2018`, + CreatedOn: `2018-01-07`, + Birthday: `1990-03-10`, + LastActivity: `2018-02-06`, + NextActivity: `2018-08-06`, DealsWon: 2, DealsLost: 29, DealsPending: 27, @@ -12712,10 +12712,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Alejoa I'anson`, - CreatedOn: `3/6/2017`, - Birthday: `3/22/2000`, - LastActivity: `3/28/2017`, - NextActivity: `10/28/2018`, + CreatedOn: `2017-03-06`, + Birthday: `2000-03-22`, + LastActivity: `2017-03-28`, + NextActivity: `2018-10-28`, DealsWon: 20, DealsLost: 27, DealsPending: 12, @@ -12742,10 +12742,10 @@ export class EmployeesData extends Array { State: `MN`, Country: `United States`, ReferredBy: `Julita Bonevant`, - CreatedOn: `1/14/2018`, - Birthday: `5/10/1975`, - LastActivity: `1/21/2018`, - NextActivity: `9/21/2019`, + CreatedOn: `2018-01-14`, + Birthday: `1975-05-10`, + LastActivity: `2018-01-21`, + NextActivity: `2019-09-21`, DealsWon: 23, DealsLost: 25, DealsPending: 0, @@ -12772,10 +12772,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Waverley Saunt`, - CreatedOn: `4/4/2018`, - Birthday: `9/27/1997`, - LastActivity: `5/2/2018`, - NextActivity: `7/2/2018`, + CreatedOn: `2018-04-04`, + Birthday: `1997-09-27`, + LastActivity: `2018-05-02`, + NextActivity: `2018-07-02`, DealsWon: 22, DealsLost: 8, DealsPending: 3, @@ -12802,10 +12802,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Andi Rippingall`, - CreatedOn: `1/20/2018`, - Birthday: `11/26/1990`, - LastActivity: `1/22/2018`, - NextActivity: `7/22/2018`, + CreatedOn: `2018-01-20`, + Birthday: `1990-11-26`, + LastActivity: `2018-01-22`, + NextActivity: `2018-07-22`, DealsWon: 23, DealsLost: 17, DealsPending: 16, @@ -12832,10 +12832,10 @@ export class EmployeesData extends Array { State: `NC`, Country: `United States`, ReferredBy: `Maxi Salzburger`, - CreatedOn: `9/30/2017`, - Birthday: `7/13/1982`, - LastActivity: `10/25/2017`, - NextActivity: `4/25/2018`, + CreatedOn: `2017-09-30`, + Birthday: `1982-07-13`, + LastActivity: `2017-10-25`, + NextActivity: `2018-04-25`, DealsWon: 11, DealsLost: 29, DealsPending: 11, @@ -12862,10 +12862,10 @@ export class EmployeesData extends Array { State: `VA`, Country: `United States`, ReferredBy: `Jacquenetta Glacken`, - CreatedOn: `8/29/2017`, - Birthday: `7/23/1995`, - LastActivity: `8/31/2017`, - NextActivity: `3/31/2019`, + CreatedOn: `2017-08-29`, + Birthday: `1995-07-23`, + LastActivity: `2017-08-31`, + NextActivity: `2019-03-31`, DealsWon: 7, DealsLost: 25, DealsPending: 7, @@ -12892,10 +12892,10 @@ export class EmployeesData extends Array { State: `IA`, Country: `United States`, ReferredBy: `Madelyn Martusewicz`, - CreatedOn: `5/20/2017`, - Birthday: `7/29/1986`, - LastActivity: `6/1/2017`, - NextActivity: `2/1/2019`, + CreatedOn: `2017-05-20`, + Birthday: `1986-07-29`, + LastActivity: `2017-06-01`, + NextActivity: `2019-02-01`, DealsWon: 20, DealsLost: 16, DealsPending: 22, @@ -12922,10 +12922,10 @@ export class EmployeesData extends Array { State: `IL`, Country: `United States`, ReferredBy: `Gail Ethelston`, - CreatedOn: `7/30/2017`, - Birthday: `5/3/1983`, - LastActivity: `8/7/2017`, - NextActivity: `10/7/2017`, + CreatedOn: `2017-07-30`, + Birthday: `1983-05-03`, + LastActivity: `2017-08-07`, + NextActivity: `2017-10-07`, DealsWon: 21, DealsLost: 12, DealsPending: 15, @@ -12952,10 +12952,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Bradley Arnaldy`, - CreatedOn: `1/31/2018`, - Birthday: `4/16/1998`, - LastActivity: `2/3/2018`, - NextActivity: `5/3/2019`, + CreatedOn: `2018-01-31`, + Birthday: `1998-04-16`, + LastActivity: `2018-02-03`, + NextActivity: `2019-05-03`, DealsWon: 15, DealsLost: 17, DealsPending: 28, @@ -12982,10 +12982,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Cleveland Hoyt`, - CreatedOn: `1/21/2018`, - Birthday: `9/30/1970`, - LastActivity: `2/3/2018`, - NextActivity: `2/3/2020`, + CreatedOn: `2018-01-21`, + Birthday: `1970-09-30`, + LastActivity: `2018-02-03`, + NextActivity: `2020-02-03`, DealsWon: 20, DealsLost: 8, DealsPending: 17, @@ -13012,10 +13012,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Zedekiah Senechault`, - CreatedOn: `2/16/2018`, - Birthday: `9/20/1979`, - LastActivity: `2/21/2018`, - NextActivity: `7/21/2019`, + CreatedOn: `2018-02-16`, + Birthday: `1979-09-20`, + LastActivity: `2018-02-21`, + NextActivity: `2019-07-21`, DealsWon: 1, DealsLost: 5, DealsPending: 16, @@ -13042,10 +13042,10 @@ export class EmployeesData extends Array { State: `NC`, Country: `United States`, ReferredBy: `Kimberli Syddie`, - CreatedOn: `10/8/2017`, - Birthday: `2/9/1983`, - LastActivity: `10/27/2017`, - NextActivity: `5/27/2019`, + CreatedOn: `2017-10-08`, + Birthday: `1983-02-09`, + LastActivity: `2017-10-27`, + NextActivity: `2019-05-27`, DealsWon: 21, DealsLost: 22, DealsPending: 6, @@ -13072,10 +13072,10 @@ export class EmployeesData extends Array { State: `OH`, Country: `United States`, ReferredBy: `Mirelle Measor`, - CreatedOn: `6/29/2017`, - Birthday: `3/19/1990`, - LastActivity: `7/21/2017`, - NextActivity: `12/21/2018`, + CreatedOn: `2017-06-29`, + Birthday: `1990-03-19`, + LastActivity: `2017-07-21`, + NextActivity: `2018-12-21`, DealsWon: 8, DealsLost: 6, DealsPending: 11, @@ -13102,10 +13102,10 @@ export class EmployeesData extends Array { State: `GA`, Country: `United States`, ReferredBy: `Paddie Krop`, - CreatedOn: `3/29/2018`, - Birthday: `1/1/1978`, - LastActivity: `4/25/2018`, - NextActivity: `9/25/2019`, + CreatedOn: `2018-03-29`, + Birthday: `1978-01-01`, + LastActivity: `2018-04-25`, + NextActivity: `2019-09-25`, DealsWon: 13, DealsLost: 6, DealsPending: 9, @@ -13132,10 +13132,10 @@ export class EmployeesData extends Array { State: `TN`, Country: `United States`, ReferredBy: `Cammy Blamires`, - CreatedOn: `4/11/2018`, - Birthday: `5/15/1985`, - LastActivity: `5/6/2018`, - NextActivity: `9/6/2019`, + CreatedOn: `2018-04-11`, + Birthday: `1985-05-15`, + LastActivity: `2018-05-06`, + NextActivity: `2019-09-06`, DealsWon: 18, DealsLost: 5, DealsPending: 17, @@ -13162,10 +13162,10 @@ export class EmployeesData extends Array { State: `IL`, Country: `United States`, ReferredBy: `Salmon Bavidge`, - CreatedOn: `7/23/2017`, - Birthday: `6/13/1990`, - LastActivity: `8/11/2017`, - NextActivity: `9/11/2017`, + CreatedOn: `2017-07-23`, + Birthday: `1990-06-13`, + LastActivity: `2017-08-11`, + NextActivity: `2017-09-11`, DealsWon: 17, DealsLost: 24, DealsPending: 19, @@ -13192,10 +13192,10 @@ export class EmployeesData extends Array { State: `NJ`, Country: `United States`, ReferredBy: `Nickey Cornil`, - CreatedOn: `6/7/2017`, - Birthday: `4/3/1975`, - LastActivity: `6/14/2017`, - NextActivity: `12/14/2017`, + CreatedOn: `2017-06-07`, + Birthday: `1975-04-03`, + LastActivity: `2017-06-14`, + NextActivity: `2017-12-14`, DealsWon: 10, DealsLost: 19, DealsPending: 14, @@ -13222,10 +13222,10 @@ export class EmployeesData extends Array { State: `NY`, Country: `United States`, ReferredBy: `Jackquelin O'Sheerin`, - CreatedOn: `4/16/2017`, - Birthday: `3/21/1980`, - LastActivity: `5/15/2017`, - NextActivity: `2/15/2018`, + CreatedOn: `2017-04-16`, + Birthday: `1980-03-21`, + LastActivity: `2017-05-15`, + NextActivity: `2018-02-15`, DealsWon: 25, DealsLost: 26, DealsPending: 15, @@ -13252,10 +13252,10 @@ export class EmployeesData extends Array { State: `NV`, Country: `United States`, ReferredBy: `Ashia Baysting`, - CreatedOn: `6/17/2017`, - Birthday: `4/1/1984`, - LastActivity: `7/3/2017`, - NextActivity: `1/3/2019`, + CreatedOn: `2017-06-17`, + Birthday: `1984-04-01`, + LastActivity: `2017-07-03`, + NextActivity: `2019-01-03`, DealsWon: 5, DealsLost: 2, DealsPending: 18, @@ -13282,10 +13282,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Granny Willock`, - CreatedOn: `5/23/2017`, - Birthday: `12/14/1977`, - LastActivity: `5/27/2017`, - NextActivity: `11/27/2018`, + CreatedOn: `2017-05-23`, + Birthday: `1977-12-14`, + LastActivity: `2017-05-27`, + NextActivity: `2018-11-27`, DealsWon: 14, DealsLost: 17, DealsPending: 21, @@ -13312,10 +13312,10 @@ export class EmployeesData extends Array { State: `PA`, Country: `United States`, ReferredBy: `Ondrea Beedie`, - CreatedOn: `8/3/2017`, - Birthday: `11/14/1978`, - LastActivity: `9/1/2017`, - NextActivity: `11/1/2018`, + CreatedOn: `2017-08-03`, + Birthday: `1978-11-14`, + LastActivity: `2017-09-01`, + NextActivity: `2018-11-01`, DealsWon: 26, DealsLost: 26, DealsPending: 11, @@ -13342,10 +13342,10 @@ export class EmployeesData extends Array { State: `TX`, Country: `United States`, ReferredBy: `Dew Bougourd`, - CreatedOn: `10/9/2017`, - Birthday: `2/14/1982`, - LastActivity: `11/3/2017`, - NextActivity: `5/3/2018`, + CreatedOn: `2017-10-09`, + Birthday: `1982-02-14`, + LastActivity: `2017-11-03`, + NextActivity: `2018-05-03`, DealsWon: 15, DealsLost: 18, DealsPending: 19, @@ -13372,10 +13372,10 @@ export class EmployeesData extends Array { State: `NC`, Country: `United States`, ReferredBy: `Olivier Pohl`, - CreatedOn: `2/2/2018`, - Birthday: `7/27/1996`, - LastActivity: `2/11/2018`, - NextActivity: `9/11/2019`, + CreatedOn: `2018-02-02`, + Birthday: `1996-07-27`, + LastActivity: `2018-02-11`, + NextActivity: `2019-09-11`, DealsWon: 6, DealsLost: 7, DealsPending: 2, @@ -13402,10 +13402,10 @@ export class EmployeesData extends Array { State: `DC`, Country: `United States`, ReferredBy: `Daphne Ingon`, - CreatedOn: `11/6/2017`, - Birthday: `7/31/2000`, - LastActivity: `12/2/2017`, - NextActivity: `9/2/2019`, + CreatedOn: `2017-11-06`, + Birthday: `2000-07-31`, + LastActivity: `2017-12-02`, + NextActivity: `2019-09-02`, DealsWon: 11, DealsLost: 10, DealsPending: 11, @@ -13432,10 +13432,10 @@ export class EmployeesData extends Array { State: `FL`, Country: `United States`, ReferredBy: `Maddy Aspinal`, - CreatedOn: `9/24/2017`, - Birthday: `2/13/2003`, - LastActivity: `10/2/2017`, - NextActivity: `10/2/2018`, + CreatedOn: `2017-09-24`, + Birthday: `2003-02-13`, + LastActivity: `2017-10-02`, + NextActivity: `2018-10-02`, DealsWon: 22, DealsLost: 18, DealsPending: 5, @@ -13462,10 +13462,10 @@ export class EmployeesData extends Array { State: `NE`, Country: `United States`, ReferredBy: `Miguelita Gerler`, - CreatedOn: `3/18/2017`, - Birthday: `2/15/1973`, - LastActivity: `3/26/2017`, - NextActivity: `7/26/2017`, + CreatedOn: `2017-03-18`, + Birthday: `1973-02-15`, + LastActivity: `2017-03-26`, + NextActivity: `2017-07-26`, DealsWon: 26, DealsLost: 20, DealsPending: 17, @@ -13492,10 +13492,10 @@ export class EmployeesData extends Array { State: `CO`, Country: `United States`, ReferredBy: `Carmina Tomaszek`, - CreatedOn: `3/13/2017`, - Birthday: `9/13/1978`, - LastActivity: `3/24/2017`, - NextActivity: `10/24/2018`, + CreatedOn: `2017-03-13`, + Birthday: `1978-09-13`, + LastActivity: `2017-03-24`, + NextActivity: `2018-10-24`, DealsWon: 14, DealsLost: 11, DealsPending: 2, @@ -13522,10 +13522,10 @@ export class EmployeesData extends Array { State: `CA`, Country: `United States`, ReferredBy: `Lynda Drinan`, - CreatedOn: `3/26/2017`, - Birthday: `3/10/1971`, - LastActivity: `4/17/2017`, - NextActivity: `10/17/2018`, + CreatedOn: `2017-03-26`, + Birthday: `1971-03-10`, + LastActivity: `2017-04-17`, + NextActivity: `2018-10-17`, DealsWon: 13, DealsLost: 14, DealsPending: 9, @@ -13552,10 +13552,10 @@ export class EmployeesData extends Array { State: `CO`, Country: `United States`, ReferredBy: `Alanna Begg`, - CreatedOn: `11/18/2017`, - Birthday: `10/16/1982`, - LastActivity: `12/2/2017`, - NextActivity: `2/2/2018`, + CreatedOn: `2017-11-18`, + Birthday: `1982-10-16`, + LastActivity: `2017-12-02`, + NextActivity: `2018-02-02`, DealsWon: 5, DealsLost: 13, DealsPending: 8, diff --git a/samples/grids/grid/editing-columns/src/NwindData.ts b/samples/grids/grid/editing-columns/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/editing-columns/src/NwindData.ts +++ b/samples/grids/grid/editing-columns/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/editing-events/src/NwindData.ts b/samples/grids/grid/editing-events/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/editing-events/src/NwindData.ts +++ b/samples/grids/grid/editing-events/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/editing-excel-style/src/NwindData.ts b/samples/grids/grid/editing-excel-style/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/editing-excel-style/src/NwindData.ts +++ b/samples/grids/grid/editing-excel-style/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/editing-lifecycle/src/NwindData.ts b/samples/grids/grid/editing-lifecycle/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/editing-lifecycle/src/NwindData.ts +++ b/samples/grids/grid/editing-lifecycle/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/excel-style-filtering-sample-1/src/NwindData.ts b/samples/grids/grid/excel-style-filtering-sample-1/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/src/NwindData.ts +++ b/samples/grids/grid/excel-style-filtering-sample-1/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/excel-style-filtering-sample-2/src/NwindData.ts b/samples/grids/grid/excel-style-filtering-sample-2/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/src/NwindData.ts +++ b/samples/grids/grid/excel-style-filtering-sample-2/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/excel-style-filtering-sample-3/src/NwindData.ts b/samples/grids/grid/excel-style-filtering-sample-3/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/src/NwindData.ts +++ b/samples/grids/grid/excel-style-filtering-sample-3/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/excel-style-filtering-style/src/NwindData.ts b/samples/grids/grid/excel-style-filtering-style/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/excel-style-filtering-style/src/NwindData.ts +++ b/samples/grids/grid/excel-style-filtering-style/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/external-advanced-filtering/src/NwindData.ts b/samples/grids/grid/external-advanced-filtering/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/external-advanced-filtering/src/NwindData.ts +++ b/samples/grids/grid/external-advanced-filtering/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/filtering-options/src/NwindData.ts b/samples/grids/grid/filtering-options/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/filtering-options/src/NwindData.ts +++ b/samples/grids/grid/filtering-options/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/filtering-strategy/src/NwindData.ts b/samples/grids/grid/filtering-strategy/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/filtering-strategy/src/NwindData.ts +++ b/samples/grids/grid/filtering-strategy/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/filtering-style/src/NwindData.ts b/samples/grids/grid/filtering-style/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/filtering-style/src/NwindData.ts +++ b/samples/grids/grid/filtering-style/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/keyboard-custom-navigation/src/NwindData.ts b/samples/grids/grid/keyboard-custom-navigation/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/keyboard-custom-navigation/src/NwindData.ts +++ b/samples/grids/grid/keyboard-custom-navigation/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/overview/src/NwindData.ts b/samples/grids/grid/overview/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/overview/src/NwindData.ts +++ b/samples/grids/grid/overview/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/remote-paging-data/src/NwindData.ts b/samples/grids/grid/remote-paging-data/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/remote-paging-data/src/NwindData.ts +++ b/samples/grids/grid/remote-paging-data/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/row-adding/src/NwindData.ts b/samples/grids/grid/row-adding/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/row-adding/src/NwindData.ts +++ b/samples/grids/grid/row-adding/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/row-classes/src/NwindData.ts b/samples/grids/grid/row-classes/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/row-classes/src/NwindData.ts +++ b/samples/grids/grid/row-classes/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/row-editing-options/src/NwindData.ts b/samples/grids/grid/row-editing-options/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/row-editing-options/src/NwindData.ts +++ b/samples/grids/grid/row-editing-options/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/grid/row-editing-style/src/NwindData.ts b/samples/grids/grid/row-editing-style/src/NwindData.ts index 52ccbf8133..9a31a85e7d 100644 --- a/samples/grids/grid/row-editing-style/src/NwindData.ts +++ b/samples/grids/grid/row-editing-style/src/NwindData.ts @@ -48,12 +48,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -75,7 +75,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -97,17 +97,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -129,17 +129,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -161,7 +161,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -183,7 +183,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -205,17 +205,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -237,12 +237,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -264,7 +264,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -286,7 +286,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -308,12 +308,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Fun-Tasty Co.`, - LastInventory: `06/12/2018` + LastInventory: `2018-06-12` }), new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -335,7 +335,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -357,7 +357,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -379,12 +379,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` })] })); @@ -406,12 +406,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` }), new NwindDataItem_LocationsItem( { Shop: `Wall Market`, - LastInventory: `12/06/2018` + LastInventory: `2018-12-06` })] })); @@ -433,17 +433,17 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` }), new NwindDataItem_LocationsItem( { Shop: `Street Market`, - LastInventory: `12/12/2018` + LastInventory: `2018-12-12` }), new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` })] })); @@ -465,7 +465,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Farmer Market`, - LastInventory: `04/04/2018` + LastInventory: `2018-04-04` })] })); @@ -487,12 +487,12 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `24/7 Market`, - LastInventory: `11/11/2018` + LastInventory: `2018-11-11` }), new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); @@ -514,7 +514,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Local Market`, - LastInventory: `07/03/2018` + LastInventory: `2018-07-03` })] })); @@ -536,7 +536,7 @@ export class NwindData extends Array { new NwindDataItem_LocationsItem( { Shop: `Super Market`, - LastInventory: `09/09/2018` + LastInventory: `2018-09-09` })] })); diff --git a/samples/grids/pivot-grid/aggregate-max-sales/src/PivotSalesData.ts b/samples/grids/pivot-grid/aggregate-max-sales/src/PivotSalesData.ts index 29d21495b8..9a815e3ffc 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/src/PivotSalesData.ts +++ b/samples/grids/pivot-grid/aggregate-max-sales/src/PivotSalesData.ts @@ -33,7 +33,7 @@ export class PivotSalesData extends Array { Sales: 26440, COGS: 16185, Profit: 11255, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -49,7 +49,7 @@ export class PivotSalesData extends Array { Sales: 27440, COGS: 16185, Profit: 11255, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -65,7 +65,7 @@ export class PivotSalesData extends Array { Sales: 55240, COGS: 13210, Profit: 42030, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -81,7 +81,7 @@ export class PivotSalesData extends Array { Sales: 21960, COGS: 21780, Profit: 180, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -97,7 +97,7 @@ export class PivotSalesData extends Array { Sales: 10785, COGS: 8880, Profit: 1905, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -113,7 +113,7 @@ export class PivotSalesData extends Array { Sales: 53640, COGS: 24700, Profit: 28940, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -129,7 +129,7 @@ export class PivotSalesData extends Array { Sales: 1547700, COGS: 393380, Profit: 1154320, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -145,7 +145,7 @@ export class PivotSalesData extends Array { Sales: 54735, COGS: 9210, Profit: 45525, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -161,7 +161,7 @@ export class PivotSalesData extends Array { Sales: 50064, COGS: 7554, Profit: 42510, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -177,7 +177,7 @@ export class PivotSalesData extends Array { Sales: 76820, COGS: 18990, Profit: 57830, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -193,7 +193,7 @@ export class PivotSalesData extends Array { Sales: 44712, COGS: 4635, Profit: 40077, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -209,7 +209,7 @@ export class PivotSalesData extends Array { Sales: 39375, COGS: 24700, Profit: 14675, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -225,7 +225,7 @@ export class PivotSalesData extends Array { Sales: 244750, COGS: 319860, Profit: 75110, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -241,7 +241,7 @@ export class PivotSalesData extends Array { Sales: 981300, COGS: 239500, Profit: 741800, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -257,7 +257,7 @@ export class PivotSalesData extends Array { Sales: 14637, COGS: 10730, Profit: 3907, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -273,7 +273,7 @@ export class PivotSalesData extends Array { Sales: 42375, COGS: 6150, Profit: 36225, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -289,7 +289,7 @@ export class PivotSalesData extends Array { Sales: 50260, COGS: 2920, Profit: 47340, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -305,7 +305,7 @@ export class PivotSalesData extends Array { Sales: 13245, COGS: 9740, Profit: 3505, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -321,7 +321,7 @@ export class PivotSalesData extends Array { Sales: 25044, COGS: 7554, Profit: 17490, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -337,7 +337,7 @@ export class PivotSalesData extends Array { Sales: 897050, COGS: 261560, Profit: 635490, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -353,7 +353,7 @@ export class PivotSalesData extends Array { Sales: 34152, COGS: 1101, Profit: 33051, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -369,7 +369,7 @@ export class PivotSalesData extends Array { Sales: 6979, COGS: 4415, Profit: 2564, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -385,7 +385,7 @@ export class PivotSalesData extends Array { Sales: 34350, COGS: 24720, Profit: 9630, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -401,7 +401,7 @@ export class PivotSalesData extends Array { Sales: 14931, COGS: 5715, Profit: 9216, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -417,7 +417,7 @@ export class PivotSalesData extends Array { Sales: 72340, COGS: 18170, Profit: 54170, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -433,7 +433,7 @@ export class PivotSalesData extends Array { Sales: 443100, COGS: 393380, Profit: 49720, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -449,7 +449,7 @@ export class PivotSalesData extends Array { Sales: 6258, COGS: 7465, Profit: 1207, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -465,7 +465,7 @@ export class PivotSalesData extends Array { Sales: 340625, COGS: 216480, Profit: 124145, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -481,7 +481,7 @@ export class PivotSalesData extends Array { Sales: 36732, COGS: 6483, Profit: 30249, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -497,7 +497,7 @@ export class PivotSalesData extends Array { Sales: 1385300, COGS: 261560, Profit: 1123740, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -513,7 +513,7 @@ export class PivotSalesData extends Array { Sales: 47040, COGS: 4635, Profit: 42405, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -529,7 +529,7 @@ export class PivotSalesData extends Array { Sales: 422625, COGS: 338520, Profit: 84105, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -545,7 +545,7 @@ export class PivotSalesData extends Array { Sales: 1292100, COGS: 500250, Profit: 791850, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -561,7 +561,7 @@ export class PivotSalesData extends Array { Sales: 10536, COGS: 8514, Profit: 2022, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -577,7 +577,7 @@ export class PivotSalesData extends Array { Sales: 7440, COGS: 21780, Profit: 14340, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -593,7 +593,7 @@ export class PivotSalesData extends Array { Sales: 50505, COGS: 8880, Profit: 41625, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -609,7 +609,7 @@ export class PivotSalesData extends Array { Sales: 616500, COGS: 537750, Profit: 78750, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -625,7 +625,7 @@ export class PivotSalesData extends Array { Sales: 80820, COGS: 18170, Profit: 62650, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -641,7 +641,7 @@ export class PivotSalesData extends Array { Sales: 1132950, COGS: 715000, Profit: 417950, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -657,7 +657,7 @@ export class PivotSalesData extends Array { Sales: 7560, COGS: 5859, Profit: 1701, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -673,7 +673,7 @@ export class PivotSalesData extends Array { Sales: 526250, COGS: 506340, Profit: 19910, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -689,7 +689,7 @@ export class PivotSalesData extends Array { Sales: 22540, COGS: 18990, Profit: 3550, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -705,7 +705,7 @@ export class PivotSalesData extends Array { Sales: 24066, COGS: 8430, Profit: 15636, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -721,7 +721,7 @@ export class PivotSalesData extends Array { Sales: 24180, COGS: 6423, Profit: 17757, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -737,7 +737,7 @@ export class PivotSalesData extends Array { Sales: 17738, COGS: 5715, Profit: 12023, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -753,7 +753,7 @@ export class PivotSalesData extends Array { Sales: 20760, COGS: 6150, Profit: 14610, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -769,7 +769,7 @@ export class PivotSalesData extends Array { Sales: 24650.85, COGS: 19725, Profit: 4925.85, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -785,7 +785,7 @@ export class PivotSalesData extends Array { Sales: 27000.6, COGS: 22960, Profit: 4040.6, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -801,7 +801,7 @@ export class PivotSalesData extends Array { Sales: 19492.9, COGS: 5150, Profit: 14342.9, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -817,7 +817,7 @@ export class PivotSalesData extends Array { Sales: 3154.27, COGS: 3195, Profit: 40.73, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -833,7 +833,7 @@ export class PivotSalesData extends Array { Sales: 26402.18, COGS: 6630, Profit: 19772.18, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -849,7 +849,7 @@ export class PivotSalesData extends Array { Sales: 8753.04, COGS: 5574, Profit: 3179.04, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -865,7 +865,7 @@ export class PivotSalesData extends Array { Sales: 353115, COGS: 314600, Profit: 38515, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -881,7 +881,7 @@ export class PivotSalesData extends Array { Sales: 14354.97, COGS: 12645, Profit: 1709.97, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -897,7 +897,7 @@ export class PivotSalesData extends Array { Sales: 51618.6, COGS: 4335, Profit: 47283.6, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -913,7 +913,7 @@ export class PivotSalesData extends Array { Sales: 49767.48, COGS: 8013, Profit: 41754.48, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -929,7 +929,7 @@ export class PivotSalesData extends Array { Sales: 1302710.5, COGS: 363220, Profit: 939490.5, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -945,7 +945,7 @@ export class PivotSalesData extends Array { Sales: 662357.5, COGS: 560300, Profit: 102057.5, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -961,7 +961,7 @@ export class PivotSalesData extends Array { Sales: 40797.9, COGS: 22140, Profit: 18657.9, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -977,7 +977,7 @@ export class PivotSalesData extends Array { Sales: 442797, COGS: 575250, Profit: 132453, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -993,7 +993,7 @@ export class PivotSalesData extends Array { Sales: 75164.9, COGS: 13755, Profit: 61409.9, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -1009,7 +1009,7 @@ export class PivotSalesData extends Array { Sales: 7655.9, COGS: 9150, Profit: 1494.1, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -1025,7 +1025,7 @@ export class PivotSalesData extends Array { Sales: 35292.9, COGS: 15140, Profit: 20152.9, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -1041,7 +1041,7 @@ export class PivotSalesData extends Array { Sales: 10787.52, COGS: 22462.5, Profit: 11674.98, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -1057,7 +1057,7 @@ export class PivotSalesData extends Array { Sales: 422341.25, COGS: 87240, Profit: 335101.25, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1073,7 +1073,7 @@ export class PivotSalesData extends Array { Sales: 105516.25, COGS: 94440, Profit: 11076.25, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1089,7 +1089,7 @@ export class PivotSalesData extends Array { Sales: 345596.25, COGS: 218760, Profit: 126836.25, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -1105,7 +1105,7 @@ export class PivotSalesData extends Array { Sales: 40147.95, COGS: 7470, Profit: 32677.95, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -1121,7 +1121,7 @@ export class PivotSalesData extends Array { Sales: 1216185, COGS: 726250, Profit: 489935, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -1137,7 +1137,7 @@ export class PivotSalesData extends Array { Sales: 978057.5, COGS: 560300, Profit: 417757.5, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1153,7 +1153,7 @@ export class PivotSalesData extends Array { Sales: 85107.2, COGS: 38640, Profit: 46467.2, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -1169,7 +1169,7 @@ export class PivotSalesData extends Array { Sales: 19966.66, COGS: 1810, Profit: 18156.66, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -1185,7 +1185,7 @@ export class PivotSalesData extends Array { Sales: 174721.25, COGS: 110760, Profit: 63961.25, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -1201,7 +1201,7 @@ export class PivotSalesData extends Array { Sales: 8836.59, COGS: 1315, Profit: 7521.59, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -1217,7 +1217,7 @@ export class PivotSalesData extends Array { Sales: 1358897.75, COGS: 245310, Profit: 1113587.75, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -1233,7 +1233,7 @@ export class PivotSalesData extends Array { Sales: 382591.25, COGS: 87240, Profit: 295351.25, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1249,7 +1249,7 @@ export class PivotSalesData extends Array { Sales: 271641.25, COGS: 94440, Profit: 177201.25, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1265,7 +1265,7 @@ export class PivotSalesData extends Array { Sales: 403842, COGS: 246500, Profit: 177201.25, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1281,7 +1281,7 @@ export class PivotSalesData extends Array { Sales: 630010.5, COGS: 363220, Profit: 266790.5, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -1297,7 +1297,7 @@ export class PivotSalesData extends Array { Sales: 184695, COGS: 209280, Profit: 24585, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -1313,7 +1313,7 @@ export class PivotSalesData extends Array { Sales: 181018.75, COGS: 89100, Profit: 91918.75, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -1329,7 +1329,7 @@ export class PivotSalesData extends Array { Sales: 2269.2, COGS: 3885, Profit: 1615.8, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -1345,7 +1345,7 @@ export class PivotSalesData extends Array { Sales: 178136, COGS: 741520, Profit: 563384, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1361,7 +1361,7 @@ export class PivotSalesData extends Array { Sales: 38785.92, COGS: 3426, Profit: 35359.92, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1377,7 +1377,7 @@ export class PivotSalesData extends Array { Sales: 14813.6, COGS: 15660, Profit: 846.4, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -1393,7 +1393,7 @@ export class PivotSalesData extends Array { Sales: 13454.4, COGS: 2070, Profit: 11384.4, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -1409,7 +1409,7 @@ export class PivotSalesData extends Array { Sales: 17186.1, COGS: 23630, Profit: 6443.9, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -1425,7 +1425,7 @@ export class PivotSalesData extends Array { Sales: 753492, COGS: 229500, Profit: 523992, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -1441,7 +1441,7 @@ export class PivotSalesData extends Array { Sales: 1024932, COGS: 432000, Profit: 592932, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -1457,7 +1457,7 @@ export class PivotSalesData extends Array { Sales: 36433.92, COGS: 3426, Profit: 33007.92, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1473,7 +1473,7 @@ export class PivotSalesData extends Array { Sales: 492970, COGS: 79440, Profit: 413530, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1489,7 +1489,7 @@ export class PivotSalesData extends Array { Sales: 41017.2, COGS: 3885, Profit: 37132.2, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -1505,7 +1505,7 @@ export class PivotSalesData extends Array { Sales: 934704, COGS: 479000, Profit: 455704, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1521,7 +1521,7 @@ export class PivotSalesData extends Array { Sales: 1417836, COGS: 741520, Profit: 676316, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1537,7 +1537,7 @@ export class PivotSalesData extends Array { Sales: 463177.5, COGS: 327480, Profit: 135697.5, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1553,7 +1553,7 @@ export class PivotSalesData extends Array { Sales: 27754.8, COGS: 3165, Profit: 24589.8, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1569,7 +1569,7 @@ export class PivotSalesData extends Array { Sales: 6699.84, COGS: 3252, Profit: 3447.84, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1585,7 +1585,7 @@ export class PivotSalesData extends Array { Sales: 51573.6, COGS: 15660, Profit: 35913.6, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -1601,7 +1601,7 @@ export class PivotSalesData extends Array { Sales: 490511, COGS: 748020, Profit: 257509, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -1617,7 +1617,7 @@ export class PivotSalesData extends Array { Sales: 45034.8, COGS: 3165, Profit: 41869.8, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1633,7 +1633,7 @@ export class PivotSalesData extends Array { Sales: 30603.84, COGS: 3252, Profit: 27351.84, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1649,7 +1649,7 @@ export class PivotSalesData extends Array { Sales: 38345, COGS: 79440, Profit: 41095, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1665,7 +1665,7 @@ export class PivotSalesData extends Array { Sales: 1126111, COGS: 748020, Profit: 378091, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -1681,7 +1681,7 @@ export class PivotSalesData extends Array { Sales: 440927.5, COGS: 327480, Profit: 113447.5, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1697,7 +1697,7 @@ export class PivotSalesData extends Array { Sales: 1215246, COGS: 64750, Profit: 1150496, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -1713,7 +1713,7 @@ export class PivotSalesData extends Array { Sales: 636594, COGS: 275250, Profit: 361344, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -1729,7 +1729,7 @@ export class PivotSalesData extends Array { Sales: 432060, COGS: 273120, Profit: 158940, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -1745,7 +1745,7 @@ export class PivotSalesData extends Array { Sales: 13085.6, COGS: 12360, Profit: 725.6, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -1761,7 +1761,7 @@ export class PivotSalesData extends Array { Sales: 46643.6, COGS: 9410, Profit: 37233.6, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -1777,7 +1777,7 @@ export class PivotSalesData extends Array { Sales: 601404, COGS: 479000, Profit: 122404, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1793,7 +1793,7 @@ export class PivotSalesData extends Array { Sales: 429711.88, COGS: 509220, Profit: 79508.13, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -1809,7 +1809,7 @@ export class PivotSalesData extends Array { Sales: 26472, COGS: 25800, Profit: 672, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -1825,7 +1825,7 @@ export class PivotSalesData extends Array { Sales: 616899, COGS: 172250, Profit: 444649, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1841,7 +1841,7 @@ export class PivotSalesData extends Array { Sales: 43015.08, COGS: 5841, Profit: 37174.08, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -1857,7 +1857,7 @@ export class PivotSalesData extends Array { Sales: 20308.82, COGS: 9790, Profit: 10518.82, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -1873,7 +1873,7 @@ export class PivotSalesData extends Array { Sales: 13727.64, COGS: 5703, Profit: 8024.64, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1889,7 +1889,7 @@ export class PivotSalesData extends Array { Sales: 16132.76, COGS: 2720, Profit: 13412.76, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -1905,7 +1905,7 @@ export class PivotSalesData extends Array { Sales: 491673.75, COGS: 154440, Profit: 337233.75, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1921,7 +1921,7 @@ export class PivotSalesData extends Array { Sales: 478352.5, COGS: 204720, Profit: 273632.5, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1937,7 +1937,7 @@ export class PivotSalesData extends Array { Sales: 661489.5, COGS: 608625, Profit: 52864.5, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -1953,7 +1953,7 @@ export class PivotSalesData extends Array { Sales: 127722.5, COGS: 212880, Profit: 85157.5, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -1969,7 +1969,7 @@ export class PivotSalesData extends Array { Sales: 47915.64, COGS: 5703, Profit: 42212.64, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1985,7 +1985,7 @@ export class PivotSalesData extends Array { Sales: 904299, COGS: 172250, Profit: 732049, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -2001,7 +2001,7 @@ export class PivotSalesData extends Array { Sales: 448612.5, COGS: 188400, Profit: 260212.5, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -2017,7 +2017,7 @@ export class PivotSalesData extends Array { Sales: 16054.98, COGS: 4108.5, Profit: 11946.48, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -2033,7 +2033,7 @@ export class PivotSalesData extends Array { Sales: 553966.25, COGS: 241080, Profit: 312886.25, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2049,7 +2049,7 @@ export class PivotSalesData extends Array { Sales: 213173.75, COGS: 154440, Profit: 58733.75, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2065,7 +2065,7 @@ export class PivotSalesData extends Array { Sales: 286227.5, COGS: 204720, Profit: 81507.5, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2081,7 +2081,7 @@ export class PivotSalesData extends Array { Sales: 471841.25, COGS: 241080, Profit: 230761.25, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2097,7 +2097,7 @@ export class PivotSalesData extends Array { Sales: 322704, COGS: 711000, Profit: 388296, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -2113,7 +2113,7 @@ export class PivotSalesData extends Array { Sales: 9822.24, COGS: 5748, Profit: 4074.24, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -2129,7 +2129,7 @@ export class PivotSalesData extends Array { Sales: 207237.5, COGS: 188400, Profit: 18837.5, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -2145,7 +2145,7 @@ export class PivotSalesData extends Array { Sales: 524634, COGS: 468500, Profit: 56134, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -2161,7 +2161,7 @@ export class PivotSalesData extends Array { Sales: 118909, COGS: 426920, Profit: 308011, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -2177,7 +2177,7 @@ export class PivotSalesData extends Array { Sales: 28681.4, COGS: 8310, Profit: 20371.4, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -2193,7 +2193,7 @@ export class PivotSalesData extends Array { Sales: 82409.7, COGS: 38505, Profit: 43904.7, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -2209,7 +2209,7 @@ export class PivotSalesData extends Array { Sales: 42631.56, COGS: 7437, Profit: 35194.56, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -2225,7 +2225,7 @@ export class PivotSalesData extends Array { Sales: 25121.4, COGS: 20310, Profit: 4811.4, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2241,7 +2241,7 @@ export class PivotSalesData extends Array { Sales: 3386.4, COGS: 20310, Profit: 16923.6, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2257,7 +2257,7 @@ export class PivotSalesData extends Array { Sales: 342348, COGS: 505250, Profit: 162902, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2273,7 +2273,7 @@ export class PivotSalesData extends Array { Sales: 167314, COGS: 71240, Profit: 96074, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2289,7 +2289,7 @@ export class PivotSalesData extends Array { Sales: 60814.8, COGS: 19670, Profit: 41144.8, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -2305,7 +2305,7 @@ export class PivotSalesData extends Array { Sales: 800592, COGS: 464750, Profit: 335842, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -2321,7 +2321,7 @@ export class PivotSalesData extends Array { Sales: 1313748, COGS: 505250, Profit: 808498, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2337,7 +2337,7 @@ export class PivotSalesData extends Array { Sales: 148310, COGS: 136560, Profit: 11750, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2353,7 +2353,7 @@ export class PivotSalesData extends Array { Sales: 16911.72, COGS: 21255, Profit: 4343.28, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -2369,7 +2369,7 @@ export class PivotSalesData extends Array { Sales: 162525, COGS: 95400, Profit: 67125, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -2385,7 +2385,7 @@ export class PivotSalesData extends Array { Sales: 1329126, COGS: 353625, Profit: 975501, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -2401,7 +2401,7 @@ export class PivotSalesData extends Array { Sales: 1123584, COGS: 729500, Profit: 394084, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -2417,7 +2417,7 @@ export class PivotSalesData extends Array { Sales: 569450, COGS: 897000, Profit: 327550, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -2433,7 +2433,7 @@ export class PivotSalesData extends Array { Sales: 426685, COGS: 358560, Profit: 68125, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -2449,7 +2449,7 @@ export class PivotSalesData extends Array { Sales: 30109.2, COGS: 2180, Profit: 27929.2, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -2465,7 +2465,7 @@ export class PivotSalesData extends Array { Sales: 57100.8, COGS: 20740, Profit: 36360.8, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -2481,7 +2481,7 @@ export class PivotSalesData extends Array { Sales: 66195.2, COGS: 10560, Profit: 55635.2, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -2497,7 +2497,7 @@ export class PivotSalesData extends Array { Sales: 846664, COGS: 71240, Profit: 775424, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2513,7 +2513,7 @@ export class PivotSalesData extends Array { Sales: 61185, COGS: 136560, Profit: 75375, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2529,7 +2529,7 @@ export class PivotSalesData extends Array { Sales: 17572.8, COGS: 4395, Profit: 13177.8, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -2545,7 +2545,7 @@ export class PivotSalesData extends Array { Sales: 593222, COGS: 566020, Profit: 27202, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2561,7 +2561,7 @@ export class PivotSalesData extends Array { Sales: 3748.32, COGS: 2598, Profit: 1150.32, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -2577,7 +2577,7 @@ export class PivotSalesData extends Array { Sales: 1197672, COGS: 566020, Profit: 631652, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2593,7 +2593,7 @@ export class PivotSalesData extends Array { Sales: 1003940, COGS: 484900, Profit: 519040, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -2609,7 +2609,7 @@ export class PivotSalesData extends Array { Sales: 499255, COGS: 128880, Profit: 370375, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -2625,7 +2625,7 @@ export class PivotSalesData extends Array { Sales: 1424402, COGS: 495820, Profit: 928582, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -2641,7 +2641,7 @@ export class PivotSalesData extends Array { Sales: 4594.8, COGS: 6860, Profit: 2265.2, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -2657,7 +2657,7 @@ export class PivotSalesData extends Array { Sales: 15333.85, COGS: 13445, Profit: 1888.85, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2673,7 +2673,7 @@ export class PivotSalesData extends Array { Sales: 6641.4, COGS: 7293, Profit: 651.6, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2689,7 +2689,7 @@ export class PivotSalesData extends Array { Sales: 34421.4, COGS: 7293, Profit: 27128.4, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2705,7 +2705,7 @@ export class PivotSalesData extends Array { Sales: 6562.85, COGS: 13445, Profit: 6882.15, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2721,7 +2721,7 @@ export class PivotSalesData extends Array { Sales: 6746.95, COGS: 8415, Profit: 1668.05, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -2737,7 +2737,7 @@ export class PivotSalesData extends Array { Sales: 4954.2, COGS: 3369, Profit: 1585.2, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -2753,7 +2753,7 @@ export class PivotSalesData extends Array { Sales: 49761, COGS: 5595, Profit: 44166, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -2769,7 +2769,7 @@ export class PivotSalesData extends Array { Sales: 23042.4, COGS: 3348, Profit: 19694.4, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -2785,7 +2785,7 @@ export class PivotSalesData extends Array { Sales: 38117, COGS: 15630, Profit: 22487, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -2801,7 +2801,7 @@ export class PivotSalesData extends Array { Sales: 129135, COGS: 247750, Profit: 118615, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -2817,7 +2817,7 @@ export class PivotSalesData extends Array { Sales: 15981.75, COGS: 27910, Profit: 11928.25, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -2833,7 +2833,7 @@ export class PivotSalesData extends Array { Sales: 17160.5, COGS: 2850, Profit: 14310.5, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2849,7 +2849,7 @@ export class PivotSalesData extends Array { Sales: 19611.55, COGS: 12435, Profit: 7176.55, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2865,7 +2865,7 @@ export class PivotSalesData extends Array { Sales: 1099271.25, COGS: 359970, Profit: 739301.25, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -2881,7 +2881,7 @@ export class PivotSalesData extends Array { Sales: 379956.25, COGS: 435240, Profit: 55283.75, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -2897,7 +2897,7 @@ export class PivotSalesData extends Array { Sales: 12118.8, COGS: 7026, Profit: 5092.8, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -2913,7 +2913,7 @@ export class PivotSalesData extends Array { Sales: 30897, COGS: 13030, Profit: 17867, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -2929,7 +2929,7 @@ export class PivotSalesData extends Array { Sales: 493800, COGS: 359040, Profit: 134760, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -2945,7 +2945,7 @@ export class PivotSalesData extends Array { Sales: 111593.75, COGS: 286200, Profit: 174606.25, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -2961,7 +2961,7 @@ export class PivotSalesData extends Array { Sales: 976995, COGS: 401750, Profit: 575245, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -2977,7 +2977,7 @@ export class PivotSalesData extends Array { Sales: 26870.55, COGS: 11635, Profit: 15235.55, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -2993,7 +2993,7 @@ export class PivotSalesData extends Array { Sales: 1289235, COGS: 247750, Profit: 1041485, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3009,7 +3009,7 @@ export class PivotSalesData extends Array { Sales: 531265, COGS: 156520, Profit: 374745, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3025,7 +3025,7 @@ export class PivotSalesData extends Array { Sales: 30330, COGS: 26200, Profit: 4130, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -3041,7 +3041,7 @@ export class PivotSalesData extends Array { Sales: 510368.75, COGS: 103320, Profit: 407048.75, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -3057,7 +3057,7 @@ export class PivotSalesData extends Array { Sales: 64857, COGS: 26630, Profit: 38227, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -3073,7 +3073,7 @@ export class PivotSalesData extends Array { Sales: 33243.75, COGS: 5550, Profit: 27693.75, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -3089,7 +3089,7 @@ export class PivotSalesData extends Array { Sales: 18254.25, COGS: 28610, Profit: 10355.75, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -3105,7 +3105,7 @@ export class PivotSalesData extends Array { Sales: 29831.25, COGS: 96840, Profit: 67008.75, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -3121,7 +3121,7 @@ export class PivotSalesData extends Array { Sales: 871815, COGS: 156520, Profit: 715295, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3137,7 +3137,7 @@ export class PivotSalesData extends Array { Sales: 45828, COGS: 28320, Profit: 17508, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -3153,7 +3153,7 @@ export class PivotSalesData extends Array { Sales: 33181, COGS: 15790, Profit: 17391, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -3169,7 +3169,7 @@ export class PivotSalesData extends Array { Sales: 132868.75, COGS: 103320, Profit: 29548.75, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -3185,7 +3185,7 @@ export class PivotSalesData extends Array { Sales: 45150, COGS: 312500, Profit: 267350, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -3201,7 +3201,7 @@ export class PivotSalesData extends Array { Sales: 55917, COGS: 26630, Profit: 29287, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -3217,7 +3217,7 @@ export class PivotSalesData extends Array { Sales: 16523.5, COGS: 2850, Profit: 13673.5, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -3233,7 +3233,7 @@ export class PivotSalesData extends Array { Sales: 20731.55, COGS: 12435, Profit: 8296.55, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -3249,7 +3249,7 @@ export class PivotSalesData extends Array { Sales: 237125, COGS: 351000, Profit: 113875, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -3265,7 +3265,7 @@ export class PivotSalesData extends Array { Sales: 433440, COGS: 143520, Profit: 289920, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -3281,7 +3281,7 @@ export class PivotSalesData extends Array { Sales: 1267350, COGS: 312500, Profit: 954850, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -3297,7 +3297,7 @@ export class PivotSalesData extends Array { Sales: 44474.1, COGS: 38010, Profit: 6464.1, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -3313,7 +3313,7 @@ export class PivotSalesData extends Array { Sales: 37999, COGS: 11175, Profit: 26824, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -3329,7 +3329,7 @@ export class PivotSalesData extends Array { Sales: 6905.4, COGS: 28440, Profit: 21534.6, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3345,7 +3345,7 @@ export class PivotSalesData extends Array { Sales: 41223.36, COGS: 1686, Profit: 39537.36, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -3361,7 +3361,7 @@ export class PivotSalesData extends Array { Sales: 46398, COGS: 20300, Profit: 26098, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -3377,7 +3377,7 @@ export class PivotSalesData extends Array { Sales: 665070, COGS: 254800, Profit: 410270, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -3393,7 +3393,7 @@ export class PivotSalesData extends Array { Sales: 732690, COGS: 379600, Profit: 353090, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -3409,7 +3409,7 @@ export class PivotSalesData extends Array { Sales: 24499.44, COGS: 8169, Profit: 16330.44, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -3425,7 +3425,7 @@ export class PivotSalesData extends Array { Sales: 630084, COGS: 388960, Profit: 241124, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3441,7 +3441,7 @@ export class PivotSalesData extends Array { Sales: 294985, COGS: 114240, Profit: 180745, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -3457,7 +3457,7 @@ export class PivotSalesData extends Array { Sales: 124087.5, COGS: 330600, Profit: 206512.5, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -3473,7 +3473,7 @@ export class PivotSalesData extends Array { Sales: 10668, COGS: 15300, Profit: 4632, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -3489,7 +3489,7 @@ export class PivotSalesData extends Array { Sales: 1265334, COGS: 388960, Profit: 876374, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3505,7 +3505,7 @@ export class PivotSalesData extends Array { Sales: 3493.84, COGS: 7490, Profit: 3996.16, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3521,7 +3521,7 @@ export class PivotSalesData extends Array { Sales: 57425.4, COGS: 28440, Profit: 28985.4, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3537,7 +3537,7 @@ export class PivotSalesData extends Array { Sales: 29162.84, COGS: 7490, Profit: 21672.84, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3553,7 +3553,7 @@ export class PivotSalesData extends Array { Sales: 255093.75, COGS: 238500, Profit: 16593.75, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -3569,7 +3569,7 @@ export class PivotSalesData extends Array { Sales: 127841, COGS: 436540, Profit: 308699, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -3585,7 +3585,7 @@ export class PivotSalesData extends Array { Sales: 20191.8, COGS: 21980, Profit: 1788.2, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -3601,7 +3601,7 @@ export class PivotSalesData extends Array { Sales: 55401.3, COGS: 17430, Profit: 37971.3, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -3617,7 +3617,7 @@ export class PivotSalesData extends Array { Sales: 5667.3, COGS: 11530, Profit: 5862.7, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -3633,7 +3633,7 @@ export class PivotSalesData extends Array { Sales: 13698.8, COGS: 10010, Profit: 3688.8, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -3649,7 +3649,7 @@ export class PivotSalesData extends Array { Sales: 11564.14, COGS: 6665, Profit: 4899.14, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -3665,7 +3665,7 @@ export class PivotSalesData extends Array { Sales: 25347.3, COGS: 11530, Profit: 13817.3, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -3681,7 +3681,7 @@ export class PivotSalesData extends Array { Sales: 3445.32, COGS: 2181, Profit: 1264.32, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -3697,7 +3697,7 @@ export class PivotSalesData extends Array { Sales: 45349.44, COGS: 5652, Profit: 39697.44, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -3713,7 +3713,7 @@ export class PivotSalesData extends Array { Sales: 51710.4, COGS: 7020, Profit: 44690.4, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -3729,7 +3729,7 @@ export class PivotSalesData extends Array { Sales: 2628.72, COGS: 7026, Profit: 4397.28, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -3745,7 +3745,7 @@ export class PivotSalesData extends Array { Sales: 14604.9, COGS: 12620, Profit: 1984.9, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -3761,7 +3761,7 @@ export class PivotSalesData extends Array { Sales: 28024.85, COGS: 5675, Profit: 22349.85, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3777,7 +3777,7 @@ export class PivotSalesData extends Array { Sales: 27549.97, COGS: 2735, Profit: 24814.97, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -3793,7 +3793,7 @@ export class PivotSalesData extends Array { Sales: 25285.82, COGS: 7910, Profit: 17375.82, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -3809,7 +3809,7 @@ export class PivotSalesData extends Array { Sales: 27759.66, COGS: 5215.5, Profit: 22544.16, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -3825,7 +3825,7 @@ export class PivotSalesData extends Array { Sales: 11565.82, COGS: 7910, Profit: 3655.82, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -3841,7 +3841,7 @@ export class PivotSalesData extends Array { Sales: 30754.85, COGS: 5675, Profit: 25079.85, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3857,7 +3857,7 @@ export class PivotSalesData extends Array { Sales: 392955.5, COGS: 457860, Profit: 64904.5, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -3873,7 +3873,7 @@ export class PivotSalesData extends Array { Sales: 475092, COGS: 112000, Profit: 363092, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3889,7 +3889,7 @@ export class PivotSalesData extends Array { Sales: 178899, COGS: 545250, Profit: 366351, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -3905,7 +3905,7 @@ export class PivotSalesData extends Array { Sales: 23593.6, COGS: 19760, Profit: 3833.6, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -3921,7 +3921,7 @@ export class PivotSalesData extends Array { Sales: 818799, COGS: 545250, Profit: 273549, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -3937,7 +3937,7 @@ export class PivotSalesData extends Array { Sales: 709458, COGS: 425500, Profit: 283958, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -3953,7 +3953,7 @@ export class PivotSalesData extends Array { Sales: 941292, COGS: 112000, Profit: 829292, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3969,7 +3969,7 @@ export class PivotSalesData extends Array { Sales: 479261.25, COGS: 421560, Profit: 57701.25, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -3985,7 +3985,7 @@ export class PivotSalesData extends Array { Sales: 56938.95, COGS: 21010, Profit: 35928.95, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -4001,7 +4001,7 @@ export class PivotSalesData extends Array { Sales: 2911, COGS: 15350, Profit: 12439, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -4017,7 +4017,7 @@ export class PivotSalesData extends Array { Sales: 204861, COGS: 414750, Profit: 209889, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -4033,7 +4033,7 @@ export class PivotSalesData extends Array { Sales: 77987.4, COGS: 6090, Profit: 71897.4, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -4049,7 +4049,7 @@ export class PivotSalesData extends Array { Sales: 293988.75, COGS: 250440, Profit: 43548.75, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -4065,7 +4065,7 @@ export class PivotSalesData extends Array { Sales: 47573.6, COGS: 19760, Profit: 27813.6, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -4081,7 +4081,7 @@ export class PivotSalesData extends Array { Sales: 314688, COGS: 343000, Profit: 28312, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -4097,7 +4097,7 @@ export class PivotSalesData extends Array { Sales: 43042.62, COGS: 9733.5, Profit: 33309.12, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -4113,7 +4113,7 @@ export class PivotSalesData extends Array { Sales: 336261, COGS: 239750, Profit: 96511, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -4129,7 +4129,7 @@ export class PivotSalesData extends Array { Sales: 612213, COGS: 686750, Profit: 74537, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -4145,7 +4145,7 @@ export class PivotSalesData extends Array { Sales: 38231.25, COGS: 197400, Profit: 159168.75, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -4161,7 +4161,7 @@ export class PivotSalesData extends Array { Sales: 23688, COGS: 747760, Profit: 724072, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -4177,7 +4177,7 @@ export class PivotSalesData extends Array { Sales: 17474.8, COGS: 11180, Profit: 6294.8, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -4193,7 +4193,7 @@ export class PivotSalesData extends Array { Sales: 860388, COGS: 343000, Profit: 517388, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -4209,7 +4209,7 @@ export class PivotSalesData extends Array { Sales: 10261.72, COGS: 2440, Profit: 7821.72, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -4225,7 +4225,7 @@ export class PivotSalesData extends Array { Sales: 31508.8, COGS: 12820, Profit: 18688.8, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4241,7 +4241,7 @@ export class PivotSalesData extends Array { Sales: 29599.08, COGS: 1285, Profit: 28314.08, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -4257,7 +4257,7 @@ export class PivotSalesData extends Array { Sales: 31488.8, COGS: 12820, Profit: 18668.8, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4273,7 +4273,7 @@ export class PivotSalesData extends Array { Sales: 365975, COGS: 184800, Profit: 181175, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -4289,7 +4289,7 @@ export class PivotSalesData extends Array { Sales: 49992, COGS: 4900, Profit: 45092, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -4305,7 +4305,7 @@ export class PivotSalesData extends Array { Sales: 551964, COGS: 354120, Profit: 197844, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -4321,7 +4321,7 @@ export class PivotSalesData extends Array { Sales: 43288.8, COGS: 25010, Profit: 18278.8, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -4337,7 +4337,7 @@ export class PivotSalesData extends Array { Sales: 81867.2, COGS: 7080, Profit: 74787.2, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4353,7 +4353,7 @@ export class PivotSalesData extends Array { Sales: 59508, COGS: 6450, Profit: 53058, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -4369,7 +4369,7 @@ export class PivotSalesData extends Array { Sales: 1270212, COGS: 390500, Profit: 879712, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -4385,7 +4385,7 @@ export class PivotSalesData extends Array { Sales: 22981.8, COGS: 7110, Profit: 15871.8, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -4401,7 +4401,7 @@ export class PivotSalesData extends Array { Sales: 323735, COGS: 133680, Profit: 190055, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -4417,7 +4417,7 @@ export class PivotSalesData extends Array { Sales: 23101.96, COGS: 6295, Profit: 16806.96, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -4433,7 +4433,7 @@ export class PivotSalesData extends Array { Sales: 19091.8, COGS: 5475, Profit: 13616.8, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -4449,7 +4449,7 @@ export class PivotSalesData extends Array { Sales: 57094.4, COGS: 13660, Profit: 43434.4, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4465,7 +4465,7 @@ export class PivotSalesData extends Array { Sales: 1192860, COGS: 615000, Profit: 577860, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4481,7 +4481,7 @@ export class PivotSalesData extends Array { Sales: 7719.32, COGS: 3390, Profit: 4329.32, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -4497,7 +4497,7 @@ export class PivotSalesData extends Array { Sales: 20560.12, COGS: 7990, Profit: 12570.12, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -4513,7 +4513,7 @@ export class PivotSalesData extends Array { Sales: 78505.6, COGS: 19340, Profit: 59165.6, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -4529,7 +4529,7 @@ export class PivotSalesData extends Array { Sales: 29471.2, COGS: 29930, Profit: 458.8, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -4545,7 +4545,7 @@ export class PivotSalesData extends Array { Sales: 553714, COGS: 354120, Profit: 199594, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -4561,7 +4561,7 @@ export class PivotSalesData extends Array { Sales: 27085.92, COGS: 1794, Profit: 25291.92, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -4577,7 +4577,7 @@ export class PivotSalesData extends Array { Sales: 22179.08, COGS: 14535, Profit: 7644.08, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4593,7 +4593,7 @@ export class PivotSalesData extends Array { Sales: 14706.72, COGS: 11690, Profit: 3016.72, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4609,7 +4609,7 @@ export class PivotSalesData extends Array { Sales: 1210560, COGS: 158750, Profit: 1051810, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -4625,7 +4625,7 @@ export class PivotSalesData extends Array { Sales: 911764, COGS: 149370, Profit: 762394, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -4641,7 +4641,7 @@ export class PivotSalesData extends Array { Sales: 26487.72, COGS: 11690, Profit: 14797.72, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4657,7 +4657,7 @@ export class PivotSalesData extends Array { Sales: 868532, COGS: 99060, Profit: 769472, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -4673,7 +4673,7 @@ export class PivotSalesData extends Array { Sales: 948934, COGS: 109720, Profit: 839214, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -4689,7 +4689,7 @@ export class PivotSalesData extends Array { Sales: 519684, COGS: 533500, Profit: 13816, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -4705,7 +4705,7 @@ export class PivotSalesData extends Array { Sales: 57147.2, COGS: 7080, Profit: 50067.2, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4721,7 +4721,7 @@ export class PivotSalesData extends Array { Sales: 11595.08, COGS: 14535, Profit: 2939.92, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4737,7 +4737,7 @@ export class PivotSalesData extends Array { Sales: 27134.4, COGS: 13660, Profit: 13474.4, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4753,7 +4753,7 @@ export class PivotSalesData extends Array { Sales: 207060, COGS: 615000, Profit: 407940, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4769,7 +4769,7 @@ export class PivotSalesData extends Array { Sales: 5468, COGS: 15200, Profit: 9732, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -4785,7 +4785,7 @@ export class PivotSalesData extends Array { Sales: 24541.8, COGS: 7110, Profit: 17431.8, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -4801,7 +4801,7 @@ export class PivotSalesData extends Array { Sales: 779460, COGS: 158750, Profit: 620710, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -4817,7 +4817,7 @@ export class PivotSalesData extends Array { Sales: 71461.6, COGS: 4365, Profit: 67096.6, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -4833,7 +4833,7 @@ export class PivotSalesData extends Array { Sales: 292362, COGS: 273500, Profit: 18862, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4849,7 +4849,7 @@ export class PivotSalesData extends Array { Sales: 547432.5, COGS: 950625, Profit: 403192.5, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -4865,7 +4865,7 @@ export class PivotSalesData extends Array { Sales: 409171, COGS: 433160, Profit: 23989, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -4881,7 +4881,7 @@ export class PivotSalesData extends Array { Sales: 12517.32, COGS: 6963, Profit: 5554.32, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -4897,7 +4897,7 @@ export class PivotSalesData extends Array { Sales: 113033.75, COGS: 335640, Profit: 222606.25, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -4913,7 +4913,7 @@ export class PivotSalesData extends Array { Sales: 276645, COGS: 641250, Profit: 364605, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -4929,7 +4929,7 @@ export class PivotSalesData extends Array { Sales: 875864.5, COGS: 628420, Profit: 247444.5, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -4945,7 +4945,7 @@ export class PivotSalesData extends Array { Sales: 49908.75, COGS: 36750, Profit: 13158.75, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -4961,7 +4961,7 @@ export class PivotSalesData extends Array { Sales: 855462, COGS: 273500, Profit: 581962, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4977,7 +4977,7 @@ export class PivotSalesData extends Array { Sales: 25658.55, COGS: 12270, Profit: 13388.55, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -4993,7 +4993,7 @@ export class PivotSalesData extends Array { Sales: 302352, COGS: 331000, Profit: 28648, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -5009,7 +5009,7 @@ export class PivotSalesData extends Array { Sales: 76283.75, COGS: 335640, Profit: 259356.25, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -5025,7 +5025,7 @@ export class PivotSalesData extends Array { Sales: 56744.25, COGS: 2450, Profit: 54294.25, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -5041,7 +5041,7 @@ export class PivotSalesData extends Array { Sales: 322075.5, COGS: 948375, Profit: 626299.5, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -5057,7 +5057,7 @@ export class PivotSalesData extends Array { Sales: 739679.5, COGS: 339820, Profit: 399859.5, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -5073,7 +5073,7 @@ export class PivotSalesData extends Array { Sales: 449746.25, COGS: 68040, Profit: 381706.25, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -5089,7 +5089,7 @@ export class PivotSalesData extends Array { Sales: 344762.5, COGS: 253200, Profit: 91562.5, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -5105,7 +5105,7 @@ export class PivotSalesData extends Array { Sales: 1148276.5, COGS: 329940, Profit: 818336.5, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -5121,7 +5121,7 @@ export class PivotSalesData extends Array { Sales: 29687.52, COGS: 5868, Profit: 23819.52, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -5137,7 +5137,7 @@ export class PivotSalesData extends Array { Sales: 103707, COGS: 664750, Profit: 561043, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -5153,7 +5153,7 @@ export class PivotSalesData extends Array { Sales: 418027.75, COGS: 351390, Profit: 66637.75, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -5169,7 +5169,7 @@ export class PivotSalesData extends Array { Sales: 52557.6, COGS: 2640, Profit: 49917.6, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -5185,7 +5185,7 @@ export class PivotSalesData extends Array { Sales: 762891, COGS: 466750, Profit: 296141, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -5201,7 +5201,7 @@ export class PivotSalesData extends Array { Sales: 52538.55, COGS: 12270, Profit: 40268.55, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -5217,7 +5217,7 @@ export class PivotSalesData extends Array { Sales: 221008.75, COGS: 105240, Profit: 115768.75, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -5233,7 +5233,7 @@ export class PivotSalesData extends Array { Sales: 983363.5, COGS: 538460, Profit: 444903.5, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -5249,7 +5249,7 @@ export class PivotSalesData extends Array { Sales: 953326.5, COGS: 329940, Profit: 623386.5, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -5265,7 +5265,7 @@ export class PivotSalesData extends Array { Sales: 27670.8, COGS: 16940, Profit: 10730.8, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -5281,7 +5281,7 @@ export class PivotSalesData extends Array { Sales: 24626.6, COGS: 6630, Profit: 17996.6, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -5297,7 +5297,7 @@ export class PivotSalesData extends Array { Sales: 7975.03, COGS: 4095, Profit: 3880.03, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -5313,7 +5313,7 @@ export class PivotSalesData extends Array { Sales: 26733.6, COGS: 4740, Profit: 21993.6, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -5329,7 +5329,7 @@ export class PivotSalesData extends Array { Sales: 13524.77, COGS: 2605, Profit: 10919.77, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -5345,7 +5345,7 @@ export class PivotSalesData extends Array { Sales: 55828.6, COGS: 9730, Profit: 46098.6, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -5361,7 +5361,7 @@ export class PivotSalesData extends Array { Sales: 32271.6, COGS: 10380, Profit: 21891.6, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -5377,7 +5377,7 @@ export class PivotSalesData extends Array { Sales: 20304.2, COGS: 1800, Profit: 18504.2, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -5393,7 +5393,7 @@ export class PivotSalesData extends Array { Sales: 10043.64, COGS: 5901, Profit: 4142.64, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -5409,7 +5409,7 @@ export class PivotSalesData extends Array { Sales: 6847.2, COGS: 26280, Profit: 19432.8, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -5425,7 +5425,7 @@ export class PivotSalesData extends Array { Sales: 25960.2, COGS: 1800, Profit: 24160.2, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -5441,7 +5441,7 @@ export class PivotSalesData extends Array { Sales: 27636.77, COGS: 2605, Profit: 25031.77, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -5457,7 +5457,7 @@ export class PivotSalesData extends Array { Sales: 17191.6, COGS: 10380, Profit: 6811.6, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -5473,7 +5473,7 @@ export class PivotSalesData extends Array { Sales: 35748.82, COGS: 16305, Profit: 19443.82, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -5489,7 +5489,7 @@ export class PivotSalesData extends Array { Sales: 27440, COGS: 16185, Profit: 11255, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -5505,7 +5505,7 @@ export class PivotSalesData extends Array { Sales: 55240, COGS: 13210, Profit: 42030, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -5521,7 +5521,7 @@ export class PivotSalesData extends Array { Sales: 21960, COGS: 21780, Profit: 180, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -5537,7 +5537,7 @@ export class PivotSalesData extends Array { Sales: 10785, COGS: 8880, Profit: 1905, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -5553,7 +5553,7 @@ export class PivotSalesData extends Array { Sales: 53640, COGS: 24700, Profit: 28940, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -5569,7 +5569,7 @@ export class PivotSalesData extends Array { Sales: 1547700, COGS: 393380, Profit: 1154320, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -5585,7 +5585,7 @@ export class PivotSalesData extends Array { Sales: 54735, COGS: 9210, Profit: 45525, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -5601,7 +5601,7 @@ export class PivotSalesData extends Array { Sales: 50064, COGS: 7554, Profit: 42510, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -5617,7 +5617,7 @@ export class PivotSalesData extends Array { Sales: 76820, COGS: 18990, Profit: 57830, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -5633,7 +5633,7 @@ export class PivotSalesData extends Array { Sales: 44712, COGS: 4635, Profit: 40077, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -5649,7 +5649,7 @@ export class PivotSalesData extends Array { Sales: 39375, COGS: 24700, Profit: 14675, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -5665,7 +5665,7 @@ export class PivotSalesData extends Array { Sales: 244750, COGS: 319860, Profit: 75110, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -5681,7 +5681,7 @@ export class PivotSalesData extends Array { Sales: 981300, COGS: 239500, Profit: 741800, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -5697,7 +5697,7 @@ export class PivotSalesData extends Array { Sales: 14637, COGS: 10730, Profit: 3907, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -5713,7 +5713,7 @@ export class PivotSalesData extends Array { Sales: 316250, COGS: 41400, Profit: 274850, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -5729,7 +5729,7 @@ export class PivotSalesData extends Array { Sales: 42375, COGS: 6150, Profit: 36225, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -5745,7 +5745,7 @@ export class PivotSalesData extends Array { Sales: 50260, COGS: 2920, Profit: 47340, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -5761,7 +5761,7 @@ export class PivotSalesData extends Array { Sales: 13245, COGS: 9740, Profit: 3505, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -5777,7 +5777,7 @@ export class PivotSalesData extends Array { Sales: 25044, COGS: 7554, Profit: 17490, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -5793,7 +5793,7 @@ export class PivotSalesData extends Array { Sales: 897050, COGS: 261560, Profit: 635490, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -5809,7 +5809,7 @@ export class PivotSalesData extends Array { Sales: 34152, COGS: 1101, Profit: 33051, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -5825,7 +5825,7 @@ export class PivotSalesData extends Array { Sales: 6979, COGS: 4415, Profit: 2564, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -5841,7 +5841,7 @@ export class PivotSalesData extends Array { Sales: 51315, COGS: 5490, Profit: 45825, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -5857,7 +5857,7 @@ export class PivotSalesData extends Array { Sales: 1050000, COGS: 5490, Profit: 1044510, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -5873,7 +5873,7 @@ export class PivotSalesData extends Array { Sales: 687300, COGS: 197000, Profit: 490300, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -5889,7 +5889,7 @@ export class PivotSalesData extends Array { Sales: 34350, COGS: 24720, Profit: 9630, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -5905,7 +5905,7 @@ export class PivotSalesData extends Array { Sales: 14931, COGS: 5715, Profit: 9216, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -5921,7 +5921,7 @@ export class PivotSalesData extends Array { Sales: 1216250, COGS: 448500, Profit: 767750, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -5937,7 +5937,7 @@ export class PivotSalesData extends Array { Sales: 44232, COGS: 2736, Profit: 41496, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -5953,7 +5953,7 @@ export class PivotSalesData extends Array { Sales: 49785, COGS: 21520, Profit: 28265, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -5969,7 +5969,7 @@ export class PivotSalesData extends Array { Sales: 72340, COGS: 18170, Profit: 54170, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -5985,7 +5985,7 @@ export class PivotSalesData extends Array { Sales: 443100, COGS: 393380, Profit: 49720, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -6001,7 +6001,7 @@ export class PivotSalesData extends Array { Sales: 6258, COGS: 7465, Profit: 1207, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -6017,7 +6017,7 @@ export class PivotSalesData extends Array { Sales: 340625, COGS: 216480, Profit: 124145, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -6033,7 +6033,7 @@ export class PivotSalesData extends Array { Sales: 36732, COGS: 6483, Profit: 30249, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -6049,7 +6049,7 @@ export class PivotSalesData extends Array { Sales: 1385300, COGS: 261560, Profit: 1123740, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -6065,7 +6065,7 @@ export class PivotSalesData extends Array { Sales: 47040, COGS: 4635, Profit: 42405, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -6081,7 +6081,7 @@ export class PivotSalesData extends Array { Sales: 422625, COGS: 338520, Profit: 84105, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -6097,7 +6097,7 @@ export class PivotSalesData extends Array { Sales: 136750, COGS: 41400, Profit: 95350, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -6113,7 +6113,7 @@ export class PivotSalesData extends Array { Sales: 1292100, COGS: 500250, Profit: 791850, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -6129,7 +6129,7 @@ export class PivotSalesData extends Array { Sales: 10536, COGS: 8514, Profit: 2022, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -6145,7 +6145,7 @@ export class PivotSalesData extends Array { Sales: 7440, COGS: 21780, Profit: 14340, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -6161,7 +6161,7 @@ export class PivotSalesData extends Array { Sales: 50505, COGS: 8880, Profit: 41625, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -6177,7 +6177,7 @@ export class PivotSalesData extends Array { Sales: 1358000, COGS: 397020, Profit: 960980, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -6193,7 +6193,7 @@ export class PivotSalesData extends Array { Sales: 616500, COGS: 537750, Profit: 78750, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -6209,7 +6209,7 @@ export class PivotSalesData extends Array { Sales: 80820, COGS: 18170, Profit: 62650, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -6225,7 +6225,7 @@ export class PivotSalesData extends Array { Sales: 1132950, COGS: 715000, Profit: 417950, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -6241,7 +6241,7 @@ export class PivotSalesData extends Array { Sales: 7560, COGS: 5859, Profit: 1701, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -6257,7 +6257,7 @@ export class PivotSalesData extends Array { Sales: 526250, COGS: 506340, Profit: 19910, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -6273,7 +6273,7 @@ export class PivotSalesData extends Array { Sales: 22540, COGS: 18990, Profit: 3550, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -6289,7 +6289,7 @@ export class PivotSalesData extends Array { Sales: 24066, COGS: 8430, Profit: 15636, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -6305,7 +6305,7 @@ export class PivotSalesData extends Array { Sales: 24180, COGS: 6423, Profit: 17757, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -6321,7 +6321,7 @@ export class PivotSalesData extends Array { Sales: 17738, COGS: 5715, Profit: 12023, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -6337,7 +6337,7 @@ export class PivotSalesData extends Array { Sales: 20760, COGS: 6150, Profit: 14610, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -6353,7 +6353,7 @@ export class PivotSalesData extends Array { Sales: 24650.85, COGS: 19725, Profit: 4925.85, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -6369,7 +6369,7 @@ export class PivotSalesData extends Array { Sales: 27000.6, COGS: 22960, Profit: 4040.6, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -6385,7 +6385,7 @@ export class PivotSalesData extends Array { Sales: 19492.9, COGS: 5150, Profit: 14342.9, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -6401,7 +6401,7 @@ export class PivotSalesData extends Array { Sales: 3154.27, COGS: 3195, Profit: 40.73, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -6417,7 +6417,7 @@ export class PivotSalesData extends Array { Sales: 26402.18, COGS: 6630, Profit: 19772.18, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -6433,7 +6433,7 @@ export class PivotSalesData extends Array { Sales: 8753.04, COGS: 5574, Profit: 3179.04, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -6449,7 +6449,7 @@ export class PivotSalesData extends Array { Sales: 353115, COGS: 314600, Profit: 38515, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -6465,7 +6465,7 @@ export class PivotSalesData extends Array { Sales: 14354.97, COGS: 12645, Profit: 1709.97, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -6481,7 +6481,7 @@ export class PivotSalesData extends Array { Sales: 51618.6, COGS: 4335, Profit: 47283.6, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -6497,7 +6497,7 @@ export class PivotSalesData extends Array { Sales: 331337.5, COGS: 39600, Profit: 291737.5, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -6513,7 +6513,7 @@ export class PivotSalesData extends Array { Sales: 49767.48, COGS: 8013, Profit: 41754.48, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -6529,7 +6529,7 @@ export class PivotSalesData extends Array { Sales: 20008.08, COGS: 2298, Profit: 17710.08, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -6545,7 +6545,7 @@ export class PivotSalesData extends Array { Sales: 470118, COGS: 123500, Profit: 346618, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -6561,7 +6561,7 @@ export class PivotSalesData extends Array { Sales: 1302710.5, COGS: 363220, Profit: 939490.5, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -6577,7 +6577,7 @@ export class PivotSalesData extends Array { Sales: 662357.5, COGS: 560300, Profit: 102057.5, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -6593,7 +6593,7 @@ export class PivotSalesData extends Array { Sales: 40797.9, COGS: 22140, Profit: 18657.9, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -6609,7 +6609,7 @@ export class PivotSalesData extends Array { Sales: 442797, COGS: 575250, Profit: 132453, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -6625,7 +6625,7 @@ export class PivotSalesData extends Array { Sales: 75164.9, COGS: 13755, Profit: 61409.9, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -6641,7 +6641,7 @@ export class PivotSalesData extends Array { Sales: 7655.9, COGS: 9150, Profit: 1494.1, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -6657,7 +6657,7 @@ export class PivotSalesData extends Array { Sales: 509406, COGS: 624500, Profit: 115094, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -6673,7 +6673,7 @@ export class PivotSalesData extends Array { Sales: 52046.25, COGS: 79560, Profit: 27513.75, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -6689,7 +6689,7 @@ export class PivotSalesData extends Array { Sales: 35292.9, COGS: 15140, Profit: 20152.9, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -6705,7 +6705,7 @@ export class PivotSalesData extends Array { Sales: 10787.52, COGS: 22462.5, Profit: 11674.98, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -6721,7 +6721,7 @@ export class PivotSalesData extends Array { Sales: 422341.25, COGS: 87240, Profit: 335101.25, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -6737,7 +6737,7 @@ export class PivotSalesData extends Array { Sales: 105516.25, COGS: 94440, Profit: 11076.25, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -6753,7 +6753,7 @@ export class PivotSalesData extends Array { Sales: 345596.25, COGS: 218760, Profit: 126836.25, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -6769,7 +6769,7 @@ export class PivotSalesData extends Array { Sales: 40147.95, COGS: 7470, Profit: 32677.95, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -6785,7 +6785,7 @@ export class PivotSalesData extends Array { Sales: 52624.08, COGS: 2298, Profit: 50326.08, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -6801,7 +6801,7 @@ export class PivotSalesData extends Array { Sales: 1216185, COGS: 726250, Profit: 489935, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -6817,7 +6817,7 @@ export class PivotSalesData extends Array { Sales: 978057.5, COGS: 560300, Profit: 417757.5, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -6833,7 +6833,7 @@ export class PivotSalesData extends Array { Sales: 85107.2, COGS: 38640, Profit: 46467.2, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -6849,7 +6849,7 @@ export class PivotSalesData extends Array { Sales: 19966.66, COGS: 1810, Profit: 18156.66, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -6865,7 +6865,7 @@ export class PivotSalesData extends Array { Sales: 174721.25, COGS: 110760, Profit: 63961.25, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -6881,7 +6881,7 @@ export class PivotSalesData extends Array { Sales: 480421.25, COGS: 79560, Profit: 400861.25, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -6897,7 +6897,7 @@ export class PivotSalesData extends Array { Sales: 19845.56, COGS: 10460, Profit: 9385.56, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -6913,7 +6913,7 @@ export class PivotSalesData extends Array { Sales: 8836.59, COGS: 1315, Profit: 7521.59, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -6929,7 +6929,7 @@ export class PivotSalesData extends Array { Sales: 1358897.75, COGS: 245310, Profit: 1113587.75, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -6945,7 +6945,7 @@ export class PivotSalesData extends Array { Sales: 382591.25, COGS: 87240, Profit: 295351.25, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -6961,7 +6961,7 @@ export class PivotSalesData extends Array { Sales: 271641.25, COGS: 94440, Profit: 177201.25, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -6977,7 +6977,7 @@ export class PivotSalesData extends Array { Sales: 403842, COGS: 246500, Profit: 157342, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -6993,7 +6993,7 @@ export class PivotSalesData extends Array { Sales: 762018, COGS: 123500, Profit: 638518, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -7009,7 +7009,7 @@ export class PivotSalesData extends Array { Sales: 630010.5, COGS: 363220, Profit: 266790.5, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -7025,7 +7025,7 @@ export class PivotSalesData extends Array { Sales: 184695, COGS: 209280, Profit: 24585, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -7041,7 +7041,7 @@ export class PivotSalesData extends Array { Sales: 13609.32, COGS: 5967, Profit: 7642.32, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -7057,7 +7057,7 @@ export class PivotSalesData extends Array { Sales: 62651.85, COGS: 3210, Profit: 59441.85, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -7073,7 +7073,7 @@ export class PivotSalesData extends Array { Sales: 181018.75, COGS: 89100, Profit: 91918.75, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -7089,7 +7089,7 @@ export class PivotSalesData extends Array { Sales: 2269.2, COGS: 3885, Profit: 1615.8, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -7105,7 +7105,7 @@ export class PivotSalesData extends Array { Sales: 1228416, COGS: 53500, Profit: 1174916, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -7121,7 +7121,7 @@ export class PivotSalesData extends Array { Sales: 18319.7, COGS: 10725, Profit: 7594.7, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -7137,7 +7137,7 @@ export class PivotSalesData extends Array { Sales: 178136, COGS: 741520, Profit: 563384, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7153,7 +7153,7 @@ export class PivotSalesData extends Array { Sales: 38785.92, COGS: 3426, Profit: 35359.92, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -7169,7 +7169,7 @@ export class PivotSalesData extends Array { Sales: 14813.6, COGS: 15660, Profit: 846.4, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -7185,7 +7185,7 @@ export class PivotSalesData extends Array { Sales: 13454.4, COGS: 2070, Profit: 11384.4, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -7201,7 +7201,7 @@ export class PivotSalesData extends Array { Sales: 474100, COGS: 199200, Profit: 274900, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -7217,7 +7217,7 @@ export class PivotSalesData extends Array { Sales: 17186.1, COGS: 23630, Profit: 6443.9, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -7233,7 +7233,7 @@ export class PivotSalesData extends Array { Sales: 753492, COGS: 229500, Profit: 523992, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -7249,7 +7249,7 @@ export class PivotSalesData extends Array { Sales: 1024932, COGS: 432000, Profit: 592932, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -7265,7 +7265,7 @@ export class PivotSalesData extends Array { Sales: 36433.92, COGS: 3426, Profit: 33007.92, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -7281,7 +7281,7 @@ export class PivotSalesData extends Array { Sales: 492970, COGS: 79440, Profit: 413530, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -7297,7 +7297,7 @@ export class PivotSalesData extends Array { Sales: 41017.2, COGS: 3885, Profit: 37132.2, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -7313,7 +7313,7 @@ export class PivotSalesData extends Array { Sales: 546477.5, COGS: 97080, Profit: 449397.5, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -7329,7 +7329,7 @@ export class PivotSalesData extends Array { Sales: 257887.5, COGS: 257400, Profit: 487.5, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -7345,7 +7345,7 @@ export class PivotSalesData extends Array { Sales: 9159.6, COGS: 5355, Profit: 3804.6, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -7361,7 +7361,7 @@ export class PivotSalesData extends Array { Sales: 934704, COGS: 479000, Profit: 455704, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7377,7 +7377,7 @@ export class PivotSalesData extends Array { Sales: 1417836, COGS: 741520, Profit: 676316, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7393,7 +7393,7 @@ export class PivotSalesData extends Array { Sales: 463177.5, COGS: 327480, Profit: 135697.5, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7409,7 +7409,7 @@ export class PivotSalesData extends Array { Sales: 5077.5, COGS: 19250, Profit: 14172.5, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -7425,7 +7425,7 @@ export class PivotSalesData extends Array { Sales: 14488.18, COGS: 10065, Profit: 4423.18, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -7441,7 +7441,7 @@ export class PivotSalesData extends Array { Sales: 27754.8, COGS: 3165, Profit: 24589.8, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7457,7 +7457,7 @@ export class PivotSalesData extends Array { Sales: 6699.84, COGS: 3252, Profit: 3447.84, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7473,7 +7473,7 @@ export class PivotSalesData extends Array { Sales: 51573.6, COGS: 15660, Profit: 35913.6, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -7489,7 +7489,7 @@ export class PivotSalesData extends Array { Sales: 538538, COGS: 771160, Profit: 232622, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -7505,7 +7505,7 @@ export class PivotSalesData extends Array { Sales: 490511, COGS: 748020, Profit: 257509, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -7521,7 +7521,7 @@ export class PivotSalesData extends Array { Sales: 408477.5, COGS: 97080, Profit: 311397.5, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -7537,7 +7537,7 @@ export class PivotSalesData extends Array { Sales: 144262.5, COGS: 257400, Profit: 113137.5, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -7553,7 +7553,7 @@ export class PivotSalesData extends Array { Sales: 45034.8, COGS: 3165, Profit: 41869.8, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7569,7 +7569,7 @@ export class PivotSalesData extends Array { Sales: 45842.4, COGS: 5440, Profit: 40402.4, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -7585,7 +7585,7 @@ export class PivotSalesData extends Array { Sales: 30603.84, COGS: 3252, Profit: 27351.84, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7601,7 +7601,7 @@ export class PivotSalesData extends Array { Sales: 38345, COGS: 79440, Profit: 41095, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -7617,7 +7617,7 @@ export class PivotSalesData extends Array { Sales: 636516, COGS: 53500, Profit: 583016, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -7633,7 +7633,7 @@ export class PivotSalesData extends Array { Sales: 1126111, COGS: 748020, Profit: 378091, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -7649,7 +7649,7 @@ export class PivotSalesData extends Array { Sales: 440927.5, COGS: 327480, Profit: 113447.5, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7665,7 +7665,7 @@ export class PivotSalesData extends Array { Sales: 272188, COGS: 69160, Profit: 203028, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -7681,7 +7681,7 @@ export class PivotSalesData extends Array { Sales: 407120, COGS: 504400, Profit: 97280, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -7697,7 +7697,7 @@ export class PivotSalesData extends Array { Sales: 1215246, COGS: 64750, Profit: 1150496, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -7713,7 +7713,7 @@ export class PivotSalesData extends Array { Sales: 636594, COGS: 275250, Profit: 361344, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -7729,7 +7729,7 @@ export class PivotSalesData extends Array { Sales: 432060, COGS: 273120, Profit: 158940, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -7745,7 +7745,7 @@ export class PivotSalesData extends Array { Sales: 468188, COGS: 771160, Profit: 302972, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -7761,7 +7761,7 @@ export class PivotSalesData extends Array { Sales: 13085.6, COGS: 12360, Profit: 725.6, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -7777,7 +7777,7 @@ export class PivotSalesData extends Array { Sales: 46643.6, COGS: 9410, Profit: 37233.6, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -7793,7 +7793,7 @@ export class PivotSalesData extends Array { Sales: 601404, COGS: 479000, Profit: 122404, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7809,7 +7809,7 @@ export class PivotSalesData extends Array { Sales: 429711.88, COGS: 509220, Profit: 79508.13, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -7825,7 +7825,7 @@ export class PivotSalesData extends Array { Sales: 26472, COGS: 25800, Profit: 672, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -7841,7 +7841,7 @@ export class PivotSalesData extends Array { Sales: 616899, COGS: 172250, Profit: 444649, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -7857,7 +7857,7 @@ export class PivotSalesData extends Array { Sales: 43015.08, COGS: 5841, Profit: 37174.08, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -7873,7 +7873,7 @@ export class PivotSalesData extends Array { Sales: 12933.12, COGS: 2724, Profit: 10209.12, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -7889,7 +7889,7 @@ export class PivotSalesData extends Array { Sales: 20308.82, COGS: 9790, Profit: 10518.82, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -7905,7 +7905,7 @@ export class PivotSalesData extends Array { Sales: 13727.64, COGS: 5703, Profit: 8024.64, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -7921,7 +7921,7 @@ export class PivotSalesData extends Array { Sales: 16132.76, COGS: 2720, Profit: 13412.76, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -7937,7 +7937,7 @@ export class PivotSalesData extends Array { Sales: 1255131.5, COGS: 467220, Profit: 787911.5, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -7953,7 +7953,7 @@ export class PivotSalesData extends Array { Sales: 491673.75, COGS: 154440, Profit: 337233.75, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7969,7 +7969,7 @@ export class PivotSalesData extends Array { Sales: 478352.5, COGS: 204720, Profit: 273632.5, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7985,7 +7985,7 @@ export class PivotSalesData extends Array { Sales: 661489.5, COGS: 608625, Profit: 52864.5, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -8001,7 +8001,7 @@ export class PivotSalesData extends Array { Sales: 127722.5, COGS: 212880, Profit: 85157.5, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -8017,7 +8017,7 @@ export class PivotSalesData extends Array { Sales: 47915.64, COGS: 5703, Profit: 42212.64, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -8033,7 +8033,7 @@ export class PivotSalesData extends Array { Sales: 904299, COGS: 172250, Profit: 732049, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -8049,7 +8049,7 @@ export class PivotSalesData extends Array { Sales: 448612.5, COGS: 188400, Profit: 260212.5, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -8065,7 +8065,7 @@ export class PivotSalesData extends Array { Sales: 16054.98, COGS: 4108.5, Profit: 11946.48, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -8081,7 +8081,7 @@ export class PivotSalesData extends Array { Sales: 553966.25, COGS: 241080, Profit: 312886.25, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -8097,7 +8097,7 @@ export class PivotSalesData extends Array { Sales: 10584.75, COGS: 19450, Profit: 8865.25, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -8113,7 +8113,7 @@ export class PivotSalesData extends Array { Sales: 213173.75, COGS: 154440, Profit: 58733.75, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -8129,7 +8129,7 @@ export class PivotSalesData extends Array { Sales: 286227.5, COGS: 204720, Profit: 81507.5, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -8145,7 +8145,7 @@ export class PivotSalesData extends Array { Sales: 471841.25, COGS: 241080, Profit: 230761.25, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -8161,7 +8161,7 @@ export class PivotSalesData extends Array { Sales: 322704, COGS: 711000, Profit: 388296, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -8177,7 +8177,7 @@ export class PivotSalesData extends Array { Sales: 9822.24, COGS: 5748, Profit: 4074.24, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -8193,7 +8193,7 @@ export class PivotSalesData extends Array { Sales: 207237.5, COGS: 188400, Profit: 18837.5, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -8209,7 +8209,7 @@ export class PivotSalesData extends Array { Sales: 524634, COGS: 468500, Profit: 56134, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -8225,7 +8225,7 @@ export class PivotSalesData extends Array { Sales: 118909, COGS: 426920, Profit: 308011, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -8241,7 +8241,7 @@ export class PivotSalesData extends Array { Sales: 40299.75, COGS: 19450, Profit: 20849.75, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -8257,7 +8257,7 @@ export class PivotSalesData extends Array { Sales: 28681.4, COGS: 8310, Profit: 20371.4, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -8273,7 +8273,7 @@ export class PivotSalesData extends Array { Sales: 27196.4, COGS: 8800, Profit: 18396.4, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -8289,7 +8289,7 @@ export class PivotSalesData extends Array { Sales: 82409.7, COGS: 38505, Profit: 43904.7, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -8305,7 +8305,7 @@ export class PivotSalesData extends Array { Sales: 42631.56, COGS: 7437, Profit: 35194.56, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -8321,7 +8321,7 @@ export class PivotSalesData extends Array { Sales: 25121.4, COGS: 20310, Profit: 4811.4, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -8337,7 +8337,7 @@ export class PivotSalesData extends Array { Sales: 3386.4, COGS: 20310, Profit: 16923.6, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -8353,7 +8353,7 @@ export class PivotSalesData extends Array { Sales: 65978.4, COGS: 22610, Profit: 43368.4, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -8369,7 +8369,7 @@ export class PivotSalesData extends Array { Sales: 42751.2, COGS: 7360, Profit: 35391.2, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -8385,7 +8385,7 @@ export class PivotSalesData extends Array { Sales: 7160.72, COGS: 14255, Profit: 7094.28, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -8401,7 +8401,7 @@ export class PivotSalesData extends Array { Sales: 342348, COGS: 505250, Profit: 162902, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -8417,7 +8417,7 @@ export class PivotSalesData extends Array { Sales: 167314, COGS: 71240, Profit: 96074, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -8433,7 +8433,7 @@ export class PivotSalesData extends Array { Sales: 60814.8, COGS: 19670, Profit: 41144.8, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -8449,7 +8449,7 @@ export class PivotSalesData extends Array { Sales: 800592, COGS: 464750, Profit: 335842, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -8465,7 +8465,7 @@ export class PivotSalesData extends Array { Sales: 25094.72, COGS: 14255, Profit: 10839.72, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -8481,7 +8481,7 @@ export class PivotSalesData extends Array { Sales: 1313748, COGS: 505250, Profit: 808498, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -8497,7 +8497,7 @@ export class PivotSalesData extends Array { Sales: 148310, COGS: 136560, Profit: 11750, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -8513,7 +8513,7 @@ export class PivotSalesData extends Array { Sales: 16911.72, COGS: 21255, Profit: 4343.28, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -8529,7 +8529,7 @@ export class PivotSalesData extends Array { Sales: 162525, COGS: 95400, Profit: 67125, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -8545,7 +8545,7 @@ export class PivotSalesData extends Array { Sales: 1329126, COGS: 353625, Profit: 975501, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -8561,7 +8561,7 @@ export class PivotSalesData extends Array { Sales: 1123584, COGS: 729500, Profit: 394084, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -8577,7 +8577,7 @@ export class PivotSalesData extends Array { Sales: 569450, COGS: 897000, Profit: 327550, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -8593,7 +8593,7 @@ export class PivotSalesData extends Array { Sales: 426685, COGS: 358560, Profit: 68125, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -8609,7 +8609,7 @@ export class PivotSalesData extends Array { Sales: 30109.2, COGS: 2180, Profit: 27929.2, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -8625,7 +8625,7 @@ export class PivotSalesData extends Array { Sales: 57100.8, COGS: 20740, Profit: 36360.8, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -8641,7 +8641,7 @@ export class PivotSalesData extends Array { Sales: 66195.2, COGS: 10560, Profit: 55635.2, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -8657,7 +8657,7 @@ export class PivotSalesData extends Array { Sales: 65732.4, COGS: 6710, Profit: 59022.4, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -8673,7 +8673,7 @@ export class PivotSalesData extends Array { Sales: 48936.6, COGS: 15140, Profit: 33796.6, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -8689,7 +8689,7 @@ export class PivotSalesData extends Array { Sales: 846664, COGS: 71240, Profit: 775424, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -8705,7 +8705,7 @@ export class PivotSalesData extends Array { Sales: 61185, COGS: 136560, Profit: 75375, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -8721,7 +8721,7 @@ export class PivotSalesData extends Array { Sales: 17572.8, COGS: 4395, Profit: 13177.8, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -8737,7 +8737,7 @@ export class PivotSalesData extends Array { Sales: 70503.2, COGS: 26460, Profit: 44043.2, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -8753,7 +8753,7 @@ export class PivotSalesData extends Array { Sales: 593222, COGS: 566020, Profit: 27202, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -8769,7 +8769,7 @@ export class PivotSalesData extends Array { Sales: 3748.32, COGS: 2598, Profit: 1150.32, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -8785,7 +8785,7 @@ export class PivotSalesData extends Array { Sales: 1446564, COGS: 90740, Profit: 1355824, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -8801,7 +8801,7 @@ export class PivotSalesData extends Array { Sales: 1197672, COGS: 566020, Profit: 631652, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -8817,7 +8817,7 @@ export class PivotSalesData extends Array { Sales: 40701.6, COGS: 15140, Profit: 25561.6, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -8833,7 +8833,7 @@ export class PivotSalesData extends Array { Sales: 1003940, COGS: 484900, Profit: 519040, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -8849,7 +8849,7 @@ export class PivotSalesData extends Array { Sales: 499255, COGS: 128880, Profit: 370375, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -8865,7 +8865,7 @@ export class PivotSalesData extends Array { Sales: 1424402, COGS: 495820, Profit: 928582, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -8881,7 +8881,7 @@ export class PivotSalesData extends Array { Sales: 61442.4, COGS: 6710, Profit: 54732.4, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -8897,7 +8897,7 @@ export class PivotSalesData extends Array { Sales: 443058, COGS: 462280, Profit: 19222, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -8913,7 +8913,7 @@ export class PivotSalesData extends Array { Sales: 3787.35, COGS: 5795, Profit: 2007.65, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -8929,7 +8929,7 @@ export class PivotSalesData extends Array { Sales: 4594.8, COGS: 6860, Profit: 2265.2, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -8945,7 +8945,7 @@ export class PivotSalesData extends Array { Sales: 2516.85, COGS: 11745, Profit: 9228.15, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -8961,7 +8961,7 @@ export class PivotSalesData extends Array { Sales: 15333.85, COGS: 13445, Profit: 1888.85, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -8977,7 +8977,7 @@ export class PivotSalesData extends Array { Sales: 6641.4, COGS: 7293, Profit: 651.6, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -8993,7 +8993,7 @@ export class PivotSalesData extends Array { Sales: 34421.4, COGS: 7293, Profit: 27128.4, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -9009,7 +9009,7 @@ export class PivotSalesData extends Array { Sales: 6562.85, COGS: 13445, Profit: 6882.15, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -9025,7 +9025,7 @@ export class PivotSalesData extends Array { Sales: 6746.95, COGS: 8415, Profit: 1668.05, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -9041,7 +9041,7 @@ export class PivotSalesData extends Array { Sales: 4954.2, COGS: 3369, Profit: 1585.2, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -9057,7 +9057,7 @@ export class PivotSalesData extends Array { Sales: 5222.35, COGS: 5795, Profit: 572.65, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -9073,7 +9073,7 @@ export class PivotSalesData extends Array { Sales: 49761, COGS: 5595, Profit: 44166, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -9089,7 +9089,7 @@ export class PivotSalesData extends Array { Sales: 23042.4, COGS: 3348, Profit: 19694.4, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -9105,7 +9105,7 @@ export class PivotSalesData extends Array { Sales: 38117, COGS: 15630, Profit: 22487, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -9121,7 +9121,7 @@ export class PivotSalesData extends Array { Sales: 129135, COGS: 247750, Profit: 118615, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -9137,7 +9137,7 @@ export class PivotSalesData extends Array { Sales: 24501.4, COGS: 5080, Profit: 19421.4, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -9153,7 +9153,7 @@ export class PivotSalesData extends Array { Sales: 15981.75, COGS: 27910, Profit: 11928.25, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -9169,7 +9169,7 @@ export class PivotSalesData extends Array { Sales: 17160.5, COGS: 2850, Profit: 14310.5, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -9185,7 +9185,7 @@ export class PivotSalesData extends Array { Sales: 19611.55, COGS: 12435, Profit: 7176.55, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -9201,7 +9201,7 @@ export class PivotSalesData extends Array { Sales: 1099271.25, COGS: 359970, Profit: 739301.25, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -9217,7 +9217,7 @@ export class PivotSalesData extends Array { Sales: 379956.25, COGS: 435240, Profit: 55283.75, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -9233,7 +9233,7 @@ export class PivotSalesData extends Array { Sales: 823550, COGS: 187200, Profit: 636350, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -9249,7 +9249,7 @@ export class PivotSalesData extends Array { Sales: 12118.8, COGS: 7026, Profit: 5092.8, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -9265,7 +9265,7 @@ export class PivotSalesData extends Array { Sales: 79200, COGS: 275000, Profit: 195800, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -9281,7 +9281,7 @@ export class PivotSalesData extends Array { Sales: 30897, COGS: 13030, Profit: 17867, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -9297,7 +9297,7 @@ export class PivotSalesData extends Array { Sales: 493800, COGS: 359040, Profit: 134760, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -9313,7 +9313,7 @@ export class PivotSalesData extends Array { Sales: 111593.75, COGS: 286200, Profit: 174606.25, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -9329,7 +9329,7 @@ export class PivotSalesData extends Array { Sales: 976995, COGS: 401750, Profit: 575245, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -9345,7 +9345,7 @@ export class PivotSalesData extends Array { Sales: 26870.55, COGS: 11635, Profit: 15235.55, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -9361,7 +9361,7 @@ export class PivotSalesData extends Array { Sales: 1289235, COGS: 247750, Profit: 1041485, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -9377,7 +9377,7 @@ export class PivotSalesData extends Array { Sales: 531265, COGS: 156520, Profit: 374745, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -9393,7 +9393,7 @@ export class PivotSalesData extends Array { Sales: 30330, COGS: 26200, Profit: 4130, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -9409,7 +9409,7 @@ export class PivotSalesData extends Array { Sales: 1304660, COGS: 319280, Profit: 985380, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -9425,7 +9425,7 @@ export class PivotSalesData extends Array { Sales: 85891, COGS: 13890, Profit: 72001, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -9441,7 +9441,7 @@ export class PivotSalesData extends Array { Sales: 510368.75, COGS: 103320, Profit: 407048.75, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -9457,7 +9457,7 @@ export class PivotSalesData extends Array { Sales: 163475, COGS: 84480, Profit: 78995, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -9473,7 +9473,7 @@ export class PivotSalesData extends Array { Sales: 3098, COGS: 18020, Profit: 14922, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -9489,7 +9489,7 @@ export class PivotSalesData extends Array { Sales: 64857, COGS: 26630, Profit: 38227, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -9505,7 +9505,7 @@ export class PivotSalesData extends Array { Sales: 9059.4, COGS: 10680, Profit: 1620.6, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -9521,7 +9521,7 @@ export class PivotSalesData extends Array { Sales: 50658, COGS: 21160, Profit: 29498, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -9537,7 +9537,7 @@ export class PivotSalesData extends Array { Sales: 33243.75, COGS: 5550, Profit: 27693.75, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -9553,7 +9553,7 @@ export class PivotSalesData extends Array { Sales: 18254.25, COGS: 28610, Profit: 10355.75, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -9569,7 +9569,7 @@ export class PivotSalesData extends Array { Sales: 29831.25, COGS: 96840, Profit: 67008.75, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -9585,7 +9585,7 @@ export class PivotSalesData extends Array { Sales: 871815, COGS: 156520, Profit: 715295, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -9601,7 +9601,7 @@ export class PivotSalesData extends Array { Sales: 45828, COGS: 28320, Profit: 17508, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -9617,7 +9617,7 @@ export class PivotSalesData extends Array { Sales: 33181, COGS: 15790, Profit: 17391, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -9633,7 +9633,7 @@ export class PivotSalesData extends Array { Sales: 132868.75, COGS: 103320, Profit: 29548.75, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -9649,7 +9649,7 @@ export class PivotSalesData extends Array { Sales: 417975, COGS: 84480, Profit: 333495, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -9665,7 +9665,7 @@ export class PivotSalesData extends Array { Sales: 23387, COGS: 10330, Profit: 13057, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -9681,7 +9681,7 @@ export class PivotSalesData extends Array { Sales: 45150, COGS: 312500, Profit: 267350, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -9697,7 +9697,7 @@ export class PivotSalesData extends Array { Sales: 65311, COGS: 13890, Profit: 51421, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -9713,7 +9713,7 @@ export class PivotSalesData extends Array { Sales: 23935, COGS: 12650, Profit: 11285, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -9729,7 +9729,7 @@ export class PivotSalesData extends Array { Sales: 58383, COGS: 22970, Profit: 35413, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -9745,7 +9745,7 @@ export class PivotSalesData extends Array { Sales: 55917, COGS: 26630, Profit: 29287, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -9761,7 +9761,7 @@ export class PivotSalesData extends Array { Sales: 16523.5, COGS: 2850, Profit: 13673.5, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -9777,7 +9777,7 @@ export class PivotSalesData extends Array { Sales: 20731.55, COGS: 12435, Profit: 8296.55, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -9793,7 +9793,7 @@ export class PivotSalesData extends Array { Sales: 237125, COGS: 351000, Profit: 113875, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -9809,7 +9809,7 @@ export class PivotSalesData extends Array { Sales: 433440, COGS: 143520, Profit: 289920, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -9825,7 +9825,7 @@ export class PivotSalesData extends Array { Sales: 1305010, COGS: 319280, Profit: 985730, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -9841,7 +9841,7 @@ export class PivotSalesData extends Array { Sales: 1267350, COGS: 312500, Profit: 954850, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -9857,7 +9857,7 @@ export class PivotSalesData extends Array { Sales: 44474.1, COGS: 38010, Profit: 6464.1, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -9873,7 +9873,7 @@ export class PivotSalesData extends Array { Sales: 37999, COGS: 11175, Profit: 26824, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -9889,7 +9889,7 @@ export class PivotSalesData extends Array { Sales: 6905.4, COGS: 28440, Profit: 21534.6, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -9905,7 +9905,7 @@ export class PivotSalesData extends Array { Sales: 41223.36, COGS: 1686, Profit: 39537.36, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -9921,7 +9921,7 @@ export class PivotSalesData extends Array { Sales: 5184.72, COGS: 6897, Profit: 1712.28, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -9937,7 +9937,7 @@ export class PivotSalesData extends Array { Sales: 46398, COGS: 20300, Profit: 26098, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -9953,7 +9953,7 @@ export class PivotSalesData extends Array { Sales: 26167.54, COGS: 1315, Profit: 24852.54, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -9969,7 +9969,7 @@ export class PivotSalesData extends Array { Sales: 266722.5, COGS: 106440, Profit: 160282.5, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -9985,7 +9985,7 @@ export class PivotSalesData extends Array { Sales: 665070, COGS: 254800, Profit: 410270, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -10001,7 +10001,7 @@ export class PivotSalesData extends Array { Sales: 732690, COGS: 379600, Profit: 353090, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -10017,7 +10017,7 @@ export class PivotSalesData extends Array { Sales: 24323.74, COGS: 7015, Profit: 17308.74, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10033,7 +10033,7 @@ export class PivotSalesData extends Array { Sales: 24499.44, COGS: 8169, Profit: 16330.44, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -10049,7 +10049,7 @@ export class PivotSalesData extends Array { Sales: 630084, COGS: 388960, Profit: 241124, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -10065,7 +10065,7 @@ export class PivotSalesData extends Array { Sales: 13896.72, COGS: 6897, Profit: 6999.72, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10081,7 +10081,7 @@ export class PivotSalesData extends Array { Sales: 255983, COGS: 189020, Profit: 66963, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10097,7 +10097,7 @@ export class PivotSalesData extends Array { Sales: 294985, COGS: 114240, Profit: 180745, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -10113,7 +10113,7 @@ export class PivotSalesData extends Array { Sales: 124087.5, COGS: 330600, Profit: 206512.5, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -10129,7 +10129,7 @@ export class PivotSalesData extends Array { Sales: 10668, COGS: 15300, Profit: 4632, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -10145,7 +10145,7 @@ export class PivotSalesData extends Array { Sales: 1265334, COGS: 388960, Profit: 876374, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -10161,7 +10161,7 @@ export class PivotSalesData extends Array { Sales: 3493.84, COGS: 7490, Profit: 3996.16, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -10177,7 +10177,7 @@ export class PivotSalesData extends Array { Sales: 1117122, COGS: 305250, Profit: 811872, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10193,7 +10193,7 @@ export class PivotSalesData extends Array { Sales: 418754, COGS: 539760, Profit: 121006, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10209,7 +10209,7 @@ export class PivotSalesData extends Array { Sales: 57425.4, COGS: 28440, Profit: 28985.4, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -10225,7 +10225,7 @@ export class PivotSalesData extends Array { Sales: 29162.84, COGS: 7490, Profit: 21672.84, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -10241,7 +10241,7 @@ export class PivotSalesData extends Array { Sales: 470922, COGS: 305250, Profit: 165672, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10257,7 +10257,7 @@ export class PivotSalesData extends Array { Sales: 36892.4, COGS: 11230, Profit: 25662.4, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -10273,7 +10273,7 @@ export class PivotSalesData extends Array { Sales: 439152, COGS: 609000, Profit: 169848, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -10289,7 +10289,7 @@ export class PivotSalesData extends Array { Sales: 255093.75, COGS: 238500, Profit: 16593.75, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -10305,7 +10305,7 @@ export class PivotSalesData extends Array { Sales: 127841, COGS: 436540, Profit: 308699, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -10321,7 +10321,7 @@ export class PivotSalesData extends Array { Sales: 99533, COGS: 189020, Profit: 89487, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10337,7 +10337,7 @@ export class PivotSalesData extends Array { Sales: 28103.74, COGS: 7015, Profit: 21088.74, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10353,7 +10353,7 @@ export class PivotSalesData extends Array { Sales: 302904, COGS: 539760, Profit: 236856, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10369,7 +10369,7 @@ export class PivotSalesData extends Array { Sales: 26551.6, COGS: 17570, Profit: 8981.6, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10385,7 +10385,7 @@ export class PivotSalesData extends Array { Sales: 20191.8, COGS: 21980, Profit: 1788.2, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -10401,7 +10401,7 @@ export class PivotSalesData extends Array { Sales: 55401.3, COGS: 17430, Profit: 37971.3, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -10417,7 +10417,7 @@ export class PivotSalesData extends Array { Sales: 5667.3, COGS: 11530, Profit: 5862.7, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -10433,7 +10433,7 @@ export class PivotSalesData extends Array { Sales: 32111.6, COGS: 17570, Profit: 14541.6, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10449,7 +10449,7 @@ export class PivotSalesData extends Array { Sales: 13698.8, COGS: 10010, Profit: 3688.8, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -10465,7 +10465,7 @@ export class PivotSalesData extends Array { Sales: 11564.14, COGS: 6665, Profit: 4899.14, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -10481,7 +10481,7 @@ export class PivotSalesData extends Array { Sales: 25347.3, COGS: 11530, Profit: 13817.3, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -10497,7 +10497,7 @@ export class PivotSalesData extends Array { Sales: 3445.32, COGS: 2181, Profit: 1264.32, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -10513,7 +10513,7 @@ export class PivotSalesData extends Array { Sales: 45349.44, COGS: 5652, Profit: 39697.44, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -10529,7 +10529,7 @@ export class PivotSalesData extends Array { Sales: 71252.4, COGS: 18340, Profit: 52912.4, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -10545,7 +10545,7 @@ export class PivotSalesData extends Array { Sales: 51710.4, COGS: 7020, Profit: 44690.4, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -10561,7 +10561,7 @@ export class PivotSalesData extends Array { Sales: 2628.72, COGS: 7026, Profit: 4397.28, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -10577,7 +10577,7 @@ export class PivotSalesData extends Array { Sales: 21229.81, COGS: 5155, Profit: 16074.81, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -10593,7 +10593,7 @@ export class PivotSalesData extends Array { Sales: 14604.9, COGS: 12620, Profit: 1984.9, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -10609,7 +10609,7 @@ export class PivotSalesData extends Array { Sales: 28024.85, COGS: 5675, Profit: 22349.85, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -10625,7 +10625,7 @@ export class PivotSalesData extends Array { Sales: 27549.97, COGS: 2735, Profit: 24814.97, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -10641,7 +10641,7 @@ export class PivotSalesData extends Array { Sales: 25285.82, COGS: 7910, Profit: 17375.82, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -10657,7 +10657,7 @@ export class PivotSalesData extends Array { Sales: 27759.66, COGS: 5215.5, Profit: 22544.16, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -10673,7 +10673,7 @@ export class PivotSalesData extends Array { Sales: 18275.4, COGS: 6645, Profit: 11630.4, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -10689,7 +10689,7 @@ export class PivotSalesData extends Array { Sales: 11565.82, COGS: 7910, Profit: 3655.82, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -10705,7 +10705,7 @@ export class PivotSalesData extends Array { Sales: 30754.85, COGS: 5675, Profit: 25079.85, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -10721,7 +10721,7 @@ export class PivotSalesData extends Array { Sales: 392955.5, COGS: 457860, Profit: 64904.5, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -10737,7 +10737,7 @@ export class PivotSalesData extends Array { Sales: 475092, COGS: 112000, Profit: 363092, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -10753,7 +10753,7 @@ export class PivotSalesData extends Array { Sales: 178899, COGS: 545250, Profit: 366351, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -10769,7 +10769,7 @@ export class PivotSalesData extends Array { Sales: 23593.6, COGS: 19760, Profit: 3833.6, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -10785,7 +10785,7 @@ export class PivotSalesData extends Array { Sales: 818799, COGS: 545250, Profit: 273549, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -10801,7 +10801,7 @@ export class PivotSalesData extends Array { Sales: 358000, COGS: 300000, Profit: 58000, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -10817,7 +10817,7 @@ export class PivotSalesData extends Array { Sales: 709458, COGS: 425500, Profit: 283958, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -10833,7 +10833,7 @@ export class PivotSalesData extends Array { Sales: 941292, COGS: 112000, Profit: 829292, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -10849,7 +10849,7 @@ export class PivotSalesData extends Array { Sales: 479261.25, COGS: 421560, Profit: 57701.25, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -10865,7 +10865,7 @@ export class PivotSalesData extends Array { Sales: 56938.95, COGS: 21010, Profit: 35928.95, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -10881,7 +10881,7 @@ export class PivotSalesData extends Array { Sales: 8682.45, COGS: 29310, Profit: 20627.55, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -10897,7 +10897,7 @@ export class PivotSalesData extends Array { Sales: 2911, COGS: 15350, Profit: 12439, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -10913,7 +10913,7 @@ export class PivotSalesData extends Array { Sales: 371217, COGS: 280750, Profit: 90467, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -10929,7 +10929,7 @@ export class PivotSalesData extends Array { Sales: 212916, COGS: 351000, Profit: 138084, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -10945,7 +10945,7 @@ export class PivotSalesData extends Array { Sales: 37219.08, COGS: 8289, Profit: 28930.08, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -10961,7 +10961,7 @@ export class PivotSalesData extends Array { Sales: 2598.75, COGS: 10625, Profit: 8026.25, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -10977,7 +10977,7 @@ export class PivotSalesData extends Array { Sales: 204861, COGS: 414750, Profit: 209889, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -10993,7 +10993,7 @@ export class PivotSalesData extends Array { Sales: 77987.4, COGS: 6090, Profit: 71897.4, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -11009,7 +11009,7 @@ export class PivotSalesData extends Array { Sales: 293988.75, COGS: 250440, Profit: 43548.75, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -11025,7 +11025,7 @@ export class PivotSalesData extends Array { Sales: 47573.6, COGS: 19760, Profit: 27813.6, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -11041,7 +11041,7 @@ export class PivotSalesData extends Array { Sales: 61650.6, COGS: 14210, Profit: 47440.6, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -11057,7 +11057,7 @@ export class PivotSalesData extends Array { Sales: 314688, COGS: 343000, Profit: 28312, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -11073,7 +11073,7 @@ export class PivotSalesData extends Array { Sales: 17076.8, COGS: 5880, Profit: 11196.8, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -11089,7 +11089,7 @@ export class PivotSalesData extends Array { Sales: 43042.62, COGS: 9733.5, Profit: 33309.12, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -11105,7 +11105,7 @@ export class PivotSalesData extends Array { Sales: 336261, COGS: 239750, Profit: 96511, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -11121,7 +11121,7 @@ export class PivotSalesData extends Array { Sales: 612213, COGS: 686750, Profit: 74537, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -11137,7 +11137,7 @@ export class PivotSalesData extends Array { Sales: 38231.25, COGS: 197400, Profit: 159168.75, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -11153,7 +11153,7 @@ export class PivotSalesData extends Array { Sales: 23688, COGS: 747760, Profit: 724072, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -11169,7 +11169,7 @@ export class PivotSalesData extends Array { Sales: 462052.5, COGS: 119280, Profit: 342772.5, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -11185,7 +11185,7 @@ export class PivotSalesData extends Array { Sales: 17474.8, COGS: 11180, Profit: 6294.8, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -11201,7 +11201,7 @@ export class PivotSalesData extends Array { Sales: 860388, COGS: 343000, Profit: 517388, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -11217,7 +11217,7 @@ export class PivotSalesData extends Array { Sales: 10261.72, COGS: 2440, Profit: 7821.72, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -11233,7 +11233,7 @@ export class PivotSalesData extends Array { Sales: 31508.8, COGS: 12820, Profit: 18688.8, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11249,7 +11249,7 @@ export class PivotSalesData extends Array { Sales: 29599.08, COGS: 1285, Profit: 28314.08, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -11265,7 +11265,7 @@ export class PivotSalesData extends Array { Sales: 31488.8, COGS: 12820, Profit: 18668.8, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11281,7 +11281,7 @@ export class PivotSalesData extends Array { Sales: 365975, COGS: 184800, Profit: 181175, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -11297,7 +11297,7 @@ export class PivotSalesData extends Array { Sales: 49992, COGS: 4900, Profit: 45092, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -11313,7 +11313,7 @@ export class PivotSalesData extends Array { Sales: 551964, COGS: 354120, Profit: 197844, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -11329,7 +11329,7 @@ export class PivotSalesData extends Array { Sales: 43288.8, COGS: 25010, Profit: 18278.8, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -11345,7 +11345,7 @@ export class PivotSalesData extends Array { Sales: 81867.2, COGS: 7080, Profit: 74787.2, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11361,7 +11361,7 @@ export class PivotSalesData extends Array { Sales: 59508, COGS: 6450, Profit: 53058, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -11377,7 +11377,7 @@ export class PivotSalesData extends Array { Sales: 1270212, COGS: 390500, Profit: 879712, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -11393,7 +11393,7 @@ export class PivotSalesData extends Array { Sales: 1057608, COGS: 320750, Profit: 736858, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -11409,7 +11409,7 @@ export class PivotSalesData extends Array { Sales: 22981.8, COGS: 7110, Profit: 15871.8, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -11425,7 +11425,7 @@ export class PivotSalesData extends Array { Sales: 323735, COGS: 133680, Profit: 190055, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -11441,7 +11441,7 @@ export class PivotSalesData extends Array { Sales: 23101.96, COGS: 6295, Profit: 16806.96, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -11457,7 +11457,7 @@ export class PivotSalesData extends Array { Sales: 19091.8, COGS: 5475, Profit: 13616.8, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -11473,7 +11473,7 @@ export class PivotSalesData extends Array { Sales: 57094.4, COGS: 13660, Profit: 43434.4, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11489,7 +11489,7 @@ export class PivotSalesData extends Array { Sales: 1192860, COGS: 615000, Profit: 577860, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11505,7 +11505,7 @@ export class PivotSalesData extends Array { Sales: 7719.32, COGS: 3390, Profit: 4329.32, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -11521,7 +11521,7 @@ export class PivotSalesData extends Array { Sales: 20560.12, COGS: 7990, Profit: 12570.12, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -11537,7 +11537,7 @@ export class PivotSalesData extends Array { Sales: 12384.96, COGS: 12045, Profit: 339.96, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -11553,7 +11553,7 @@ export class PivotSalesData extends Array { Sales: 78505.6, COGS: 19340, Profit: 59165.6, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -11569,7 +11569,7 @@ export class PivotSalesData extends Array { Sales: 29471.2, COGS: 29930, Profit: 458.8, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -11585,7 +11585,7 @@ export class PivotSalesData extends Array { Sales: 918162, COGS: 557960, Profit: 360202, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -11601,7 +11601,7 @@ export class PivotSalesData extends Array { Sales: 27484.24, COGS: 9730, Profit: 17754.24, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -11617,7 +11617,7 @@ export class PivotSalesData extends Array { Sales: 553714, COGS: 354120, Profit: 199594, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -11633,7 +11633,7 @@ export class PivotSalesData extends Array { Sales: 27085.92, COGS: 1794, Profit: 25291.92, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -11649,7 +11649,7 @@ export class PivotSalesData extends Array { Sales: 22179.08, COGS: 14535, Profit: 7644.08, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11665,7 +11665,7 @@ export class PivotSalesData extends Array { Sales: 14706.72, COGS: 11690, Profit: 3016.72, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11681,7 +11681,7 @@ export class PivotSalesData extends Array { Sales: 710436, COGS: 96500, Profit: 613936, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -11697,7 +11697,7 @@ export class PivotSalesData extends Array { Sales: 1210560, COGS: 158750, Profit: 1051810, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -11713,7 +11713,7 @@ export class PivotSalesData extends Array { Sales: 911764, COGS: 149370, Profit: 762394, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -11729,7 +11729,7 @@ export class PivotSalesData extends Array { Sales: 26487.72, COGS: 11690, Profit: 14797.72, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11745,7 +11745,7 @@ export class PivotSalesData extends Array { Sales: 868532, COGS: 99060, Profit: 769472, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -11761,7 +11761,7 @@ export class PivotSalesData extends Array { Sales: 948934, COGS: 109720, Profit: 839214, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -11777,7 +11777,7 @@ export class PivotSalesData extends Array { Sales: 519684, COGS: 533500, Profit: 13816, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -11793,7 +11793,7 @@ export class PivotSalesData extends Array { Sales: 174708, COGS: 202000, Profit: 27292, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -11809,7 +11809,7 @@ export class PivotSalesData extends Array { Sales: 57147.2, COGS: 7080, Profit: 50067.2, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11825,7 +11825,7 @@ export class PivotSalesData extends Array { Sales: 11595.08, COGS: 14535, Profit: 2939.92, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11841,7 +11841,7 @@ export class PivotSalesData extends Array { Sales: 27134.4, COGS: 13660, Profit: 13474.4, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11857,7 +11857,7 @@ export class PivotSalesData extends Array { Sales: 207060, COGS: 615000, Profit: 407940, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11873,7 +11873,7 @@ export class PivotSalesData extends Array { Sales: 5468, COGS: 15200, Profit: 9732, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -11889,7 +11889,7 @@ export class PivotSalesData extends Array { Sales: 24541.8, COGS: 7110, Profit: 17431.8, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -11905,7 +11905,7 @@ export class PivotSalesData extends Array { Sales: 28188, COGS: 4125, Profit: 24063, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -11921,7 +11921,7 @@ export class PivotSalesData extends Array { Sales: 779460, COGS: 158750, Profit: 620710, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -11937,7 +11937,7 @@ export class PivotSalesData extends Array { Sales: 71461.6, COGS: 4365, Profit: 67096.6, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -11953,7 +11953,7 @@ export class PivotSalesData extends Array { Sales: 292362, COGS: 273500, Profit: 18862, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11969,7 +11969,7 @@ export class PivotSalesData extends Array { Sales: 20651.64, COGS: 1101, Profit: 19550.64, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -11985,7 +11985,7 @@ export class PivotSalesData extends Array { Sales: 547432.5, COGS: 950625, Profit: 403192.5, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -12001,7 +12001,7 @@ export class PivotSalesData extends Array { Sales: 409171, COGS: 433160, Profit: 23989, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -12017,7 +12017,7 @@ export class PivotSalesData extends Array { Sales: 495006, COGS: 80500, Profit: 414506, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -12033,7 +12033,7 @@ export class PivotSalesData extends Array { Sales: 12517.32, COGS: 6963, Profit: 5554.32, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -12049,7 +12049,7 @@ export class PivotSalesData extends Array { Sales: 415733.75, COGS: 222840, Profit: 192893.75, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -12065,7 +12065,7 @@ export class PivotSalesData extends Array { Sales: 10864.07, COGS: 8055, Profit: 2809.07, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -12081,7 +12081,7 @@ export class PivotSalesData extends Array { Sales: 113033.75, COGS: 335640, Profit: 222606.25, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -12097,7 +12097,7 @@ export class PivotSalesData extends Array { Sales: 208782, COGS: 83500, Profit: 125282, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -12113,7 +12113,7 @@ export class PivotSalesData extends Array { Sales: 276645, COGS: 641250, Profit: 364605, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -12129,7 +12129,7 @@ export class PivotSalesData extends Array { Sales: 875864.5, COGS: 628420, Profit: 247444.5, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -12145,7 +12145,7 @@ export class PivotSalesData extends Array { Sales: 49908.75, COGS: 36750, Profit: 13158.75, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -12161,7 +12161,7 @@ export class PivotSalesData extends Array { Sales: 855462, COGS: 273500, Profit: 581962, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -12177,7 +12177,7 @@ export class PivotSalesData extends Array { Sales: 25658.55, COGS: 12270, Profit: 13388.55, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -12193,7 +12193,7 @@ export class PivotSalesData extends Array { Sales: 49691.64, COGS: 1101, Profit: 48590.64, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -12209,7 +12209,7 @@ export class PivotSalesData extends Array { Sales: 302352, COGS: 331000, Profit: 28648, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -12225,7 +12225,7 @@ export class PivotSalesData extends Array { Sales: 24591, COGS: 5325, Profit: 19266, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -12241,7 +12241,7 @@ export class PivotSalesData extends Array { Sales: 76283.75, COGS: 335640, Profit: 259356.25, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -12257,7 +12257,7 @@ export class PivotSalesData extends Array { Sales: 56744.25, COGS: 2450, Profit: 54294.25, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -12273,7 +12273,7 @@ export class PivotSalesData extends Array { Sales: 322075.5, COGS: 948375, Profit: 626299.5, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -12289,7 +12289,7 @@ export class PivotSalesData extends Array { Sales: 739679.5, COGS: 339820, Profit: 399859.5, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -12305,7 +12305,7 @@ export class PivotSalesData extends Array { Sales: 449746.25, COGS: 68040, Profit: 381706.25, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -12321,7 +12321,7 @@ export class PivotSalesData extends Array { Sales: 344762.5, COGS: 253200, Profit: 91562.5, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -12337,7 +12337,7 @@ export class PivotSalesData extends Array { Sales: 1148276.5, COGS: 329940, Profit: 818336.5, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -12353,7 +12353,7 @@ export class PivotSalesData extends Array { Sales: 29687.52, COGS: 5868, Profit: 23819.52, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -12369,7 +12369,7 @@ export class PivotSalesData extends Array { Sales: 103707, COGS: 664750, Profit: 561043, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -12385,7 +12385,7 @@ export class PivotSalesData extends Array { Sales: 418027.75, COGS: 351390, Profit: 66637.75, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -12401,7 +12401,7 @@ export class PivotSalesData extends Array { Sales: 52557.6, COGS: 2640, Profit: 49917.6, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -12417,7 +12417,7 @@ export class PivotSalesData extends Array { Sales: 762891, COGS: 466750, Profit: 296141, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -12433,7 +12433,7 @@ export class PivotSalesData extends Array { Sales: 29039.28, COGS: 6702, Profit: 22337.28, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -12449,7 +12449,7 @@ export class PivotSalesData extends Array { Sales: 52538.55, COGS: 12270, Profit: 40268.55, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -12465,7 +12465,7 @@ export class PivotSalesData extends Array { Sales: 221008.75, COGS: 105240, Profit: 115768.75, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -12481,7 +12481,7 @@ export class PivotSalesData extends Array { Sales: 983363.5, COGS: 538460, Profit: 444903.5, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -12497,7 +12497,7 @@ export class PivotSalesData extends Array { Sales: 953326.5, COGS: 329940, Profit: 623386.5, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -12513,7 +12513,7 @@ export class PivotSalesData extends Array { Sales: 18220.5, COGS: 9700, Profit: 8520.5, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -12529,7 +12529,7 @@ export class PivotSalesData extends Array { Sales: 27670.8, COGS: 16940, Profit: 10730.8, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -12545,7 +12545,7 @@ export class PivotSalesData extends Array { Sales: 24626.6, COGS: 6630, Profit: 17996.6, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -12561,7 +12561,7 @@ export class PivotSalesData extends Array { Sales: 7975.03, COGS: 4095, Profit: 3880.03, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -12577,7 +12577,7 @@ export class PivotSalesData extends Array { Sales: 26733.6, COGS: 4740, Profit: 21993.6, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -12593,7 +12593,7 @@ export class PivotSalesData extends Array { Sales: 13524.77, COGS: 2605, Profit: 10919.77, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -12609,7 +12609,7 @@ export class PivotSalesData extends Array { Sales: 55828.6, COGS: 9730, Profit: 46098.6, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -12625,7 +12625,7 @@ export class PivotSalesData extends Array { Sales: 32271.6, COGS: 10380, Profit: 21891.6, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -12641,7 +12641,7 @@ export class PivotSalesData extends Array { Sales: 20304.2, COGS: 1800, Profit: 18504.2, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -12657,7 +12657,7 @@ export class PivotSalesData extends Array { Sales: 10043.64, COGS: 5901, Profit: 4142.64, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -12673,7 +12673,7 @@ export class PivotSalesData extends Array { Sales: 6847.2, COGS: 26280, Profit: 19432.8, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -12689,7 +12689,7 @@ export class PivotSalesData extends Array { Sales: 25960.2, COGS: 1800, Profit: 24160.2, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -12705,7 +12705,7 @@ export class PivotSalesData extends Array { Sales: 57492.4, COGS: 26820, Profit: 30672.4, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -12721,7 +12721,7 @@ export class PivotSalesData extends Array { Sales: 27636.77, COGS: 2605, Profit: 25031.77, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -12737,7 +12737,7 @@ export class PivotSalesData extends Array { Sales: 17191.6, COGS: 10380, Profit: 6811.6, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -12753,7 +12753,7 @@ export class PivotSalesData extends Array { Sales: 35748.82, COGS: 16305, Profit: 19443.82, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -12769,7 +12769,7 @@ export class PivotSalesData extends Array { Sales: 30449.52, COGS: 918, Profit: 29531.52, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -12785,7 +12785,7 @@ export class PivotSalesData extends Array { Sales: 51100.8, COGS: 1158, Profit: 49942.8, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -12801,7 +12801,7 @@ export class PivotSalesData extends Array { Sales: 18467.4, COGS: 11640, Profit: 6827.4, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -12817,7 +12817,7 @@ export class PivotSalesData extends Array { Sales: 41980.8, COGS: 1158, Profit: 40822.8, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -12833,7 +12833,7 @@ export class PivotSalesData extends Array { Sales: 156681.25, COGS: 413460, Profit: 256778.75, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -12849,7 +12849,7 @@ export class PivotSalesData extends Array { Sales: 308475, COGS: 177840, Profit: 130635, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -12865,7 +12865,7 @@ export class PivotSalesData extends Array { Sales: 911645, COGS: 601380, Profit: 310265, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -12881,7 +12881,7 @@ export class PivotSalesData extends Array { Sales: 480325, COGS: 216480, Profit: 263845, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -12897,7 +12897,7 @@ export class PivotSalesData extends Array { Sales: 56802, COGS: 20720, Profit: 36082, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -12913,7 +12913,7 @@ export class PivotSalesData extends Array { Sales: 54652, COGS: 19540, Profit: 35112, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -12929,7 +12929,7 @@ export class PivotSalesData extends Array { Sales: 855870, COGS: 147750, Profit: 708120, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -12945,7 +12945,7 @@ export class PivotSalesData extends Array { Sales: 51814.5, COGS: 21670, Profit: 30144.5, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -12961,7 +12961,7 @@ export class PivotSalesData extends Array { Sales: 55078, COGS: 2410, Profit: 52668, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -12977,7 +12977,7 @@ export class PivotSalesData extends Array { Sales: 5053.5, COGS: 6810, Profit: 1756.5, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -12993,7 +12993,7 @@ export class PivotSalesData extends Array { Sales: 29430, COGS: 5100, Profit: 24330, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -13009,7 +13009,7 @@ export class PivotSalesData extends Array { Sales: 38325, COGS: 7900, Profit: 30425, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -13025,7 +13025,7 @@ export class PivotSalesData extends Array { Sales: 1435735, COGS: 166140, Profit: 1269595, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -13041,7 +13041,7 @@ export class PivotSalesData extends Array { Sales: 24425, COGS: 191520, Profit: 167095, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -13057,7 +13057,7 @@ export class PivotSalesData extends Array { Sales: 645780, COGS: 573500, Profit: 72280, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -13073,7 +13073,7 @@ export class PivotSalesData extends Array { Sales: 82918, COGS: 2410, Profit: 80508, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -13089,7 +13089,7 @@ export class PivotSalesData extends Array { Sales: 4378.5, COGS: 13325, Profit: 8946.5, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -13105,7 +13105,7 @@ export class PivotSalesData extends Array { Sales: 251050, COGS: 229920, Profit: 21130, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -13121,7 +13121,7 @@ export class PivotSalesData extends Array { Sales: 991110, COGS: 213250, Profit: 777860, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -13137,7 +13137,7 @@ export class PivotSalesData extends Array { Sales: 369487.5, COGS: 40920, Profit: 328567.5, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -13153,7 +13153,7 @@ export class PivotSalesData extends Array { Sales: 59233.5, COGS: 6410, Profit: 52823.5, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -13169,7 +13169,7 @@ export class PivotSalesData extends Array { Sales: 160405, COGS: 729820, Profit: 569415, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -13185,7 +13185,7 @@ export class PivotSalesData extends Array { Sales: 583740, COGS: 108000, Profit: 475740, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -13201,7 +13201,7 @@ export class PivotSalesData extends Array { Sales: 828480, COGS: 573500, Profit: 254980, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -13217,7 +13217,7 @@ export class PivotSalesData extends Array { Sales: 60304.5, COGS: 21670, Profit: 38634.5, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -13233,7 +13233,7 @@ export class PivotSalesData extends Array { Sales: 148637.5, COGS: 303480, Profit: 154842.5, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -13249,7 +13249,7 @@ export class PivotSalesData extends Array { Sales: 883750, COGS: 486200, Profit: 397550, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -13265,7 +13265,7 @@ export class PivotSalesData extends Array { Sales: 181262.5, COGS: 69480, Profit: 111782.5, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -13281,7 +13281,7 @@ export class PivotSalesData extends Array { Sales: 1407350, COGS: 582400, Profit: 824950, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -13297,7 +13297,7 @@ export class PivotSalesData extends Array { Sales: 699210, COGS: 748250, Profit: 49040, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -13313,7 +13313,7 @@ export class PivotSalesData extends Array { Sales: 9959.4, COGS: 10561.5, Profit: 602.1, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -13329,7 +13329,7 @@ export class PivotSalesData extends Array { Sales: 20342, COGS: 20390, Profit: 48, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -13345,7 +13345,7 @@ export class PivotSalesData extends Array { Sales: 8467.2, COGS: 7722, Profit: 745.2, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -13361,7 +13361,7 @@ export class PivotSalesData extends Array { Sales: 1110305, COGS: 183820, Profit: 926485, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -13377,7 +13377,7 @@ export class PivotSalesData extends Array { Sales: 13692, COGS: 20720, Profit: 7028, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -13393,7 +13393,7 @@ export class PivotSalesData extends Array { Sales: 326610, COGS: 213250, Profit: 113360, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -13409,7 +13409,7 @@ export class PivotSalesData extends Array { Sales: 28910.64, COGS: 3594, Profit: 25316.64, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -13425,7 +13425,7 @@ export class PivotSalesData extends Array { Sales: 20772.36, COGS: 12660, Profit: 8112.36, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -13441,7 +13441,7 @@ export class PivotSalesData extends Array { Sales: 16790.64, COGS: 3594, Profit: 13196.64, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -13457,7 +13457,7 @@ export class PivotSalesData extends Array { Sales: 37256.4, COGS: 3840, Profit: 33416.4, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -13473,7 +13473,7 @@ export class PivotSalesData extends Array { Sales: 13008.96, COGS: 1416, Profit: 11592.96, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -13489,7 +13489,7 @@ export class PivotSalesData extends Array { Sales: 12665.17, COGS: 7895, Profit: 4770.17, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -13505,7 +13505,7 @@ export class PivotSalesData extends Array { Sales: 37781.4, COGS: 3015, Profit: 34766.4, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -13521,7 +13521,7 @@ export class PivotSalesData extends Array { Sales: 43725.82, COGS: 31995, Profit: 11730.82, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -13537,7 +13537,7 @@ export class PivotSalesData extends Array { Sales: 28824.96, COGS: 1416, Profit: 27408.96, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -13553,7 +13553,7 @@ export class PivotSalesData extends Array { Sales: 29159.16, COGS: 5811, Profit: 23348.16, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -13569,7 +13569,7 @@ export class PivotSalesData extends Array { Sales: 103558, COGS: 205920, Profit: 102362, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -13585,7 +13585,7 @@ export class PivotSalesData extends Array { Sales: 747537, COGS: 702750, Profit: 44787, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -13601,7 +13601,7 @@ export class PivotSalesData extends Array { Sales: 174811.25, COGS: 292920, Profit: 118108.75, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -13617,7 +13617,7 @@ export class PivotSalesData extends Array { Sales: 50511, COGS: 15600, Profit: 34911, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -13633,7 +13633,7 @@ export class PivotSalesData extends Array { Sales: 27498.38, COGS: 13530, Profit: 13968.38, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -13649,7 +13649,7 @@ export class PivotSalesData extends Array { Sales: 747509, COGS: 199160, Profit: 548349, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -13665,7 +13665,7 @@ export class PivotSalesData extends Array { Sales: 8937.6, COGS: 29920, Profit: 20982.4, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -13681,7 +13681,7 @@ export class PivotSalesData extends Array { Sales: 4735.95, COGS: 21570, Profit: 16834.05, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -13697,7 +13697,7 @@ export class PivotSalesData extends Array { Sales: 603291, COGS: 218250, Profit: 385041, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -13713,7 +13713,7 @@ export class PivotSalesData extends Array { Sales: 46891.6, COGS: 11220, Profit: 35671.6, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -13729,7 +13729,7 @@ export class PivotSalesData extends Array { Sales: 585726.75, COGS: 547170, Profit: 38556.75, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -13745,7 +13745,7 @@ export class PivotSalesData extends Array { Sales: 38581.68, COGS: 12078, Profit: 26503.68, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -13761,7 +13761,7 @@ export class PivotSalesData extends Array { Sales: 48410.34, COGS: 7276.5, Profit: 41133.84, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -13777,7 +13777,7 @@ export class PivotSalesData extends Array { Sales: 43653.2, COGS: 23940, Profit: 19713.2, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -13793,7 +13793,7 @@ export class PivotSalesData extends Array { Sales: 59861.4, COGS: 19840, Profit: 40021.4, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -13809,7 +13809,7 @@ export class PivotSalesData extends Array { Sales: 385561.25, COGS: 292920, Profit: 92641.25, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -13825,7 +13825,7 @@ export class PivotSalesData extends Array { Sales: 21437.6, COGS: 29920, Profit: 8482.4, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -13841,7 +13841,7 @@ export class PivotSalesData extends Array { Sales: 514422, COGS: 341500, Profit: 172922, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -13857,7 +13857,7 @@ export class PivotSalesData extends Array { Sales: 3089, COGS: 28050, Profit: 24961, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -13873,7 +13873,7 @@ export class PivotSalesData extends Array { Sales: 61574.25, COGS: 6550, Profit: 55024.25, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -13889,7 +13889,7 @@ export class PivotSalesData extends Array { Sales: 869806, COGS: 89440, Profit: 780366, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -13905,7 +13905,7 @@ export class PivotSalesData extends Array { Sales: 12117.84, COGS: 9040, Profit: 3077.84, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -13921,7 +13921,7 @@ export class PivotSalesData extends Array { Sales: 13323.12, COGS: 5202, Profit: 8121.12, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -13937,7 +13937,7 @@ export class PivotSalesData extends Array { Sales: 508007.5, COGS: 66480, Profit: 441527.5, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -13953,7 +13953,7 @@ export class PivotSalesData extends Array { Sales: 5683, COGS: 29350, Profit: 23667, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -13969,7 +13969,7 @@ export class PivotSalesData extends Array { Sales: 16231.25, COGS: 379800, Profit: 363568.75, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -13985,7 +13985,7 @@ export class PivotSalesData extends Array { Sales: 83996.2, COGS: 26290, Profit: 57706.2, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -14001,7 +14001,7 @@ export class PivotSalesData extends Array { Sales: 168296.25, COGS: 171960, Profit: 3663.75, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -14017,7 +14017,7 @@ export class PivotSalesData extends Array { Sales: 457353.75, COGS: 113640, Profit: 343713.75, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -14033,7 +14033,7 @@ export class PivotSalesData extends Array { Sales: 830956, COGS: 89440, Profit: 741516, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -14049,7 +14049,7 @@ export class PivotSalesData extends Array { Sales: 31570.95, COGS: 21570, Profit: 10000.95, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -14065,7 +14065,7 @@ export class PivotSalesData extends Array { Sales: 30864.4, COGS: 1900, Profit: 28964.4, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -14081,7 +14081,7 @@ export class PivotSalesData extends Array { Sales: 1291388, COGS: 230360, Profit: 1061028, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -14097,7 +14097,7 @@ export class PivotSalesData extends Array { Sales: 249510, COGS: 289920, Profit: 40410, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -14113,7 +14113,7 @@ export class PivotSalesData extends Array { Sales: 419410, COGS: 258720, Profit: 160690, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -14129,7 +14129,7 @@ export class PivotSalesData extends Array { Sales: 20899.8, COGS: 26890, Profit: 5990.2, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -14145,7 +14145,7 @@ export class PivotSalesData extends Array { Sales: 18296.4, COGS: 6770, Profit: 11526.4, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -14161,7 +14161,7 @@ export class PivotSalesData extends Array { Sales: 1188672, COGS: 443250, Profit: 745422, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -14177,7 +14177,7 @@ export class PivotSalesData extends Array { Sales: 4792.2, COGS: 12100, Profit: 7307.8, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -14193,7 +14193,7 @@ export class PivotSalesData extends Array { Sales: 5781.44, COGS: 13670, Profit: 7888.56, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -14209,7 +14209,7 @@ export class PivotSalesData extends Array { Sales: 33344, COGS: 17150, Profit: 16194, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -14225,7 +14225,7 @@ export class PivotSalesData extends Array { Sales: 1087104, COGS: 296500, Profit: 790604, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -14241,7 +14241,7 @@ export class PivotSalesData extends Array { Sales: 941580, COGS: 873750, Profit: 67830, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -14257,7 +14257,7 @@ export class PivotSalesData extends Array { Sales: 1067388, COGS: 230360, Profit: 837028, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -14273,7 +14273,7 @@ export class PivotSalesData extends Array { Sales: 341910, COGS: 258720, Profit: 83190, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -14289,7 +14289,7 @@ export class PivotSalesData extends Array { Sales: 39568, COGS: 9050, Profit: 30518, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -14305,7 +14305,7 @@ export class PivotSalesData extends Array { Sales: 17004, COGS: 17150, Profit: 146, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -14321,7 +14321,7 @@ export class PivotSalesData extends Array { Sales: 406602, COGS: 414440, Profit: 7838, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -14337,7 +14337,7 @@ export class PivotSalesData extends Array { Sales: 75876, COGS: 339750, Profit: 263874, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -14353,7 +14353,7 @@ export class PivotSalesData extends Array { Sales: 1086600, COGS: 537500, Profit: 549100, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -14369,7 +14369,7 @@ export class PivotSalesData extends Array { Sales: 232876, COGS: 311220, Profit: 78344, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -14385,7 +14385,7 @@ export class PivotSalesData extends Array { Sales: 27696, COGS: 3800, Profit: 23896, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -14401,7 +14401,7 @@ export class PivotSalesData extends Array { Sales: 38480.8, COGS: 12330, Profit: 26150.8, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -14417,7 +14417,7 @@ export class PivotSalesData extends Array { Sales: 1009610, COGS: 362700, Profit: 646910, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -14433,7 +14433,7 @@ export class PivotSalesData extends Array { Sales: 1050938, COGS: 256360, Profit: 794578, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -14449,7 +14449,7 @@ export class PivotSalesData extends Array { Sales: 39008, COGS: 9050, Profit: 29958, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -14465,7 +14465,7 @@ export class PivotSalesData extends Array { Sales: 48011.04, COGS: 6327, Profit: 41684.04, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -14481,7 +14481,7 @@ export class PivotSalesData extends Array { Sales: 12420.9, COGS: 38745, Profit: 26324.1, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -14497,7 +14497,7 @@ export class PivotSalesData extends Array { Sales: 426384, COGS: 161980, Profit: 264404, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -14513,7 +14513,7 @@ export class PivotSalesData extends Array { Sales: 39088, COGS: 256360, Profit: 217272, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -14529,7 +14529,7 @@ export class PivotSalesData extends Array { Sales: 179570, COGS: 286440, Profit: 106870, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -14545,7 +14545,7 @@ export class PivotSalesData extends Array { Sales: 1840.8, COGS: 12330, Profit: 10489.2, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -14561,7 +14561,7 @@ export class PivotSalesData extends Array { Sales: 888510, COGS: 70200, Profit: 818310, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -14577,7 +14577,7 @@ export class PivotSalesData extends Array { Sales: 8752.94, COGS: 17107.5, Profit: 8354.56, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -14593,7 +14593,7 @@ export class PivotSalesData extends Array { Sales: 29021.44, COGS: 13670, Profit: 15351.44, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -14609,7 +14609,7 @@ export class PivotSalesData extends Array { Sales: 7908.6, COGS: 25480, Profit: 17571.4, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -14625,7 +14625,7 @@ export class PivotSalesData extends Array { Sales: 7428.4, COGS: 25215, Profit: 17786.6, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -14641,7 +14641,7 @@ export class PivotSalesData extends Array { Sales: 5504.16, COGS: 7983, Profit: 2478.84, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -14657,7 +14657,7 @@ export class PivotSalesData extends Array { Sales: 25465.6, COGS: 15310, Profit: 10155.6, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -14673,7 +14673,7 @@ export class PivotSalesData extends Array { Sales: 20853.56, COGS: 7455, Profit: 13398.56, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -14689,7 +14689,7 @@ export class PivotSalesData extends Array { Sales: 78225.6, COGS: 15310, Profit: 62915.6, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -14705,7 +14705,7 @@ export class PivotSalesData extends Array { Sales: 34064.16, COGS: 8283, Profit: 25781.16, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -14721,7 +14721,7 @@ export class PivotSalesData extends Array { Sales: 2389.35, COGS: 25670, Profit: 23280.65, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -14737,7 +14737,7 @@ export class PivotSalesData extends Array { Sales: 44284.35, COGS: 25670, Profit: 18614.35, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -14753,7 +14753,7 @@ export class PivotSalesData extends Array { Sales: 1205053.5, COGS: 239980, Profit: 965073.5, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -14769,7 +14769,7 @@ export class PivotSalesData extends Array { Sales: 1356705, COGS: 465400, Profit: 891305, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -14785,7 +14785,7 @@ export class PivotSalesData extends Array { Sales: 71910.8, COGS: 4420, Profit: 67490.8, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -14801,7 +14801,7 @@ export class PivotSalesData extends Array { Sales: 726346.25, COGS: 255450, Profit: 470896.25, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -14817,7 +14817,7 @@ export class PivotSalesData extends Array { Sales: 19286.82, COGS: 6490, Profit: 12796.82, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -14833,7 +14833,7 @@ export class PivotSalesData extends Array { Sales: 30857.76, COGS: 1812, Profit: 29045.76, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -14849,7 +14849,7 @@ export class PivotSalesData extends Array { Sales: 18017, COGS: 22550, Profit: 4533, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -14865,7 +14865,7 @@ export class PivotSalesData extends Array { Sales: 64072.6, COGS: 12490, Profit: 51582.6, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -14881,7 +14881,7 @@ export class PivotSalesData extends Array { Sales: 7965.97, COGS: 7192.5, Profit: 773.47, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -14897,7 +14897,7 @@ export class PivotSalesData extends Array { Sales: 1241427, COGS: 201750, Profit: 1039677, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -14913,7 +14913,7 @@ export class PivotSalesData extends Array { Sales: 50873.4, COGS: 26410, Profit: 24463.4, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -14929,7 +14929,7 @@ export class PivotSalesData extends Array { Sales: 69739.2, COGS: 27080, Profit: 42659.2, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -14945,7 +14945,7 @@ export class PivotSalesData extends Array { Sales: 532294, COGS: 684320, Profit: 152026, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -14961,7 +14961,7 @@ export class PivotSalesData extends Array { Sales: 331526.25, COGS: 189960, Profit: 141566.25, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -14977,7 +14977,7 @@ export class PivotSalesData extends Array { Sales: 33525.24, COGS: 1713, Profit: 31812.24, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -14993,7 +14993,7 @@ export class PivotSalesData extends Array { Sales: 24181.64, COGS: 13480, Profit: 10701.64, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -15009,7 +15009,7 @@ export class PivotSalesData extends Array { Sales: 55658.25, COGS: 15650, Profit: 40008.25, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15025,7 +15025,7 @@ export class PivotSalesData extends Array { Sales: 7232.6, COGS: 12490, Profit: 5257.4, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15041,7 +15041,7 @@ export class PivotSalesData extends Array { Sales: 1067006.5, COGS: 92820, Profit: 974186.5, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -15057,7 +15057,7 @@ export class PivotSalesData extends Array { Sales: 27339.72, COGS: 3039, Profit: 24300.72, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -15073,7 +15073,7 @@ export class PivotSalesData extends Array { Sales: 56149.88, COGS: 39975, Profit: 16174.88, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -15089,7 +15089,7 @@ export class PivotSalesData extends Array { Sales: 663894, COGS: 684320, Profit: 20426, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -15105,7 +15105,7 @@ export class PivotSalesData extends Array { Sales: 2900.1, COGS: 5950, Profit: 3049.9, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -15121,7 +15121,7 @@ export class PivotSalesData extends Array { Sales: 45725.76, COGS: 1812, Profit: 43913.76, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -15137,7 +15137,7 @@ export class PivotSalesData extends Array { Sales: 19383, COGS: 6600, Profit: 12783, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -15153,7 +15153,7 @@ export class PivotSalesData extends Array { Sales: 26396.4, COGS: 1230, Profit: 25166.4, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15169,7 +15169,7 @@ export class PivotSalesData extends Array { Sales: 859005, COGS: 651250, Profit: 207755, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -15185,7 +15185,7 @@ export class PivotSalesData extends Array { Sales: 44439.72, COGS: 3039, Profit: 41400.72, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -15201,7 +15201,7 @@ export class PivotSalesData extends Array { Sales: 285151.25, COGS: 189960, Profit: 95191.25, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -15217,7 +15217,7 @@ export class PivotSalesData extends Array { Sales: 63368.25, COGS: 15650, Profit: 47718.25, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15233,7 +15233,7 @@ export class PivotSalesData extends Array { Sales: 123041.25, COGS: 199080, Profit: 76038.75, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -15249,7 +15249,7 @@ export class PivotSalesData extends Array { Sales: 19588.1, COGS: 5950, Profit: 13638.1, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -15265,7 +15265,7 @@ export class PivotSalesData extends Array { Sales: 16796.4, COGS: 1230, Profit: 15566.4, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15281,7 +15281,7 @@ export class PivotSalesData extends Array { Sales: 7618.8, COGS: 5310, Profit: 2308.8, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -15297,7 +15297,7 @@ export class PivotSalesData extends Array { Sales: 14218.8, COGS: 25790, Profit: 11571.2, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -15313,7 +15313,7 @@ export class PivotSalesData extends Array { Sales: 29859.6, COGS: 17430, Profit: 12429.6, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -15329,7 +15329,7 @@ export class PivotSalesData extends Array { Sales: 7808.92, COGS: 14980, Profit: 7171.08, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -15345,7 +15345,7 @@ export class PivotSalesData extends Array { Sales: 17449.6, COGS: 1400, Profit: 16049.6, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -15361,7 +15361,7 @@ export class PivotSalesData extends Array { Sales: 12067.86, COGS: 1465, Profit: 10602.86, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -15377,7 +15377,7 @@ export class PivotSalesData extends Array { Sales: 8032.92, COGS: 14980, Profit: 6947.08, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -15393,7 +15393,7 @@ export class PivotSalesData extends Array { Sales: 39016.2, COGS: 2780, Profit: 36236.2, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -15409,7 +15409,7 @@ export class PivotSalesData extends Array { Sales: 54781.6, COGS: 24280, Profit: 30501.6, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -15425,7 +15425,7 @@ export class PivotSalesData extends Array { Sales: 58239.3, COGS: 17670, Profit: 40569.3, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -15441,7 +15441,7 @@ export class PivotSalesData extends Array { Sales: 32915.76, COGS: 4179, Profit: 28736.76, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15457,7 +15457,7 @@ export class PivotSalesData extends Array { Sales: 21285.6, COGS: 1400, Profit: 19885.6, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -15473,7 +15473,7 @@ export class PivotSalesData extends Array { Sales: 16019.76, COGS: 4179, Profit: 11840.76, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15489,7 +15489,7 @@ export class PivotSalesData extends Array { Sales: 39058.8, COGS: 6045, Profit: 33013.8, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -15505,7 +15505,7 @@ export class PivotSalesData extends Array { Sales: 572658, COGS: 200250, Profit: 372408, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -15521,7 +15521,7 @@ export class PivotSalesData extends Array { Sales: 207597.5, COGS: 122760, Profit: 84837.5, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -15537,7 +15537,7 @@ export class PivotSalesData extends Array { Sales: 241368, COGS: 374000, Profit: 132632, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15553,7 +15553,7 @@ export class PivotSalesData extends Array { Sales: 831480, COGS: 252500, Profit: 578980, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15569,7 +15569,7 @@ export class PivotSalesData extends Array { Sales: 8267.7, COGS: 15130, Profit: 6862.3, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -15585,7 +15585,7 @@ export class PivotSalesData extends Array { Sales: 16545, COGS: 23000, Profit: 6455, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -15601,7 +15601,7 @@ export class PivotSalesData extends Array { Sales: 495257.5, COGS: 338520, Profit: 156737.5, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -15617,7 +15617,7 @@ export class PivotSalesData extends Array { Sales: 639152.5, COGS: 579150, Profit: 60002.5, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -15633,7 +15633,7 @@ export class PivotSalesData extends Array { Sales: 1279999, COGS: 311740, Profit: 968259, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -15649,7 +15649,7 @@ export class PivotSalesData extends Array { Sales: 1177750, COGS: 52000, Profit: 1125750, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -15665,7 +15665,7 @@ export class PivotSalesData extends Array { Sales: 15124.76, COGS: 1940, Profit: 13184.76, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -15681,7 +15681,7 @@ export class PivotSalesData extends Array { Sales: 14253.54, COGS: 8635, Profit: 5618.54, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -15697,7 +15697,7 @@ export class PivotSalesData extends Array { Sales: 1215, COGS: 23000, Profit: 21785, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -15713,7 +15713,7 @@ export class PivotSalesData extends Array { Sales: 5052, COGS: 2600, Profit: 2452, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -15729,7 +15729,7 @@ export class PivotSalesData extends Array { Sales: 6048, COGS: 24700, Profit: 18652, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -15745,7 +15745,7 @@ export class PivotSalesData extends Array { Sales: 1919.7, COGS: 17430, Profit: 15510.3, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -15761,7 +15761,7 @@ export class PivotSalesData extends Array { Sales: 40476.48, COGS: 8742, Profit: 31734.48, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15777,7 +15777,7 @@ export class PivotSalesData extends Array { Sales: 10798.62, COGS: 8655, Profit: 2143.62, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15793,7 +15793,7 @@ export class PivotSalesData extends Array { Sales: 1375850, COGS: 182000, Profit: 1193850, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -15809,7 +15809,7 @@ export class PivotSalesData extends Array { Sales: 30023.04, COGS: 6666, Profit: 23357.04, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -15825,7 +15825,7 @@ export class PivotSalesData extends Array { Sales: 694827, COGS: 306020, Profit: 388807, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -15841,7 +15841,7 @@ export class PivotSalesData extends Array { Sales: 638372, COGS: 499720, Profit: 138652, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -15857,7 +15857,7 @@ export class PivotSalesData extends Array { Sales: 521312.5, COGS: 189000, Profit: 332312.5, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -15873,7 +15873,7 @@ export class PivotSalesData extends Array { Sales: 52203.2, COGS: 6060, Profit: 46143.2, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -15889,7 +15889,7 @@ export class PivotSalesData extends Array { Sales: 297780, COGS: 615000, Profit: 317220, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -15905,7 +15905,7 @@ export class PivotSalesData extends Array { Sales: 775002, COGS: 67250, Profit: 707752, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -15921,7 +15921,7 @@ export class PivotSalesData extends Array { Sales: 1013988, COGS: 634000, Profit: 379988, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -15937,7 +15937,7 @@ export class PivotSalesData extends Array { Sales: 27395.06, COGS: 14515, Profit: 12880.06, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -15953,7 +15953,7 @@ export class PivotSalesData extends Array { Sales: 741678, COGS: 635250, Profit: 106428, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -15969,7 +15969,7 @@ export class PivotSalesData extends Array { Sales: 764502, COGS: 67250, Profit: 697252, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -15985,7 +15985,7 @@ export class PivotSalesData extends Array { Sales: 311568, COGS: 374000, Profit: 62432, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16001,7 +16001,7 @@ export class PivotSalesData extends Array { Sales: 1168080, COGS: 252500, Profit: 915580, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16017,7 +16017,7 @@ export class PivotSalesData extends Array { Sales: 62881, COGS: 333060, Profit: 270179, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -16033,7 +16033,7 @@ export class PivotSalesData extends Array { Sales: 1140504, COGS: 222000, Profit: 918504, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -16049,7 +16049,7 @@ export class PivotSalesData extends Array { Sales: 481105, COGS: 341280, Profit: 139825, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -16065,7 +16065,7 @@ export class PivotSalesData extends Array { Sales: 28182, COGS: 7425, Profit: 20757, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -16081,7 +16081,7 @@ export class PivotSalesData extends Array { Sales: 12899.7, COGS: 17430, Profit: 4530.3, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -16097,7 +16097,7 @@ export class PivotSalesData extends Array { Sales: 12492.48, COGS: 8742, Profit: 3750.48, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16113,7 +16113,7 @@ export class PivotSalesData extends Array { Sales: 6220.62, COGS: 8655, Profit: 2434.38, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16129,7 +16129,7 @@ export class PivotSalesData extends Array { Sales: 8583.54, COGS: 8635, Profit: 51.46, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -16145,7 +16145,7 @@ export class PivotSalesData extends Array { Sales: 15153, COGS: 18700, Profit: 3547, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -16161,7 +16161,7 @@ export class PivotSalesData extends Array { Sales: 153362.5, COGS: 140880, Profit: 12482.5, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -16177,7 +16177,7 @@ export class PivotSalesData extends Array { Sales: 218243.75, COGS: 332040, Profit: 113796.25, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -16193,7 +16193,7 @@ export class PivotSalesData extends Array { Sales: 221781.25, COGS: 130200, Profit: 91581.25, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16209,7 +16209,7 @@ export class PivotSalesData extends Array { Sales: 839130, COGS: 136500, Profit: 702630, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16225,7 +16225,7 @@ export class PivotSalesData extends Array { Sales: 23126, COGS: 11580, Profit: 11546, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -16241,7 +16241,7 @@ export class PivotSalesData extends Array { Sales: 32758.5, COGS: 16140, Profit: 16618.5, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -16257,7 +16257,7 @@ export class PivotSalesData extends Array { Sales: 11569.25, COGS: 12675, Profit: 1105.75, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -16273,7 +16273,7 @@ export class PivotSalesData extends Array { Sales: 560472.5, COGS: 741260, Profit: 180787.5, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -16289,7 +16289,7 @@ export class PivotSalesData extends Array { Sales: 9977.25, COGS: 25590, Profit: 15612.75, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -16305,7 +16305,7 @@ export class PivotSalesData extends Array { Sales: 20439, COGS: 2670, Profit: 17769, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -16321,7 +16321,7 @@ export class PivotSalesData extends Array { Sales: 293281.25, COGS: 130200, Profit: 163081.25, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16337,7 +16337,7 @@ export class PivotSalesData extends Array { Sales: 23501.25, COGS: 11750, Profit: 11751.25, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16353,7 +16353,7 @@ export class PivotSalesData extends Array { Sales: 1090932.5, COGS: 521820, Profit: 569112.5, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -16369,7 +16369,7 @@ export class PivotSalesData extends Array { Sales: 499922.5, COGS: 559260, Profit: 59337.5, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -16385,7 +16385,7 @@ export class PivotSalesData extends Array { Sales: 37090.8, COGS: 2742, Profit: 34348.8, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -16401,7 +16401,7 @@ export class PivotSalesData extends Array { Sales: 21221, COGS: 2930, Profit: 18291, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -16417,7 +16417,7 @@ export class PivotSalesData extends Array { Sales: 32436, COGS: 1500, Profit: 30936, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -16433,7 +16433,7 @@ export class PivotSalesData extends Array { Sales: 11236.5, COGS: 28260, Profit: 17023.5, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -16449,7 +16449,7 @@ export class PivotSalesData extends Array { Sales: 382568.75, COGS: 79560, Profit: 303008.75, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -16465,7 +16465,7 @@ export class PivotSalesData extends Array { Sales: 1180770, COGS: 643500, Profit: 537270, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -16481,7 +16481,7 @@ export class PivotSalesData extends Array { Sales: 191912.5, COGS: 292560, Profit: 100647.5, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -16497,7 +16497,7 @@ export class PivotSalesData extends Array { Sales: 34114.8, COGS: 2742, Profit: 31372.8, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -16513,7 +16513,7 @@ export class PivotSalesData extends Array { Sales: 78763.5, COGS: 8655, Profit: 70108.5, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -16529,7 +16529,7 @@ export class PivotSalesData extends Array { Sales: 30468, COGS: 4920, Profit: 25548, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -16545,7 +16545,7 @@ export class PivotSalesData extends Array { Sales: 32139, COGS: 2670, Profit: 29469, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -16561,7 +16561,7 @@ export class PivotSalesData extends Array { Sales: 881.25, COGS: 11750, Profit: 10868.75, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16577,7 +16577,7 @@ export class PivotSalesData extends Array { Sales: 396737.5, COGS: 354480, Profit: 42257.5, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -16593,7 +16593,7 @@ export class PivotSalesData extends Array { Sales: 252900, COGS: 66240, Profit: 186660, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -16609,7 +16609,7 @@ export class PivotSalesData extends Array { Sales: 46141, COGS: 2930, Profit: 43211, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -16625,7 +16625,7 @@ export class PivotSalesData extends Array { Sales: 457725, COGS: 618750, Profit: 161025, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -16641,7 +16641,7 @@ export class PivotSalesData extends Array { Sales: 169530, COGS: 136500, Profit: 33030, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16657,7 +16657,7 @@ export class PivotSalesData extends Array { Sales: 23910.6, COGS: 6840, Profit: 17070.6, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -16673,7 +16673,7 @@ export class PivotSalesData extends Array { Sales: 21787.85, COGS: 3615, Profit: 18172.85, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -16689,7 +16689,7 @@ export class PivotSalesData extends Array { Sales: 2665.2, COGS: 5418, Profit: 2752.8, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); diff --git a/samples/grids/pivot-grid/aggregate-units-sold/src/PivotSalesData.ts b/samples/grids/pivot-grid/aggregate-units-sold/src/PivotSalesData.ts index 29d21495b8..9a815e3ffc 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/src/PivotSalesData.ts +++ b/samples/grids/pivot-grid/aggregate-units-sold/src/PivotSalesData.ts @@ -33,7 +33,7 @@ export class PivotSalesData extends Array { Sales: 26440, COGS: 16185, Profit: 11255, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -49,7 +49,7 @@ export class PivotSalesData extends Array { Sales: 27440, COGS: 16185, Profit: 11255, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -65,7 +65,7 @@ export class PivotSalesData extends Array { Sales: 55240, COGS: 13210, Profit: 42030, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -81,7 +81,7 @@ export class PivotSalesData extends Array { Sales: 21960, COGS: 21780, Profit: 180, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -97,7 +97,7 @@ export class PivotSalesData extends Array { Sales: 10785, COGS: 8880, Profit: 1905, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -113,7 +113,7 @@ export class PivotSalesData extends Array { Sales: 53640, COGS: 24700, Profit: 28940, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -129,7 +129,7 @@ export class PivotSalesData extends Array { Sales: 1547700, COGS: 393380, Profit: 1154320, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -145,7 +145,7 @@ export class PivotSalesData extends Array { Sales: 54735, COGS: 9210, Profit: 45525, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -161,7 +161,7 @@ export class PivotSalesData extends Array { Sales: 50064, COGS: 7554, Profit: 42510, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -177,7 +177,7 @@ export class PivotSalesData extends Array { Sales: 76820, COGS: 18990, Profit: 57830, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -193,7 +193,7 @@ export class PivotSalesData extends Array { Sales: 44712, COGS: 4635, Profit: 40077, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -209,7 +209,7 @@ export class PivotSalesData extends Array { Sales: 39375, COGS: 24700, Profit: 14675, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -225,7 +225,7 @@ export class PivotSalesData extends Array { Sales: 244750, COGS: 319860, Profit: 75110, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -241,7 +241,7 @@ export class PivotSalesData extends Array { Sales: 981300, COGS: 239500, Profit: 741800, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -257,7 +257,7 @@ export class PivotSalesData extends Array { Sales: 14637, COGS: 10730, Profit: 3907, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -273,7 +273,7 @@ export class PivotSalesData extends Array { Sales: 42375, COGS: 6150, Profit: 36225, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -289,7 +289,7 @@ export class PivotSalesData extends Array { Sales: 50260, COGS: 2920, Profit: 47340, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -305,7 +305,7 @@ export class PivotSalesData extends Array { Sales: 13245, COGS: 9740, Profit: 3505, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -321,7 +321,7 @@ export class PivotSalesData extends Array { Sales: 25044, COGS: 7554, Profit: 17490, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -337,7 +337,7 @@ export class PivotSalesData extends Array { Sales: 897050, COGS: 261560, Profit: 635490, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -353,7 +353,7 @@ export class PivotSalesData extends Array { Sales: 34152, COGS: 1101, Profit: 33051, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -369,7 +369,7 @@ export class PivotSalesData extends Array { Sales: 6979, COGS: 4415, Profit: 2564, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -385,7 +385,7 @@ export class PivotSalesData extends Array { Sales: 34350, COGS: 24720, Profit: 9630, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -401,7 +401,7 @@ export class PivotSalesData extends Array { Sales: 14931, COGS: 5715, Profit: 9216, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -417,7 +417,7 @@ export class PivotSalesData extends Array { Sales: 72340, COGS: 18170, Profit: 54170, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -433,7 +433,7 @@ export class PivotSalesData extends Array { Sales: 443100, COGS: 393380, Profit: 49720, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -449,7 +449,7 @@ export class PivotSalesData extends Array { Sales: 6258, COGS: 7465, Profit: 1207, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -465,7 +465,7 @@ export class PivotSalesData extends Array { Sales: 340625, COGS: 216480, Profit: 124145, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -481,7 +481,7 @@ export class PivotSalesData extends Array { Sales: 36732, COGS: 6483, Profit: 30249, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -497,7 +497,7 @@ export class PivotSalesData extends Array { Sales: 1385300, COGS: 261560, Profit: 1123740, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -513,7 +513,7 @@ export class PivotSalesData extends Array { Sales: 47040, COGS: 4635, Profit: 42405, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -529,7 +529,7 @@ export class PivotSalesData extends Array { Sales: 422625, COGS: 338520, Profit: 84105, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -545,7 +545,7 @@ export class PivotSalesData extends Array { Sales: 1292100, COGS: 500250, Profit: 791850, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -561,7 +561,7 @@ export class PivotSalesData extends Array { Sales: 10536, COGS: 8514, Profit: 2022, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -577,7 +577,7 @@ export class PivotSalesData extends Array { Sales: 7440, COGS: 21780, Profit: 14340, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -593,7 +593,7 @@ export class PivotSalesData extends Array { Sales: 50505, COGS: 8880, Profit: 41625, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -609,7 +609,7 @@ export class PivotSalesData extends Array { Sales: 616500, COGS: 537750, Profit: 78750, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -625,7 +625,7 @@ export class PivotSalesData extends Array { Sales: 80820, COGS: 18170, Profit: 62650, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -641,7 +641,7 @@ export class PivotSalesData extends Array { Sales: 1132950, COGS: 715000, Profit: 417950, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -657,7 +657,7 @@ export class PivotSalesData extends Array { Sales: 7560, COGS: 5859, Profit: 1701, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -673,7 +673,7 @@ export class PivotSalesData extends Array { Sales: 526250, COGS: 506340, Profit: 19910, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -689,7 +689,7 @@ export class PivotSalesData extends Array { Sales: 22540, COGS: 18990, Profit: 3550, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -705,7 +705,7 @@ export class PivotSalesData extends Array { Sales: 24066, COGS: 8430, Profit: 15636, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -721,7 +721,7 @@ export class PivotSalesData extends Array { Sales: 24180, COGS: 6423, Profit: 17757, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -737,7 +737,7 @@ export class PivotSalesData extends Array { Sales: 17738, COGS: 5715, Profit: 12023, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -753,7 +753,7 @@ export class PivotSalesData extends Array { Sales: 20760, COGS: 6150, Profit: 14610, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -769,7 +769,7 @@ export class PivotSalesData extends Array { Sales: 24650.85, COGS: 19725, Profit: 4925.85, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -785,7 +785,7 @@ export class PivotSalesData extends Array { Sales: 27000.6, COGS: 22960, Profit: 4040.6, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -801,7 +801,7 @@ export class PivotSalesData extends Array { Sales: 19492.9, COGS: 5150, Profit: 14342.9, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -817,7 +817,7 @@ export class PivotSalesData extends Array { Sales: 3154.27, COGS: 3195, Profit: 40.73, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -833,7 +833,7 @@ export class PivotSalesData extends Array { Sales: 26402.18, COGS: 6630, Profit: 19772.18, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -849,7 +849,7 @@ export class PivotSalesData extends Array { Sales: 8753.04, COGS: 5574, Profit: 3179.04, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -865,7 +865,7 @@ export class PivotSalesData extends Array { Sales: 353115, COGS: 314600, Profit: 38515, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -881,7 +881,7 @@ export class PivotSalesData extends Array { Sales: 14354.97, COGS: 12645, Profit: 1709.97, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -897,7 +897,7 @@ export class PivotSalesData extends Array { Sales: 51618.6, COGS: 4335, Profit: 47283.6, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -913,7 +913,7 @@ export class PivotSalesData extends Array { Sales: 49767.48, COGS: 8013, Profit: 41754.48, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -929,7 +929,7 @@ export class PivotSalesData extends Array { Sales: 1302710.5, COGS: 363220, Profit: 939490.5, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -945,7 +945,7 @@ export class PivotSalesData extends Array { Sales: 662357.5, COGS: 560300, Profit: 102057.5, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -961,7 +961,7 @@ export class PivotSalesData extends Array { Sales: 40797.9, COGS: 22140, Profit: 18657.9, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -977,7 +977,7 @@ export class PivotSalesData extends Array { Sales: 442797, COGS: 575250, Profit: 132453, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -993,7 +993,7 @@ export class PivotSalesData extends Array { Sales: 75164.9, COGS: 13755, Profit: 61409.9, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -1009,7 +1009,7 @@ export class PivotSalesData extends Array { Sales: 7655.9, COGS: 9150, Profit: 1494.1, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -1025,7 +1025,7 @@ export class PivotSalesData extends Array { Sales: 35292.9, COGS: 15140, Profit: 20152.9, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -1041,7 +1041,7 @@ export class PivotSalesData extends Array { Sales: 10787.52, COGS: 22462.5, Profit: 11674.98, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -1057,7 +1057,7 @@ export class PivotSalesData extends Array { Sales: 422341.25, COGS: 87240, Profit: 335101.25, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1073,7 +1073,7 @@ export class PivotSalesData extends Array { Sales: 105516.25, COGS: 94440, Profit: 11076.25, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1089,7 +1089,7 @@ export class PivotSalesData extends Array { Sales: 345596.25, COGS: 218760, Profit: 126836.25, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -1105,7 +1105,7 @@ export class PivotSalesData extends Array { Sales: 40147.95, COGS: 7470, Profit: 32677.95, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -1121,7 +1121,7 @@ export class PivotSalesData extends Array { Sales: 1216185, COGS: 726250, Profit: 489935, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -1137,7 +1137,7 @@ export class PivotSalesData extends Array { Sales: 978057.5, COGS: 560300, Profit: 417757.5, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1153,7 +1153,7 @@ export class PivotSalesData extends Array { Sales: 85107.2, COGS: 38640, Profit: 46467.2, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -1169,7 +1169,7 @@ export class PivotSalesData extends Array { Sales: 19966.66, COGS: 1810, Profit: 18156.66, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -1185,7 +1185,7 @@ export class PivotSalesData extends Array { Sales: 174721.25, COGS: 110760, Profit: 63961.25, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -1201,7 +1201,7 @@ export class PivotSalesData extends Array { Sales: 8836.59, COGS: 1315, Profit: 7521.59, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -1217,7 +1217,7 @@ export class PivotSalesData extends Array { Sales: 1358897.75, COGS: 245310, Profit: 1113587.75, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -1233,7 +1233,7 @@ export class PivotSalesData extends Array { Sales: 382591.25, COGS: 87240, Profit: 295351.25, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1249,7 +1249,7 @@ export class PivotSalesData extends Array { Sales: 271641.25, COGS: 94440, Profit: 177201.25, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1265,7 +1265,7 @@ export class PivotSalesData extends Array { Sales: 403842, COGS: 246500, Profit: 177201.25, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1281,7 +1281,7 @@ export class PivotSalesData extends Array { Sales: 630010.5, COGS: 363220, Profit: 266790.5, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -1297,7 +1297,7 @@ export class PivotSalesData extends Array { Sales: 184695, COGS: 209280, Profit: 24585, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -1313,7 +1313,7 @@ export class PivotSalesData extends Array { Sales: 181018.75, COGS: 89100, Profit: 91918.75, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -1329,7 +1329,7 @@ export class PivotSalesData extends Array { Sales: 2269.2, COGS: 3885, Profit: 1615.8, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -1345,7 +1345,7 @@ export class PivotSalesData extends Array { Sales: 178136, COGS: 741520, Profit: 563384, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1361,7 +1361,7 @@ export class PivotSalesData extends Array { Sales: 38785.92, COGS: 3426, Profit: 35359.92, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1377,7 +1377,7 @@ export class PivotSalesData extends Array { Sales: 14813.6, COGS: 15660, Profit: 846.4, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -1393,7 +1393,7 @@ export class PivotSalesData extends Array { Sales: 13454.4, COGS: 2070, Profit: 11384.4, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -1409,7 +1409,7 @@ export class PivotSalesData extends Array { Sales: 17186.1, COGS: 23630, Profit: 6443.9, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -1425,7 +1425,7 @@ export class PivotSalesData extends Array { Sales: 753492, COGS: 229500, Profit: 523992, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -1441,7 +1441,7 @@ export class PivotSalesData extends Array { Sales: 1024932, COGS: 432000, Profit: 592932, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -1457,7 +1457,7 @@ export class PivotSalesData extends Array { Sales: 36433.92, COGS: 3426, Profit: 33007.92, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1473,7 +1473,7 @@ export class PivotSalesData extends Array { Sales: 492970, COGS: 79440, Profit: 413530, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1489,7 +1489,7 @@ export class PivotSalesData extends Array { Sales: 41017.2, COGS: 3885, Profit: 37132.2, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -1505,7 +1505,7 @@ export class PivotSalesData extends Array { Sales: 934704, COGS: 479000, Profit: 455704, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1521,7 +1521,7 @@ export class PivotSalesData extends Array { Sales: 1417836, COGS: 741520, Profit: 676316, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1537,7 +1537,7 @@ export class PivotSalesData extends Array { Sales: 463177.5, COGS: 327480, Profit: 135697.5, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1553,7 +1553,7 @@ export class PivotSalesData extends Array { Sales: 27754.8, COGS: 3165, Profit: 24589.8, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1569,7 +1569,7 @@ export class PivotSalesData extends Array { Sales: 6699.84, COGS: 3252, Profit: 3447.84, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1585,7 +1585,7 @@ export class PivotSalesData extends Array { Sales: 51573.6, COGS: 15660, Profit: 35913.6, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -1601,7 +1601,7 @@ export class PivotSalesData extends Array { Sales: 490511, COGS: 748020, Profit: 257509, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -1617,7 +1617,7 @@ export class PivotSalesData extends Array { Sales: 45034.8, COGS: 3165, Profit: 41869.8, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1633,7 +1633,7 @@ export class PivotSalesData extends Array { Sales: 30603.84, COGS: 3252, Profit: 27351.84, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1649,7 +1649,7 @@ export class PivotSalesData extends Array { Sales: 38345, COGS: 79440, Profit: 41095, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1665,7 +1665,7 @@ export class PivotSalesData extends Array { Sales: 1126111, COGS: 748020, Profit: 378091, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -1681,7 +1681,7 @@ export class PivotSalesData extends Array { Sales: 440927.5, COGS: 327480, Profit: 113447.5, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1697,7 +1697,7 @@ export class PivotSalesData extends Array { Sales: 1215246, COGS: 64750, Profit: 1150496, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -1713,7 +1713,7 @@ export class PivotSalesData extends Array { Sales: 636594, COGS: 275250, Profit: 361344, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -1729,7 +1729,7 @@ export class PivotSalesData extends Array { Sales: 432060, COGS: 273120, Profit: 158940, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -1745,7 +1745,7 @@ export class PivotSalesData extends Array { Sales: 13085.6, COGS: 12360, Profit: 725.6, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -1761,7 +1761,7 @@ export class PivotSalesData extends Array { Sales: 46643.6, COGS: 9410, Profit: 37233.6, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -1777,7 +1777,7 @@ export class PivotSalesData extends Array { Sales: 601404, COGS: 479000, Profit: 122404, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1793,7 +1793,7 @@ export class PivotSalesData extends Array { Sales: 429711.88, COGS: 509220, Profit: 79508.13, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -1809,7 +1809,7 @@ export class PivotSalesData extends Array { Sales: 26472, COGS: 25800, Profit: 672, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -1825,7 +1825,7 @@ export class PivotSalesData extends Array { Sales: 616899, COGS: 172250, Profit: 444649, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1841,7 +1841,7 @@ export class PivotSalesData extends Array { Sales: 43015.08, COGS: 5841, Profit: 37174.08, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -1857,7 +1857,7 @@ export class PivotSalesData extends Array { Sales: 20308.82, COGS: 9790, Profit: 10518.82, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -1873,7 +1873,7 @@ export class PivotSalesData extends Array { Sales: 13727.64, COGS: 5703, Profit: 8024.64, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1889,7 +1889,7 @@ export class PivotSalesData extends Array { Sales: 16132.76, COGS: 2720, Profit: 13412.76, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -1905,7 +1905,7 @@ export class PivotSalesData extends Array { Sales: 491673.75, COGS: 154440, Profit: 337233.75, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1921,7 +1921,7 @@ export class PivotSalesData extends Array { Sales: 478352.5, COGS: 204720, Profit: 273632.5, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -1937,7 +1937,7 @@ export class PivotSalesData extends Array { Sales: 661489.5, COGS: 608625, Profit: 52864.5, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -1953,7 +1953,7 @@ export class PivotSalesData extends Array { Sales: 127722.5, COGS: 212880, Profit: 85157.5, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -1969,7 +1969,7 @@ export class PivotSalesData extends Array { Sales: 47915.64, COGS: 5703, Profit: 42212.64, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -1985,7 +1985,7 @@ export class PivotSalesData extends Array { Sales: 904299, COGS: 172250, Profit: 732049, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -2001,7 +2001,7 @@ export class PivotSalesData extends Array { Sales: 448612.5, COGS: 188400, Profit: 260212.5, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -2017,7 +2017,7 @@ export class PivotSalesData extends Array { Sales: 16054.98, COGS: 4108.5, Profit: 11946.48, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -2033,7 +2033,7 @@ export class PivotSalesData extends Array { Sales: 553966.25, COGS: 241080, Profit: 312886.25, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2049,7 +2049,7 @@ export class PivotSalesData extends Array { Sales: 213173.75, COGS: 154440, Profit: 58733.75, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2065,7 +2065,7 @@ export class PivotSalesData extends Array { Sales: 286227.5, COGS: 204720, Profit: 81507.5, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2081,7 +2081,7 @@ export class PivotSalesData extends Array { Sales: 471841.25, COGS: 241080, Profit: 230761.25, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2097,7 +2097,7 @@ export class PivotSalesData extends Array { Sales: 322704, COGS: 711000, Profit: 388296, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -2113,7 +2113,7 @@ export class PivotSalesData extends Array { Sales: 9822.24, COGS: 5748, Profit: 4074.24, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -2129,7 +2129,7 @@ export class PivotSalesData extends Array { Sales: 207237.5, COGS: 188400, Profit: 18837.5, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -2145,7 +2145,7 @@ export class PivotSalesData extends Array { Sales: 524634, COGS: 468500, Profit: 56134, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -2161,7 +2161,7 @@ export class PivotSalesData extends Array { Sales: 118909, COGS: 426920, Profit: 308011, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -2177,7 +2177,7 @@ export class PivotSalesData extends Array { Sales: 28681.4, COGS: 8310, Profit: 20371.4, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -2193,7 +2193,7 @@ export class PivotSalesData extends Array { Sales: 82409.7, COGS: 38505, Profit: 43904.7, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -2209,7 +2209,7 @@ export class PivotSalesData extends Array { Sales: 42631.56, COGS: 7437, Profit: 35194.56, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -2225,7 +2225,7 @@ export class PivotSalesData extends Array { Sales: 25121.4, COGS: 20310, Profit: 4811.4, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2241,7 +2241,7 @@ export class PivotSalesData extends Array { Sales: 3386.4, COGS: 20310, Profit: 16923.6, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2257,7 +2257,7 @@ export class PivotSalesData extends Array { Sales: 342348, COGS: 505250, Profit: 162902, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2273,7 +2273,7 @@ export class PivotSalesData extends Array { Sales: 167314, COGS: 71240, Profit: 96074, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2289,7 +2289,7 @@ export class PivotSalesData extends Array { Sales: 60814.8, COGS: 19670, Profit: 41144.8, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -2305,7 +2305,7 @@ export class PivotSalesData extends Array { Sales: 800592, COGS: 464750, Profit: 335842, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -2321,7 +2321,7 @@ export class PivotSalesData extends Array { Sales: 1313748, COGS: 505250, Profit: 808498, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2337,7 +2337,7 @@ export class PivotSalesData extends Array { Sales: 148310, COGS: 136560, Profit: 11750, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2353,7 +2353,7 @@ export class PivotSalesData extends Array { Sales: 16911.72, COGS: 21255, Profit: 4343.28, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -2369,7 +2369,7 @@ export class PivotSalesData extends Array { Sales: 162525, COGS: 95400, Profit: 67125, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -2385,7 +2385,7 @@ export class PivotSalesData extends Array { Sales: 1329126, COGS: 353625, Profit: 975501, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -2401,7 +2401,7 @@ export class PivotSalesData extends Array { Sales: 1123584, COGS: 729500, Profit: 394084, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -2417,7 +2417,7 @@ export class PivotSalesData extends Array { Sales: 569450, COGS: 897000, Profit: 327550, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -2433,7 +2433,7 @@ export class PivotSalesData extends Array { Sales: 426685, COGS: 358560, Profit: 68125, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -2449,7 +2449,7 @@ export class PivotSalesData extends Array { Sales: 30109.2, COGS: 2180, Profit: 27929.2, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -2465,7 +2465,7 @@ export class PivotSalesData extends Array { Sales: 57100.8, COGS: 20740, Profit: 36360.8, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -2481,7 +2481,7 @@ export class PivotSalesData extends Array { Sales: 66195.2, COGS: 10560, Profit: 55635.2, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -2497,7 +2497,7 @@ export class PivotSalesData extends Array { Sales: 846664, COGS: 71240, Profit: 775424, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2513,7 +2513,7 @@ export class PivotSalesData extends Array { Sales: 61185, COGS: 136560, Profit: 75375, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2529,7 +2529,7 @@ export class PivotSalesData extends Array { Sales: 17572.8, COGS: 4395, Profit: 13177.8, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -2545,7 +2545,7 @@ export class PivotSalesData extends Array { Sales: 593222, COGS: 566020, Profit: 27202, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2561,7 +2561,7 @@ export class PivotSalesData extends Array { Sales: 3748.32, COGS: 2598, Profit: 1150.32, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -2577,7 +2577,7 @@ export class PivotSalesData extends Array { Sales: 1197672, COGS: 566020, Profit: 631652, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2593,7 +2593,7 @@ export class PivotSalesData extends Array { Sales: 1003940, COGS: 484900, Profit: 519040, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -2609,7 +2609,7 @@ export class PivotSalesData extends Array { Sales: 499255, COGS: 128880, Profit: 370375, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -2625,7 +2625,7 @@ export class PivotSalesData extends Array { Sales: 1424402, COGS: 495820, Profit: 928582, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -2641,7 +2641,7 @@ export class PivotSalesData extends Array { Sales: 4594.8, COGS: 6860, Profit: 2265.2, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -2657,7 +2657,7 @@ export class PivotSalesData extends Array { Sales: 15333.85, COGS: 13445, Profit: 1888.85, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2673,7 +2673,7 @@ export class PivotSalesData extends Array { Sales: 6641.4, COGS: 7293, Profit: 651.6, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2689,7 +2689,7 @@ export class PivotSalesData extends Array { Sales: 34421.4, COGS: 7293, Profit: 27128.4, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2705,7 +2705,7 @@ export class PivotSalesData extends Array { Sales: 6562.85, COGS: 13445, Profit: 6882.15, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -2721,7 +2721,7 @@ export class PivotSalesData extends Array { Sales: 6746.95, COGS: 8415, Profit: 1668.05, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -2737,7 +2737,7 @@ export class PivotSalesData extends Array { Sales: 4954.2, COGS: 3369, Profit: 1585.2, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -2753,7 +2753,7 @@ export class PivotSalesData extends Array { Sales: 49761, COGS: 5595, Profit: 44166, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -2769,7 +2769,7 @@ export class PivotSalesData extends Array { Sales: 23042.4, COGS: 3348, Profit: 19694.4, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -2785,7 +2785,7 @@ export class PivotSalesData extends Array { Sales: 38117, COGS: 15630, Profit: 22487, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -2801,7 +2801,7 @@ export class PivotSalesData extends Array { Sales: 129135, COGS: 247750, Profit: 118615, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -2817,7 +2817,7 @@ export class PivotSalesData extends Array { Sales: 15981.75, COGS: 27910, Profit: 11928.25, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -2833,7 +2833,7 @@ export class PivotSalesData extends Array { Sales: 17160.5, COGS: 2850, Profit: 14310.5, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2849,7 +2849,7 @@ export class PivotSalesData extends Array { Sales: 19611.55, COGS: 12435, Profit: 7176.55, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -2865,7 +2865,7 @@ export class PivotSalesData extends Array { Sales: 1099271.25, COGS: 359970, Profit: 739301.25, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -2881,7 +2881,7 @@ export class PivotSalesData extends Array { Sales: 379956.25, COGS: 435240, Profit: 55283.75, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -2897,7 +2897,7 @@ export class PivotSalesData extends Array { Sales: 12118.8, COGS: 7026, Profit: 5092.8, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -2913,7 +2913,7 @@ export class PivotSalesData extends Array { Sales: 30897, COGS: 13030, Profit: 17867, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -2929,7 +2929,7 @@ export class PivotSalesData extends Array { Sales: 493800, COGS: 359040, Profit: 134760, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -2945,7 +2945,7 @@ export class PivotSalesData extends Array { Sales: 111593.75, COGS: 286200, Profit: 174606.25, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -2961,7 +2961,7 @@ export class PivotSalesData extends Array { Sales: 976995, COGS: 401750, Profit: 575245, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -2977,7 +2977,7 @@ export class PivotSalesData extends Array { Sales: 26870.55, COGS: 11635, Profit: 15235.55, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -2993,7 +2993,7 @@ export class PivotSalesData extends Array { Sales: 1289235, COGS: 247750, Profit: 1041485, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3009,7 +3009,7 @@ export class PivotSalesData extends Array { Sales: 531265, COGS: 156520, Profit: 374745, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3025,7 +3025,7 @@ export class PivotSalesData extends Array { Sales: 30330, COGS: 26200, Profit: 4130, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -3041,7 +3041,7 @@ export class PivotSalesData extends Array { Sales: 510368.75, COGS: 103320, Profit: 407048.75, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -3057,7 +3057,7 @@ export class PivotSalesData extends Array { Sales: 64857, COGS: 26630, Profit: 38227, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -3073,7 +3073,7 @@ export class PivotSalesData extends Array { Sales: 33243.75, COGS: 5550, Profit: 27693.75, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -3089,7 +3089,7 @@ export class PivotSalesData extends Array { Sales: 18254.25, COGS: 28610, Profit: 10355.75, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -3105,7 +3105,7 @@ export class PivotSalesData extends Array { Sales: 29831.25, COGS: 96840, Profit: 67008.75, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -3121,7 +3121,7 @@ export class PivotSalesData extends Array { Sales: 871815, COGS: 156520, Profit: 715295, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3137,7 +3137,7 @@ export class PivotSalesData extends Array { Sales: 45828, COGS: 28320, Profit: 17508, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -3153,7 +3153,7 @@ export class PivotSalesData extends Array { Sales: 33181, COGS: 15790, Profit: 17391, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -3169,7 +3169,7 @@ export class PivotSalesData extends Array { Sales: 132868.75, COGS: 103320, Profit: 29548.75, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -3185,7 +3185,7 @@ export class PivotSalesData extends Array { Sales: 45150, COGS: 312500, Profit: 267350, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -3201,7 +3201,7 @@ export class PivotSalesData extends Array { Sales: 55917, COGS: 26630, Profit: 29287, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -3217,7 +3217,7 @@ export class PivotSalesData extends Array { Sales: 16523.5, COGS: 2850, Profit: 13673.5, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -3233,7 +3233,7 @@ export class PivotSalesData extends Array { Sales: 20731.55, COGS: 12435, Profit: 8296.55, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -3249,7 +3249,7 @@ export class PivotSalesData extends Array { Sales: 237125, COGS: 351000, Profit: 113875, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -3265,7 +3265,7 @@ export class PivotSalesData extends Array { Sales: 433440, COGS: 143520, Profit: 289920, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -3281,7 +3281,7 @@ export class PivotSalesData extends Array { Sales: 1267350, COGS: 312500, Profit: 954850, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -3297,7 +3297,7 @@ export class PivotSalesData extends Array { Sales: 44474.1, COGS: 38010, Profit: 6464.1, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -3313,7 +3313,7 @@ export class PivotSalesData extends Array { Sales: 37999, COGS: 11175, Profit: 26824, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -3329,7 +3329,7 @@ export class PivotSalesData extends Array { Sales: 6905.4, COGS: 28440, Profit: 21534.6, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3345,7 +3345,7 @@ export class PivotSalesData extends Array { Sales: 41223.36, COGS: 1686, Profit: 39537.36, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -3361,7 +3361,7 @@ export class PivotSalesData extends Array { Sales: 46398, COGS: 20300, Profit: 26098, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -3377,7 +3377,7 @@ export class PivotSalesData extends Array { Sales: 665070, COGS: 254800, Profit: 410270, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -3393,7 +3393,7 @@ export class PivotSalesData extends Array { Sales: 732690, COGS: 379600, Profit: 353090, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -3409,7 +3409,7 @@ export class PivotSalesData extends Array { Sales: 24499.44, COGS: 8169, Profit: 16330.44, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -3425,7 +3425,7 @@ export class PivotSalesData extends Array { Sales: 630084, COGS: 388960, Profit: 241124, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3441,7 +3441,7 @@ export class PivotSalesData extends Array { Sales: 294985, COGS: 114240, Profit: 180745, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -3457,7 +3457,7 @@ export class PivotSalesData extends Array { Sales: 124087.5, COGS: 330600, Profit: 206512.5, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -3473,7 +3473,7 @@ export class PivotSalesData extends Array { Sales: 10668, COGS: 15300, Profit: 4632, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -3489,7 +3489,7 @@ export class PivotSalesData extends Array { Sales: 1265334, COGS: 388960, Profit: 876374, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3505,7 +3505,7 @@ export class PivotSalesData extends Array { Sales: 3493.84, COGS: 7490, Profit: 3996.16, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3521,7 +3521,7 @@ export class PivotSalesData extends Array { Sales: 57425.4, COGS: 28440, Profit: 28985.4, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3537,7 +3537,7 @@ export class PivotSalesData extends Array { Sales: 29162.84, COGS: 7490, Profit: 21672.84, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3553,7 +3553,7 @@ export class PivotSalesData extends Array { Sales: 255093.75, COGS: 238500, Profit: 16593.75, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -3569,7 +3569,7 @@ export class PivotSalesData extends Array { Sales: 127841, COGS: 436540, Profit: 308699, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -3585,7 +3585,7 @@ export class PivotSalesData extends Array { Sales: 20191.8, COGS: 21980, Profit: 1788.2, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -3601,7 +3601,7 @@ export class PivotSalesData extends Array { Sales: 55401.3, COGS: 17430, Profit: 37971.3, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -3617,7 +3617,7 @@ export class PivotSalesData extends Array { Sales: 5667.3, COGS: 11530, Profit: 5862.7, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -3633,7 +3633,7 @@ export class PivotSalesData extends Array { Sales: 13698.8, COGS: 10010, Profit: 3688.8, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -3649,7 +3649,7 @@ export class PivotSalesData extends Array { Sales: 11564.14, COGS: 6665, Profit: 4899.14, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -3665,7 +3665,7 @@ export class PivotSalesData extends Array { Sales: 25347.3, COGS: 11530, Profit: 13817.3, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -3681,7 +3681,7 @@ export class PivotSalesData extends Array { Sales: 3445.32, COGS: 2181, Profit: 1264.32, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -3697,7 +3697,7 @@ export class PivotSalesData extends Array { Sales: 45349.44, COGS: 5652, Profit: 39697.44, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -3713,7 +3713,7 @@ export class PivotSalesData extends Array { Sales: 51710.4, COGS: 7020, Profit: 44690.4, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -3729,7 +3729,7 @@ export class PivotSalesData extends Array { Sales: 2628.72, COGS: 7026, Profit: 4397.28, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -3745,7 +3745,7 @@ export class PivotSalesData extends Array { Sales: 14604.9, COGS: 12620, Profit: 1984.9, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -3761,7 +3761,7 @@ export class PivotSalesData extends Array { Sales: 28024.85, COGS: 5675, Profit: 22349.85, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3777,7 +3777,7 @@ export class PivotSalesData extends Array { Sales: 27549.97, COGS: 2735, Profit: 24814.97, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -3793,7 +3793,7 @@ export class PivotSalesData extends Array { Sales: 25285.82, COGS: 7910, Profit: 17375.82, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -3809,7 +3809,7 @@ export class PivotSalesData extends Array { Sales: 27759.66, COGS: 5215.5, Profit: 22544.16, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -3825,7 +3825,7 @@ export class PivotSalesData extends Array { Sales: 11565.82, COGS: 7910, Profit: 3655.82, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -3841,7 +3841,7 @@ export class PivotSalesData extends Array { Sales: 30754.85, COGS: 5675, Profit: 25079.85, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3857,7 +3857,7 @@ export class PivotSalesData extends Array { Sales: 392955.5, COGS: 457860, Profit: 64904.5, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -3873,7 +3873,7 @@ export class PivotSalesData extends Array { Sales: 475092, COGS: 112000, Profit: 363092, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3889,7 +3889,7 @@ export class PivotSalesData extends Array { Sales: 178899, COGS: 545250, Profit: 366351, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -3905,7 +3905,7 @@ export class PivotSalesData extends Array { Sales: 23593.6, COGS: 19760, Profit: 3833.6, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -3921,7 +3921,7 @@ export class PivotSalesData extends Array { Sales: 818799, COGS: 545250, Profit: 273549, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -3937,7 +3937,7 @@ export class PivotSalesData extends Array { Sales: 709458, COGS: 425500, Profit: 283958, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -3953,7 +3953,7 @@ export class PivotSalesData extends Array { Sales: 941292, COGS: 112000, Profit: 829292, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -3969,7 +3969,7 @@ export class PivotSalesData extends Array { Sales: 479261.25, COGS: 421560, Profit: 57701.25, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -3985,7 +3985,7 @@ export class PivotSalesData extends Array { Sales: 56938.95, COGS: 21010, Profit: 35928.95, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -4001,7 +4001,7 @@ export class PivotSalesData extends Array { Sales: 2911, COGS: 15350, Profit: 12439, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -4017,7 +4017,7 @@ export class PivotSalesData extends Array { Sales: 204861, COGS: 414750, Profit: 209889, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -4033,7 +4033,7 @@ export class PivotSalesData extends Array { Sales: 77987.4, COGS: 6090, Profit: 71897.4, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -4049,7 +4049,7 @@ export class PivotSalesData extends Array { Sales: 293988.75, COGS: 250440, Profit: 43548.75, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -4065,7 +4065,7 @@ export class PivotSalesData extends Array { Sales: 47573.6, COGS: 19760, Profit: 27813.6, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -4081,7 +4081,7 @@ export class PivotSalesData extends Array { Sales: 314688, COGS: 343000, Profit: 28312, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -4097,7 +4097,7 @@ export class PivotSalesData extends Array { Sales: 43042.62, COGS: 9733.5, Profit: 33309.12, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -4113,7 +4113,7 @@ export class PivotSalesData extends Array { Sales: 336261, COGS: 239750, Profit: 96511, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -4129,7 +4129,7 @@ export class PivotSalesData extends Array { Sales: 612213, COGS: 686750, Profit: 74537, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -4145,7 +4145,7 @@ export class PivotSalesData extends Array { Sales: 38231.25, COGS: 197400, Profit: 159168.75, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -4161,7 +4161,7 @@ export class PivotSalesData extends Array { Sales: 23688, COGS: 747760, Profit: 724072, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -4177,7 +4177,7 @@ export class PivotSalesData extends Array { Sales: 17474.8, COGS: 11180, Profit: 6294.8, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -4193,7 +4193,7 @@ export class PivotSalesData extends Array { Sales: 860388, COGS: 343000, Profit: 517388, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -4209,7 +4209,7 @@ export class PivotSalesData extends Array { Sales: 10261.72, COGS: 2440, Profit: 7821.72, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -4225,7 +4225,7 @@ export class PivotSalesData extends Array { Sales: 31508.8, COGS: 12820, Profit: 18688.8, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4241,7 +4241,7 @@ export class PivotSalesData extends Array { Sales: 29599.08, COGS: 1285, Profit: 28314.08, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -4257,7 +4257,7 @@ export class PivotSalesData extends Array { Sales: 31488.8, COGS: 12820, Profit: 18668.8, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4273,7 +4273,7 @@ export class PivotSalesData extends Array { Sales: 365975, COGS: 184800, Profit: 181175, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -4289,7 +4289,7 @@ export class PivotSalesData extends Array { Sales: 49992, COGS: 4900, Profit: 45092, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -4305,7 +4305,7 @@ export class PivotSalesData extends Array { Sales: 551964, COGS: 354120, Profit: 197844, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -4321,7 +4321,7 @@ export class PivotSalesData extends Array { Sales: 43288.8, COGS: 25010, Profit: 18278.8, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -4337,7 +4337,7 @@ export class PivotSalesData extends Array { Sales: 81867.2, COGS: 7080, Profit: 74787.2, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4353,7 +4353,7 @@ export class PivotSalesData extends Array { Sales: 59508, COGS: 6450, Profit: 53058, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -4369,7 +4369,7 @@ export class PivotSalesData extends Array { Sales: 1270212, COGS: 390500, Profit: 879712, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -4385,7 +4385,7 @@ export class PivotSalesData extends Array { Sales: 22981.8, COGS: 7110, Profit: 15871.8, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -4401,7 +4401,7 @@ export class PivotSalesData extends Array { Sales: 323735, COGS: 133680, Profit: 190055, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -4417,7 +4417,7 @@ export class PivotSalesData extends Array { Sales: 23101.96, COGS: 6295, Profit: 16806.96, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -4433,7 +4433,7 @@ export class PivotSalesData extends Array { Sales: 19091.8, COGS: 5475, Profit: 13616.8, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -4449,7 +4449,7 @@ export class PivotSalesData extends Array { Sales: 57094.4, COGS: 13660, Profit: 43434.4, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4465,7 +4465,7 @@ export class PivotSalesData extends Array { Sales: 1192860, COGS: 615000, Profit: 577860, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4481,7 +4481,7 @@ export class PivotSalesData extends Array { Sales: 7719.32, COGS: 3390, Profit: 4329.32, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -4497,7 +4497,7 @@ export class PivotSalesData extends Array { Sales: 20560.12, COGS: 7990, Profit: 12570.12, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -4513,7 +4513,7 @@ export class PivotSalesData extends Array { Sales: 78505.6, COGS: 19340, Profit: 59165.6, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -4529,7 +4529,7 @@ export class PivotSalesData extends Array { Sales: 29471.2, COGS: 29930, Profit: 458.8, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -4545,7 +4545,7 @@ export class PivotSalesData extends Array { Sales: 553714, COGS: 354120, Profit: 199594, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -4561,7 +4561,7 @@ export class PivotSalesData extends Array { Sales: 27085.92, COGS: 1794, Profit: 25291.92, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -4577,7 +4577,7 @@ export class PivotSalesData extends Array { Sales: 22179.08, COGS: 14535, Profit: 7644.08, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4593,7 +4593,7 @@ export class PivotSalesData extends Array { Sales: 14706.72, COGS: 11690, Profit: 3016.72, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4609,7 +4609,7 @@ export class PivotSalesData extends Array { Sales: 1210560, COGS: 158750, Profit: 1051810, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -4625,7 +4625,7 @@ export class PivotSalesData extends Array { Sales: 911764, COGS: 149370, Profit: 762394, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -4641,7 +4641,7 @@ export class PivotSalesData extends Array { Sales: 26487.72, COGS: 11690, Profit: 14797.72, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4657,7 +4657,7 @@ export class PivotSalesData extends Array { Sales: 868532, COGS: 99060, Profit: 769472, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -4673,7 +4673,7 @@ export class PivotSalesData extends Array { Sales: 948934, COGS: 109720, Profit: 839214, - Date: `8/1/20`, + Date: `2020-08-01`, MonthName: `August`, Year: 2020 })); @@ -4689,7 +4689,7 @@ export class PivotSalesData extends Array { Sales: 519684, COGS: 533500, Profit: 13816, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -4705,7 +4705,7 @@ export class PivotSalesData extends Array { Sales: 57147.2, COGS: 7080, Profit: 50067.2, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4721,7 +4721,7 @@ export class PivotSalesData extends Array { Sales: 11595.08, COGS: 14535, Profit: 2939.92, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4737,7 +4737,7 @@ export class PivotSalesData extends Array { Sales: 27134.4, COGS: 13660, Profit: 13474.4, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4753,7 +4753,7 @@ export class PivotSalesData extends Array { Sales: 207060, COGS: 615000, Profit: 407940, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4769,7 +4769,7 @@ export class PivotSalesData extends Array { Sales: 5468, COGS: 15200, Profit: 9732, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -4785,7 +4785,7 @@ export class PivotSalesData extends Array { Sales: 24541.8, COGS: 7110, Profit: 17431.8, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -4801,7 +4801,7 @@ export class PivotSalesData extends Array { Sales: 779460, COGS: 158750, Profit: 620710, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -4817,7 +4817,7 @@ export class PivotSalesData extends Array { Sales: 71461.6, COGS: 4365, Profit: 67096.6, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -4833,7 +4833,7 @@ export class PivotSalesData extends Array { Sales: 292362, COGS: 273500, Profit: 18862, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4849,7 +4849,7 @@ export class PivotSalesData extends Array { Sales: 547432.5, COGS: 950625, Profit: 403192.5, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -4865,7 +4865,7 @@ export class PivotSalesData extends Array { Sales: 409171, COGS: 433160, Profit: 23989, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -4881,7 +4881,7 @@ export class PivotSalesData extends Array { Sales: 12517.32, COGS: 6963, Profit: 5554.32, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -4897,7 +4897,7 @@ export class PivotSalesData extends Array { Sales: 113033.75, COGS: 335640, Profit: 222606.25, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -4913,7 +4913,7 @@ export class PivotSalesData extends Array { Sales: 276645, COGS: 641250, Profit: 364605, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -4929,7 +4929,7 @@ export class PivotSalesData extends Array { Sales: 875864.5, COGS: 628420, Profit: 247444.5, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -4945,7 +4945,7 @@ export class PivotSalesData extends Array { Sales: 49908.75, COGS: 36750, Profit: 13158.75, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -4961,7 +4961,7 @@ export class PivotSalesData extends Array { Sales: 855462, COGS: 273500, Profit: 581962, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -4977,7 +4977,7 @@ export class PivotSalesData extends Array { Sales: 25658.55, COGS: 12270, Profit: 13388.55, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -4993,7 +4993,7 @@ export class PivotSalesData extends Array { Sales: 302352, COGS: 331000, Profit: 28648, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -5009,7 +5009,7 @@ export class PivotSalesData extends Array { Sales: 76283.75, COGS: 335640, Profit: 259356.25, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -5025,7 +5025,7 @@ export class PivotSalesData extends Array { Sales: 56744.25, COGS: 2450, Profit: 54294.25, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -5041,7 +5041,7 @@ export class PivotSalesData extends Array { Sales: 322075.5, COGS: 948375, Profit: 626299.5, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -5057,7 +5057,7 @@ export class PivotSalesData extends Array { Sales: 739679.5, COGS: 339820, Profit: 399859.5, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -5073,7 +5073,7 @@ export class PivotSalesData extends Array { Sales: 449746.25, COGS: 68040, Profit: 381706.25, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -5089,7 +5089,7 @@ export class PivotSalesData extends Array { Sales: 344762.5, COGS: 253200, Profit: 91562.5, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -5105,7 +5105,7 @@ export class PivotSalesData extends Array { Sales: 1148276.5, COGS: 329940, Profit: 818336.5, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -5121,7 +5121,7 @@ export class PivotSalesData extends Array { Sales: 29687.52, COGS: 5868, Profit: 23819.52, - Date: `1/1/20`, + Date: `2020-01-01`, MonthName: `January`, Year: 2020 })); @@ -5137,7 +5137,7 @@ export class PivotSalesData extends Array { Sales: 103707, COGS: 664750, Profit: 561043, - Date: `2/1/20`, + Date: `2020-02-01`, MonthName: `February`, Year: 2020 })); @@ -5153,7 +5153,7 @@ export class PivotSalesData extends Array { Sales: 418027.75, COGS: 351390, Profit: 66637.75, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -5169,7 +5169,7 @@ export class PivotSalesData extends Array { Sales: 52557.6, COGS: 2640, Profit: 49917.6, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -5185,7 +5185,7 @@ export class PivotSalesData extends Array { Sales: 762891, COGS: 466750, Profit: 296141, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -5201,7 +5201,7 @@ export class PivotSalesData extends Array { Sales: 52538.55, COGS: 12270, Profit: 40268.55, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -5217,7 +5217,7 @@ export class PivotSalesData extends Array { Sales: 221008.75, COGS: 105240, Profit: 115768.75, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -5233,7 +5233,7 @@ export class PivotSalesData extends Array { Sales: 983363.5, COGS: 538460, Profit: 444903.5, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -5249,7 +5249,7 @@ export class PivotSalesData extends Array { Sales: 953326.5, COGS: 329940, Profit: 623386.5, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -5265,7 +5265,7 @@ export class PivotSalesData extends Array { Sales: 27670.8, COGS: 16940, Profit: 10730.8, - Date: `11/1/20`, + Date: `2020-11-01`, MonthName: `November`, Year: 2020 })); @@ -5281,7 +5281,7 @@ export class PivotSalesData extends Array { Sales: 24626.6, COGS: 6630, Profit: 17996.6, - Date: `5/1/20`, + Date: `2020-05-01`, MonthName: `May`, Year: 2020 })); @@ -5297,7 +5297,7 @@ export class PivotSalesData extends Array { Sales: 7975.03, COGS: 4095, Profit: 3880.03, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -5313,7 +5313,7 @@ export class PivotSalesData extends Array { Sales: 26733.6, COGS: 4740, Profit: 21993.6, - Date: `9/1/20`, + Date: `2020-09-01`, MonthName: `September`, Year: 2020 })); @@ -5329,7 +5329,7 @@ export class PivotSalesData extends Array { Sales: 13524.77, COGS: 2605, Profit: 10919.77, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -5345,7 +5345,7 @@ export class PivotSalesData extends Array { Sales: 55828.6, COGS: 9730, Profit: 46098.6, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -5361,7 +5361,7 @@ export class PivotSalesData extends Array { Sales: 32271.6, COGS: 10380, Profit: 21891.6, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -5377,7 +5377,7 @@ export class PivotSalesData extends Array { Sales: 20304.2, COGS: 1800, Profit: 18504.2, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -5393,7 +5393,7 @@ export class PivotSalesData extends Array { Sales: 10043.64, COGS: 5901, Profit: 4142.64, - Date: `3/1/20`, + Date: `2020-03-01`, MonthName: `March`, Year: 2020 })); @@ -5409,7 +5409,7 @@ export class PivotSalesData extends Array { Sales: 6847.2, COGS: 26280, Profit: 19432.8, - Date: `4/1/20`, + Date: `2020-04-01`, MonthName: `April`, Year: 2020 })); @@ -5425,7 +5425,7 @@ export class PivotSalesData extends Array { Sales: 25960.2, COGS: 1800, Profit: 24160.2, - Date: `10/1/20`, + Date: `2020-10-01`, MonthName: `October`, Year: 2020 })); @@ -5441,7 +5441,7 @@ export class PivotSalesData extends Array { Sales: 27636.77, COGS: 2605, Profit: 25031.77, - Date: `12/1/20`, + Date: `2020-12-01`, MonthName: `December`, Year: 2020 })); @@ -5457,7 +5457,7 @@ export class PivotSalesData extends Array { Sales: 17191.6, COGS: 10380, Profit: 6811.6, - Date: `6/1/20`, + Date: `2020-06-01`, MonthName: `June`, Year: 2020 })); @@ -5473,7 +5473,7 @@ export class PivotSalesData extends Array { Sales: 35748.82, COGS: 16305, Profit: 19443.82, - Date: `7/1/20`, + Date: `2020-07-01`, MonthName: `July`, Year: 2020 })); @@ -5489,7 +5489,7 @@ export class PivotSalesData extends Array { Sales: 27440, COGS: 16185, Profit: 11255, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -5505,7 +5505,7 @@ export class PivotSalesData extends Array { Sales: 55240, COGS: 13210, Profit: 42030, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -5521,7 +5521,7 @@ export class PivotSalesData extends Array { Sales: 21960, COGS: 21780, Profit: 180, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -5537,7 +5537,7 @@ export class PivotSalesData extends Array { Sales: 10785, COGS: 8880, Profit: 1905, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -5553,7 +5553,7 @@ export class PivotSalesData extends Array { Sales: 53640, COGS: 24700, Profit: 28940, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -5569,7 +5569,7 @@ export class PivotSalesData extends Array { Sales: 1547700, COGS: 393380, Profit: 1154320, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -5585,7 +5585,7 @@ export class PivotSalesData extends Array { Sales: 54735, COGS: 9210, Profit: 45525, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -5601,7 +5601,7 @@ export class PivotSalesData extends Array { Sales: 50064, COGS: 7554, Profit: 42510, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -5617,7 +5617,7 @@ export class PivotSalesData extends Array { Sales: 76820, COGS: 18990, Profit: 57830, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -5633,7 +5633,7 @@ export class PivotSalesData extends Array { Sales: 44712, COGS: 4635, Profit: 40077, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -5649,7 +5649,7 @@ export class PivotSalesData extends Array { Sales: 39375, COGS: 24700, Profit: 14675, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -5665,7 +5665,7 @@ export class PivotSalesData extends Array { Sales: 244750, COGS: 319860, Profit: 75110, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -5681,7 +5681,7 @@ export class PivotSalesData extends Array { Sales: 981300, COGS: 239500, Profit: 741800, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -5697,7 +5697,7 @@ export class PivotSalesData extends Array { Sales: 14637, COGS: 10730, Profit: 3907, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -5713,7 +5713,7 @@ export class PivotSalesData extends Array { Sales: 316250, COGS: 41400, Profit: 274850, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -5729,7 +5729,7 @@ export class PivotSalesData extends Array { Sales: 42375, COGS: 6150, Profit: 36225, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -5745,7 +5745,7 @@ export class PivotSalesData extends Array { Sales: 50260, COGS: 2920, Profit: 47340, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -5761,7 +5761,7 @@ export class PivotSalesData extends Array { Sales: 13245, COGS: 9740, Profit: 3505, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -5777,7 +5777,7 @@ export class PivotSalesData extends Array { Sales: 25044, COGS: 7554, Profit: 17490, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -5793,7 +5793,7 @@ export class PivotSalesData extends Array { Sales: 897050, COGS: 261560, Profit: 635490, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -5809,7 +5809,7 @@ export class PivotSalesData extends Array { Sales: 34152, COGS: 1101, Profit: 33051, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -5825,7 +5825,7 @@ export class PivotSalesData extends Array { Sales: 6979, COGS: 4415, Profit: 2564, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -5841,7 +5841,7 @@ export class PivotSalesData extends Array { Sales: 51315, COGS: 5490, Profit: 45825, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -5857,7 +5857,7 @@ export class PivotSalesData extends Array { Sales: 1050000, COGS: 5490, Profit: 1044510, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -5873,7 +5873,7 @@ export class PivotSalesData extends Array { Sales: 687300, COGS: 197000, Profit: 490300, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -5889,7 +5889,7 @@ export class PivotSalesData extends Array { Sales: 34350, COGS: 24720, Profit: 9630, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -5905,7 +5905,7 @@ export class PivotSalesData extends Array { Sales: 14931, COGS: 5715, Profit: 9216, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -5921,7 +5921,7 @@ export class PivotSalesData extends Array { Sales: 1216250, COGS: 448500, Profit: 767750, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -5937,7 +5937,7 @@ export class PivotSalesData extends Array { Sales: 44232, COGS: 2736, Profit: 41496, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -5953,7 +5953,7 @@ export class PivotSalesData extends Array { Sales: 49785, COGS: 21520, Profit: 28265, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -5969,7 +5969,7 @@ export class PivotSalesData extends Array { Sales: 72340, COGS: 18170, Profit: 54170, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -5985,7 +5985,7 @@ export class PivotSalesData extends Array { Sales: 443100, COGS: 393380, Profit: 49720, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -6001,7 +6001,7 @@ export class PivotSalesData extends Array { Sales: 6258, COGS: 7465, Profit: 1207, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -6017,7 +6017,7 @@ export class PivotSalesData extends Array { Sales: 340625, COGS: 216480, Profit: 124145, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -6033,7 +6033,7 @@ export class PivotSalesData extends Array { Sales: 36732, COGS: 6483, Profit: 30249, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -6049,7 +6049,7 @@ export class PivotSalesData extends Array { Sales: 1385300, COGS: 261560, Profit: 1123740, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -6065,7 +6065,7 @@ export class PivotSalesData extends Array { Sales: 47040, COGS: 4635, Profit: 42405, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -6081,7 +6081,7 @@ export class PivotSalesData extends Array { Sales: 422625, COGS: 338520, Profit: 84105, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -6097,7 +6097,7 @@ export class PivotSalesData extends Array { Sales: 136750, COGS: 41400, Profit: 95350, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -6113,7 +6113,7 @@ export class PivotSalesData extends Array { Sales: 1292100, COGS: 500250, Profit: 791850, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -6129,7 +6129,7 @@ export class PivotSalesData extends Array { Sales: 10536, COGS: 8514, Profit: 2022, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -6145,7 +6145,7 @@ export class PivotSalesData extends Array { Sales: 7440, COGS: 21780, Profit: 14340, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -6161,7 +6161,7 @@ export class PivotSalesData extends Array { Sales: 50505, COGS: 8880, Profit: 41625, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -6177,7 +6177,7 @@ export class PivotSalesData extends Array { Sales: 1358000, COGS: 397020, Profit: 960980, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -6193,7 +6193,7 @@ export class PivotSalesData extends Array { Sales: 616500, COGS: 537750, Profit: 78750, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -6209,7 +6209,7 @@ export class PivotSalesData extends Array { Sales: 80820, COGS: 18170, Profit: 62650, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -6225,7 +6225,7 @@ export class PivotSalesData extends Array { Sales: 1132950, COGS: 715000, Profit: 417950, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -6241,7 +6241,7 @@ export class PivotSalesData extends Array { Sales: 7560, COGS: 5859, Profit: 1701, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -6257,7 +6257,7 @@ export class PivotSalesData extends Array { Sales: 526250, COGS: 506340, Profit: 19910, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -6273,7 +6273,7 @@ export class PivotSalesData extends Array { Sales: 22540, COGS: 18990, Profit: 3550, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -6289,7 +6289,7 @@ export class PivotSalesData extends Array { Sales: 24066, COGS: 8430, Profit: 15636, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -6305,7 +6305,7 @@ export class PivotSalesData extends Array { Sales: 24180, COGS: 6423, Profit: 17757, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -6321,7 +6321,7 @@ export class PivotSalesData extends Array { Sales: 17738, COGS: 5715, Profit: 12023, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -6337,7 +6337,7 @@ export class PivotSalesData extends Array { Sales: 20760, COGS: 6150, Profit: 14610, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -6353,7 +6353,7 @@ export class PivotSalesData extends Array { Sales: 24650.85, COGS: 19725, Profit: 4925.85, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -6369,7 +6369,7 @@ export class PivotSalesData extends Array { Sales: 27000.6, COGS: 22960, Profit: 4040.6, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -6385,7 +6385,7 @@ export class PivotSalesData extends Array { Sales: 19492.9, COGS: 5150, Profit: 14342.9, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -6401,7 +6401,7 @@ export class PivotSalesData extends Array { Sales: 3154.27, COGS: 3195, Profit: 40.73, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -6417,7 +6417,7 @@ export class PivotSalesData extends Array { Sales: 26402.18, COGS: 6630, Profit: 19772.18, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -6433,7 +6433,7 @@ export class PivotSalesData extends Array { Sales: 8753.04, COGS: 5574, Profit: 3179.04, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -6449,7 +6449,7 @@ export class PivotSalesData extends Array { Sales: 353115, COGS: 314600, Profit: 38515, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -6465,7 +6465,7 @@ export class PivotSalesData extends Array { Sales: 14354.97, COGS: 12645, Profit: 1709.97, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -6481,7 +6481,7 @@ export class PivotSalesData extends Array { Sales: 51618.6, COGS: 4335, Profit: 47283.6, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -6497,7 +6497,7 @@ export class PivotSalesData extends Array { Sales: 331337.5, COGS: 39600, Profit: 291737.5, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -6513,7 +6513,7 @@ export class PivotSalesData extends Array { Sales: 49767.48, COGS: 8013, Profit: 41754.48, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -6529,7 +6529,7 @@ export class PivotSalesData extends Array { Sales: 20008.08, COGS: 2298, Profit: 17710.08, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -6545,7 +6545,7 @@ export class PivotSalesData extends Array { Sales: 470118, COGS: 123500, Profit: 346618, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -6561,7 +6561,7 @@ export class PivotSalesData extends Array { Sales: 1302710.5, COGS: 363220, Profit: 939490.5, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -6577,7 +6577,7 @@ export class PivotSalesData extends Array { Sales: 662357.5, COGS: 560300, Profit: 102057.5, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -6593,7 +6593,7 @@ export class PivotSalesData extends Array { Sales: 40797.9, COGS: 22140, Profit: 18657.9, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -6609,7 +6609,7 @@ export class PivotSalesData extends Array { Sales: 442797, COGS: 575250, Profit: 132453, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -6625,7 +6625,7 @@ export class PivotSalesData extends Array { Sales: 75164.9, COGS: 13755, Profit: 61409.9, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -6641,7 +6641,7 @@ export class PivotSalesData extends Array { Sales: 7655.9, COGS: 9150, Profit: 1494.1, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -6657,7 +6657,7 @@ export class PivotSalesData extends Array { Sales: 509406, COGS: 624500, Profit: 115094, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -6673,7 +6673,7 @@ export class PivotSalesData extends Array { Sales: 52046.25, COGS: 79560, Profit: 27513.75, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -6689,7 +6689,7 @@ export class PivotSalesData extends Array { Sales: 35292.9, COGS: 15140, Profit: 20152.9, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -6705,7 +6705,7 @@ export class PivotSalesData extends Array { Sales: 10787.52, COGS: 22462.5, Profit: 11674.98, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -6721,7 +6721,7 @@ export class PivotSalesData extends Array { Sales: 422341.25, COGS: 87240, Profit: 335101.25, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -6737,7 +6737,7 @@ export class PivotSalesData extends Array { Sales: 105516.25, COGS: 94440, Profit: 11076.25, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -6753,7 +6753,7 @@ export class PivotSalesData extends Array { Sales: 345596.25, COGS: 218760, Profit: 126836.25, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -6769,7 +6769,7 @@ export class PivotSalesData extends Array { Sales: 40147.95, COGS: 7470, Profit: 32677.95, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -6785,7 +6785,7 @@ export class PivotSalesData extends Array { Sales: 52624.08, COGS: 2298, Profit: 50326.08, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -6801,7 +6801,7 @@ export class PivotSalesData extends Array { Sales: 1216185, COGS: 726250, Profit: 489935, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -6817,7 +6817,7 @@ export class PivotSalesData extends Array { Sales: 978057.5, COGS: 560300, Profit: 417757.5, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -6833,7 +6833,7 @@ export class PivotSalesData extends Array { Sales: 85107.2, COGS: 38640, Profit: 46467.2, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -6849,7 +6849,7 @@ export class PivotSalesData extends Array { Sales: 19966.66, COGS: 1810, Profit: 18156.66, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -6865,7 +6865,7 @@ export class PivotSalesData extends Array { Sales: 174721.25, COGS: 110760, Profit: 63961.25, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -6881,7 +6881,7 @@ export class PivotSalesData extends Array { Sales: 480421.25, COGS: 79560, Profit: 400861.25, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -6897,7 +6897,7 @@ export class PivotSalesData extends Array { Sales: 19845.56, COGS: 10460, Profit: 9385.56, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -6913,7 +6913,7 @@ export class PivotSalesData extends Array { Sales: 8836.59, COGS: 1315, Profit: 7521.59, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -6929,7 +6929,7 @@ export class PivotSalesData extends Array { Sales: 1358897.75, COGS: 245310, Profit: 1113587.75, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -6945,7 +6945,7 @@ export class PivotSalesData extends Array { Sales: 382591.25, COGS: 87240, Profit: 295351.25, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -6961,7 +6961,7 @@ export class PivotSalesData extends Array { Sales: 271641.25, COGS: 94440, Profit: 177201.25, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -6977,7 +6977,7 @@ export class PivotSalesData extends Array { Sales: 403842, COGS: 246500, Profit: 157342, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -6993,7 +6993,7 @@ export class PivotSalesData extends Array { Sales: 762018, COGS: 123500, Profit: 638518, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -7009,7 +7009,7 @@ export class PivotSalesData extends Array { Sales: 630010.5, COGS: 363220, Profit: 266790.5, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -7025,7 +7025,7 @@ export class PivotSalesData extends Array { Sales: 184695, COGS: 209280, Profit: 24585, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -7041,7 +7041,7 @@ export class PivotSalesData extends Array { Sales: 13609.32, COGS: 5967, Profit: 7642.32, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -7057,7 +7057,7 @@ export class PivotSalesData extends Array { Sales: 62651.85, COGS: 3210, Profit: 59441.85, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -7073,7 +7073,7 @@ export class PivotSalesData extends Array { Sales: 181018.75, COGS: 89100, Profit: 91918.75, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -7089,7 +7089,7 @@ export class PivotSalesData extends Array { Sales: 2269.2, COGS: 3885, Profit: 1615.8, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -7105,7 +7105,7 @@ export class PivotSalesData extends Array { Sales: 1228416, COGS: 53500, Profit: 1174916, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -7121,7 +7121,7 @@ export class PivotSalesData extends Array { Sales: 18319.7, COGS: 10725, Profit: 7594.7, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -7137,7 +7137,7 @@ export class PivotSalesData extends Array { Sales: 178136, COGS: 741520, Profit: 563384, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7153,7 +7153,7 @@ export class PivotSalesData extends Array { Sales: 38785.92, COGS: 3426, Profit: 35359.92, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -7169,7 +7169,7 @@ export class PivotSalesData extends Array { Sales: 14813.6, COGS: 15660, Profit: 846.4, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -7185,7 +7185,7 @@ export class PivotSalesData extends Array { Sales: 13454.4, COGS: 2070, Profit: 11384.4, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -7201,7 +7201,7 @@ export class PivotSalesData extends Array { Sales: 474100, COGS: 199200, Profit: 274900, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -7217,7 +7217,7 @@ export class PivotSalesData extends Array { Sales: 17186.1, COGS: 23630, Profit: 6443.9, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -7233,7 +7233,7 @@ export class PivotSalesData extends Array { Sales: 753492, COGS: 229500, Profit: 523992, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -7249,7 +7249,7 @@ export class PivotSalesData extends Array { Sales: 1024932, COGS: 432000, Profit: 592932, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -7265,7 +7265,7 @@ export class PivotSalesData extends Array { Sales: 36433.92, COGS: 3426, Profit: 33007.92, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -7281,7 +7281,7 @@ export class PivotSalesData extends Array { Sales: 492970, COGS: 79440, Profit: 413530, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -7297,7 +7297,7 @@ export class PivotSalesData extends Array { Sales: 41017.2, COGS: 3885, Profit: 37132.2, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -7313,7 +7313,7 @@ export class PivotSalesData extends Array { Sales: 546477.5, COGS: 97080, Profit: 449397.5, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -7329,7 +7329,7 @@ export class PivotSalesData extends Array { Sales: 257887.5, COGS: 257400, Profit: 487.5, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -7345,7 +7345,7 @@ export class PivotSalesData extends Array { Sales: 9159.6, COGS: 5355, Profit: 3804.6, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -7361,7 +7361,7 @@ export class PivotSalesData extends Array { Sales: 934704, COGS: 479000, Profit: 455704, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7377,7 +7377,7 @@ export class PivotSalesData extends Array { Sales: 1417836, COGS: 741520, Profit: 676316, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7393,7 +7393,7 @@ export class PivotSalesData extends Array { Sales: 463177.5, COGS: 327480, Profit: 135697.5, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7409,7 +7409,7 @@ export class PivotSalesData extends Array { Sales: 5077.5, COGS: 19250, Profit: 14172.5, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -7425,7 +7425,7 @@ export class PivotSalesData extends Array { Sales: 14488.18, COGS: 10065, Profit: 4423.18, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -7441,7 +7441,7 @@ export class PivotSalesData extends Array { Sales: 27754.8, COGS: 3165, Profit: 24589.8, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7457,7 +7457,7 @@ export class PivotSalesData extends Array { Sales: 6699.84, COGS: 3252, Profit: 3447.84, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7473,7 +7473,7 @@ export class PivotSalesData extends Array { Sales: 51573.6, COGS: 15660, Profit: 35913.6, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -7489,7 +7489,7 @@ export class PivotSalesData extends Array { Sales: 538538, COGS: 771160, Profit: 232622, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -7505,7 +7505,7 @@ export class PivotSalesData extends Array { Sales: 490511, COGS: 748020, Profit: 257509, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -7521,7 +7521,7 @@ export class PivotSalesData extends Array { Sales: 408477.5, COGS: 97080, Profit: 311397.5, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -7537,7 +7537,7 @@ export class PivotSalesData extends Array { Sales: 144262.5, COGS: 257400, Profit: 113137.5, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -7553,7 +7553,7 @@ export class PivotSalesData extends Array { Sales: 45034.8, COGS: 3165, Profit: 41869.8, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7569,7 +7569,7 @@ export class PivotSalesData extends Array { Sales: 45842.4, COGS: 5440, Profit: 40402.4, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -7585,7 +7585,7 @@ export class PivotSalesData extends Array { Sales: 30603.84, COGS: 3252, Profit: 27351.84, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7601,7 +7601,7 @@ export class PivotSalesData extends Array { Sales: 38345, COGS: 79440, Profit: 41095, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -7617,7 +7617,7 @@ export class PivotSalesData extends Array { Sales: 636516, COGS: 53500, Profit: 583016, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -7633,7 +7633,7 @@ export class PivotSalesData extends Array { Sales: 1126111, COGS: 748020, Profit: 378091, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -7649,7 +7649,7 @@ export class PivotSalesData extends Array { Sales: 440927.5, COGS: 327480, Profit: 113447.5, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7665,7 +7665,7 @@ export class PivotSalesData extends Array { Sales: 272188, COGS: 69160, Profit: 203028, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -7681,7 +7681,7 @@ export class PivotSalesData extends Array { Sales: 407120, COGS: 504400, Profit: 97280, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -7697,7 +7697,7 @@ export class PivotSalesData extends Array { Sales: 1215246, COGS: 64750, Profit: 1150496, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -7713,7 +7713,7 @@ export class PivotSalesData extends Array { Sales: 636594, COGS: 275250, Profit: 361344, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -7729,7 +7729,7 @@ export class PivotSalesData extends Array { Sales: 432060, COGS: 273120, Profit: 158940, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -7745,7 +7745,7 @@ export class PivotSalesData extends Array { Sales: 468188, COGS: 771160, Profit: 302972, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -7761,7 +7761,7 @@ export class PivotSalesData extends Array { Sales: 13085.6, COGS: 12360, Profit: 725.6, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -7777,7 +7777,7 @@ export class PivotSalesData extends Array { Sales: 46643.6, COGS: 9410, Profit: 37233.6, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -7793,7 +7793,7 @@ export class PivotSalesData extends Array { Sales: 601404, COGS: 479000, Profit: 122404, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7809,7 +7809,7 @@ export class PivotSalesData extends Array { Sales: 429711.88, COGS: 509220, Profit: 79508.13, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -7825,7 +7825,7 @@ export class PivotSalesData extends Array { Sales: 26472, COGS: 25800, Profit: 672, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -7841,7 +7841,7 @@ export class PivotSalesData extends Array { Sales: 616899, COGS: 172250, Profit: 444649, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -7857,7 +7857,7 @@ export class PivotSalesData extends Array { Sales: 43015.08, COGS: 5841, Profit: 37174.08, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -7873,7 +7873,7 @@ export class PivotSalesData extends Array { Sales: 12933.12, COGS: 2724, Profit: 10209.12, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -7889,7 +7889,7 @@ export class PivotSalesData extends Array { Sales: 20308.82, COGS: 9790, Profit: 10518.82, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -7905,7 +7905,7 @@ export class PivotSalesData extends Array { Sales: 13727.64, COGS: 5703, Profit: 8024.64, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -7921,7 +7921,7 @@ export class PivotSalesData extends Array { Sales: 16132.76, COGS: 2720, Profit: 13412.76, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -7937,7 +7937,7 @@ export class PivotSalesData extends Array { Sales: 1255131.5, COGS: 467220, Profit: 787911.5, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -7953,7 +7953,7 @@ export class PivotSalesData extends Array { Sales: 491673.75, COGS: 154440, Profit: 337233.75, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7969,7 +7969,7 @@ export class PivotSalesData extends Array { Sales: 478352.5, COGS: 204720, Profit: 273632.5, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -7985,7 +7985,7 @@ export class PivotSalesData extends Array { Sales: 661489.5, COGS: 608625, Profit: 52864.5, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -8001,7 +8001,7 @@ export class PivotSalesData extends Array { Sales: 127722.5, COGS: 212880, Profit: 85157.5, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -8017,7 +8017,7 @@ export class PivotSalesData extends Array { Sales: 47915.64, COGS: 5703, Profit: 42212.64, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -8033,7 +8033,7 @@ export class PivotSalesData extends Array { Sales: 904299, COGS: 172250, Profit: 732049, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -8049,7 +8049,7 @@ export class PivotSalesData extends Array { Sales: 448612.5, COGS: 188400, Profit: 260212.5, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -8065,7 +8065,7 @@ export class PivotSalesData extends Array { Sales: 16054.98, COGS: 4108.5, Profit: 11946.48, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -8081,7 +8081,7 @@ export class PivotSalesData extends Array { Sales: 553966.25, COGS: 241080, Profit: 312886.25, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -8097,7 +8097,7 @@ export class PivotSalesData extends Array { Sales: 10584.75, COGS: 19450, Profit: 8865.25, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -8113,7 +8113,7 @@ export class PivotSalesData extends Array { Sales: 213173.75, COGS: 154440, Profit: 58733.75, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -8129,7 +8129,7 @@ export class PivotSalesData extends Array { Sales: 286227.5, COGS: 204720, Profit: 81507.5, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -8145,7 +8145,7 @@ export class PivotSalesData extends Array { Sales: 471841.25, COGS: 241080, Profit: 230761.25, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -8161,7 +8161,7 @@ export class PivotSalesData extends Array { Sales: 322704, COGS: 711000, Profit: 388296, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -8177,7 +8177,7 @@ export class PivotSalesData extends Array { Sales: 9822.24, COGS: 5748, Profit: 4074.24, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -8193,7 +8193,7 @@ export class PivotSalesData extends Array { Sales: 207237.5, COGS: 188400, Profit: 18837.5, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -8209,7 +8209,7 @@ export class PivotSalesData extends Array { Sales: 524634, COGS: 468500, Profit: 56134, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -8225,7 +8225,7 @@ export class PivotSalesData extends Array { Sales: 118909, COGS: 426920, Profit: 308011, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -8241,7 +8241,7 @@ export class PivotSalesData extends Array { Sales: 40299.75, COGS: 19450, Profit: 20849.75, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -8257,7 +8257,7 @@ export class PivotSalesData extends Array { Sales: 28681.4, COGS: 8310, Profit: 20371.4, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -8273,7 +8273,7 @@ export class PivotSalesData extends Array { Sales: 27196.4, COGS: 8800, Profit: 18396.4, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -8289,7 +8289,7 @@ export class PivotSalesData extends Array { Sales: 82409.7, COGS: 38505, Profit: 43904.7, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -8305,7 +8305,7 @@ export class PivotSalesData extends Array { Sales: 42631.56, COGS: 7437, Profit: 35194.56, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -8321,7 +8321,7 @@ export class PivotSalesData extends Array { Sales: 25121.4, COGS: 20310, Profit: 4811.4, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -8337,7 +8337,7 @@ export class PivotSalesData extends Array { Sales: 3386.4, COGS: 20310, Profit: 16923.6, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -8353,7 +8353,7 @@ export class PivotSalesData extends Array { Sales: 65978.4, COGS: 22610, Profit: 43368.4, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -8369,7 +8369,7 @@ export class PivotSalesData extends Array { Sales: 42751.2, COGS: 7360, Profit: 35391.2, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -8385,7 +8385,7 @@ export class PivotSalesData extends Array { Sales: 7160.72, COGS: 14255, Profit: 7094.28, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -8401,7 +8401,7 @@ export class PivotSalesData extends Array { Sales: 342348, COGS: 505250, Profit: 162902, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -8417,7 +8417,7 @@ export class PivotSalesData extends Array { Sales: 167314, COGS: 71240, Profit: 96074, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -8433,7 +8433,7 @@ export class PivotSalesData extends Array { Sales: 60814.8, COGS: 19670, Profit: 41144.8, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -8449,7 +8449,7 @@ export class PivotSalesData extends Array { Sales: 800592, COGS: 464750, Profit: 335842, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -8465,7 +8465,7 @@ export class PivotSalesData extends Array { Sales: 25094.72, COGS: 14255, Profit: 10839.72, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -8481,7 +8481,7 @@ export class PivotSalesData extends Array { Sales: 1313748, COGS: 505250, Profit: 808498, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -8497,7 +8497,7 @@ export class PivotSalesData extends Array { Sales: 148310, COGS: 136560, Profit: 11750, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -8513,7 +8513,7 @@ export class PivotSalesData extends Array { Sales: 16911.72, COGS: 21255, Profit: 4343.28, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -8529,7 +8529,7 @@ export class PivotSalesData extends Array { Sales: 162525, COGS: 95400, Profit: 67125, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -8545,7 +8545,7 @@ export class PivotSalesData extends Array { Sales: 1329126, COGS: 353625, Profit: 975501, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -8561,7 +8561,7 @@ export class PivotSalesData extends Array { Sales: 1123584, COGS: 729500, Profit: 394084, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -8577,7 +8577,7 @@ export class PivotSalesData extends Array { Sales: 569450, COGS: 897000, Profit: 327550, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -8593,7 +8593,7 @@ export class PivotSalesData extends Array { Sales: 426685, COGS: 358560, Profit: 68125, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -8609,7 +8609,7 @@ export class PivotSalesData extends Array { Sales: 30109.2, COGS: 2180, Profit: 27929.2, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -8625,7 +8625,7 @@ export class PivotSalesData extends Array { Sales: 57100.8, COGS: 20740, Profit: 36360.8, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -8641,7 +8641,7 @@ export class PivotSalesData extends Array { Sales: 66195.2, COGS: 10560, Profit: 55635.2, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -8657,7 +8657,7 @@ export class PivotSalesData extends Array { Sales: 65732.4, COGS: 6710, Profit: 59022.4, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -8673,7 +8673,7 @@ export class PivotSalesData extends Array { Sales: 48936.6, COGS: 15140, Profit: 33796.6, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -8689,7 +8689,7 @@ export class PivotSalesData extends Array { Sales: 846664, COGS: 71240, Profit: 775424, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -8705,7 +8705,7 @@ export class PivotSalesData extends Array { Sales: 61185, COGS: 136560, Profit: 75375, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -8721,7 +8721,7 @@ export class PivotSalesData extends Array { Sales: 17572.8, COGS: 4395, Profit: 13177.8, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -8737,7 +8737,7 @@ export class PivotSalesData extends Array { Sales: 70503.2, COGS: 26460, Profit: 44043.2, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -8753,7 +8753,7 @@ export class PivotSalesData extends Array { Sales: 593222, COGS: 566020, Profit: 27202, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -8769,7 +8769,7 @@ export class PivotSalesData extends Array { Sales: 3748.32, COGS: 2598, Profit: 1150.32, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -8785,7 +8785,7 @@ export class PivotSalesData extends Array { Sales: 1446564, COGS: 90740, Profit: 1355824, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -8801,7 +8801,7 @@ export class PivotSalesData extends Array { Sales: 1197672, COGS: 566020, Profit: 631652, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -8817,7 +8817,7 @@ export class PivotSalesData extends Array { Sales: 40701.6, COGS: 15140, Profit: 25561.6, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -8833,7 +8833,7 @@ export class PivotSalesData extends Array { Sales: 1003940, COGS: 484900, Profit: 519040, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -8849,7 +8849,7 @@ export class PivotSalesData extends Array { Sales: 499255, COGS: 128880, Profit: 370375, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -8865,7 +8865,7 @@ export class PivotSalesData extends Array { Sales: 1424402, COGS: 495820, Profit: 928582, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -8881,7 +8881,7 @@ export class PivotSalesData extends Array { Sales: 61442.4, COGS: 6710, Profit: 54732.4, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -8897,7 +8897,7 @@ export class PivotSalesData extends Array { Sales: 443058, COGS: 462280, Profit: 19222, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -8913,7 +8913,7 @@ export class PivotSalesData extends Array { Sales: 3787.35, COGS: 5795, Profit: 2007.65, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -8929,7 +8929,7 @@ export class PivotSalesData extends Array { Sales: 4594.8, COGS: 6860, Profit: 2265.2, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -8945,7 +8945,7 @@ export class PivotSalesData extends Array { Sales: 2516.85, COGS: 11745, Profit: 9228.15, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -8961,7 +8961,7 @@ export class PivotSalesData extends Array { Sales: 15333.85, COGS: 13445, Profit: 1888.85, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -8977,7 +8977,7 @@ export class PivotSalesData extends Array { Sales: 6641.4, COGS: 7293, Profit: 651.6, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -8993,7 +8993,7 @@ export class PivotSalesData extends Array { Sales: 34421.4, COGS: 7293, Profit: 27128.4, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -9009,7 +9009,7 @@ export class PivotSalesData extends Array { Sales: 6562.85, COGS: 13445, Profit: 6882.15, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -9025,7 +9025,7 @@ export class PivotSalesData extends Array { Sales: 6746.95, COGS: 8415, Profit: 1668.05, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -9041,7 +9041,7 @@ export class PivotSalesData extends Array { Sales: 4954.2, COGS: 3369, Profit: 1585.2, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -9057,7 +9057,7 @@ export class PivotSalesData extends Array { Sales: 5222.35, COGS: 5795, Profit: 572.65, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -9073,7 +9073,7 @@ export class PivotSalesData extends Array { Sales: 49761, COGS: 5595, Profit: 44166, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -9089,7 +9089,7 @@ export class PivotSalesData extends Array { Sales: 23042.4, COGS: 3348, Profit: 19694.4, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -9105,7 +9105,7 @@ export class PivotSalesData extends Array { Sales: 38117, COGS: 15630, Profit: 22487, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -9121,7 +9121,7 @@ export class PivotSalesData extends Array { Sales: 129135, COGS: 247750, Profit: 118615, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -9137,7 +9137,7 @@ export class PivotSalesData extends Array { Sales: 24501.4, COGS: 5080, Profit: 19421.4, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -9153,7 +9153,7 @@ export class PivotSalesData extends Array { Sales: 15981.75, COGS: 27910, Profit: 11928.25, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -9169,7 +9169,7 @@ export class PivotSalesData extends Array { Sales: 17160.5, COGS: 2850, Profit: 14310.5, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -9185,7 +9185,7 @@ export class PivotSalesData extends Array { Sales: 19611.55, COGS: 12435, Profit: 7176.55, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -9201,7 +9201,7 @@ export class PivotSalesData extends Array { Sales: 1099271.25, COGS: 359970, Profit: 739301.25, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -9217,7 +9217,7 @@ export class PivotSalesData extends Array { Sales: 379956.25, COGS: 435240, Profit: 55283.75, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -9233,7 +9233,7 @@ export class PivotSalesData extends Array { Sales: 823550, COGS: 187200, Profit: 636350, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -9249,7 +9249,7 @@ export class PivotSalesData extends Array { Sales: 12118.8, COGS: 7026, Profit: 5092.8, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -9265,7 +9265,7 @@ export class PivotSalesData extends Array { Sales: 79200, COGS: 275000, Profit: 195800, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -9281,7 +9281,7 @@ export class PivotSalesData extends Array { Sales: 30897, COGS: 13030, Profit: 17867, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -9297,7 +9297,7 @@ export class PivotSalesData extends Array { Sales: 493800, COGS: 359040, Profit: 134760, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -9313,7 +9313,7 @@ export class PivotSalesData extends Array { Sales: 111593.75, COGS: 286200, Profit: 174606.25, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -9329,7 +9329,7 @@ export class PivotSalesData extends Array { Sales: 976995, COGS: 401750, Profit: 575245, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -9345,7 +9345,7 @@ export class PivotSalesData extends Array { Sales: 26870.55, COGS: 11635, Profit: 15235.55, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -9361,7 +9361,7 @@ export class PivotSalesData extends Array { Sales: 1289235, COGS: 247750, Profit: 1041485, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -9377,7 +9377,7 @@ export class PivotSalesData extends Array { Sales: 531265, COGS: 156520, Profit: 374745, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -9393,7 +9393,7 @@ export class PivotSalesData extends Array { Sales: 30330, COGS: 26200, Profit: 4130, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -9409,7 +9409,7 @@ export class PivotSalesData extends Array { Sales: 1304660, COGS: 319280, Profit: 985380, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -9425,7 +9425,7 @@ export class PivotSalesData extends Array { Sales: 85891, COGS: 13890, Profit: 72001, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -9441,7 +9441,7 @@ export class PivotSalesData extends Array { Sales: 510368.75, COGS: 103320, Profit: 407048.75, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -9457,7 +9457,7 @@ export class PivotSalesData extends Array { Sales: 163475, COGS: 84480, Profit: 78995, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -9473,7 +9473,7 @@ export class PivotSalesData extends Array { Sales: 3098, COGS: 18020, Profit: 14922, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -9489,7 +9489,7 @@ export class PivotSalesData extends Array { Sales: 64857, COGS: 26630, Profit: 38227, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -9505,7 +9505,7 @@ export class PivotSalesData extends Array { Sales: 9059.4, COGS: 10680, Profit: 1620.6, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -9521,7 +9521,7 @@ export class PivotSalesData extends Array { Sales: 50658, COGS: 21160, Profit: 29498, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -9537,7 +9537,7 @@ export class PivotSalesData extends Array { Sales: 33243.75, COGS: 5550, Profit: 27693.75, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -9553,7 +9553,7 @@ export class PivotSalesData extends Array { Sales: 18254.25, COGS: 28610, Profit: 10355.75, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -9569,7 +9569,7 @@ export class PivotSalesData extends Array { Sales: 29831.25, COGS: 96840, Profit: 67008.75, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -9585,7 +9585,7 @@ export class PivotSalesData extends Array { Sales: 871815, COGS: 156520, Profit: 715295, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -9601,7 +9601,7 @@ export class PivotSalesData extends Array { Sales: 45828, COGS: 28320, Profit: 17508, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -9617,7 +9617,7 @@ export class PivotSalesData extends Array { Sales: 33181, COGS: 15790, Profit: 17391, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -9633,7 +9633,7 @@ export class PivotSalesData extends Array { Sales: 132868.75, COGS: 103320, Profit: 29548.75, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -9649,7 +9649,7 @@ export class PivotSalesData extends Array { Sales: 417975, COGS: 84480, Profit: 333495, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -9665,7 +9665,7 @@ export class PivotSalesData extends Array { Sales: 23387, COGS: 10330, Profit: 13057, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -9681,7 +9681,7 @@ export class PivotSalesData extends Array { Sales: 45150, COGS: 312500, Profit: 267350, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -9697,7 +9697,7 @@ export class PivotSalesData extends Array { Sales: 65311, COGS: 13890, Profit: 51421, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -9713,7 +9713,7 @@ export class PivotSalesData extends Array { Sales: 23935, COGS: 12650, Profit: 11285, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -9729,7 +9729,7 @@ export class PivotSalesData extends Array { Sales: 58383, COGS: 22970, Profit: 35413, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -9745,7 +9745,7 @@ export class PivotSalesData extends Array { Sales: 55917, COGS: 26630, Profit: 29287, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -9761,7 +9761,7 @@ export class PivotSalesData extends Array { Sales: 16523.5, COGS: 2850, Profit: 13673.5, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -9777,7 +9777,7 @@ export class PivotSalesData extends Array { Sales: 20731.55, COGS: 12435, Profit: 8296.55, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -9793,7 +9793,7 @@ export class PivotSalesData extends Array { Sales: 237125, COGS: 351000, Profit: 113875, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -9809,7 +9809,7 @@ export class PivotSalesData extends Array { Sales: 433440, COGS: 143520, Profit: 289920, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -9825,7 +9825,7 @@ export class PivotSalesData extends Array { Sales: 1305010, COGS: 319280, Profit: 985730, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -9841,7 +9841,7 @@ export class PivotSalesData extends Array { Sales: 1267350, COGS: 312500, Profit: 954850, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -9857,7 +9857,7 @@ export class PivotSalesData extends Array { Sales: 44474.1, COGS: 38010, Profit: 6464.1, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -9873,7 +9873,7 @@ export class PivotSalesData extends Array { Sales: 37999, COGS: 11175, Profit: 26824, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -9889,7 +9889,7 @@ export class PivotSalesData extends Array { Sales: 6905.4, COGS: 28440, Profit: 21534.6, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -9905,7 +9905,7 @@ export class PivotSalesData extends Array { Sales: 41223.36, COGS: 1686, Profit: 39537.36, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -9921,7 +9921,7 @@ export class PivotSalesData extends Array { Sales: 5184.72, COGS: 6897, Profit: 1712.28, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -9937,7 +9937,7 @@ export class PivotSalesData extends Array { Sales: 46398, COGS: 20300, Profit: 26098, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -9953,7 +9953,7 @@ export class PivotSalesData extends Array { Sales: 26167.54, COGS: 1315, Profit: 24852.54, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -9969,7 +9969,7 @@ export class PivotSalesData extends Array { Sales: 266722.5, COGS: 106440, Profit: 160282.5, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -9985,7 +9985,7 @@ export class PivotSalesData extends Array { Sales: 665070, COGS: 254800, Profit: 410270, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -10001,7 +10001,7 @@ export class PivotSalesData extends Array { Sales: 732690, COGS: 379600, Profit: 353090, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -10017,7 +10017,7 @@ export class PivotSalesData extends Array { Sales: 24323.74, COGS: 7015, Profit: 17308.74, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10033,7 +10033,7 @@ export class PivotSalesData extends Array { Sales: 24499.44, COGS: 8169, Profit: 16330.44, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -10049,7 +10049,7 @@ export class PivotSalesData extends Array { Sales: 630084, COGS: 388960, Profit: 241124, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -10065,7 +10065,7 @@ export class PivotSalesData extends Array { Sales: 13896.72, COGS: 6897, Profit: 6999.72, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10081,7 +10081,7 @@ export class PivotSalesData extends Array { Sales: 255983, COGS: 189020, Profit: 66963, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10097,7 +10097,7 @@ export class PivotSalesData extends Array { Sales: 294985, COGS: 114240, Profit: 180745, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -10113,7 +10113,7 @@ export class PivotSalesData extends Array { Sales: 124087.5, COGS: 330600, Profit: 206512.5, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -10129,7 +10129,7 @@ export class PivotSalesData extends Array { Sales: 10668, COGS: 15300, Profit: 4632, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -10145,7 +10145,7 @@ export class PivotSalesData extends Array { Sales: 1265334, COGS: 388960, Profit: 876374, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -10161,7 +10161,7 @@ export class PivotSalesData extends Array { Sales: 3493.84, COGS: 7490, Profit: 3996.16, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -10177,7 +10177,7 @@ export class PivotSalesData extends Array { Sales: 1117122, COGS: 305250, Profit: 811872, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10193,7 +10193,7 @@ export class PivotSalesData extends Array { Sales: 418754, COGS: 539760, Profit: 121006, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10209,7 +10209,7 @@ export class PivotSalesData extends Array { Sales: 57425.4, COGS: 28440, Profit: 28985.4, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -10225,7 +10225,7 @@ export class PivotSalesData extends Array { Sales: 29162.84, COGS: 7490, Profit: 21672.84, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -10241,7 +10241,7 @@ export class PivotSalesData extends Array { Sales: 470922, COGS: 305250, Profit: 165672, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10257,7 +10257,7 @@ export class PivotSalesData extends Array { Sales: 36892.4, COGS: 11230, Profit: 25662.4, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -10273,7 +10273,7 @@ export class PivotSalesData extends Array { Sales: 439152, COGS: 609000, Profit: 169848, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -10289,7 +10289,7 @@ export class PivotSalesData extends Array { Sales: 255093.75, COGS: 238500, Profit: 16593.75, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -10305,7 +10305,7 @@ export class PivotSalesData extends Array { Sales: 127841, COGS: 436540, Profit: 308699, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -10321,7 +10321,7 @@ export class PivotSalesData extends Array { Sales: 99533, COGS: 189020, Profit: 89487, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10337,7 +10337,7 @@ export class PivotSalesData extends Array { Sales: 28103.74, COGS: 7015, Profit: 21088.74, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10353,7 +10353,7 @@ export class PivotSalesData extends Array { Sales: 302904, COGS: 539760, Profit: 236856, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10369,7 +10369,7 @@ export class PivotSalesData extends Array { Sales: 26551.6, COGS: 17570, Profit: 8981.6, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10385,7 +10385,7 @@ export class PivotSalesData extends Array { Sales: 20191.8, COGS: 21980, Profit: 1788.2, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -10401,7 +10401,7 @@ export class PivotSalesData extends Array { Sales: 55401.3, COGS: 17430, Profit: 37971.3, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -10417,7 +10417,7 @@ export class PivotSalesData extends Array { Sales: 5667.3, COGS: 11530, Profit: 5862.7, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -10433,7 +10433,7 @@ export class PivotSalesData extends Array { Sales: 32111.6, COGS: 17570, Profit: 14541.6, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -10449,7 +10449,7 @@ export class PivotSalesData extends Array { Sales: 13698.8, COGS: 10010, Profit: 3688.8, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -10465,7 +10465,7 @@ export class PivotSalesData extends Array { Sales: 11564.14, COGS: 6665, Profit: 4899.14, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -10481,7 +10481,7 @@ export class PivotSalesData extends Array { Sales: 25347.3, COGS: 11530, Profit: 13817.3, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -10497,7 +10497,7 @@ export class PivotSalesData extends Array { Sales: 3445.32, COGS: 2181, Profit: 1264.32, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -10513,7 +10513,7 @@ export class PivotSalesData extends Array { Sales: 45349.44, COGS: 5652, Profit: 39697.44, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -10529,7 +10529,7 @@ export class PivotSalesData extends Array { Sales: 71252.4, COGS: 18340, Profit: 52912.4, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -10545,7 +10545,7 @@ export class PivotSalesData extends Array { Sales: 51710.4, COGS: 7020, Profit: 44690.4, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -10561,7 +10561,7 @@ export class PivotSalesData extends Array { Sales: 2628.72, COGS: 7026, Profit: 4397.28, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -10577,7 +10577,7 @@ export class PivotSalesData extends Array { Sales: 21229.81, COGS: 5155, Profit: 16074.81, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -10593,7 +10593,7 @@ export class PivotSalesData extends Array { Sales: 14604.9, COGS: 12620, Profit: 1984.9, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -10609,7 +10609,7 @@ export class PivotSalesData extends Array { Sales: 28024.85, COGS: 5675, Profit: 22349.85, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -10625,7 +10625,7 @@ export class PivotSalesData extends Array { Sales: 27549.97, COGS: 2735, Profit: 24814.97, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -10641,7 +10641,7 @@ export class PivotSalesData extends Array { Sales: 25285.82, COGS: 7910, Profit: 17375.82, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -10657,7 +10657,7 @@ export class PivotSalesData extends Array { Sales: 27759.66, COGS: 5215.5, Profit: 22544.16, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -10673,7 +10673,7 @@ export class PivotSalesData extends Array { Sales: 18275.4, COGS: 6645, Profit: 11630.4, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -10689,7 +10689,7 @@ export class PivotSalesData extends Array { Sales: 11565.82, COGS: 7910, Profit: 3655.82, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -10705,7 +10705,7 @@ export class PivotSalesData extends Array { Sales: 30754.85, COGS: 5675, Profit: 25079.85, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -10721,7 +10721,7 @@ export class PivotSalesData extends Array { Sales: 392955.5, COGS: 457860, Profit: 64904.5, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -10737,7 +10737,7 @@ export class PivotSalesData extends Array { Sales: 475092, COGS: 112000, Profit: 363092, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -10753,7 +10753,7 @@ export class PivotSalesData extends Array { Sales: 178899, COGS: 545250, Profit: 366351, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -10769,7 +10769,7 @@ export class PivotSalesData extends Array { Sales: 23593.6, COGS: 19760, Profit: 3833.6, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -10785,7 +10785,7 @@ export class PivotSalesData extends Array { Sales: 818799, COGS: 545250, Profit: 273549, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -10801,7 +10801,7 @@ export class PivotSalesData extends Array { Sales: 358000, COGS: 300000, Profit: 58000, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -10817,7 +10817,7 @@ export class PivotSalesData extends Array { Sales: 709458, COGS: 425500, Profit: 283958, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -10833,7 +10833,7 @@ export class PivotSalesData extends Array { Sales: 941292, COGS: 112000, Profit: 829292, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -10849,7 +10849,7 @@ export class PivotSalesData extends Array { Sales: 479261.25, COGS: 421560, Profit: 57701.25, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -10865,7 +10865,7 @@ export class PivotSalesData extends Array { Sales: 56938.95, COGS: 21010, Profit: 35928.95, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -10881,7 +10881,7 @@ export class PivotSalesData extends Array { Sales: 8682.45, COGS: 29310, Profit: 20627.55, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -10897,7 +10897,7 @@ export class PivotSalesData extends Array { Sales: 2911, COGS: 15350, Profit: 12439, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -10913,7 +10913,7 @@ export class PivotSalesData extends Array { Sales: 371217, COGS: 280750, Profit: 90467, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -10929,7 +10929,7 @@ export class PivotSalesData extends Array { Sales: 212916, COGS: 351000, Profit: 138084, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -10945,7 +10945,7 @@ export class PivotSalesData extends Array { Sales: 37219.08, COGS: 8289, Profit: 28930.08, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -10961,7 +10961,7 @@ export class PivotSalesData extends Array { Sales: 2598.75, COGS: 10625, Profit: 8026.25, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -10977,7 +10977,7 @@ export class PivotSalesData extends Array { Sales: 204861, COGS: 414750, Profit: 209889, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -10993,7 +10993,7 @@ export class PivotSalesData extends Array { Sales: 77987.4, COGS: 6090, Profit: 71897.4, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -11009,7 +11009,7 @@ export class PivotSalesData extends Array { Sales: 293988.75, COGS: 250440, Profit: 43548.75, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -11025,7 +11025,7 @@ export class PivotSalesData extends Array { Sales: 47573.6, COGS: 19760, Profit: 27813.6, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -11041,7 +11041,7 @@ export class PivotSalesData extends Array { Sales: 61650.6, COGS: 14210, Profit: 47440.6, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -11057,7 +11057,7 @@ export class PivotSalesData extends Array { Sales: 314688, COGS: 343000, Profit: 28312, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -11073,7 +11073,7 @@ export class PivotSalesData extends Array { Sales: 17076.8, COGS: 5880, Profit: 11196.8, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -11089,7 +11089,7 @@ export class PivotSalesData extends Array { Sales: 43042.62, COGS: 9733.5, Profit: 33309.12, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -11105,7 +11105,7 @@ export class PivotSalesData extends Array { Sales: 336261, COGS: 239750, Profit: 96511, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -11121,7 +11121,7 @@ export class PivotSalesData extends Array { Sales: 612213, COGS: 686750, Profit: 74537, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -11137,7 +11137,7 @@ export class PivotSalesData extends Array { Sales: 38231.25, COGS: 197400, Profit: 159168.75, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -11153,7 +11153,7 @@ export class PivotSalesData extends Array { Sales: 23688, COGS: 747760, Profit: 724072, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -11169,7 +11169,7 @@ export class PivotSalesData extends Array { Sales: 462052.5, COGS: 119280, Profit: 342772.5, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -11185,7 +11185,7 @@ export class PivotSalesData extends Array { Sales: 17474.8, COGS: 11180, Profit: 6294.8, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -11201,7 +11201,7 @@ export class PivotSalesData extends Array { Sales: 860388, COGS: 343000, Profit: 517388, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -11217,7 +11217,7 @@ export class PivotSalesData extends Array { Sales: 10261.72, COGS: 2440, Profit: 7821.72, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -11233,7 +11233,7 @@ export class PivotSalesData extends Array { Sales: 31508.8, COGS: 12820, Profit: 18688.8, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11249,7 +11249,7 @@ export class PivotSalesData extends Array { Sales: 29599.08, COGS: 1285, Profit: 28314.08, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -11265,7 +11265,7 @@ export class PivotSalesData extends Array { Sales: 31488.8, COGS: 12820, Profit: 18668.8, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11281,7 +11281,7 @@ export class PivotSalesData extends Array { Sales: 365975, COGS: 184800, Profit: 181175, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -11297,7 +11297,7 @@ export class PivotSalesData extends Array { Sales: 49992, COGS: 4900, Profit: 45092, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -11313,7 +11313,7 @@ export class PivotSalesData extends Array { Sales: 551964, COGS: 354120, Profit: 197844, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -11329,7 +11329,7 @@ export class PivotSalesData extends Array { Sales: 43288.8, COGS: 25010, Profit: 18278.8, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -11345,7 +11345,7 @@ export class PivotSalesData extends Array { Sales: 81867.2, COGS: 7080, Profit: 74787.2, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11361,7 +11361,7 @@ export class PivotSalesData extends Array { Sales: 59508, COGS: 6450, Profit: 53058, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -11377,7 +11377,7 @@ export class PivotSalesData extends Array { Sales: 1270212, COGS: 390500, Profit: 879712, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -11393,7 +11393,7 @@ export class PivotSalesData extends Array { Sales: 1057608, COGS: 320750, Profit: 736858, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -11409,7 +11409,7 @@ export class PivotSalesData extends Array { Sales: 22981.8, COGS: 7110, Profit: 15871.8, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -11425,7 +11425,7 @@ export class PivotSalesData extends Array { Sales: 323735, COGS: 133680, Profit: 190055, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -11441,7 +11441,7 @@ export class PivotSalesData extends Array { Sales: 23101.96, COGS: 6295, Profit: 16806.96, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -11457,7 +11457,7 @@ export class PivotSalesData extends Array { Sales: 19091.8, COGS: 5475, Profit: 13616.8, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -11473,7 +11473,7 @@ export class PivotSalesData extends Array { Sales: 57094.4, COGS: 13660, Profit: 43434.4, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11489,7 +11489,7 @@ export class PivotSalesData extends Array { Sales: 1192860, COGS: 615000, Profit: 577860, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11505,7 +11505,7 @@ export class PivotSalesData extends Array { Sales: 7719.32, COGS: 3390, Profit: 4329.32, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -11521,7 +11521,7 @@ export class PivotSalesData extends Array { Sales: 20560.12, COGS: 7990, Profit: 12570.12, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -11537,7 +11537,7 @@ export class PivotSalesData extends Array { Sales: 12384.96, COGS: 12045, Profit: 339.96, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -11553,7 +11553,7 @@ export class PivotSalesData extends Array { Sales: 78505.6, COGS: 19340, Profit: 59165.6, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -11569,7 +11569,7 @@ export class PivotSalesData extends Array { Sales: 29471.2, COGS: 29930, Profit: 458.8, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -11585,7 +11585,7 @@ export class PivotSalesData extends Array { Sales: 918162, COGS: 557960, Profit: 360202, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -11601,7 +11601,7 @@ export class PivotSalesData extends Array { Sales: 27484.24, COGS: 9730, Profit: 17754.24, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -11617,7 +11617,7 @@ export class PivotSalesData extends Array { Sales: 553714, COGS: 354120, Profit: 199594, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -11633,7 +11633,7 @@ export class PivotSalesData extends Array { Sales: 27085.92, COGS: 1794, Profit: 25291.92, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -11649,7 +11649,7 @@ export class PivotSalesData extends Array { Sales: 22179.08, COGS: 14535, Profit: 7644.08, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11665,7 +11665,7 @@ export class PivotSalesData extends Array { Sales: 14706.72, COGS: 11690, Profit: 3016.72, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11681,7 +11681,7 @@ export class PivotSalesData extends Array { Sales: 710436, COGS: 96500, Profit: 613936, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -11697,7 +11697,7 @@ export class PivotSalesData extends Array { Sales: 1210560, COGS: 158750, Profit: 1051810, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -11713,7 +11713,7 @@ export class PivotSalesData extends Array { Sales: 911764, COGS: 149370, Profit: 762394, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -11729,7 +11729,7 @@ export class PivotSalesData extends Array { Sales: 26487.72, COGS: 11690, Profit: 14797.72, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11745,7 +11745,7 @@ export class PivotSalesData extends Array { Sales: 868532, COGS: 99060, Profit: 769472, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -11761,7 +11761,7 @@ export class PivotSalesData extends Array { Sales: 948934, COGS: 109720, Profit: 839214, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -11777,7 +11777,7 @@ export class PivotSalesData extends Array { Sales: 519684, COGS: 533500, Profit: 13816, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -11793,7 +11793,7 @@ export class PivotSalesData extends Array { Sales: 174708, COGS: 202000, Profit: 27292, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -11809,7 +11809,7 @@ export class PivotSalesData extends Array { Sales: 57147.2, COGS: 7080, Profit: 50067.2, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11825,7 +11825,7 @@ export class PivotSalesData extends Array { Sales: 11595.08, COGS: 14535, Profit: 2939.92, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11841,7 +11841,7 @@ export class PivotSalesData extends Array { Sales: 27134.4, COGS: 13660, Profit: 13474.4, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11857,7 +11857,7 @@ export class PivotSalesData extends Array { Sales: 207060, COGS: 615000, Profit: 407940, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11873,7 +11873,7 @@ export class PivotSalesData extends Array { Sales: 5468, COGS: 15200, Profit: 9732, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -11889,7 +11889,7 @@ export class PivotSalesData extends Array { Sales: 24541.8, COGS: 7110, Profit: 17431.8, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -11905,7 +11905,7 @@ export class PivotSalesData extends Array { Sales: 28188, COGS: 4125, Profit: 24063, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -11921,7 +11921,7 @@ export class PivotSalesData extends Array { Sales: 779460, COGS: 158750, Profit: 620710, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -11937,7 +11937,7 @@ export class PivotSalesData extends Array { Sales: 71461.6, COGS: 4365, Profit: 67096.6, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -11953,7 +11953,7 @@ export class PivotSalesData extends Array { Sales: 292362, COGS: 273500, Profit: 18862, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -11969,7 +11969,7 @@ export class PivotSalesData extends Array { Sales: 20651.64, COGS: 1101, Profit: 19550.64, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -11985,7 +11985,7 @@ export class PivotSalesData extends Array { Sales: 547432.5, COGS: 950625, Profit: 403192.5, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -12001,7 +12001,7 @@ export class PivotSalesData extends Array { Sales: 409171, COGS: 433160, Profit: 23989, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -12017,7 +12017,7 @@ export class PivotSalesData extends Array { Sales: 495006, COGS: 80500, Profit: 414506, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -12033,7 +12033,7 @@ export class PivotSalesData extends Array { Sales: 12517.32, COGS: 6963, Profit: 5554.32, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -12049,7 +12049,7 @@ export class PivotSalesData extends Array { Sales: 415733.75, COGS: 222840, Profit: 192893.75, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -12065,7 +12065,7 @@ export class PivotSalesData extends Array { Sales: 10864.07, COGS: 8055, Profit: 2809.07, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -12081,7 +12081,7 @@ export class PivotSalesData extends Array { Sales: 113033.75, COGS: 335640, Profit: 222606.25, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -12097,7 +12097,7 @@ export class PivotSalesData extends Array { Sales: 208782, COGS: 83500, Profit: 125282, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -12113,7 +12113,7 @@ export class PivotSalesData extends Array { Sales: 276645, COGS: 641250, Profit: 364605, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -12129,7 +12129,7 @@ export class PivotSalesData extends Array { Sales: 875864.5, COGS: 628420, Profit: 247444.5, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -12145,7 +12145,7 @@ export class PivotSalesData extends Array { Sales: 49908.75, COGS: 36750, Profit: 13158.75, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -12161,7 +12161,7 @@ export class PivotSalesData extends Array { Sales: 855462, COGS: 273500, Profit: 581962, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -12177,7 +12177,7 @@ export class PivotSalesData extends Array { Sales: 25658.55, COGS: 12270, Profit: 13388.55, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -12193,7 +12193,7 @@ export class PivotSalesData extends Array { Sales: 49691.64, COGS: 1101, Profit: 48590.64, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -12209,7 +12209,7 @@ export class PivotSalesData extends Array { Sales: 302352, COGS: 331000, Profit: 28648, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -12225,7 +12225,7 @@ export class PivotSalesData extends Array { Sales: 24591, COGS: 5325, Profit: 19266, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -12241,7 +12241,7 @@ export class PivotSalesData extends Array { Sales: 76283.75, COGS: 335640, Profit: 259356.25, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -12257,7 +12257,7 @@ export class PivotSalesData extends Array { Sales: 56744.25, COGS: 2450, Profit: 54294.25, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -12273,7 +12273,7 @@ export class PivotSalesData extends Array { Sales: 322075.5, COGS: 948375, Profit: 626299.5, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -12289,7 +12289,7 @@ export class PivotSalesData extends Array { Sales: 739679.5, COGS: 339820, Profit: 399859.5, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -12305,7 +12305,7 @@ export class PivotSalesData extends Array { Sales: 449746.25, COGS: 68040, Profit: 381706.25, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -12321,7 +12321,7 @@ export class PivotSalesData extends Array { Sales: 344762.5, COGS: 253200, Profit: 91562.5, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -12337,7 +12337,7 @@ export class PivotSalesData extends Array { Sales: 1148276.5, COGS: 329940, Profit: 818336.5, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -12353,7 +12353,7 @@ export class PivotSalesData extends Array { Sales: 29687.52, COGS: 5868, Profit: 23819.52, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -12369,7 +12369,7 @@ export class PivotSalesData extends Array { Sales: 103707, COGS: 664750, Profit: 561043, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -12385,7 +12385,7 @@ export class PivotSalesData extends Array { Sales: 418027.75, COGS: 351390, Profit: 66637.75, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -12401,7 +12401,7 @@ export class PivotSalesData extends Array { Sales: 52557.6, COGS: 2640, Profit: 49917.6, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -12417,7 +12417,7 @@ export class PivotSalesData extends Array { Sales: 762891, COGS: 466750, Profit: 296141, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -12433,7 +12433,7 @@ export class PivotSalesData extends Array { Sales: 29039.28, COGS: 6702, Profit: 22337.28, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -12449,7 +12449,7 @@ export class PivotSalesData extends Array { Sales: 52538.55, COGS: 12270, Profit: 40268.55, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -12465,7 +12465,7 @@ export class PivotSalesData extends Array { Sales: 221008.75, COGS: 105240, Profit: 115768.75, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -12481,7 +12481,7 @@ export class PivotSalesData extends Array { Sales: 983363.5, COGS: 538460, Profit: 444903.5, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -12497,7 +12497,7 @@ export class PivotSalesData extends Array { Sales: 953326.5, COGS: 329940, Profit: 623386.5, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -12513,7 +12513,7 @@ export class PivotSalesData extends Array { Sales: 18220.5, COGS: 9700, Profit: 8520.5, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -12529,7 +12529,7 @@ export class PivotSalesData extends Array { Sales: 27670.8, COGS: 16940, Profit: 10730.8, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -12545,7 +12545,7 @@ export class PivotSalesData extends Array { Sales: 24626.6, COGS: 6630, Profit: 17996.6, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -12561,7 +12561,7 @@ export class PivotSalesData extends Array { Sales: 7975.03, COGS: 4095, Profit: 3880.03, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -12577,7 +12577,7 @@ export class PivotSalesData extends Array { Sales: 26733.6, COGS: 4740, Profit: 21993.6, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -12593,7 +12593,7 @@ export class PivotSalesData extends Array { Sales: 13524.77, COGS: 2605, Profit: 10919.77, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -12609,7 +12609,7 @@ export class PivotSalesData extends Array { Sales: 55828.6, COGS: 9730, Profit: 46098.6, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -12625,7 +12625,7 @@ export class PivotSalesData extends Array { Sales: 32271.6, COGS: 10380, Profit: 21891.6, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -12641,7 +12641,7 @@ export class PivotSalesData extends Array { Sales: 20304.2, COGS: 1800, Profit: 18504.2, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -12657,7 +12657,7 @@ export class PivotSalesData extends Array { Sales: 10043.64, COGS: 5901, Profit: 4142.64, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -12673,7 +12673,7 @@ export class PivotSalesData extends Array { Sales: 6847.2, COGS: 26280, Profit: 19432.8, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -12689,7 +12689,7 @@ export class PivotSalesData extends Array { Sales: 25960.2, COGS: 1800, Profit: 24160.2, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -12705,7 +12705,7 @@ export class PivotSalesData extends Array { Sales: 57492.4, COGS: 26820, Profit: 30672.4, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -12721,7 +12721,7 @@ export class PivotSalesData extends Array { Sales: 27636.77, COGS: 2605, Profit: 25031.77, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -12737,7 +12737,7 @@ export class PivotSalesData extends Array { Sales: 17191.6, COGS: 10380, Profit: 6811.6, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -12753,7 +12753,7 @@ export class PivotSalesData extends Array { Sales: 35748.82, COGS: 16305, Profit: 19443.82, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -12769,7 +12769,7 @@ export class PivotSalesData extends Array { Sales: 30449.52, COGS: 918, Profit: 29531.52, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -12785,7 +12785,7 @@ export class PivotSalesData extends Array { Sales: 51100.8, COGS: 1158, Profit: 49942.8, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -12801,7 +12801,7 @@ export class PivotSalesData extends Array { Sales: 18467.4, COGS: 11640, Profit: 6827.4, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -12817,7 +12817,7 @@ export class PivotSalesData extends Array { Sales: 41980.8, COGS: 1158, Profit: 40822.8, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -12833,7 +12833,7 @@ export class PivotSalesData extends Array { Sales: 156681.25, COGS: 413460, Profit: 256778.75, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -12849,7 +12849,7 @@ export class PivotSalesData extends Array { Sales: 308475, COGS: 177840, Profit: 130635, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -12865,7 +12865,7 @@ export class PivotSalesData extends Array { Sales: 911645, COGS: 601380, Profit: 310265, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -12881,7 +12881,7 @@ export class PivotSalesData extends Array { Sales: 480325, COGS: 216480, Profit: 263845, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -12897,7 +12897,7 @@ export class PivotSalesData extends Array { Sales: 56802, COGS: 20720, Profit: 36082, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -12913,7 +12913,7 @@ export class PivotSalesData extends Array { Sales: 54652, COGS: 19540, Profit: 35112, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -12929,7 +12929,7 @@ export class PivotSalesData extends Array { Sales: 855870, COGS: 147750, Profit: 708120, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -12945,7 +12945,7 @@ export class PivotSalesData extends Array { Sales: 51814.5, COGS: 21670, Profit: 30144.5, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -12961,7 +12961,7 @@ export class PivotSalesData extends Array { Sales: 55078, COGS: 2410, Profit: 52668, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -12977,7 +12977,7 @@ export class PivotSalesData extends Array { Sales: 5053.5, COGS: 6810, Profit: 1756.5, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -12993,7 +12993,7 @@ export class PivotSalesData extends Array { Sales: 29430, COGS: 5100, Profit: 24330, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -13009,7 +13009,7 @@ export class PivotSalesData extends Array { Sales: 38325, COGS: 7900, Profit: 30425, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -13025,7 +13025,7 @@ export class PivotSalesData extends Array { Sales: 1435735, COGS: 166140, Profit: 1269595, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -13041,7 +13041,7 @@ export class PivotSalesData extends Array { Sales: 24425, COGS: 191520, Profit: 167095, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -13057,7 +13057,7 @@ export class PivotSalesData extends Array { Sales: 645780, COGS: 573500, Profit: 72280, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -13073,7 +13073,7 @@ export class PivotSalesData extends Array { Sales: 82918, COGS: 2410, Profit: 80508, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -13089,7 +13089,7 @@ export class PivotSalesData extends Array { Sales: 4378.5, COGS: 13325, Profit: 8946.5, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -13105,7 +13105,7 @@ export class PivotSalesData extends Array { Sales: 251050, COGS: 229920, Profit: 21130, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -13121,7 +13121,7 @@ export class PivotSalesData extends Array { Sales: 991110, COGS: 213250, Profit: 777860, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -13137,7 +13137,7 @@ export class PivotSalesData extends Array { Sales: 369487.5, COGS: 40920, Profit: 328567.5, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -13153,7 +13153,7 @@ export class PivotSalesData extends Array { Sales: 59233.5, COGS: 6410, Profit: 52823.5, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -13169,7 +13169,7 @@ export class PivotSalesData extends Array { Sales: 160405, COGS: 729820, Profit: 569415, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -13185,7 +13185,7 @@ export class PivotSalesData extends Array { Sales: 583740, COGS: 108000, Profit: 475740, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -13201,7 +13201,7 @@ export class PivotSalesData extends Array { Sales: 828480, COGS: 573500, Profit: 254980, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -13217,7 +13217,7 @@ export class PivotSalesData extends Array { Sales: 60304.5, COGS: 21670, Profit: 38634.5, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -13233,7 +13233,7 @@ export class PivotSalesData extends Array { Sales: 148637.5, COGS: 303480, Profit: 154842.5, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -13249,7 +13249,7 @@ export class PivotSalesData extends Array { Sales: 883750, COGS: 486200, Profit: 397550, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -13265,7 +13265,7 @@ export class PivotSalesData extends Array { Sales: 181262.5, COGS: 69480, Profit: 111782.5, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -13281,7 +13281,7 @@ export class PivotSalesData extends Array { Sales: 1407350, COGS: 582400, Profit: 824950, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -13297,7 +13297,7 @@ export class PivotSalesData extends Array { Sales: 699210, COGS: 748250, Profit: 49040, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -13313,7 +13313,7 @@ export class PivotSalesData extends Array { Sales: 9959.4, COGS: 10561.5, Profit: 602.1, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -13329,7 +13329,7 @@ export class PivotSalesData extends Array { Sales: 20342, COGS: 20390, Profit: 48, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -13345,7 +13345,7 @@ export class PivotSalesData extends Array { Sales: 8467.2, COGS: 7722, Profit: 745.2, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -13361,7 +13361,7 @@ export class PivotSalesData extends Array { Sales: 1110305, COGS: 183820, Profit: 926485, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -13377,7 +13377,7 @@ export class PivotSalesData extends Array { Sales: 13692, COGS: 20720, Profit: 7028, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -13393,7 +13393,7 @@ export class PivotSalesData extends Array { Sales: 326610, COGS: 213250, Profit: 113360, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -13409,7 +13409,7 @@ export class PivotSalesData extends Array { Sales: 28910.64, COGS: 3594, Profit: 25316.64, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -13425,7 +13425,7 @@ export class PivotSalesData extends Array { Sales: 20772.36, COGS: 12660, Profit: 8112.36, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -13441,7 +13441,7 @@ export class PivotSalesData extends Array { Sales: 16790.64, COGS: 3594, Profit: 13196.64, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -13457,7 +13457,7 @@ export class PivotSalesData extends Array { Sales: 37256.4, COGS: 3840, Profit: 33416.4, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -13473,7 +13473,7 @@ export class PivotSalesData extends Array { Sales: 13008.96, COGS: 1416, Profit: 11592.96, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -13489,7 +13489,7 @@ export class PivotSalesData extends Array { Sales: 12665.17, COGS: 7895, Profit: 4770.17, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -13505,7 +13505,7 @@ export class PivotSalesData extends Array { Sales: 37781.4, COGS: 3015, Profit: 34766.4, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -13521,7 +13521,7 @@ export class PivotSalesData extends Array { Sales: 43725.82, COGS: 31995, Profit: 11730.82, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -13537,7 +13537,7 @@ export class PivotSalesData extends Array { Sales: 28824.96, COGS: 1416, Profit: 27408.96, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -13553,7 +13553,7 @@ export class PivotSalesData extends Array { Sales: 29159.16, COGS: 5811, Profit: 23348.16, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -13569,7 +13569,7 @@ export class PivotSalesData extends Array { Sales: 103558, COGS: 205920, Profit: 102362, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -13585,7 +13585,7 @@ export class PivotSalesData extends Array { Sales: 747537, COGS: 702750, Profit: 44787, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -13601,7 +13601,7 @@ export class PivotSalesData extends Array { Sales: 174811.25, COGS: 292920, Profit: 118108.75, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -13617,7 +13617,7 @@ export class PivotSalesData extends Array { Sales: 50511, COGS: 15600, Profit: 34911, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -13633,7 +13633,7 @@ export class PivotSalesData extends Array { Sales: 27498.38, COGS: 13530, Profit: 13968.38, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -13649,7 +13649,7 @@ export class PivotSalesData extends Array { Sales: 747509, COGS: 199160, Profit: 548349, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -13665,7 +13665,7 @@ export class PivotSalesData extends Array { Sales: 8937.6, COGS: 29920, Profit: 20982.4, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -13681,7 +13681,7 @@ export class PivotSalesData extends Array { Sales: 4735.95, COGS: 21570, Profit: 16834.05, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -13697,7 +13697,7 @@ export class PivotSalesData extends Array { Sales: 603291, COGS: 218250, Profit: 385041, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -13713,7 +13713,7 @@ export class PivotSalesData extends Array { Sales: 46891.6, COGS: 11220, Profit: 35671.6, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -13729,7 +13729,7 @@ export class PivotSalesData extends Array { Sales: 585726.75, COGS: 547170, Profit: 38556.75, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -13745,7 +13745,7 @@ export class PivotSalesData extends Array { Sales: 38581.68, COGS: 12078, Profit: 26503.68, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -13761,7 +13761,7 @@ export class PivotSalesData extends Array { Sales: 48410.34, COGS: 7276.5, Profit: 41133.84, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -13777,7 +13777,7 @@ export class PivotSalesData extends Array { Sales: 43653.2, COGS: 23940, Profit: 19713.2, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -13793,7 +13793,7 @@ export class PivotSalesData extends Array { Sales: 59861.4, COGS: 19840, Profit: 40021.4, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -13809,7 +13809,7 @@ export class PivotSalesData extends Array { Sales: 385561.25, COGS: 292920, Profit: 92641.25, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -13825,7 +13825,7 @@ export class PivotSalesData extends Array { Sales: 21437.6, COGS: 29920, Profit: 8482.4, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -13841,7 +13841,7 @@ export class PivotSalesData extends Array { Sales: 514422, COGS: 341500, Profit: 172922, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -13857,7 +13857,7 @@ export class PivotSalesData extends Array { Sales: 3089, COGS: 28050, Profit: 24961, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -13873,7 +13873,7 @@ export class PivotSalesData extends Array { Sales: 61574.25, COGS: 6550, Profit: 55024.25, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -13889,7 +13889,7 @@ export class PivotSalesData extends Array { Sales: 869806, COGS: 89440, Profit: 780366, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -13905,7 +13905,7 @@ export class PivotSalesData extends Array { Sales: 12117.84, COGS: 9040, Profit: 3077.84, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -13921,7 +13921,7 @@ export class PivotSalesData extends Array { Sales: 13323.12, COGS: 5202, Profit: 8121.12, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -13937,7 +13937,7 @@ export class PivotSalesData extends Array { Sales: 508007.5, COGS: 66480, Profit: 441527.5, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -13953,7 +13953,7 @@ export class PivotSalesData extends Array { Sales: 5683, COGS: 29350, Profit: 23667, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -13969,7 +13969,7 @@ export class PivotSalesData extends Array { Sales: 16231.25, COGS: 379800, Profit: 363568.75, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -13985,7 +13985,7 @@ export class PivotSalesData extends Array { Sales: 83996.2, COGS: 26290, Profit: 57706.2, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -14001,7 +14001,7 @@ export class PivotSalesData extends Array { Sales: 168296.25, COGS: 171960, Profit: 3663.75, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -14017,7 +14017,7 @@ export class PivotSalesData extends Array { Sales: 457353.75, COGS: 113640, Profit: 343713.75, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -14033,7 +14033,7 @@ export class PivotSalesData extends Array { Sales: 830956, COGS: 89440, Profit: 741516, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -14049,7 +14049,7 @@ export class PivotSalesData extends Array { Sales: 31570.95, COGS: 21570, Profit: 10000.95, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -14065,7 +14065,7 @@ export class PivotSalesData extends Array { Sales: 30864.4, COGS: 1900, Profit: 28964.4, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -14081,7 +14081,7 @@ export class PivotSalesData extends Array { Sales: 1291388, COGS: 230360, Profit: 1061028, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -14097,7 +14097,7 @@ export class PivotSalesData extends Array { Sales: 249510, COGS: 289920, Profit: 40410, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -14113,7 +14113,7 @@ export class PivotSalesData extends Array { Sales: 419410, COGS: 258720, Profit: 160690, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -14129,7 +14129,7 @@ export class PivotSalesData extends Array { Sales: 20899.8, COGS: 26890, Profit: 5990.2, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -14145,7 +14145,7 @@ export class PivotSalesData extends Array { Sales: 18296.4, COGS: 6770, Profit: 11526.4, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -14161,7 +14161,7 @@ export class PivotSalesData extends Array { Sales: 1188672, COGS: 443250, Profit: 745422, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -14177,7 +14177,7 @@ export class PivotSalesData extends Array { Sales: 4792.2, COGS: 12100, Profit: 7307.8, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -14193,7 +14193,7 @@ export class PivotSalesData extends Array { Sales: 5781.44, COGS: 13670, Profit: 7888.56, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -14209,7 +14209,7 @@ export class PivotSalesData extends Array { Sales: 33344, COGS: 17150, Profit: 16194, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -14225,7 +14225,7 @@ export class PivotSalesData extends Array { Sales: 1087104, COGS: 296500, Profit: 790604, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -14241,7 +14241,7 @@ export class PivotSalesData extends Array { Sales: 941580, COGS: 873750, Profit: 67830, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -14257,7 +14257,7 @@ export class PivotSalesData extends Array { Sales: 1067388, COGS: 230360, Profit: 837028, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -14273,7 +14273,7 @@ export class PivotSalesData extends Array { Sales: 341910, COGS: 258720, Profit: 83190, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -14289,7 +14289,7 @@ export class PivotSalesData extends Array { Sales: 39568, COGS: 9050, Profit: 30518, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -14305,7 +14305,7 @@ export class PivotSalesData extends Array { Sales: 17004, COGS: 17150, Profit: 146, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -14321,7 +14321,7 @@ export class PivotSalesData extends Array { Sales: 406602, COGS: 414440, Profit: 7838, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -14337,7 +14337,7 @@ export class PivotSalesData extends Array { Sales: 75876, COGS: 339750, Profit: 263874, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -14353,7 +14353,7 @@ export class PivotSalesData extends Array { Sales: 1086600, COGS: 537500, Profit: 549100, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -14369,7 +14369,7 @@ export class PivotSalesData extends Array { Sales: 232876, COGS: 311220, Profit: 78344, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -14385,7 +14385,7 @@ export class PivotSalesData extends Array { Sales: 27696, COGS: 3800, Profit: 23896, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -14401,7 +14401,7 @@ export class PivotSalesData extends Array { Sales: 38480.8, COGS: 12330, Profit: 26150.8, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -14417,7 +14417,7 @@ export class PivotSalesData extends Array { Sales: 1009610, COGS: 362700, Profit: 646910, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -14433,7 +14433,7 @@ export class PivotSalesData extends Array { Sales: 1050938, COGS: 256360, Profit: 794578, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -14449,7 +14449,7 @@ export class PivotSalesData extends Array { Sales: 39008, COGS: 9050, Profit: 29958, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -14465,7 +14465,7 @@ export class PivotSalesData extends Array { Sales: 48011.04, COGS: 6327, Profit: 41684.04, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -14481,7 +14481,7 @@ export class PivotSalesData extends Array { Sales: 12420.9, COGS: 38745, Profit: 26324.1, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -14497,7 +14497,7 @@ export class PivotSalesData extends Array { Sales: 426384, COGS: 161980, Profit: 264404, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -14513,7 +14513,7 @@ export class PivotSalesData extends Array { Sales: 39088, COGS: 256360, Profit: 217272, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -14529,7 +14529,7 @@ export class PivotSalesData extends Array { Sales: 179570, COGS: 286440, Profit: 106870, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -14545,7 +14545,7 @@ export class PivotSalesData extends Array { Sales: 1840.8, COGS: 12330, Profit: 10489.2, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -14561,7 +14561,7 @@ export class PivotSalesData extends Array { Sales: 888510, COGS: 70200, Profit: 818310, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -14577,7 +14577,7 @@ export class PivotSalesData extends Array { Sales: 8752.94, COGS: 17107.5, Profit: 8354.56, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -14593,7 +14593,7 @@ export class PivotSalesData extends Array { Sales: 29021.44, COGS: 13670, Profit: 15351.44, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -14609,7 +14609,7 @@ export class PivotSalesData extends Array { Sales: 7908.6, COGS: 25480, Profit: 17571.4, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -14625,7 +14625,7 @@ export class PivotSalesData extends Array { Sales: 7428.4, COGS: 25215, Profit: 17786.6, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -14641,7 +14641,7 @@ export class PivotSalesData extends Array { Sales: 5504.16, COGS: 7983, Profit: 2478.84, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -14657,7 +14657,7 @@ export class PivotSalesData extends Array { Sales: 25465.6, COGS: 15310, Profit: 10155.6, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -14673,7 +14673,7 @@ export class PivotSalesData extends Array { Sales: 20853.56, COGS: 7455, Profit: 13398.56, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -14689,7 +14689,7 @@ export class PivotSalesData extends Array { Sales: 78225.6, COGS: 15310, Profit: 62915.6, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -14705,7 +14705,7 @@ export class PivotSalesData extends Array { Sales: 34064.16, COGS: 8283, Profit: 25781.16, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -14721,7 +14721,7 @@ export class PivotSalesData extends Array { Sales: 2389.35, COGS: 25670, Profit: 23280.65, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -14737,7 +14737,7 @@ export class PivotSalesData extends Array { Sales: 44284.35, COGS: 25670, Profit: 18614.35, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -14753,7 +14753,7 @@ export class PivotSalesData extends Array { Sales: 1205053.5, COGS: 239980, Profit: 965073.5, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -14769,7 +14769,7 @@ export class PivotSalesData extends Array { Sales: 1356705, COGS: 465400, Profit: 891305, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -14785,7 +14785,7 @@ export class PivotSalesData extends Array { Sales: 71910.8, COGS: 4420, Profit: 67490.8, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -14801,7 +14801,7 @@ export class PivotSalesData extends Array { Sales: 726346.25, COGS: 255450, Profit: 470896.25, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -14817,7 +14817,7 @@ export class PivotSalesData extends Array { Sales: 19286.82, COGS: 6490, Profit: 12796.82, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -14833,7 +14833,7 @@ export class PivotSalesData extends Array { Sales: 30857.76, COGS: 1812, Profit: 29045.76, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -14849,7 +14849,7 @@ export class PivotSalesData extends Array { Sales: 18017, COGS: 22550, Profit: 4533, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -14865,7 +14865,7 @@ export class PivotSalesData extends Array { Sales: 64072.6, COGS: 12490, Profit: 51582.6, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -14881,7 +14881,7 @@ export class PivotSalesData extends Array { Sales: 7965.97, COGS: 7192.5, Profit: 773.47, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -14897,7 +14897,7 @@ export class PivotSalesData extends Array { Sales: 1241427, COGS: 201750, Profit: 1039677, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -14913,7 +14913,7 @@ export class PivotSalesData extends Array { Sales: 50873.4, COGS: 26410, Profit: 24463.4, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -14929,7 +14929,7 @@ export class PivotSalesData extends Array { Sales: 69739.2, COGS: 27080, Profit: 42659.2, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -14945,7 +14945,7 @@ export class PivotSalesData extends Array { Sales: 532294, COGS: 684320, Profit: 152026, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -14961,7 +14961,7 @@ export class PivotSalesData extends Array { Sales: 331526.25, COGS: 189960, Profit: 141566.25, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -14977,7 +14977,7 @@ export class PivotSalesData extends Array { Sales: 33525.24, COGS: 1713, Profit: 31812.24, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -14993,7 +14993,7 @@ export class PivotSalesData extends Array { Sales: 24181.64, COGS: 13480, Profit: 10701.64, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -15009,7 +15009,7 @@ export class PivotSalesData extends Array { Sales: 55658.25, COGS: 15650, Profit: 40008.25, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15025,7 +15025,7 @@ export class PivotSalesData extends Array { Sales: 7232.6, COGS: 12490, Profit: 5257.4, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15041,7 +15041,7 @@ export class PivotSalesData extends Array { Sales: 1067006.5, COGS: 92820, Profit: 974186.5, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -15057,7 +15057,7 @@ export class PivotSalesData extends Array { Sales: 27339.72, COGS: 3039, Profit: 24300.72, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -15073,7 +15073,7 @@ export class PivotSalesData extends Array { Sales: 56149.88, COGS: 39975, Profit: 16174.88, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -15089,7 +15089,7 @@ export class PivotSalesData extends Array { Sales: 663894, COGS: 684320, Profit: 20426, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -15105,7 +15105,7 @@ export class PivotSalesData extends Array { Sales: 2900.1, COGS: 5950, Profit: 3049.9, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -15121,7 +15121,7 @@ export class PivotSalesData extends Array { Sales: 45725.76, COGS: 1812, Profit: 43913.76, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -15137,7 +15137,7 @@ export class PivotSalesData extends Array { Sales: 19383, COGS: 6600, Profit: 12783, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -15153,7 +15153,7 @@ export class PivotSalesData extends Array { Sales: 26396.4, COGS: 1230, Profit: 25166.4, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15169,7 +15169,7 @@ export class PivotSalesData extends Array { Sales: 859005, COGS: 651250, Profit: 207755, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -15185,7 +15185,7 @@ export class PivotSalesData extends Array { Sales: 44439.72, COGS: 3039, Profit: 41400.72, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -15201,7 +15201,7 @@ export class PivotSalesData extends Array { Sales: 285151.25, COGS: 189960, Profit: 95191.25, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -15217,7 +15217,7 @@ export class PivotSalesData extends Array { Sales: 63368.25, COGS: 15650, Profit: 47718.25, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15233,7 +15233,7 @@ export class PivotSalesData extends Array { Sales: 123041.25, COGS: 199080, Profit: 76038.75, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -15249,7 +15249,7 @@ export class PivotSalesData extends Array { Sales: 19588.1, COGS: 5950, Profit: 13638.1, - Date: `6/1/19`, + Date: `2019-06-01`, MonthName: `June`, Year: 2019 })); @@ -15265,7 +15265,7 @@ export class PivotSalesData extends Array { Sales: 16796.4, COGS: 1230, Profit: 15566.4, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15281,7 +15281,7 @@ export class PivotSalesData extends Array { Sales: 7618.8, COGS: 5310, Profit: 2308.8, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -15297,7 +15297,7 @@ export class PivotSalesData extends Array { Sales: 14218.8, COGS: 25790, Profit: 11571.2, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -15313,7 +15313,7 @@ export class PivotSalesData extends Array { Sales: 29859.6, COGS: 17430, Profit: 12429.6, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -15329,7 +15329,7 @@ export class PivotSalesData extends Array { Sales: 7808.92, COGS: 14980, Profit: 7171.08, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -15345,7 +15345,7 @@ export class PivotSalesData extends Array { Sales: 17449.6, COGS: 1400, Profit: 16049.6, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -15361,7 +15361,7 @@ export class PivotSalesData extends Array { Sales: 12067.86, COGS: 1465, Profit: 10602.86, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -15377,7 +15377,7 @@ export class PivotSalesData extends Array { Sales: 8032.92, COGS: 14980, Profit: 6947.08, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -15393,7 +15393,7 @@ export class PivotSalesData extends Array { Sales: 39016.2, COGS: 2780, Profit: 36236.2, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -15409,7 +15409,7 @@ export class PivotSalesData extends Array { Sales: 54781.6, COGS: 24280, Profit: 30501.6, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -15425,7 +15425,7 @@ export class PivotSalesData extends Array { Sales: 58239.3, COGS: 17670, Profit: 40569.3, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -15441,7 +15441,7 @@ export class PivotSalesData extends Array { Sales: 32915.76, COGS: 4179, Profit: 28736.76, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15457,7 +15457,7 @@ export class PivotSalesData extends Array { Sales: 21285.6, COGS: 1400, Profit: 19885.6, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -15473,7 +15473,7 @@ export class PivotSalesData extends Array { Sales: 16019.76, COGS: 4179, Profit: 11840.76, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15489,7 +15489,7 @@ export class PivotSalesData extends Array { Sales: 39058.8, COGS: 6045, Profit: 33013.8, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -15505,7 +15505,7 @@ export class PivotSalesData extends Array { Sales: 572658, COGS: 200250, Profit: 372408, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -15521,7 +15521,7 @@ export class PivotSalesData extends Array { Sales: 207597.5, COGS: 122760, Profit: 84837.5, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -15537,7 +15537,7 @@ export class PivotSalesData extends Array { Sales: 241368, COGS: 374000, Profit: 132632, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15553,7 +15553,7 @@ export class PivotSalesData extends Array { Sales: 831480, COGS: 252500, Profit: 578980, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15569,7 +15569,7 @@ export class PivotSalesData extends Array { Sales: 8267.7, COGS: 15130, Profit: 6862.3, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -15585,7 +15585,7 @@ export class PivotSalesData extends Array { Sales: 16545, COGS: 23000, Profit: 6455, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -15601,7 +15601,7 @@ export class PivotSalesData extends Array { Sales: 495257.5, COGS: 338520, Profit: 156737.5, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -15617,7 +15617,7 @@ export class PivotSalesData extends Array { Sales: 639152.5, COGS: 579150, Profit: 60002.5, - Date: `1/1/19`, + Date: `2019-01-01`, MonthName: `January`, Year: 2019 })); @@ -15633,7 +15633,7 @@ export class PivotSalesData extends Array { Sales: 1279999, COGS: 311740, Profit: 968259, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -15649,7 +15649,7 @@ export class PivotSalesData extends Array { Sales: 1177750, COGS: 52000, Profit: 1125750, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -15665,7 +15665,7 @@ export class PivotSalesData extends Array { Sales: 15124.76, COGS: 1940, Profit: 13184.76, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -15681,7 +15681,7 @@ export class PivotSalesData extends Array { Sales: 14253.54, COGS: 8635, Profit: 5618.54, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -15697,7 +15697,7 @@ export class PivotSalesData extends Array { Sales: 1215, COGS: 23000, Profit: 21785, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -15713,7 +15713,7 @@ export class PivotSalesData extends Array { Sales: 5052, COGS: 2600, Profit: 2452, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -15729,7 +15729,7 @@ export class PivotSalesData extends Array { Sales: 6048, COGS: 24700, Profit: 18652, - Date: `9/1/18`, + Date: `2018-09-01`, MonthName: `September`, Year: 2018 })); @@ -15745,7 +15745,7 @@ export class PivotSalesData extends Array { Sales: 1919.7, COGS: 17430, Profit: 15510.3, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -15761,7 +15761,7 @@ export class PivotSalesData extends Array { Sales: 40476.48, COGS: 8742, Profit: 31734.48, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15777,7 +15777,7 @@ export class PivotSalesData extends Array { Sales: 10798.62, COGS: 8655, Profit: 2143.62, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -15793,7 +15793,7 @@ export class PivotSalesData extends Array { Sales: 1375850, COGS: 182000, Profit: 1193850, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -15809,7 +15809,7 @@ export class PivotSalesData extends Array { Sales: 30023.04, COGS: 6666, Profit: 23357.04, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -15825,7 +15825,7 @@ export class PivotSalesData extends Array { Sales: 694827, COGS: 306020, Profit: 388807, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -15841,7 +15841,7 @@ export class PivotSalesData extends Array { Sales: 638372, COGS: 499720, Profit: 138652, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -15857,7 +15857,7 @@ export class PivotSalesData extends Array { Sales: 521312.5, COGS: 189000, Profit: 332312.5, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -15873,7 +15873,7 @@ export class PivotSalesData extends Array { Sales: 52203.2, COGS: 6060, Profit: 46143.2, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -15889,7 +15889,7 @@ export class PivotSalesData extends Array { Sales: 297780, COGS: 615000, Profit: 317220, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -15905,7 +15905,7 @@ export class PivotSalesData extends Array { Sales: 775002, COGS: 67250, Profit: 707752, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -15921,7 +15921,7 @@ export class PivotSalesData extends Array { Sales: 1013988, COGS: 634000, Profit: 379988, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -15937,7 +15937,7 @@ export class PivotSalesData extends Array { Sales: 27395.06, COGS: 14515, Profit: 12880.06, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -15953,7 +15953,7 @@ export class PivotSalesData extends Array { Sales: 741678, COGS: 635250, Profit: 106428, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -15969,7 +15969,7 @@ export class PivotSalesData extends Array { Sales: 764502, COGS: 67250, Profit: 697252, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -15985,7 +15985,7 @@ export class PivotSalesData extends Array { Sales: 311568, COGS: 374000, Profit: 62432, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16001,7 +16001,7 @@ export class PivotSalesData extends Array { Sales: 1168080, COGS: 252500, Profit: 915580, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16017,7 +16017,7 @@ export class PivotSalesData extends Array { Sales: 62881, COGS: 333060, Profit: 270179, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -16033,7 +16033,7 @@ export class PivotSalesData extends Array { Sales: 1140504, COGS: 222000, Profit: 918504, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -16049,7 +16049,7 @@ export class PivotSalesData extends Array { Sales: 481105, COGS: 341280, Profit: 139825, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -16065,7 +16065,7 @@ export class PivotSalesData extends Array { Sales: 28182, COGS: 7425, Profit: 20757, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -16081,7 +16081,7 @@ export class PivotSalesData extends Array { Sales: 12899.7, COGS: 17430, Profit: 4530.3, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -16097,7 +16097,7 @@ export class PivotSalesData extends Array { Sales: 12492.48, COGS: 8742, Profit: 3750.48, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16113,7 +16113,7 @@ export class PivotSalesData extends Array { Sales: 6220.62, COGS: 8655, Profit: 2434.38, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16129,7 +16129,7 @@ export class PivotSalesData extends Array { Sales: 8583.54, COGS: 8635, Profit: 51.46, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -16145,7 +16145,7 @@ export class PivotSalesData extends Array { Sales: 15153, COGS: 18700, Profit: 3547, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -16161,7 +16161,7 @@ export class PivotSalesData extends Array { Sales: 153362.5, COGS: 140880, Profit: 12482.5, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -16177,7 +16177,7 @@ export class PivotSalesData extends Array { Sales: 218243.75, COGS: 332040, Profit: 113796.25, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -16193,7 +16193,7 @@ export class PivotSalesData extends Array { Sales: 221781.25, COGS: 130200, Profit: 91581.25, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16209,7 +16209,7 @@ export class PivotSalesData extends Array { Sales: 839130, COGS: 136500, Profit: 702630, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16225,7 +16225,7 @@ export class PivotSalesData extends Array { Sales: 23126, COGS: 11580, Profit: 11546, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -16241,7 +16241,7 @@ export class PivotSalesData extends Array { Sales: 32758.5, COGS: 16140, Profit: 16618.5, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -16257,7 +16257,7 @@ export class PivotSalesData extends Array { Sales: 11569.25, COGS: 12675, Profit: 1105.75, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -16273,7 +16273,7 @@ export class PivotSalesData extends Array { Sales: 560472.5, COGS: 741260, Profit: 180787.5, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -16289,7 +16289,7 @@ export class PivotSalesData extends Array { Sales: 9977.25, COGS: 25590, Profit: 15612.75, - Date: `8/1/19`, + Date: `2019-08-01`, MonthName: `August`, Year: 2019 })); @@ -16305,7 +16305,7 @@ export class PivotSalesData extends Array { Sales: 20439, COGS: 2670, Profit: 17769, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -16321,7 +16321,7 @@ export class PivotSalesData extends Array { Sales: 293281.25, COGS: 130200, Profit: 163081.25, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16337,7 +16337,7 @@ export class PivotSalesData extends Array { Sales: 23501.25, COGS: 11750, Profit: 11751.25, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16353,7 +16353,7 @@ export class PivotSalesData extends Array { Sales: 1090932.5, COGS: 521820, Profit: 569112.5, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -16369,7 +16369,7 @@ export class PivotSalesData extends Array { Sales: 499922.5, COGS: 559260, Profit: 59337.5, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -16385,7 +16385,7 @@ export class PivotSalesData extends Array { Sales: 37090.8, COGS: 2742, Profit: 34348.8, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -16401,7 +16401,7 @@ export class PivotSalesData extends Array { Sales: 21221, COGS: 2930, Profit: 18291, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -16417,7 +16417,7 @@ export class PivotSalesData extends Array { Sales: 32436, COGS: 1500, Profit: 30936, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -16433,7 +16433,7 @@ export class PivotSalesData extends Array { Sales: 11236.5, COGS: 28260, Profit: 17023.5, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); @@ -16449,7 +16449,7 @@ export class PivotSalesData extends Array { Sales: 382568.75, COGS: 79560, Profit: 303008.75, - Date: `9/1/19`, + Date: `2019-09-01`, MonthName: `September`, Year: 2019 })); @@ -16465,7 +16465,7 @@ export class PivotSalesData extends Array { Sales: 1180770, COGS: 643500, Profit: 537270, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -16481,7 +16481,7 @@ export class PivotSalesData extends Array { Sales: 191912.5, COGS: 292560, Profit: 100647.5, - Date: `12/1/18`, + Date: `2018-12-01`, MonthName: `December`, Year: 2018 })); @@ -16497,7 +16497,7 @@ export class PivotSalesData extends Array { Sales: 34114.8, COGS: 2742, Profit: 31372.8, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -16513,7 +16513,7 @@ export class PivotSalesData extends Array { Sales: 78763.5, COGS: 8655, Profit: 70108.5, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -16529,7 +16529,7 @@ export class PivotSalesData extends Array { Sales: 30468, COGS: 4920, Profit: 25548, - Date: `7/1/19`, + Date: `2019-07-01`, MonthName: `July`, Year: 2019 })); @@ -16545,7 +16545,7 @@ export class PivotSalesData extends Array { Sales: 32139, COGS: 2670, Profit: 29469, - Date: `10/1/18`, + Date: `2018-10-01`, MonthName: `October`, Year: 2018 })); @@ -16561,7 +16561,7 @@ export class PivotSalesData extends Array { Sales: 881.25, COGS: 11750, Profit: 10868.75, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16577,7 +16577,7 @@ export class PivotSalesData extends Array { Sales: 396737.5, COGS: 354480, Profit: 42257.5, - Date: `11/1/18`, + Date: `2018-11-01`, MonthName: `November`, Year: 2018 })); @@ -16593,7 +16593,7 @@ export class PivotSalesData extends Array { Sales: 252900, COGS: 66240, Profit: 186660, - Date: `11/1/19`, + Date: `2019-11-01`, MonthName: `November`, Year: 2019 })); @@ -16609,7 +16609,7 @@ export class PivotSalesData extends Array { Sales: 46141, COGS: 2930, Profit: 43211, - Date: `12/1/19`, + Date: `2019-12-01`, MonthName: `December`, Year: 2019 })); @@ -16625,7 +16625,7 @@ export class PivotSalesData extends Array { Sales: 457725, COGS: 618750, Profit: 161025, - Date: `3/1/19`, + Date: `2019-03-01`, MonthName: `March`, Year: 2019 })); @@ -16641,7 +16641,7 @@ export class PivotSalesData extends Array { Sales: 169530, COGS: 136500, Profit: 33030, - Date: `10/1/19`, + Date: `2019-10-01`, MonthName: `October`, Year: 2019 })); @@ -16657,7 +16657,7 @@ export class PivotSalesData extends Array { Sales: 23910.6, COGS: 6840, Profit: 17070.6, - Date: `2/1/19`, + Date: `2019-02-01`, MonthName: `February`, Year: 2019 })); @@ -16673,7 +16673,7 @@ export class PivotSalesData extends Array { Sales: 21787.85, COGS: 3615, Profit: 18172.85, - Date: `4/1/19`, + Date: `2019-04-01`, MonthName: `April`, Year: 2019 })); @@ -16689,7 +16689,7 @@ export class PivotSalesData extends Array { Sales: 2665.2, COGS: 5418, Profit: 2752.8, - Date: `5/1/19`, + Date: `2019-05-01`, MonthName: `May`, Year: 2019 })); diff --git a/samples/grids/tree-grid/action-strip/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/action-strip/src/EmployeesFlatDetails.ts index 3b17280390..31ed0685ab 100644 --- a/samples/grids/tree-grid/action-strip/src/EmployeesFlatDetails.ts +++ b/samples/grids/tree-grid/action-strip/src/EmployeesFlatDetails.ts @@ -29,7 +29,7 @@ export class EmployeesFlatDetails extends Array { City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, @@ -46,7 +46,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3745`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, @@ -63,7 +63,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, @@ -80,7 +80,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-6750`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, @@ -97,7 +97,7 @@ export class EmployeesFlatDetails extends Array { City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, @@ -114,7 +114,7 @@ export class EmployeesFlatDetails extends Array { City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, @@ -131,7 +131,7 @@ export class EmployeesFlatDetails extends Array { City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, @@ -148,7 +148,7 @@ export class EmployeesFlatDetails extends Array { City: `Madrid`, Country: `Spain`, Fax: `(91) 555 91 99`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, @@ -165,7 +165,7 @@ export class EmployeesFlatDetails extends Array { City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, @@ -182,7 +182,7 @@ export class EmployeesFlatDetails extends Array { City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, @@ -199,7 +199,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(5) 555-3798`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, @@ -216,7 +216,7 @@ export class EmployeesFlatDetails extends Array { City: `Buenos Aires`, Country: `Argentina`, Fax: `(1) 135-4892`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, @@ -233,7 +233,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-7293`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, @@ -250,7 +250,7 @@ export class EmployeesFlatDetails extends Array { City: `Sao Paulo`, Country: `Brazil`, Fax: `(5) 555-6691`, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, @@ -267,7 +267,7 @@ export class EmployeesFlatDetails extends Array { City: `Bern`, Country: `Switzerland`, Fax: ``, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, @@ -284,7 +284,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-9199`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, @@ -301,7 +301,7 @@ export class EmployeesFlatDetails extends Array { City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, @@ -318,7 +318,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-3373`, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, diff --git a/samples/grids/tree-grid/advanced-filtering-options/src/EmployeesFlatData.ts b/samples/grids/tree-grid/advanced-filtering-options/src/EmployeesFlatData.ts index 5b91f17339..9f4be20fed 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/src/EmployeesFlatData.ts +++ b/samples/grids/tree-grid/advanced-filtering-options/src/EmployeesFlatData.ts @@ -19,7 +19,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 55, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, Phone: `0251-031259`, @@ -30,7 +30,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 42, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, Phone: `(21) 555-0091`, @@ -41,7 +41,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 49, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, Phone: `(071) 23 67 22 20`, @@ -52,7 +52,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 61, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, Phone: `(21) 555-0091`, @@ -63,7 +63,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 43, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Phone: `0452-076545`, @@ -74,7 +74,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 29, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Phone: `(14) 555-8122`, @@ -85,7 +85,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 31, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Phone: `7675-3425`, @@ -96,7 +96,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 35, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Phone: `(505) 555-5939`, @@ -107,7 +107,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, Phone: `0695-34 67 21`, @@ -118,7 +118,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, Phone: `981-443655`, @@ -129,7 +129,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 5, Name: `Elizabeth Richards`, Phone: `(2) 283-2951`, @@ -140,7 +140,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, Phone: `981-443655`, @@ -151,7 +151,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, Phone: `(505) 555-5939`, @@ -162,7 +162,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 50, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, Phone: `035-640230`, @@ -173,7 +173,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 27, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, Phone: `0342-023176`, @@ -184,7 +184,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, Phone: `069-0245984`, @@ -195,7 +195,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, Phone: `(91) 745 6200`, @@ -206,7 +206,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, Phone: `069-0245984`, diff --git a/samples/grids/tree-grid/advanced-filtering-style/src/EmployeesFlatData.ts b/samples/grids/tree-grid/advanced-filtering-style/src/EmployeesFlatData.ts index 5b91f17339..9f4be20fed 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/src/EmployeesFlatData.ts +++ b/samples/grids/tree-grid/advanced-filtering-style/src/EmployeesFlatData.ts @@ -19,7 +19,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 55, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, Phone: `0251-031259`, @@ -30,7 +30,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 42, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, Phone: `(21) 555-0091`, @@ -41,7 +41,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 49, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, Phone: `(071) 23 67 22 20`, @@ -52,7 +52,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 61, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, Phone: `(21) 555-0091`, @@ -63,7 +63,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 43, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Phone: `0452-076545`, @@ -74,7 +74,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 29, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Phone: `(14) 555-8122`, @@ -85,7 +85,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 31, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Phone: `7675-3425`, @@ -96,7 +96,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 35, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Phone: `(505) 555-5939`, @@ -107,7 +107,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, Phone: `0695-34 67 21`, @@ -118,7 +118,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, Phone: `981-443655`, @@ -129,7 +129,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 5, Name: `Elizabeth Richards`, Phone: `(2) 283-2951`, @@ -140,7 +140,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, Phone: `981-443655`, @@ -151,7 +151,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, Phone: `(505) 555-5939`, @@ -162,7 +162,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 50, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, Phone: `035-640230`, @@ -173,7 +173,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 27, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, Phone: `0342-023176`, @@ -184,7 +184,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, Phone: `069-0245984`, @@ -195,7 +195,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, Phone: `(91) 745 6200`, @@ -206,7 +206,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, Phone: `069-0245984`, diff --git a/samples/grids/tree-grid/cell-selection-mode/src/EmployeesFlatData.ts b/samples/grids/tree-grid/cell-selection-mode/src/EmployeesFlatData.ts index 5b91f17339..9f4be20fed 100644 --- a/samples/grids/tree-grid/cell-selection-mode/src/EmployeesFlatData.ts +++ b/samples/grids/tree-grid/cell-selection-mode/src/EmployeesFlatData.ts @@ -19,7 +19,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 55, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, Phone: `0251-031259`, @@ -30,7 +30,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 42, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, Phone: `(21) 555-0091`, @@ -41,7 +41,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 49, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, Phone: `(071) 23 67 22 20`, @@ -52,7 +52,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 61, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, Phone: `(21) 555-0091`, @@ -63,7 +63,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 43, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Phone: `0452-076545`, @@ -74,7 +74,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 29, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Phone: `(14) 555-8122`, @@ -85,7 +85,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 31, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Phone: `7675-3425`, @@ -96,7 +96,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 35, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Phone: `(505) 555-5939`, @@ -107,7 +107,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, Phone: `0695-34 67 21`, @@ -118,7 +118,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, Phone: `981-443655`, @@ -129,7 +129,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 5, Name: `Elizabeth Richards`, Phone: `(2) 283-2951`, @@ -140,7 +140,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, Phone: `981-443655`, @@ -151,7 +151,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, Phone: `(505) 555-5939`, @@ -162,7 +162,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 50, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, Phone: `035-640230`, @@ -173,7 +173,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 27, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, Phone: `0342-023176`, @@ -184,7 +184,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, Phone: `069-0245984`, @@ -195,7 +195,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, Phone: `(91) 745 6200`, @@ -206,7 +206,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, Phone: `069-0245984`, diff --git a/samples/grids/tree-grid/column-auto-sizing/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/column-auto-sizing/src/EmployeesFlatDetails.ts index 3b17280390..31ed0685ab 100644 --- a/samples/grids/tree-grid/column-auto-sizing/src/EmployeesFlatDetails.ts +++ b/samples/grids/tree-grid/column-auto-sizing/src/EmployeesFlatDetails.ts @@ -29,7 +29,7 @@ export class EmployeesFlatDetails extends Array { City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, @@ -46,7 +46,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3745`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, @@ -63,7 +63,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, @@ -80,7 +80,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-6750`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, @@ -97,7 +97,7 @@ export class EmployeesFlatDetails extends Array { City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, @@ -114,7 +114,7 @@ export class EmployeesFlatDetails extends Array { City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, @@ -131,7 +131,7 @@ export class EmployeesFlatDetails extends Array { City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, @@ -148,7 +148,7 @@ export class EmployeesFlatDetails extends Array { City: `Madrid`, Country: `Spain`, Fax: `(91) 555 91 99`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, @@ -165,7 +165,7 @@ export class EmployeesFlatDetails extends Array { City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, @@ -182,7 +182,7 @@ export class EmployeesFlatDetails extends Array { City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, @@ -199,7 +199,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(5) 555-3798`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, @@ -216,7 +216,7 @@ export class EmployeesFlatDetails extends Array { City: `Buenos Aires`, Country: `Argentina`, Fax: `(1) 135-4892`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, @@ -233,7 +233,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-7293`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, @@ -250,7 +250,7 @@ export class EmployeesFlatDetails extends Array { City: `Sao Paulo`, Country: `Brazil`, Fax: `(5) 555-6691`, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, @@ -267,7 +267,7 @@ export class EmployeesFlatDetails extends Array { City: `Bern`, Country: `Switzerland`, Fax: ``, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, @@ -284,7 +284,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-9199`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, @@ -301,7 +301,7 @@ export class EmployeesFlatDetails extends Array { City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, @@ -318,7 +318,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-3373`, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, diff --git a/samples/grids/tree-grid/column-collapsible-groups/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/column-collapsible-groups/src/EmployeesFlatDetails.ts index 3b17280390..31ed0685ab 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/src/EmployeesFlatDetails.ts +++ b/samples/grids/tree-grid/column-collapsible-groups/src/EmployeesFlatDetails.ts @@ -29,7 +29,7 @@ export class EmployeesFlatDetails extends Array { City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, @@ -46,7 +46,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3745`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, @@ -63,7 +63,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, @@ -80,7 +80,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-6750`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, @@ -97,7 +97,7 @@ export class EmployeesFlatDetails extends Array { City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, @@ -114,7 +114,7 @@ export class EmployeesFlatDetails extends Array { City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, @@ -131,7 +131,7 @@ export class EmployeesFlatDetails extends Array { City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, @@ -148,7 +148,7 @@ export class EmployeesFlatDetails extends Array { City: `Madrid`, Country: `Spain`, Fax: `(91) 555 91 99`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, @@ -165,7 +165,7 @@ export class EmployeesFlatDetails extends Array { City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, @@ -182,7 +182,7 @@ export class EmployeesFlatDetails extends Array { City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, @@ -199,7 +199,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(5) 555-3798`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, @@ -216,7 +216,7 @@ export class EmployeesFlatDetails extends Array { City: `Buenos Aires`, Country: `Argentina`, Fax: `(1) 135-4892`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, @@ -233,7 +233,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-7293`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, @@ -250,7 +250,7 @@ export class EmployeesFlatDetails extends Array { City: `Sao Paulo`, Country: `Brazil`, Fax: `(5) 555-6691`, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, @@ -267,7 +267,7 @@ export class EmployeesFlatDetails extends Array { City: `Bern`, Country: `Switzerland`, Fax: ``, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, @@ -284,7 +284,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-9199`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, @@ -301,7 +301,7 @@ export class EmployeesFlatDetails extends Array { City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, @@ -318,7 +318,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-3373`, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, diff --git a/samples/grids/tree-grid/column-hiding-toolbar/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/column-hiding-toolbar/src/EmployeesFlatDetails.ts index 3b17280390..31ed0685ab 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/src/EmployeesFlatDetails.ts +++ b/samples/grids/tree-grid/column-hiding-toolbar/src/EmployeesFlatDetails.ts @@ -29,7 +29,7 @@ export class EmployeesFlatDetails extends Array { City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, @@ -46,7 +46,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3745`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, @@ -63,7 +63,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, @@ -80,7 +80,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-6750`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, @@ -97,7 +97,7 @@ export class EmployeesFlatDetails extends Array { City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, @@ -114,7 +114,7 @@ export class EmployeesFlatDetails extends Array { City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, @@ -131,7 +131,7 @@ export class EmployeesFlatDetails extends Array { City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, @@ -148,7 +148,7 @@ export class EmployeesFlatDetails extends Array { City: `Madrid`, Country: `Spain`, Fax: `(91) 555 91 99`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, @@ -165,7 +165,7 @@ export class EmployeesFlatDetails extends Array { City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, @@ -182,7 +182,7 @@ export class EmployeesFlatDetails extends Array { City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, @@ -199,7 +199,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(5) 555-3798`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, @@ -216,7 +216,7 @@ export class EmployeesFlatDetails extends Array { City: `Buenos Aires`, Country: `Argentina`, Fax: `(1) 135-4892`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, @@ -233,7 +233,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-7293`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, @@ -250,7 +250,7 @@ export class EmployeesFlatDetails extends Array { City: `Sao Paulo`, Country: `Brazil`, Fax: `(5) 555-6691`, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, @@ -267,7 +267,7 @@ export class EmployeesFlatDetails extends Array { City: `Bern`, Country: `Switzerland`, Fax: ``, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, @@ -284,7 +284,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-9199`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, @@ -301,7 +301,7 @@ export class EmployeesFlatDetails extends Array { City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, @@ -318,7 +318,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-3373`, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, diff --git a/samples/grids/tree-grid/column-moving-options/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/column-moving-options/src/EmployeesFlatDetails.ts index 3b17280390..31ed0685ab 100644 --- a/samples/grids/tree-grid/column-moving-options/src/EmployeesFlatDetails.ts +++ b/samples/grids/tree-grid/column-moving-options/src/EmployeesFlatDetails.ts @@ -29,7 +29,7 @@ export class EmployeesFlatDetails extends Array { City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, @@ -46,7 +46,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3745`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, @@ -63,7 +63,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, @@ -80,7 +80,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-6750`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, @@ -97,7 +97,7 @@ export class EmployeesFlatDetails extends Array { City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, @@ -114,7 +114,7 @@ export class EmployeesFlatDetails extends Array { City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, @@ -131,7 +131,7 @@ export class EmployeesFlatDetails extends Array { City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, @@ -148,7 +148,7 @@ export class EmployeesFlatDetails extends Array { City: `Madrid`, Country: `Spain`, Fax: `(91) 555 91 99`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, @@ -165,7 +165,7 @@ export class EmployeesFlatDetails extends Array { City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, @@ -182,7 +182,7 @@ export class EmployeesFlatDetails extends Array { City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, @@ -199,7 +199,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(5) 555-3798`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, @@ -216,7 +216,7 @@ export class EmployeesFlatDetails extends Array { City: `Buenos Aires`, Country: `Argentina`, Fax: `(1) 135-4892`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, @@ -233,7 +233,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-7293`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, @@ -250,7 +250,7 @@ export class EmployeesFlatDetails extends Array { City: `Sao Paulo`, Country: `Brazil`, Fax: `(5) 555-6691`, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, @@ -267,7 +267,7 @@ export class EmployeesFlatDetails extends Array { City: `Bern`, Country: `Switzerland`, Fax: ``, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, @@ -284,7 +284,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-9199`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, @@ -301,7 +301,7 @@ export class EmployeesFlatDetails extends Array { City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, @@ -318,7 +318,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-3373`, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, diff --git a/samples/grids/tree-grid/column-moving-styles/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/column-moving-styles/src/EmployeesFlatDetails.ts index 3b17280390..31ed0685ab 100644 --- a/samples/grids/tree-grid/column-moving-styles/src/EmployeesFlatDetails.ts +++ b/samples/grids/tree-grid/column-moving-styles/src/EmployeesFlatDetails.ts @@ -29,7 +29,7 @@ export class EmployeesFlatDetails extends Array { City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, @@ -46,7 +46,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3745`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, @@ -63,7 +63,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, @@ -80,7 +80,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-6750`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, @@ -97,7 +97,7 @@ export class EmployeesFlatDetails extends Array { City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, @@ -114,7 +114,7 @@ export class EmployeesFlatDetails extends Array { City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, @@ -131,7 +131,7 @@ export class EmployeesFlatDetails extends Array { City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, @@ -148,7 +148,7 @@ export class EmployeesFlatDetails extends Array { City: `Madrid`, Country: `Spain`, Fax: `(91) 555 91 99`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, @@ -165,7 +165,7 @@ export class EmployeesFlatDetails extends Array { City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, @@ -182,7 +182,7 @@ export class EmployeesFlatDetails extends Array { City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, @@ -199,7 +199,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(5) 555-3798`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, @@ -216,7 +216,7 @@ export class EmployeesFlatDetails extends Array { City: `Buenos Aires`, Country: `Argentina`, Fax: `(1) 135-4892`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, @@ -233,7 +233,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-7293`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, @@ -250,7 +250,7 @@ export class EmployeesFlatDetails extends Array { City: `Sao Paulo`, Country: `Brazil`, Fax: `(5) 555-6691`, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, @@ -267,7 +267,7 @@ export class EmployeesFlatDetails extends Array { City: `Bern`, Country: `Switzerland`, Fax: ``, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, @@ -284,7 +284,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-9199`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, @@ -301,7 +301,7 @@ export class EmployeesFlatDetails extends Array { City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, @@ -318,7 +318,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-3373`, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, diff --git a/samples/grids/tree-grid/column-pinning-options/src/EmployeesFlatData.ts b/samples/grids/tree-grid/column-pinning-options/src/EmployeesFlatData.ts index 5b91f17339..9f4be20fed 100644 --- a/samples/grids/tree-grid/column-pinning-options/src/EmployeesFlatData.ts +++ b/samples/grids/tree-grid/column-pinning-options/src/EmployeesFlatData.ts @@ -19,7 +19,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 55, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, Phone: `0251-031259`, @@ -30,7 +30,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 42, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, Phone: `(21) 555-0091`, @@ -41,7 +41,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 49, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, Phone: `(071) 23 67 22 20`, @@ -52,7 +52,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 61, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, Phone: `(21) 555-0091`, @@ -63,7 +63,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 43, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Phone: `0452-076545`, @@ -74,7 +74,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 29, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Phone: `(14) 555-8122`, @@ -85,7 +85,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 31, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Phone: `7675-3425`, @@ -96,7 +96,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 35, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Phone: `(505) 555-5939`, @@ -107,7 +107,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, Phone: `0695-34 67 21`, @@ -118,7 +118,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, Phone: `981-443655`, @@ -129,7 +129,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 5, Name: `Elizabeth Richards`, Phone: `(2) 283-2951`, @@ -140,7 +140,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, Phone: `981-443655`, @@ -151,7 +151,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, Phone: `(505) 555-5939`, @@ -162,7 +162,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 50, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, Phone: `035-640230`, @@ -173,7 +173,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 27, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, Phone: `0342-023176`, @@ -184,7 +184,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, Phone: `069-0245984`, @@ -195,7 +195,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, Phone: `(91) 745 6200`, @@ -206,7 +206,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, Phone: `069-0245984`, diff --git a/samples/grids/tree-grid/column-pinning-right-side/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/column-pinning-right-side/src/EmployeesFlatDetails.ts index 3b17280390..31ed0685ab 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/src/EmployeesFlatDetails.ts +++ b/samples/grids/tree-grid/column-pinning-right-side/src/EmployeesFlatDetails.ts @@ -29,7 +29,7 @@ export class EmployeesFlatDetails extends Array { City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, @@ -46,7 +46,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3745`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, @@ -63,7 +63,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, @@ -80,7 +80,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-6750`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, @@ -97,7 +97,7 @@ export class EmployeesFlatDetails extends Array { City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, @@ -114,7 +114,7 @@ export class EmployeesFlatDetails extends Array { City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, @@ -131,7 +131,7 @@ export class EmployeesFlatDetails extends Array { City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, @@ -148,7 +148,7 @@ export class EmployeesFlatDetails extends Array { City: `Madrid`, Country: `Spain`, Fax: `(91) 555 91 99`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, @@ -165,7 +165,7 @@ export class EmployeesFlatDetails extends Array { City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, @@ -182,7 +182,7 @@ export class EmployeesFlatDetails extends Array { City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, @@ -199,7 +199,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(5) 555-3798`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, @@ -216,7 +216,7 @@ export class EmployeesFlatDetails extends Array { City: `Buenos Aires`, Country: `Argentina`, Fax: `(1) 135-4892`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, @@ -233,7 +233,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-7293`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, @@ -250,7 +250,7 @@ export class EmployeesFlatDetails extends Array { City: `Sao Paulo`, Country: `Brazil`, Fax: `(5) 555-6691`, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, @@ -267,7 +267,7 @@ export class EmployeesFlatDetails extends Array { City: `Bern`, Country: `Switzerland`, Fax: ``, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, @@ -284,7 +284,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-9199`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, @@ -301,7 +301,7 @@ export class EmployeesFlatDetails extends Array { City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, @@ -318,7 +318,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-3373`, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, diff --git a/samples/grids/tree-grid/column-pinning-styles/src/EmployeesFlatData.ts b/samples/grids/tree-grid/column-pinning-styles/src/EmployeesFlatData.ts index 5b91f17339..9f4be20fed 100644 --- a/samples/grids/tree-grid/column-pinning-styles/src/EmployeesFlatData.ts +++ b/samples/grids/tree-grid/column-pinning-styles/src/EmployeesFlatData.ts @@ -19,7 +19,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 55, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, Phone: `0251-031259`, @@ -30,7 +30,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 42, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, Phone: `(21) 555-0091`, @@ -41,7 +41,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 49, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, Phone: `(071) 23 67 22 20`, @@ -52,7 +52,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 61, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, Phone: `(21) 555-0091`, @@ -63,7 +63,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 43, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Phone: `0452-076545`, @@ -74,7 +74,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 29, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Phone: `(14) 555-8122`, @@ -85,7 +85,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 31, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Phone: `7675-3425`, @@ -96,7 +96,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 35, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Phone: `(505) 555-5939`, @@ -107,7 +107,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, Phone: `0695-34 67 21`, @@ -118,7 +118,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, Phone: `981-443655`, @@ -129,7 +129,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 5, Name: `Elizabeth Richards`, Phone: `(2) 283-2951`, @@ -140,7 +140,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, Phone: `981-443655`, @@ -151,7 +151,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, Phone: `(505) 555-5939`, @@ -162,7 +162,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 50, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, Phone: `035-640230`, @@ -173,7 +173,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 27, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, Phone: `0342-023176`, @@ -184,7 +184,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, Phone: `069-0245984`, @@ -195,7 +195,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, Phone: `(91) 745 6200`, @@ -206,7 +206,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, Phone: `069-0245984`, diff --git a/samples/grids/tree-grid/column-pinning-toolbar/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/column-pinning-toolbar/src/EmployeesFlatDetails.ts index 3b17280390..31ed0685ab 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/src/EmployeesFlatDetails.ts +++ b/samples/grids/tree-grid/column-pinning-toolbar/src/EmployeesFlatDetails.ts @@ -29,7 +29,7 @@ export class EmployeesFlatDetails extends Array { City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, @@ -46,7 +46,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3745`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, @@ -63,7 +63,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, @@ -80,7 +80,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-6750`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, @@ -97,7 +97,7 @@ export class EmployeesFlatDetails extends Array { City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, @@ -114,7 +114,7 @@ export class EmployeesFlatDetails extends Array { City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, @@ -131,7 +131,7 @@ export class EmployeesFlatDetails extends Array { City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, @@ -148,7 +148,7 @@ export class EmployeesFlatDetails extends Array { City: `Madrid`, Country: `Spain`, Fax: `(91) 555 91 99`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, @@ -165,7 +165,7 @@ export class EmployeesFlatDetails extends Array { City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, @@ -182,7 +182,7 @@ export class EmployeesFlatDetails extends Array { City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, @@ -199,7 +199,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(5) 555-3798`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, @@ -216,7 +216,7 @@ export class EmployeesFlatDetails extends Array { City: `Buenos Aires`, Country: `Argentina`, Fax: `(1) 135-4892`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, @@ -233,7 +233,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-7293`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, @@ -250,7 +250,7 @@ export class EmployeesFlatDetails extends Array { City: `Sao Paulo`, Country: `Brazil`, Fax: `(5) 555-6691`, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, @@ -267,7 +267,7 @@ export class EmployeesFlatDetails extends Array { City: `Bern`, Country: `Switzerland`, Fax: ``, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, @@ -284,7 +284,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-9199`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, @@ -301,7 +301,7 @@ export class EmployeesFlatDetails extends Array { City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, @@ -318,7 +318,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-3373`, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, diff --git a/samples/grids/tree-grid/column-pinning/src/EmployeesFlatData.ts b/samples/grids/tree-grid/column-pinning/src/EmployeesFlatData.ts index 5b91f17339..9f4be20fed 100644 --- a/samples/grids/tree-grid/column-pinning/src/EmployeesFlatData.ts +++ b/samples/grids/tree-grid/column-pinning/src/EmployeesFlatData.ts @@ -19,7 +19,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 55, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, Phone: `0251-031259`, @@ -30,7 +30,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 42, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, Phone: `(21) 555-0091`, @@ -41,7 +41,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 49, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, Phone: `(071) 23 67 22 20`, @@ -52,7 +52,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 61, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, Phone: `(21) 555-0091`, @@ -63,7 +63,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 43, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Phone: `0452-076545`, @@ -74,7 +74,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 29, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Phone: `(14) 555-8122`, @@ -85,7 +85,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 31, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Phone: `7675-3425`, @@ -96,7 +96,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 35, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Phone: `(505) 555-5939`, @@ -107,7 +107,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, Phone: `0695-34 67 21`, @@ -118,7 +118,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, Phone: `981-443655`, @@ -129,7 +129,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 5, Name: `Elizabeth Richards`, Phone: `(2) 283-2951`, @@ -140,7 +140,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, Phone: `981-443655`, @@ -151,7 +151,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, Phone: `(505) 555-5939`, @@ -162,7 +162,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 50, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, Phone: `035-640230`, @@ -173,7 +173,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 27, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, Phone: `0342-023176`, @@ -184,7 +184,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, Phone: `069-0245984`, @@ -195,7 +195,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, Phone: `(91) 745 6200`, @@ -206,7 +206,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, Phone: `069-0245984`, diff --git a/samples/grids/tree-grid/column-resize-styling/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/column-resize-styling/src/EmployeesFlatDetails.ts index 3b17280390..31ed0685ab 100644 --- a/samples/grids/tree-grid/column-resize-styling/src/EmployeesFlatDetails.ts +++ b/samples/grids/tree-grid/column-resize-styling/src/EmployeesFlatDetails.ts @@ -29,7 +29,7 @@ export class EmployeesFlatDetails extends Array { City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, @@ -46,7 +46,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3745`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, @@ -63,7 +63,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, @@ -80,7 +80,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-6750`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, @@ -97,7 +97,7 @@ export class EmployeesFlatDetails extends Array { City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, @@ -114,7 +114,7 @@ export class EmployeesFlatDetails extends Array { City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, @@ -131,7 +131,7 @@ export class EmployeesFlatDetails extends Array { City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, @@ -148,7 +148,7 @@ export class EmployeesFlatDetails extends Array { City: `Madrid`, Country: `Spain`, Fax: `(91) 555 91 99`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, @@ -165,7 +165,7 @@ export class EmployeesFlatDetails extends Array { City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, @@ -182,7 +182,7 @@ export class EmployeesFlatDetails extends Array { City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, @@ -199,7 +199,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(5) 555-3798`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, @@ -216,7 +216,7 @@ export class EmployeesFlatDetails extends Array { City: `Buenos Aires`, Country: `Argentina`, Fax: `(1) 135-4892`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, @@ -233,7 +233,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-7293`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, @@ -250,7 +250,7 @@ export class EmployeesFlatDetails extends Array { City: `Sao Paulo`, Country: `Brazil`, Fax: `(5) 555-6691`, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, @@ -267,7 +267,7 @@ export class EmployeesFlatDetails extends Array { City: `Bern`, Country: `Switzerland`, Fax: ``, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, @@ -284,7 +284,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-9199`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, @@ -301,7 +301,7 @@ export class EmployeesFlatDetails extends Array { City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, @@ -318,7 +318,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-3373`, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, diff --git a/samples/grids/tree-grid/column-resizing/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/column-resizing/src/EmployeesFlatDetails.ts index 3b17280390..31ed0685ab 100644 --- a/samples/grids/tree-grid/column-resizing/src/EmployeesFlatDetails.ts +++ b/samples/grids/tree-grid/column-resizing/src/EmployeesFlatDetails.ts @@ -29,7 +29,7 @@ export class EmployeesFlatDetails extends Array { City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, @@ -46,7 +46,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3745`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, @@ -63,7 +63,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, @@ -80,7 +80,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-6750`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, @@ -97,7 +97,7 @@ export class EmployeesFlatDetails extends Array { City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, @@ -114,7 +114,7 @@ export class EmployeesFlatDetails extends Array { City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, @@ -131,7 +131,7 @@ export class EmployeesFlatDetails extends Array { City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, @@ -148,7 +148,7 @@ export class EmployeesFlatDetails extends Array { City: `Madrid`, Country: `Spain`, Fax: `(91) 555 91 99`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, @@ -165,7 +165,7 @@ export class EmployeesFlatDetails extends Array { City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, @@ -182,7 +182,7 @@ export class EmployeesFlatDetails extends Array { City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, @@ -199,7 +199,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(5) 555-3798`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, @@ -216,7 +216,7 @@ export class EmployeesFlatDetails extends Array { City: `Buenos Aires`, Country: `Argentina`, Fax: `(1) 135-4892`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, @@ -233,7 +233,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-7293`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, @@ -250,7 +250,7 @@ export class EmployeesFlatDetails extends Array { City: `Sao Paulo`, Country: `Brazil`, Fax: `(5) 555-6691`, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, @@ -267,7 +267,7 @@ export class EmployeesFlatDetails extends Array { City: `Bern`, Country: `Switzerland`, Fax: ``, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, @@ -284,7 +284,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-9199`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, @@ -301,7 +301,7 @@ export class EmployeesFlatDetails extends Array { City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, @@ -318,7 +318,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-3373`, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, diff --git a/samples/grids/tree-grid/column-selection-group/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/column-selection-group/src/EmployeesFlatDetails.ts index 3b17280390..31ed0685ab 100644 --- a/samples/grids/tree-grid/column-selection-group/src/EmployeesFlatDetails.ts +++ b/samples/grids/tree-grid/column-selection-group/src/EmployeesFlatDetails.ts @@ -29,7 +29,7 @@ export class EmployeesFlatDetails extends Array { City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, @@ -46,7 +46,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3745`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, @@ -63,7 +63,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, @@ -80,7 +80,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-6750`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, @@ -97,7 +97,7 @@ export class EmployeesFlatDetails extends Array { City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, @@ -114,7 +114,7 @@ export class EmployeesFlatDetails extends Array { City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, @@ -131,7 +131,7 @@ export class EmployeesFlatDetails extends Array { City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, @@ -148,7 +148,7 @@ export class EmployeesFlatDetails extends Array { City: `Madrid`, Country: `Spain`, Fax: `(91) 555 91 99`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, @@ -165,7 +165,7 @@ export class EmployeesFlatDetails extends Array { City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, @@ -182,7 +182,7 @@ export class EmployeesFlatDetails extends Array { City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, @@ -199,7 +199,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(5) 555-3798`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, @@ -216,7 +216,7 @@ export class EmployeesFlatDetails extends Array { City: `Buenos Aires`, Country: `Argentina`, Fax: `(1) 135-4892`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, @@ -233,7 +233,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-7293`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, @@ -250,7 +250,7 @@ export class EmployeesFlatDetails extends Array { City: `Sao Paulo`, Country: `Brazil`, Fax: `(5) 555-6691`, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, @@ -267,7 +267,7 @@ export class EmployeesFlatDetails extends Array { City: `Bern`, Country: `Switzerland`, Fax: ``, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, @@ -284,7 +284,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-9199`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, @@ -301,7 +301,7 @@ export class EmployeesFlatDetails extends Array { City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, @@ -318,7 +318,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-3373`, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, diff --git a/samples/grids/tree-grid/column-selection-style/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/column-selection-style/src/EmployeesFlatDetails.ts index 3b17280390..31ed0685ab 100644 --- a/samples/grids/tree-grid/column-selection-style/src/EmployeesFlatDetails.ts +++ b/samples/grids/tree-grid/column-selection-style/src/EmployeesFlatDetails.ts @@ -29,7 +29,7 @@ export class EmployeesFlatDetails extends Array { City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, @@ -46,7 +46,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3745`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, @@ -63,7 +63,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, @@ -80,7 +80,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-6750`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, @@ -97,7 +97,7 @@ export class EmployeesFlatDetails extends Array { City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, @@ -114,7 +114,7 @@ export class EmployeesFlatDetails extends Array { City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, @@ -131,7 +131,7 @@ export class EmployeesFlatDetails extends Array { City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, @@ -148,7 +148,7 @@ export class EmployeesFlatDetails extends Array { City: `Madrid`, Country: `Spain`, Fax: `(91) 555 91 99`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, @@ -165,7 +165,7 @@ export class EmployeesFlatDetails extends Array { City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, @@ -182,7 +182,7 @@ export class EmployeesFlatDetails extends Array { City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, @@ -199,7 +199,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(5) 555-3798`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, @@ -216,7 +216,7 @@ export class EmployeesFlatDetails extends Array { City: `Buenos Aires`, Country: `Argentina`, Fax: `(1) 135-4892`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, @@ -233,7 +233,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-7293`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, @@ -250,7 +250,7 @@ export class EmployeesFlatDetails extends Array { City: `Sao Paulo`, Country: `Brazil`, Fax: `(5) 555-6691`, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, @@ -267,7 +267,7 @@ export class EmployeesFlatDetails extends Array { City: `Bern`, Country: `Switzerland`, Fax: ``, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, @@ -284,7 +284,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-9199`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, @@ -301,7 +301,7 @@ export class EmployeesFlatDetails extends Array { City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, @@ -318,7 +318,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-3373`, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, diff --git a/samples/grids/tree-grid/editing-lifecycle/src/EmployeesFlatData.ts b/samples/grids/tree-grid/editing-lifecycle/src/EmployeesFlatData.ts index 5b91f17339..9f4be20fed 100644 --- a/samples/grids/tree-grid/editing-lifecycle/src/EmployeesFlatData.ts +++ b/samples/grids/tree-grid/editing-lifecycle/src/EmployeesFlatData.ts @@ -19,7 +19,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 55, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, Phone: `0251-031259`, @@ -30,7 +30,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 42, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, Phone: `(21) 555-0091`, @@ -41,7 +41,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 49, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, Phone: `(071) 23 67 22 20`, @@ -52,7 +52,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 61, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, Phone: `(21) 555-0091`, @@ -63,7 +63,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 43, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Phone: `0452-076545`, @@ -74,7 +74,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 29, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Phone: `(14) 555-8122`, @@ -85,7 +85,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 31, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Phone: `7675-3425`, @@ -96,7 +96,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 35, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Phone: `(505) 555-5939`, @@ -107,7 +107,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, Phone: `0695-34 67 21`, @@ -118,7 +118,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, Phone: `981-443655`, @@ -129,7 +129,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 5, Name: `Elizabeth Richards`, Phone: `(2) 283-2951`, @@ -140,7 +140,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, Phone: `981-443655`, @@ -151,7 +151,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, Phone: `(505) 555-5939`, @@ -162,7 +162,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 50, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, Phone: `035-640230`, @@ -173,7 +173,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 27, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, Phone: `0342-023176`, @@ -184,7 +184,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, Phone: `069-0245984`, @@ -195,7 +195,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, Phone: `(91) 745 6200`, @@ -206,7 +206,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, Phone: `069-0245984`, diff --git a/samples/grids/tree-grid/excel-exporting/src/EmployeesNestedData.ts b/samples/grids/tree-grid/excel-exporting/src/EmployeesNestedData.ts index 0b59637306..4a386f8be4 100644 --- a/samples/grids/tree-grid/excel-exporting/src/EmployeesNestedData.ts +++ b/samples/grids/tree-grid/excel-exporting/src/EmployeesNestedData.ts @@ -45,7 +45,7 @@ export class EmployeesNestedData extends Array { City: `Berlin`, Country: `Germany`, Phone: `609-202-505`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, Name: `John Winchester`, Title: `Development Manager`, Employees: [ @@ -57,7 +57,7 @@ export class EmployeesNestedData extends Array { City: `Hamburg`, Country: `Germany`, Phone: `609-444-555`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Title: `Senior Software Developer` @@ -70,7 +70,7 @@ export class EmployeesNestedData extends Array { City: `Munich`, Country: `Germany`, Phone: `609-333-444`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Title: `Senior Software Developer` @@ -83,7 +83,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Title: `Software Development Team Lead` @@ -96,7 +96,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Title: `Senior Software Developer` @@ -112,7 +112,7 @@ export class EmployeesNestedData extends Array { City: `Kielce`, Country: `Poland`, Phone: `609-202-505`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, Name: `Ana Sanders`, Title: `CEO`, Employees: [ @@ -124,7 +124,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-202-505`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, Title: `Director` @@ -137,7 +137,7 @@ export class EmployeesNestedData extends Array { City: `Paris`, Country: `France`, Phone: `609-202-505`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 5, Name: `Elizabeth Richards`, Title: `Vice President` @@ -150,7 +150,7 @@ export class EmployeesNestedData extends Array { City: `London`, Country: `UK`, Phone: `609-202-505`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, Title: `Director` @@ -166,7 +166,7 @@ export class EmployeesNestedData extends Array { City: `Manchester`, Country: `UK`, Phone: `222-555-577`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, Name: `Victoria Lincoln`, Title: `Senior Accountant`, Employees: [ @@ -178,7 +178,7 @@ export class EmployeesNestedData extends Array { City: `Hamburg`, Country: `Germany`, Phone: `609-444-555`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 23, Name: `Thomas Burke`, Title: `Senior Accountant` @@ -191,7 +191,7 @@ export class EmployeesNestedData extends Array { City: `Munich`, Country: `Germany`, Phone: `609-333-444`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 22, Name: `Michael Anderson`, Title: `Junior Accountant` @@ -204,7 +204,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 21, Name: `Roland Reyes`, Title: `Accountant Team Lead` @@ -217,7 +217,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 24, Name: `Monica Mendel`, Title: `Senior Software Developer` @@ -233,7 +233,7 @@ export class EmployeesNestedData extends Array { City: `Lyon`, Country: `France`, Phone: `259-266-887`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, Name: `Yang Wang`, Title: `Localization Developer`, Employees: [ @@ -245,7 +245,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Title: `Software Development Team Lead` @@ -258,7 +258,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Title: `Senior Software Developer` @@ -274,7 +274,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `688-244-844`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, Name: `Janine Munoz`, Title: `HR`, Employees: [ @@ -286,7 +286,7 @@ export class EmployeesNestedData extends Array { City: `Hamburg`, Country: `Germany`, Phone: `609-444-555`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Title: `Senior Software Developer` @@ -299,7 +299,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Title: `Software Development Team Lead` @@ -315,7 +315,7 @@ export class EmployeesNestedData extends Array { City: `Krakow`, Country: `Poland`, Phone: `677-266-555`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, Name: `Yang Wang`, Title: `Sales Manager`, Employees: [ @@ -327,7 +327,7 @@ export class EmployeesNestedData extends Array { City: `Munich`, Country: `Germany`, Phone: `609-333-444`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Title: `Senior Software Developer` @@ -340,7 +340,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Title: `Senior Software Developer` diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/src/EmployeesNestedData.ts b/samples/grids/tree-grid/keyboard-custom-navigation/src/EmployeesNestedData.ts index 0b59637306..4a386f8be4 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/src/EmployeesNestedData.ts +++ b/samples/grids/tree-grid/keyboard-custom-navigation/src/EmployeesNestedData.ts @@ -45,7 +45,7 @@ export class EmployeesNestedData extends Array { City: `Berlin`, Country: `Germany`, Phone: `609-202-505`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, Name: `John Winchester`, Title: `Development Manager`, Employees: [ @@ -57,7 +57,7 @@ export class EmployeesNestedData extends Array { City: `Hamburg`, Country: `Germany`, Phone: `609-444-555`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Title: `Senior Software Developer` @@ -70,7 +70,7 @@ export class EmployeesNestedData extends Array { City: `Munich`, Country: `Germany`, Phone: `609-333-444`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Title: `Senior Software Developer` @@ -83,7 +83,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Title: `Software Development Team Lead` @@ -96,7 +96,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Title: `Senior Software Developer` @@ -112,7 +112,7 @@ export class EmployeesNestedData extends Array { City: `Kielce`, Country: `Poland`, Phone: `609-202-505`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, Name: `Ana Sanders`, Title: `CEO`, Employees: [ @@ -124,7 +124,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-202-505`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, Title: `Director` @@ -137,7 +137,7 @@ export class EmployeesNestedData extends Array { City: `Paris`, Country: `France`, Phone: `609-202-505`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 5, Name: `Elizabeth Richards`, Title: `Vice President` @@ -150,7 +150,7 @@ export class EmployeesNestedData extends Array { City: `London`, Country: `UK`, Phone: `609-202-505`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, Title: `Director` @@ -166,7 +166,7 @@ export class EmployeesNestedData extends Array { City: `Manchester`, Country: `UK`, Phone: `222-555-577`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, Name: `Victoria Lincoln`, Title: `Senior Accountant`, Employees: [ @@ -178,7 +178,7 @@ export class EmployeesNestedData extends Array { City: `Hamburg`, Country: `Germany`, Phone: `609-444-555`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 23, Name: `Thomas Burke`, Title: `Senior Accountant` @@ -191,7 +191,7 @@ export class EmployeesNestedData extends Array { City: `Munich`, Country: `Germany`, Phone: `609-333-444`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 22, Name: `Michael Anderson`, Title: `Junior Accountant` @@ -204,7 +204,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 21, Name: `Roland Reyes`, Title: `Accountant Team Lead` @@ -217,7 +217,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 24, Name: `Monica Mendel`, Title: `Senior Software Developer` @@ -233,7 +233,7 @@ export class EmployeesNestedData extends Array { City: `Lyon`, Country: `France`, Phone: `259-266-887`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, Name: `Yang Wang`, Title: `Localization Developer`, Employees: [ @@ -245,7 +245,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Title: `Software Development Team Lead` @@ -258,7 +258,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Title: `Senior Software Developer` @@ -274,7 +274,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `688-244-844`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, Name: `Janine Munoz`, Title: `HR`, Employees: [ @@ -286,7 +286,7 @@ export class EmployeesNestedData extends Array { City: `Hamburg`, Country: `Germany`, Phone: `609-444-555`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Title: `Senior Software Developer` @@ -299,7 +299,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Title: `Software Development Team Lead` @@ -315,7 +315,7 @@ export class EmployeesNestedData extends Array { City: `Krakow`, Country: `Poland`, Phone: `677-266-555`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, Name: `Yang Wang`, Title: `Sales Manager`, Employees: [ @@ -327,7 +327,7 @@ export class EmployeesNestedData extends Array { City: `Munich`, Country: `Germany`, Phone: `609-333-444`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Title: `Senior Software Developer` @@ -340,7 +340,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Title: `Senior Software Developer` diff --git a/samples/grids/tree-grid/layout-display-density/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/layout-display-density/src/EmployeesFlatDetails.ts index 3b17280390..31ed0685ab 100644 --- a/samples/grids/tree-grid/layout-display-density/src/EmployeesFlatDetails.ts +++ b/samples/grids/tree-grid/layout-display-density/src/EmployeesFlatDetails.ts @@ -29,7 +29,7 @@ export class EmployeesFlatDetails extends Array { City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, @@ -46,7 +46,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3745`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, @@ -63,7 +63,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, @@ -80,7 +80,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-6750`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, @@ -97,7 +97,7 @@ export class EmployeesFlatDetails extends Array { City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, @@ -114,7 +114,7 @@ export class EmployeesFlatDetails extends Array { City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, @@ -131,7 +131,7 @@ export class EmployeesFlatDetails extends Array { City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, @@ -148,7 +148,7 @@ export class EmployeesFlatDetails extends Array { City: `Madrid`, Country: `Spain`, Fax: `(91) 555 91 99`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, @@ -165,7 +165,7 @@ export class EmployeesFlatDetails extends Array { City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, @@ -182,7 +182,7 @@ export class EmployeesFlatDetails extends Array { City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, @@ -199,7 +199,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(5) 555-3798`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, @@ -216,7 +216,7 @@ export class EmployeesFlatDetails extends Array { City: `Buenos Aires`, Country: `Argentina`, Fax: `(1) 135-4892`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, @@ -233,7 +233,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-7293`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, @@ -250,7 +250,7 @@ export class EmployeesFlatDetails extends Array { City: `Sao Paulo`, Country: `Brazil`, Fax: `(5) 555-6691`, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, @@ -267,7 +267,7 @@ export class EmployeesFlatDetails extends Array { City: `Bern`, Country: `Switzerland`, Fax: ``, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, @@ -284,7 +284,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-9199`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, @@ -301,7 +301,7 @@ export class EmployeesFlatDetails extends Array { City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, @@ -318,7 +318,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-3373`, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, diff --git a/samples/grids/tree-grid/multi-column-headers-export/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/multi-column-headers-export/src/EmployeesFlatDetails.ts index 3b17280390..31ed0685ab 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/src/EmployeesFlatDetails.ts +++ b/samples/grids/tree-grid/multi-column-headers-export/src/EmployeesFlatDetails.ts @@ -29,7 +29,7 @@ export class EmployeesFlatDetails extends Array { City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, @@ -46,7 +46,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3745`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, @@ -63,7 +63,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, @@ -80,7 +80,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-6750`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, @@ -97,7 +97,7 @@ export class EmployeesFlatDetails extends Array { City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, @@ -114,7 +114,7 @@ export class EmployeesFlatDetails extends Array { City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, @@ -131,7 +131,7 @@ export class EmployeesFlatDetails extends Array { City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, @@ -148,7 +148,7 @@ export class EmployeesFlatDetails extends Array { City: `Madrid`, Country: `Spain`, Fax: `(91) 555 91 99`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, @@ -165,7 +165,7 @@ export class EmployeesFlatDetails extends Array { City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, @@ -182,7 +182,7 @@ export class EmployeesFlatDetails extends Array { City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, @@ -199,7 +199,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(5) 555-3798`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, @@ -216,7 +216,7 @@ export class EmployeesFlatDetails extends Array { City: `Buenos Aires`, Country: `Argentina`, Fax: `(1) 135-4892`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, @@ -233,7 +233,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-7293`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, @@ -250,7 +250,7 @@ export class EmployeesFlatDetails extends Array { City: `Sao Paulo`, Country: `Brazil`, Fax: `(5) 555-6691`, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, @@ -267,7 +267,7 @@ export class EmployeesFlatDetails extends Array { City: `Bern`, Country: `Switzerland`, Fax: ``, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, @@ -284,7 +284,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-9199`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, @@ -301,7 +301,7 @@ export class EmployeesFlatDetails extends Array { City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, @@ -318,7 +318,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-3373`, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, diff --git a/samples/grids/tree-grid/multi-column-headers-overview/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/multi-column-headers-overview/src/EmployeesFlatDetails.ts index 3b17280390..31ed0685ab 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/src/EmployeesFlatDetails.ts +++ b/samples/grids/tree-grid/multi-column-headers-overview/src/EmployeesFlatDetails.ts @@ -29,7 +29,7 @@ export class EmployeesFlatDetails extends Array { City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, @@ -46,7 +46,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3745`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, @@ -63,7 +63,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, @@ -80,7 +80,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-6750`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, @@ -97,7 +97,7 @@ export class EmployeesFlatDetails extends Array { City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, @@ -114,7 +114,7 @@ export class EmployeesFlatDetails extends Array { City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, @@ -131,7 +131,7 @@ export class EmployeesFlatDetails extends Array { City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, @@ -148,7 +148,7 @@ export class EmployeesFlatDetails extends Array { City: `Madrid`, Country: `Spain`, Fax: `(91) 555 91 99`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, @@ -165,7 +165,7 @@ export class EmployeesFlatDetails extends Array { City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, @@ -182,7 +182,7 @@ export class EmployeesFlatDetails extends Array { City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, @@ -199,7 +199,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(5) 555-3798`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, @@ -216,7 +216,7 @@ export class EmployeesFlatDetails extends Array { City: `Buenos Aires`, Country: `Argentina`, Fax: `(1) 135-4892`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, @@ -233,7 +233,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-7293`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, @@ -250,7 +250,7 @@ export class EmployeesFlatDetails extends Array { City: `Sao Paulo`, Country: `Brazil`, Fax: `(5) 555-6691`, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, @@ -267,7 +267,7 @@ export class EmployeesFlatDetails extends Array { City: `Bern`, Country: `Switzerland`, Fax: ``, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, @@ -284,7 +284,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-9199`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, @@ -301,7 +301,7 @@ export class EmployeesFlatDetails extends Array { City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, @@ -318,7 +318,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-3373`, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, diff --git a/samples/grids/tree-grid/multi-column-headers-styling/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/multi-column-headers-styling/src/EmployeesFlatDetails.ts index 3b17280390..31ed0685ab 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/src/EmployeesFlatDetails.ts +++ b/samples/grids/tree-grid/multi-column-headers-styling/src/EmployeesFlatDetails.ts @@ -29,7 +29,7 @@ export class EmployeesFlatDetails extends Array { City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, @@ -46,7 +46,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3745`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, @@ -63,7 +63,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, @@ -80,7 +80,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-6750`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, @@ -97,7 +97,7 @@ export class EmployeesFlatDetails extends Array { City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, @@ -114,7 +114,7 @@ export class EmployeesFlatDetails extends Array { City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, @@ -131,7 +131,7 @@ export class EmployeesFlatDetails extends Array { City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, @@ -148,7 +148,7 @@ export class EmployeesFlatDetails extends Array { City: `Madrid`, Country: `Spain`, Fax: `(91) 555 91 99`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, @@ -165,7 +165,7 @@ export class EmployeesFlatDetails extends Array { City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, @@ -182,7 +182,7 @@ export class EmployeesFlatDetails extends Array { City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, @@ -199,7 +199,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(5) 555-3798`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, @@ -216,7 +216,7 @@ export class EmployeesFlatDetails extends Array { City: `Buenos Aires`, Country: `Argentina`, Fax: `(1) 135-4892`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, @@ -233,7 +233,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-7293`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, @@ -250,7 +250,7 @@ export class EmployeesFlatDetails extends Array { City: `Sao Paulo`, Country: `Brazil`, Fax: `(5) 555-6691`, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, @@ -267,7 +267,7 @@ export class EmployeesFlatDetails extends Array { City: `Bern`, Country: `Switzerland`, Fax: ``, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, @@ -284,7 +284,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-9199`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, @@ -301,7 +301,7 @@ export class EmployeesFlatDetails extends Array { City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, @@ -318,7 +318,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-3373`, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, diff --git a/samples/grids/tree-grid/multi-column-headers-template/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/multi-column-headers-template/src/EmployeesFlatDetails.ts index 3b17280390..31ed0685ab 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/src/EmployeesFlatDetails.ts +++ b/samples/grids/tree-grid/multi-column-headers-template/src/EmployeesFlatDetails.ts @@ -29,7 +29,7 @@ export class EmployeesFlatDetails extends Array { City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, @@ -46,7 +46,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3745`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, @@ -63,7 +63,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, @@ -80,7 +80,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-6750`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, @@ -97,7 +97,7 @@ export class EmployeesFlatDetails extends Array { City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, @@ -114,7 +114,7 @@ export class EmployeesFlatDetails extends Array { City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, @@ -131,7 +131,7 @@ export class EmployeesFlatDetails extends Array { City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, @@ -148,7 +148,7 @@ export class EmployeesFlatDetails extends Array { City: `Madrid`, Country: `Spain`, Fax: `(91) 555 91 99`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, @@ -165,7 +165,7 @@ export class EmployeesFlatDetails extends Array { City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, @@ -182,7 +182,7 @@ export class EmployeesFlatDetails extends Array { City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, @@ -199,7 +199,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(5) 555-3798`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, @@ -216,7 +216,7 @@ export class EmployeesFlatDetails extends Array { City: `Buenos Aires`, Country: `Argentina`, Fax: `(1) 135-4892`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, @@ -233,7 +233,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-7293`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, @@ -250,7 +250,7 @@ export class EmployeesFlatDetails extends Array { City: `Sao Paulo`, Country: `Brazil`, Fax: `(5) 555-6691`, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, @@ -267,7 +267,7 @@ export class EmployeesFlatDetails extends Array { City: `Bern`, Country: `Switzerland`, Fax: ``, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, @@ -284,7 +284,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-9199`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, @@ -301,7 +301,7 @@ export class EmployeesFlatDetails extends Array { City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, @@ -318,7 +318,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-3373`, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, diff --git a/samples/grids/tree-grid/overview-styling/src/EmployeesNestedData.ts b/samples/grids/tree-grid/overview-styling/src/EmployeesNestedData.ts index 0b59637306..4a386f8be4 100644 --- a/samples/grids/tree-grid/overview-styling/src/EmployeesNestedData.ts +++ b/samples/grids/tree-grid/overview-styling/src/EmployeesNestedData.ts @@ -45,7 +45,7 @@ export class EmployeesNestedData extends Array { City: `Berlin`, Country: `Germany`, Phone: `609-202-505`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, Name: `John Winchester`, Title: `Development Manager`, Employees: [ @@ -57,7 +57,7 @@ export class EmployeesNestedData extends Array { City: `Hamburg`, Country: `Germany`, Phone: `609-444-555`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Title: `Senior Software Developer` @@ -70,7 +70,7 @@ export class EmployeesNestedData extends Array { City: `Munich`, Country: `Germany`, Phone: `609-333-444`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Title: `Senior Software Developer` @@ -83,7 +83,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Title: `Software Development Team Lead` @@ -96,7 +96,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Title: `Senior Software Developer` @@ -112,7 +112,7 @@ export class EmployeesNestedData extends Array { City: `Kielce`, Country: `Poland`, Phone: `609-202-505`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, Name: `Ana Sanders`, Title: `CEO`, Employees: [ @@ -124,7 +124,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-202-505`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, Title: `Director` @@ -137,7 +137,7 @@ export class EmployeesNestedData extends Array { City: `Paris`, Country: `France`, Phone: `609-202-505`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 5, Name: `Elizabeth Richards`, Title: `Vice President` @@ -150,7 +150,7 @@ export class EmployeesNestedData extends Array { City: `London`, Country: `UK`, Phone: `609-202-505`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, Title: `Director` @@ -166,7 +166,7 @@ export class EmployeesNestedData extends Array { City: `Manchester`, Country: `UK`, Phone: `222-555-577`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, Name: `Victoria Lincoln`, Title: `Senior Accountant`, Employees: [ @@ -178,7 +178,7 @@ export class EmployeesNestedData extends Array { City: `Hamburg`, Country: `Germany`, Phone: `609-444-555`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 23, Name: `Thomas Burke`, Title: `Senior Accountant` @@ -191,7 +191,7 @@ export class EmployeesNestedData extends Array { City: `Munich`, Country: `Germany`, Phone: `609-333-444`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 22, Name: `Michael Anderson`, Title: `Junior Accountant` @@ -204,7 +204,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 21, Name: `Roland Reyes`, Title: `Accountant Team Lead` @@ -217,7 +217,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 24, Name: `Monica Mendel`, Title: `Senior Software Developer` @@ -233,7 +233,7 @@ export class EmployeesNestedData extends Array { City: `Lyon`, Country: `France`, Phone: `259-266-887`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, Name: `Yang Wang`, Title: `Localization Developer`, Employees: [ @@ -245,7 +245,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Title: `Software Development Team Lead` @@ -258,7 +258,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Title: `Senior Software Developer` @@ -274,7 +274,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `688-244-844`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, Name: `Janine Munoz`, Title: `HR`, Employees: [ @@ -286,7 +286,7 @@ export class EmployeesNestedData extends Array { City: `Hamburg`, Country: `Germany`, Phone: `609-444-555`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Title: `Senior Software Developer` @@ -299,7 +299,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Title: `Software Development Team Lead` @@ -315,7 +315,7 @@ export class EmployeesNestedData extends Array { City: `Krakow`, Country: `Poland`, Phone: `677-266-555`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, Name: `Yang Wang`, Title: `Sales Manager`, Employees: [ @@ -327,7 +327,7 @@ export class EmployeesNestedData extends Array { City: `Munich`, Country: `Germany`, Phone: `609-333-444`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Title: `Senior Software Developer` @@ -340,7 +340,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Title: `Senior Software Developer` diff --git a/samples/grids/tree-grid/overview/src/EmployeesNestedData.ts b/samples/grids/tree-grid/overview/src/EmployeesNestedData.ts index 0b59637306..4a386f8be4 100644 --- a/samples/grids/tree-grid/overview/src/EmployeesNestedData.ts +++ b/samples/grids/tree-grid/overview/src/EmployeesNestedData.ts @@ -45,7 +45,7 @@ export class EmployeesNestedData extends Array { City: `Berlin`, Country: `Germany`, Phone: `609-202-505`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, Name: `John Winchester`, Title: `Development Manager`, Employees: [ @@ -57,7 +57,7 @@ export class EmployeesNestedData extends Array { City: `Hamburg`, Country: `Germany`, Phone: `609-444-555`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Title: `Senior Software Developer` @@ -70,7 +70,7 @@ export class EmployeesNestedData extends Array { City: `Munich`, Country: `Germany`, Phone: `609-333-444`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Title: `Senior Software Developer` @@ -83,7 +83,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Title: `Software Development Team Lead` @@ -96,7 +96,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Title: `Senior Software Developer` @@ -112,7 +112,7 @@ export class EmployeesNestedData extends Array { City: `Kielce`, Country: `Poland`, Phone: `609-202-505`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, Name: `Ana Sanders`, Title: `CEO`, Employees: [ @@ -124,7 +124,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-202-505`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, Title: `Director` @@ -137,7 +137,7 @@ export class EmployeesNestedData extends Array { City: `Paris`, Country: `France`, Phone: `609-202-505`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 5, Name: `Elizabeth Richards`, Title: `Vice President` @@ -150,7 +150,7 @@ export class EmployeesNestedData extends Array { City: `London`, Country: `UK`, Phone: `609-202-505`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, Title: `Director` @@ -166,7 +166,7 @@ export class EmployeesNestedData extends Array { City: `Manchester`, Country: `UK`, Phone: `222-555-577`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, Name: `Victoria Lincoln`, Title: `Senior Accountant`, Employees: [ @@ -178,7 +178,7 @@ export class EmployeesNestedData extends Array { City: `Hamburg`, Country: `Germany`, Phone: `609-444-555`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 23, Name: `Thomas Burke`, Title: `Senior Accountant` @@ -191,7 +191,7 @@ export class EmployeesNestedData extends Array { City: `Munich`, Country: `Germany`, Phone: `609-333-444`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 22, Name: `Michael Anderson`, Title: `Junior Accountant` @@ -204,7 +204,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 21, Name: `Roland Reyes`, Title: `Accountant Team Lead` @@ -217,7 +217,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 24, Name: `Monica Mendel`, Title: `Senior Software Developer` @@ -233,7 +233,7 @@ export class EmployeesNestedData extends Array { City: `Lyon`, Country: `France`, Phone: `259-266-887`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, Name: `Yang Wang`, Title: `Localization Developer`, Employees: [ @@ -245,7 +245,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Title: `Software Development Team Lead` @@ -258,7 +258,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Title: `Senior Software Developer` @@ -274,7 +274,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `688-244-844`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, Name: `Janine Munoz`, Title: `HR`, Employees: [ @@ -286,7 +286,7 @@ export class EmployeesNestedData extends Array { City: `Hamburg`, Country: `Germany`, Phone: `609-444-555`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Title: `Senior Software Developer` @@ -299,7 +299,7 @@ export class EmployeesNestedData extends Array { City: `Warasw`, Country: `Poland`, Phone: `609-222-205`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Title: `Software Development Team Lead` @@ -315,7 +315,7 @@ export class EmployeesNestedData extends Array { City: `Krakow`, Country: `Poland`, Phone: `677-266-555`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, Name: `Yang Wang`, Title: `Sales Manager`, Employees: [ @@ -327,7 +327,7 @@ export class EmployeesNestedData extends Array { City: `Munich`, Country: `Germany`, Phone: `609-333-444`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Title: `Senior Software Developer` @@ -340,7 +340,7 @@ export class EmployeesNestedData extends Array { City: `Koln`, Country: `Germany`, Phone: `609-502-525`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Title: `Senior Software Developer` diff --git a/samples/grids/tree-grid/row-selection-mode/src/EmployeesFlatData.ts b/samples/grids/tree-grid/row-selection-mode/src/EmployeesFlatData.ts index 5b91f17339..9f4be20fed 100644 --- a/samples/grids/tree-grid/row-selection-mode/src/EmployeesFlatData.ts +++ b/samples/grids/tree-grid/row-selection-mode/src/EmployeesFlatData.ts @@ -19,7 +19,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 55, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, Phone: `0251-031259`, @@ -30,7 +30,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 42, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, Phone: `(21) 555-0091`, @@ -41,7 +41,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 49, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, Phone: `(071) 23 67 22 20`, @@ -52,7 +52,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 61, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, Phone: `(21) 555-0091`, @@ -63,7 +63,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 43, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Phone: `0452-076545`, @@ -74,7 +74,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 29, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Phone: `(14) 555-8122`, @@ -85,7 +85,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 31, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Phone: `7675-3425`, @@ -96,7 +96,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 35, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Phone: `(505) 555-5939`, @@ -107,7 +107,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, Phone: `0695-34 67 21`, @@ -118,7 +118,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, Phone: `981-443655`, @@ -129,7 +129,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 5, Name: `Elizabeth Richards`, Phone: `(2) 283-2951`, @@ -140,7 +140,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, Phone: `981-443655`, @@ -151,7 +151,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, Phone: `(505) 555-5939`, @@ -162,7 +162,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 50, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, Phone: `035-640230`, @@ -173,7 +173,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 27, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, Phone: `0342-023176`, @@ -184,7 +184,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, Phone: `069-0245984`, @@ -195,7 +195,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, Phone: `(91) 745 6200`, @@ -206,7 +206,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, Phone: `069-0245984`, diff --git a/samples/grids/tree-grid/row-selection-template-numbers/src/EmployeesFlatData.ts b/samples/grids/tree-grid/row-selection-template-numbers/src/EmployeesFlatData.ts index 5b91f17339..9f4be20fed 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/src/EmployeesFlatData.ts +++ b/samples/grids/tree-grid/row-selection-template-numbers/src/EmployeesFlatData.ts @@ -19,7 +19,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 55, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, Phone: `0251-031259`, @@ -30,7 +30,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 42, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, Phone: `(21) 555-0091`, @@ -41,7 +41,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 49, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, Phone: `(071) 23 67 22 20`, @@ -52,7 +52,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 61, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, Phone: `(21) 555-0091`, @@ -63,7 +63,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 43, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Phone: `0452-076545`, @@ -74,7 +74,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 29, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Phone: `(14) 555-8122`, @@ -85,7 +85,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 31, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Phone: `7675-3425`, @@ -96,7 +96,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 35, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Phone: `(505) 555-5939`, @@ -107,7 +107,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, Phone: `0695-34 67 21`, @@ -118,7 +118,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, Phone: `981-443655`, @@ -129,7 +129,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 5, Name: `Elizabeth Richards`, Phone: `(2) 283-2951`, @@ -140,7 +140,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, Phone: `981-443655`, @@ -151,7 +151,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, Phone: `(505) 555-5939`, @@ -162,7 +162,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 50, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, Phone: `035-640230`, @@ -173,7 +173,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 27, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, Phone: `0342-023176`, @@ -184,7 +184,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, Phone: `069-0245984`, @@ -195,7 +195,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, Phone: `(91) 745 6200`, @@ -206,7 +206,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, Phone: `069-0245984`, diff --git a/samples/grids/tree-grid/row-styles/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/row-styles/src/EmployeesFlatDetails.ts index 3b17280390..31ed0685ab 100644 --- a/samples/grids/tree-grid/row-styles/src/EmployeesFlatDetails.ts +++ b/samples/grids/tree-grid/row-styles/src/EmployeesFlatDetails.ts @@ -29,7 +29,7 @@ export class EmployeesFlatDetails extends Array { City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, @@ -46,7 +46,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3745`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, @@ -63,7 +63,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, @@ -80,7 +80,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-6750`, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, @@ -97,7 +97,7 @@ export class EmployeesFlatDetails extends Array { City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, @@ -114,7 +114,7 @@ export class EmployeesFlatDetails extends Array { City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, @@ -131,7 +131,7 @@ export class EmployeesFlatDetails extends Array { City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, @@ -148,7 +148,7 @@ export class EmployeesFlatDetails extends Array { City: `Madrid`, Country: `Spain`, Fax: `(91) 555 91 99`, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, @@ -165,7 +165,7 @@ export class EmployeesFlatDetails extends Array { City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, @@ -182,7 +182,7 @@ export class EmployeesFlatDetails extends Array { City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, @@ -199,7 +199,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(5) 555-3798`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, @@ -216,7 +216,7 @@ export class EmployeesFlatDetails extends Array { City: `Buenos Aires`, Country: `Argentina`, Fax: `(1) 135-4892`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, @@ -233,7 +233,7 @@ export class EmployeesFlatDetails extends Array { City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-7293`, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, @@ -250,7 +250,7 @@ export class EmployeesFlatDetails extends Array { City: `Sao Paulo`, Country: `Brazil`, Fax: `(5) 555-6691`, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, @@ -267,7 +267,7 @@ export class EmployeesFlatDetails extends Array { City: `Bern`, Country: `Switzerland`, Fax: ``, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, @@ -284,7 +284,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-9199`, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, @@ -301,7 +301,7 @@ export class EmployeesFlatDetails extends Array { City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, @@ -318,7 +318,7 @@ export class EmployeesFlatDetails extends Array { City: `London`, Country: `UK`, Fax: `(171) 555-3373`, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, diff --git a/samples/grids/tree-grid/using-primary-foreign-keys/src/EmployeesFlatData.ts b/samples/grids/tree-grid/using-primary-foreign-keys/src/EmployeesFlatData.ts index 5b91f17339..9f4be20fed 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/src/EmployeesFlatData.ts +++ b/samples/grids/tree-grid/using-primary-foreign-keys/src/EmployeesFlatData.ts @@ -19,7 +19,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 55, - HireDate: `2008, 3, 20`, + HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, Phone: `0251-031259`, @@ -30,7 +30,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 42, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, Phone: `(21) 555-0091`, @@ -41,7 +41,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 49, - HireDate: `2014, 1, 22`, + HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, Phone: `(071) 23 67 22 20`, @@ -52,7 +52,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 61, - HireDate: `2010, 1, 1`, + HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, Phone: `(21) 555-0091`, @@ -63,7 +63,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 43, - HireDate: `2011, 6, 3`, + HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, Phone: `0452-076545`, @@ -74,7 +74,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 29, - HireDate: `2009, 6, 19`, + HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, Phone: `(14) 555-8122`, @@ -85,7 +85,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 31, - HireDate: `2014, 8, 18`, + HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, Phone: `7675-3425`, @@ -96,7 +96,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 35, - HireDate: `2015, 9, 17`, + HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, Phone: `(505) 555-5939`, @@ -107,7 +107,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2009, 10, 11`, + HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, Phone: `0695-34 67 21`, @@ -118,7 +118,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, Phone: `981-443655`, @@ -129,7 +129,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 5, Name: `Elizabeth Richards`, Phone: `(2) 283-2951`, @@ -140,7 +140,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, Phone: `981-443655`, @@ -151,7 +151,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 44, - HireDate: `2014, 4, 4`, + HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, Phone: `(505) 555-5939`, @@ -162,7 +162,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 50, - HireDate: `2007, 11, 18`, + HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, Phone: `035-640230`, @@ -173,7 +173,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 27, - HireDate: `2016, 2, 19`, + HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, Phone: `0342-023176`, @@ -184,7 +184,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2017, 11, 9`, + HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, Phone: `069-0245984`, @@ -195,7 +195,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 39, - HireDate: `2010, 3, 22`, + HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, Phone: `(91) 745 6200`, @@ -206,7 +206,7 @@ export class EmployeesFlatData extends Array { this.push(new EmployeesFlatDataItem( { Age: 25, - HireDate: `2018, 3, 18`, + HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, Phone: `069-0245984`, From e811551d4165ef838fa53c4735acaf5867afc10f Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Wed, 13 Dec 2023 16:03:45 -0500 Subject: [PATCH 18/20] Update build-pipeline.yml (#617) --- azure-pipelines/build-pipeline.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/azure-pipelines/build-pipeline.yml b/azure-pipelines/build-pipeline.yml index c7b769cc32..7547aac37d 100644 --- a/azure-pipelines/build-pipeline.yml +++ b/azure-pipelines/build-pipeline.yml @@ -60,9 +60,6 @@ stages: showWarnings: true workingDirectory: '$(Build.SourcesDirectory)' targetType: 'inline' - - # use this only for proget packages: - # $npmInstallPackages += "@infragistics/" + $_.Name + "@" + $_.Value + " " script: | Get-Content -Path .\.npmrc $packageJson = Get-Content -Raw .\package.json | ConvertFrom-Json @@ -74,7 +71,7 @@ stages: } | ` ForEach-Object { ` $npmUninstallPackages += $_.Name + " " - $npmInstallPackages += $_.Name + "@" + $_.Value + " " + $npmInstallPackages += "@infragistics/" + $_.Name + "@" + $_.Value + " " } Write-Host $npmUninstallPackages Write-Host $npmInstallPackages From f9fc8e2631f7a390a2af93beef60b4c196ee170d Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 16:25:49 -0500 Subject: [PATCH 19/20] Adding changes from build igniteui-xplat-examples-output+PRs_2023.12.13.4 (#618) Co-authored-by: tfsbuild --- samples/charts/toolbar/custom-tool/src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/samples/charts/toolbar/custom-tool/src/index.ts b/samples/charts/toolbar/custom-tool/src/index.ts index e987eaa01b..bd50e52b38 100644 --- a/samples/charts/toolbar/custom-tool/src/index.ts +++ b/samples/charts/toolbar/custom-tool/src/index.ts @@ -15,9 +15,10 @@ export class Sample { private toolbar: IgcToolbarComponent constructor() { - this.toolbarCustomIconOnViewInit(); var toolbar = this.toolbar = document.getElementById('Toolbar') as IgcToolbarComponent; + this.toolbarCustomIconOnViewInit(); + } From c09e80fad536223b31b8dc6e380147fb1ecadd37 Mon Sep 17 00:00:00 2001 From: Deyan Kamburov Date: Thu, 14 Dec 2023 12:52:18 +0200 Subject: [PATCH 20/20] update wc packages to 4.6.0 (#619) --- browser/tasks/gulp-samples.js | 24 +- package-lock.json | 222 ++++++++++++------ package.json | 24 +- .../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 +- .../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 +- .../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 +- .../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 +- .../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 +- .../data-chart/series-error-bars/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 +- .../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-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-polygon-series/package.json | 4 +- .../type-scatter-polyline-series/package.json | 4 +- .../type-scatter-series/package.json | 4 +- .../data-chart/type-shape-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 +- .../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/titles/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 | 10 +- 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 +- .../date-picker/date-limits/package.json | 6 +- .../editors/date-picker/editing/package.json | 6 +- .../editors/date-picker/format/package.json | 6 +- .../editors/date-picker/overview/package.json | 6 +- .../editors/date-picker/range/package.json | 6 +- .../overview/package.json | 8 +- .../operations-on-workbooks/package.json | 10 +- .../operations-on-worksheets/package.json | 4 +- .../excel/excel-library/overview/package.json | 4 +- .../working-with-cells/package.json | 4 +- .../working-with-charts/package.json | 12 +- .../working-with-sparklines/package.json | 12 +- .../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 +- .../spreadsheet/filter-dialog/package.json | 6 +- .../spreadsheet/format-dialog/package.json | 6 +- .../excel/spreadsheet/hyperlinks/package.json | 6 +- .../excel/spreadsheet/overview/package.json | 6 +- .../spreadsheet/sort-dialog/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 +- .../bullet-graph/type-filled/package.json | 4 +- .../bullet-graph/type-horizontal/package.json | 4 +- .../bullet-graph/type-reversed/package.json | 4 +- .../bullet-graph/type-segmented/package.json | 4 +- .../bullet-graph/type-vertical/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 +- .../linear-gauge/type-curved/package.json | 4 +- .../linear-gauge/type-filled/package.json | 4 +- .../linear-gauge/type-horizontal/package.json | 4 +- .../type-multi-range/package.json | 4 +- .../type-multi-scale/package.json | 4 +- .../linear-gauge/type-segmented/package.json | 4 +- .../linear-gauge/type-vertical/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 +- .../radial-gauge/type-column/package.json | 4 +- .../radial-gauge/type-curved/package.json | 4 +- .../radial-gauge/type-direction/package.json | 4 +- .../radial-gauge/type-full/package.json | 4 +- .../radial-gauge/type-half/package.json | 4 +- .../radial-gauge/type-quatre/package.json | 4 +- .../radial-gauge/type-ring/package.json | 4 +- .../radial-gauge/type-segmented/package.json | 4 +- .../radial-gauge/type-semi/package.json | 4 +- .../data-grid/accessibility/package.json | 8 +- .../binding-data-service/package.json | 8 +- .../data-grid/binding-live-data/package.json | 10 +- .../data-grid/binding-local-data/package.json | 8 +- .../binding-remote-data/package.json | 10 +- .../data-grid/cell-activation/package.json | 8 +- .../grids/data-grid/cell-editing/package.json | 8 +- .../grids/data-grid/cell-merging/package.json | 10 +- .../data-grid/cell-selection/package.json | 8 +- .../data-grid/column-animation/package.json | 8 +- .../column-chooser-picker/package.json | 8 +- .../column-chooser-toolbar/package.json | 8 +- .../column-filter-expressions/package.json | 8 +- .../column-filter-operands/package.json | 8 +- .../data-grid/column-filtering/package.json | 8 +- .../data-grid/column-moving/package.json | 8 +- .../data-grid/column-options/package.json | 8 +- .../column-pinning-picker/package.json | 8 +- .../column-pinning-toolbar/package.json | 8 +- .../data-grid/column-resizing/package.json | 8 +- .../data-grid/column-scrolling/package.json | 8 +- .../data-grid/column-sorting/package.json | 8 +- .../data-grid/column-summaries/package.json | 8 +- .../grids/data-grid/column-types/package.json | 10 +- .../data-grid/load-save-layout/package.json | 10 +- .../grids/data-grid/localization/package.json | 10 +- samples/grids/data-grid/overview/package.json | 10 +- samples/grids/data-grid/pager/package.json | 8 +- .../grids/data-grid/performance/package.json | 8 +- .../row-group-descriptions/package.json | 8 +- .../grids/data-grid/row-grouping/package.json | 8 +- .../data-grid/row-highlighting/package.json | 8 +- .../grids/data-grid/row-paging/package.json | 8 +- .../grids/data-grid/row-pinning/package.json | 8 +- .../data-grid/row-selection/package.json | 8 +- .../type-comparison-table/package.json | 10 +- .../data-grid/type-heatmap-table/package.json | 8 +- .../type-marketing-table/package.json | 10 +- .../data-grid/type-matrix-table/package.json | 8 +- .../type-periodic-table/package.json | 8 +- .../grids/data-grid/type-table/package.json | 8 +- samples/grids/grid/action-strip/package.json | 8 +- .../advanced-filtering-options/package.json | 8 +- .../advanced-filtering-style/package.json | 8 +- .../grid/binding-composite-data/package.json | 10 +- .../grids/grid/binding-crud-data/package.json | 8 +- .../grid/binding-nested-data-1/package.json | 10 +- .../grids/grid/cascading-combo/package.json | 10 +- .../grid/cell-editing-sample/package.json | 10 +- .../grid/cell-editing-styling/package.json | 8 +- .../grid/cell-selection-mode/package.json | 10 +- .../grid/cell-selection-style/package.json | 8 +- .../grid/clipboard-operations/package.json | 10 +- .../grid/column-auto-sizing/package.json | 8 +- .../column-collapsible-groups/package.json | 8 +- .../grids/grid/column-data-types/package.json | 8 +- .../grid/column-hiding-options/package.json | 8 +- .../column-hiding-toolbar-style/package.json | 8 +- .../grid/column-hiding-toolbar/package.json | 8 +- .../grid/column-moving-options/package.json | 10 +- .../grid/column-moving-styles/package.json | 10 +- .../grid/column-pinning-options/package.json | 8 +- .../column-pinning-right-side/package.json | 10 +- .../grid/column-pinning-styles/package.json | 8 +- .../grids/grid/column-pinning/package.json | 8 +- .../grid/column-resize-styling/package.json | 8 +- .../grids/grid/column-resizing/package.json | 8 +- .../grid/column-selection-group/package.json | 8 +- .../grid/column-selection-mode/package.json | 10 +- .../grid/column-selection-styles/package.json | 8 +- .../column-sorting-indicators/package.json | 8 +- .../grid/column-sorting-options/package.json | 10 +- .../grid/column-sorting-style/package.json | 8 +- .../conditional-cell-style-1/package.json | 8 +- .../conditional-cell-style-2/package.json | 8 +- .../conditional-row-selectors/package.json | 8 +- .../grid/custom-context-menu/package.json | 10 +- .../grids/grid/custom-filtering/package.json | 8 +- .../data-batch-editing-actions/package.json | 10 +- .../data-exporting-indicator/package.json | 8 +- .../grid/data-paste-options/package.json | 10 +- .../package.json | 10 +- .../grids/grid/data-searching/package.json | 10 +- .../grid/data-summaries-custom/package.json | 26 +- .../grid/data-summary-formatter/package.json | 8 +- .../grid/data-summary-options/package.json | 8 +- .../grid/data-summary-template/package.json | 10 +- .../grid/data-validation-style/package.json | 8 +- .../package.json | 8 +- .../package.json | 10 +- .../grid/data-validator-service/package.json | 10 +- .../grids/grid/editing-columns/package.json | 8 +- .../grids/grid/editing-events/package.json | 8 +- .../grid/editing-excel-style/package.json | 8 +- .../grids/grid/editing-lifecycle/package.json | 8 +- .../grids/grid/excel-exporting/package.json | 8 +- .../package.json | 10 +- .../package.json | 8 +- .../package.json | 8 +- .../excel-style-filtering-style/package.json | 8 +- .../external-advanced-filtering/package.json | 8 +- .../grids/grid/filtering-options/package.json | 8 +- .../grid/filtering-strategy/package.json | 8 +- .../grids/grid/filtering-style/package.json | 10 +- samples/grids/grid/finjs/package.json | 10 +- .../grids/grid/groupby-custom/package.json | 8 +- .../grid/groupby-expressions/package.json | 8 +- .../grids/grid/groupby-paging/package.json | 8 +- .../grids/grid/groupby-styling/package.json | 8 +- .../grid/groupby-summary-options/package.json | 10 +- .../grid/groupby-summary-styling/package.json | 10 +- .../grids/grid/infinite-scroll/package.json | 8 +- .../keyboard-custom-navigation/package.json | 8 +- .../grid/keyboard-mrl-navigation/package.json | 8 +- .../keyboard-navigation-guide/package.json | 26 +- .../grid/layout-display-density/package.json | 10 +- samples/grids/grid/master-detail/package.json | 8 +- .../multi-cell-selection-mode/package.json | 8 +- .../multi-column-headers-export/package.json | 8 +- .../package.json | 10 +- .../multi-column-headers-styling/package.json | 8 +- .../package.json | 8 +- .../multi-row-layout-options/package.json | 8 +- .../grid/multi-row-layout-style/package.json | 8 +- samples/grids/grid/overview/package.json | 8 +- .../grid/remote-paging-data/package.json | 8 +- samples/grids/grid/row-adding/package.json | 8 +- samples/grids/grid/row-classes/package.json | 8 +- samples/grids/grid/row-drag-base/package.json | 8 +- .../grid/row-editing-options/package.json | 8 +- .../grids/grid/row-editing-style/package.json | 8 +- .../grids/grid/row-paging-basic/package.json | 10 +- .../grid/row-paging-options/package.json | 10 +- .../grids/grid/row-pinning-drag/package.json | 8 +- .../row-pinning-extra-column/package.json | 8 +- .../grid/row-pinning-options/package.json | 10 +- .../grids/grid/row-pinning-style/package.json | 8 +- samples/grids/grid/row-reorder/package.json | 8 +- .../grid/row-selection-mode/package.json | 10 +- .../row-selection-template-excel/package.json | 8 +- .../package.json | 10 +- samples/grids/grid/row-styles/package.json | 10 +- .../grid/state-persistence-about/package.json | 10 +- .../grid/state-persistence-main/package.json | 10 +- .../grid/styling-custom-CSS/package.json | 8 +- .../grids/grid/toolbar-sample-1/package.json | 8 +- .../grids/grid/toolbar-sample-2/package.json | 8 +- .../grids/grid/toolbar-sample-3/package.json | 8 +- .../grids/grid/toolbar-sample-4/package.json | 8 +- samples/grids/grid/toolbar-style/package.json | 8 +- .../grids/list/add-list-items/package.json | 4 +- .../grids/list/list-item-content/package.json | 2 +- samples/grids/list/overview/package.json | 2 +- samples/grids/list/styling/package.json | 2 +- .../aggregate-max-sales/package.json | 8 +- .../aggregate-units-sold/package.json | 8 +- samples/grids/pivot-grid/basic/package.json | 8 +- .../pivot-grid/data-selector/package.json | 8 +- .../grids/pivot-grid/features/package.json | 8 +- samples/grids/pivot-grid/remote/package.json | 8 +- .../grids/tree-grid/action-strip/package.json | 8 +- .../advanced-filtering-options/package.json | 8 +- .../advanced-filtering-style/package.json | 8 +- .../cell-editing-sample/package.json | 10 +- .../cell-selection-mode/package.json | 10 +- .../cell-selection-style/package.json | 8 +- .../clipboard-operations/package.json | 10 +- .../tree-grid/column-auto-sizing/package.json | 8 +- .../column-collapsible-groups/package.json | 8 +- .../column-hiding-toolbar/package.json | 8 +- .../column-moving-options/package.json | 8 +- .../column-moving-styles/package.json | 8 +- .../column-pinning-options/package.json | 8 +- .../column-pinning-right-side/package.json | 8 +- .../column-pinning-styles/package.json | 8 +- .../column-pinning-toolbar/package.json | 8 +- .../tree-grid/column-pinning/package.json | 8 +- .../column-resize-styling/package.json | 8 +- .../tree-grid/column-resizing/package.json | 8 +- .../column-selection-group/package.json | 8 +- .../column-selection-mode/package.json | 10 +- .../column-selection-style/package.json | 8 +- .../column-sorting-indicators/package.json | 8 +- .../column-sorting-options/package.json | 10 +- .../column-sorting-style/package.json | 8 +- .../conditional-cell-style-1/package.json | 8 +- .../tree-grid/custom-filtering/package.json | 26 +- .../tree-grid/editing-columns/package.json | 8 +- .../tree-grid/editing-events/package.json | 8 +- .../tree-grid/editing-lifecycle/package.json | 8 +- .../tree-grid/excel-exporting/package.json | 8 +- .../package.json | 10 +- .../package.json | 8 +- .../package.json | 8 +- .../excel-style-filtering-style/package.json | 8 +- samples/grids/tree-grid/finjs/package.json | 28 +-- .../keyboard-custom-navigation/package.json | 8 +- .../keyboard-navigation-guide/package.json | 26 +- .../layout-display-density/package.json | 10 +- .../tree-grid/load-on-demand/package.json | 8 +- .../multi-column-headers-export/package.json | 8 +- .../package.json | 10 +- .../multi-column-headers-styling/package.json | 8 +- .../package.json | 8 +- .../tree-grid/overview-styling/package.json | 8 +- samples/grids/tree-grid/overview/package.json | 8 +- .../row-editing-options/package.json | 8 +- .../tree-grid/row-editing-style/package.json | 8 +- .../tree-grid/row-selection-mode/package.json | 10 +- .../package.json | 8 +- .../grids/tree-grid/row-styles/package.json | 8 +- .../using-primary-foreign-keys/package.json | 8 +- samples/grids/tree/basic-example/package.json | 2 +- .../load-on-demand-virtualized/package.json | 2 +- .../grids/tree/load-on-demand/package.json | 2 +- samples/inputs/badge/outlined/package.json | 2 +- samples/inputs/badge/shape/package.json | 2 +- samples/inputs/badge/variants/package.json | 2 +- .../button-group/alignment/package.json | 2 +- .../inputs/button-group/overview/package.json | 2 +- .../button-group/selection/package.json | 2 +- samples/inputs/button-group/size/package.json | 2 +- .../inputs/button-group/styling/package.json | 2 +- samples/inputs/button/contained/package.json | 2 +- samples/inputs/button/download/package.json | 2 +- samples/inputs/button/fab/package.json | 2 +- samples/inputs/button/flat/package.json | 2 +- samples/inputs/button/outlined/package.json | 2 +- samples/inputs/button/overview/package.json | 2 +- samples/inputs/button/size/package.json | 2 +- samples/inputs/button/styling/package.json | 2 +- samples/inputs/checkbox/checking/package.json | 2 +- samples/inputs/checkbox/disabled/package.json | 2 +- .../checkbox/indeterminate/package.json | 2 +- samples/inputs/checkbox/label/package.json | 2 +- samples/inputs/checkbox/overview/package.json | 2 +- samples/inputs/chip/multiple/package.json | 2 +- samples/inputs/chip/overview/package.json | 2 +- samples/inputs/chip/size/package.json | 2 +- samples/inputs/chip/styling/package.json | 2 +- samples/inputs/chip/variants/package.json | 2 +- .../dynamic/package.json | 2 +- .../indeterminate/package.json | 2 +- .../simple/package.json | 2 +- .../styling/package.json | 2 +- samples/inputs/combo/features/package.json | 2 +- samples/inputs/combo/overview/package.json | 2 +- samples/inputs/combo/selection/package.json | 2 +- samples/inputs/combo/simplified/package.json | 2 +- samples/inputs/combo/styling/package.json | 2 +- samples/inputs/combo/templates/package.json | 2 +- .../input-format-display-format/package.json | 2 +- .../min-max-value/package.json | 2 +- .../date-time-input/overview/package.json | 2 +- .../date-time-input/step-up-down/package.json | 2 +- samples/inputs/dropdown/group/package.json | 2 +- samples/inputs/dropdown/header/package.json | 2 +- samples/inputs/dropdown/item/package.json | 2 +- samples/inputs/dropdown/overview/package.json | 2 +- samples/inputs/dropdown/position/package.json | 2 +- samples/inputs/dropdown/styling/package.json | 2 +- samples/inputs/dropdown/target/package.json | 2 +- samples/inputs/form/overview/package.json | 2 +- samples/inputs/icon-button/size/package.json | 2 +- .../inputs/icon-button/styling/package.json | 2 +- .../inputs/icon-button/variant/package.json | 2 +- samples/inputs/input/helper-text/package.json | 2 +- samples/inputs/input/overview/package.json | 2 +- .../inputs/input/prefix-suffix/package.json | 2 +- samples/inputs/input/size/package.json | 2 +- samples/inputs/input/styling/package.json | 2 +- .../dynamic/package.json | 2 +- .../simple/package.json | 2 +- .../striped/package.json | 2 +- .../styling/package.json | 2 +- .../types/package.json | 2 +- .../mask-input/applying-mask/package.json | 2 +- .../inputs/mask-input/overview/package.json | 2 +- .../mask-input/value-modes/package.json | 2 +- samples/inputs/radio/alignment/package.json | 2 +- samples/inputs/radio/disabled/package.json | 2 +- samples/inputs/radio/group/package.json | 2 +- samples/inputs/radio/invalid/package.json | 2 +- samples/inputs/radio/label/package.json | 2 +- samples/inputs/radio/styling/package.json | 2 +- samples/inputs/rating/basic/package.json | 2 +- samples/inputs/rating/custom/package.json | 2 +- samples/inputs/rating/empty/package.json | 2 +- .../rating/single-selection/package.json | 2 +- samples/inputs/rating/styling/package.json | 2 +- samples/inputs/ripple/button/package.json | 2 +- samples/inputs/ripple/color/package.json | 2 +- samples/inputs/select/group/package.json | 2 +- samples/inputs/select/header/package.json | 2 +- samples/inputs/select/item/package.json | 2 +- samples/inputs/select/overview/package.json | 2 +- samples/inputs/select/styling/package.json | 2 +- .../inputs/slider/constraints/package.json | 2 +- samples/inputs/slider/disabled/package.json | 2 +- samples/inputs/slider/discrete/package.json | 2 +- samples/inputs/slider/labels/package.json | 2 +- samples/inputs/slider/overview/package.json | 2 +- samples/inputs/slider/styling/package.json | 2 +- .../inputs/slider/tick-labels/package.json | 2 +- samples/inputs/slider/ticks/package.json | 2 +- .../inputs/slider/value-format/package.json | 2 +- samples/inputs/slider/value/package.json | 2 +- samples/inputs/switches/checking/package.json | 2 +- samples/inputs/switches/disabled/package.json | 2 +- samples/inputs/switches/label/package.json | 2 +- samples/inputs/switches/overview/package.json | 2 +- .../accordion/customization/package.json | 2 +- .../accordion/nested-scenario/package.json | 2 +- .../layouts/accordion/overview/package.json | 2 +- samples/layouts/avatar/icon/package.json | 2 +- samples/layouts/avatar/image/package.json | 2 +- samples/layouts/avatar/initials/package.json | 2 +- samples/layouts/avatar/shape/package.json | 2 +- samples/layouts/avatar/size/package.json | 2 +- samples/layouts/card/horizontal/package.json | 2 +- samples/layouts/card/integration/package.json | 2 +- samples/layouts/card/overview/package.json | 2 +- .../layouts/card/semi-horizontal/package.json | 2 +- samples/layouts/card/styling/package.json | 2 +- .../embedding-frames/package.json | 2 +- .../dock-manager/hiding-panes/package.json | 2 +- .../dock-manager/overview/package.json | 2 +- .../layouts/dock-manager/styling/package.json | 4 +- .../dock-manager/updating-panes/package.json | 8 +- .../component-customization/package.json | 2 +- .../properties-and-events/package.json | 2 +- .../expansion-panel/styling/package.json | 2 +- .../expansion-panel/usage/package.json | 2 +- samples/layouts/icon/sizing/package.json | 2 +- samples/layouts/icon/styling/package.json | 2 +- .../layouts/stepper/animations/package.json | 2 +- samples/layouts/stepper/linear/package.json | 2 +- .../layouts/stepper/orientation/package.json | 2 +- samples/layouts/stepper/overview/package.json | 2 +- .../layouts/stepper/steptypes/package.json | 2 +- samples/layouts/tabs/alignment/package.json | 2 +- samples/layouts/tabs/overview/package.json | 2 +- .../layouts/tabs/prefix-suffix/package.json | 2 +- samples/layouts/tabs/scrolling/package.json | 2 +- .../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-all-imagery/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-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 +- .../maps/geo-map/synchronization/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 +- samples/menus/nav-bar/overview/package.json | 2 +- samples/menus/nav-bar/styling/package.json | 2 +- .../nav-drawer/add-drawer-items/package.json | 2 +- .../menus/nav-drawer/add-mini/package.json | 2 +- .../add-positions-navbar/package.json | 2 +- samples/menus/nav-drawer/styling/package.json | 2 +- .../dialog/closing-variations/package.json | 2 +- .../notifications/dialog/form/package.json | 2 +- .../dialog/overview/package.json | 2 +- .../notifications/dialog/styling/package.json | 2 +- .../snackbar/action-text/package.json | 2 +- .../snackbar/display-time/package.json | 2 +- .../snackbar/overview/package.json | 2 +- .../snackbar/styling/package.json | 2 +- .../notifications/toast/overview/package.json | 2 +- .../toast/properties/package.json | 2 +- .../notifications/toast/styling/package.json | 2 +- .../calendar/disabled-dates/package.json | 2 +- .../calendar/formatting/package.json | 2 +- .../scheduling/calendar/header/package.json | 2 +- .../calendar/multiple-months/package.json | 2 +- .../calendar/multiple-selection/package.json | 2 +- .../scheduling/calendar/overview/package.json | 2 +- .../calendar/range-selection/package.json | 2 +- samples/scheduling/calendar/size/package.json | 2 +- .../calendar/special-dates/package.json | 2 +- .../scheduling/calendar/styling/package.json | 2 +- .../calendar/week-numbers/package.json | 2 +- 689 files changed, 2060 insertions(+), 1988 deletions(-) diff --git a/browser/tasks/gulp-samples.js b/browser/tasks/gulp-samples.js index a0c5328433..ea46731f39 100644 --- a/browser/tasks/gulp-samples.js +++ b/browser/tasks/gulp-samples.js @@ -975,19 +975,19 @@ function updateIG(cb) { // { name: "igniteui-webcomponents-core", version: "3.2.2" }, // PUBLIC NPM let packageUpgrades = [ // these IG packages are often updated: - { name: "igniteui-webcomponents-core" , version: "4.3.3-beta.1" }, - { name: "igniteui-webcomponents-charts" , version: "4.3.3-beta.1" }, - { name: "igniteui-webcomponents-excel" , version: "4.3.3-beta.1" }, - { name: "igniteui-webcomponents-gauges" , version: "4.3.3-beta.1" }, - { name: "igniteui-webcomponents-grids" , version: "4.3.3-beta.1" }, - { name: "igniteui-webcomponents-inputs" , version: "4.3.3-beta.1" }, - { name: "igniteui-webcomponents-layouts" , version: "4.3.3-beta.1" }, - { name: "igniteui-webcomponents-maps" , version: "4.3.3-beta.1" }, - { name: "igniteui-webcomponents-spreadsheet-chart-adapter", version: "4.3.3-beta.1" }, - { name: "igniteui-webcomponents-spreadsheet" , version: "4.3.3-beta.1" }, - { name: "igniteui-webcomponents-datasources" , version: "4.3.3-beta.1" }, + { name: "igniteui-webcomponents-core" , version: "4.6.0" }, + { name: "igniteui-webcomponents-charts" , version: "4.6.0" }, + { name: "igniteui-webcomponents-excel" , version: "4.6.0" }, + { name: "igniteui-webcomponents-gauges" , version: "4.6.0" }, + { name: "igniteui-webcomponents-grids" , version: "4.6.0" }, + { name: "igniteui-webcomponents-inputs" , version: "4.6.0" }, + { name: "igniteui-webcomponents-layouts" , version: "4.6.0" }, + { name: "igniteui-webcomponents-maps" , version: "4.6.0" }, + { name: "igniteui-webcomponents-spreadsheet-chart-adapter", version: "4.6.0" }, + { name: "igniteui-webcomponents-spreadsheet" , version: "4.6.0" }, + { name: "igniteui-webcomponents-datasources" , version: "4.6.0" }, // these IG packages are sometimes updated: - { name: "igniteui-webcomponents", version: "4.5.0" }, + { name: "igniteui-webcomponents", version: "4.6.0" }, { name: "igniteui-dockmanager", version: "1.14.2" }, // other packages: { name: "webpack", version: "^5.74.0" }, diff --git a/package-lock.json b/package-lock.json index 769b7ab956..c61262cb89 100644 --- a/package-lock.json +++ b/package-lock.json @@ -21,18 +21,18 @@ "core-js": "^3.6.5", "file-saver": "^2.0.2", "igniteui-dockmanager": "1.14.2", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-datasources": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet-chart-adapter": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-datasources": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", + "igniteui-webcomponents-spreadsheet": "4.6.0", + "igniteui-webcomponents-spreadsheet-chart-adapter": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.0.0" }, @@ -1918,19 +1918,55 @@ "dev": true }, "node_modules/@lit-labs/ssr-dom-shim": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.1.1.tgz", - "integrity": "sha512-kXOeFbfCm4fFf2A3WwVEeQj55tMZa8c8/f9AKHMobQMkzNUfUj+antR3fRPaZJawsa1aZiP/Da3ndpZrwEe4rQ==" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.1.2.tgz", + "integrity": "sha512-jnOD+/+dSrfTWYfSXBXlo5l5f0q1UuJo3tkbMDCYA2lKUYq79jaxqtGEvnRoh049nt1vdo1+45RinipU6FGY2g==" }, "node_modules/@lit-labs/virtualizer": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/@lit-labs/virtualizer/-/virtualizer-2.0.7.tgz", - "integrity": "sha512-WWkI31QsSVoJZRuFo3sMn28LgSf2MYL7gp6OG2ZNksr2EoA3D8igNGp49cajI8HGHurSK4jGpMN2LHZrmy+Cxw==", + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@lit-labs/virtualizer/-/virtualizer-2.0.11.tgz", + "integrity": "sha512-EPlHsHo5qLOSVwQY+c6Qx34/cvhNTATxpZFQDmLu8d9+DVwBghiNz6a8CiKF5xfbB38VJZs/e9AwyxiZHv7Dbg==", "dependencies": { - "lit": "^2.8.0", + "lit": "^3.1.0", "tslib": "^2.0.3" } }, + "node_modules/@lit-labs/virtualizer/node_modules/@lit/reactive-element": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-2.0.2.tgz", + "integrity": "sha512-SVOwLAWUQg3Ji1egtOt1UiFe4zdDpnWHyc5qctSceJ5XIu0Uc76YmGpIjZgx9YJ0XtdW0Jm507sDvjOu+HnB8w==", + "dependencies": { + "@lit-labs/ssr-dom-shim": "^1.1.2" + } + }, + "node_modules/@lit-labs/virtualizer/node_modules/lit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lit/-/lit-3.1.0.tgz", + "integrity": "sha512-rzo/hmUqX8zmOdamDAeydfjsGXbbdtAFqMhmocnh2j9aDYqbu0fjXygjCa0T99Od9VQ/2itwaGrjZz/ZELVl7w==", + "dependencies": { + "@lit/reactive-element": "^2.0.0", + "lit-element": "^4.0.0", + "lit-html": "^3.1.0" + } + }, + "node_modules/@lit-labs/virtualizer/node_modules/lit-element": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-4.0.2.tgz", + "integrity": "sha512-/W6WQZUa5VEXwC7H9tbtDMdSs9aWil3Ou8hU6z2cOKWbsm/tXPAcsoaHVEtrDo0zcOIE5GF6QgU55tlGL2Nihg==", + "dependencies": { + "@lit-labs/ssr-dom-shim": "^1.1.2", + "@lit/reactive-element": "^2.0.0", + "lit-html": "^3.1.0" + } + }, + "node_modules/@lit-labs/virtualizer/node_modules/lit-html": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-3.1.0.tgz", + "integrity": "sha512-FwAjq3iNsaO6SOZXEIpeROlJLUlrbyMkn4iuv4f4u1H40Jw8wkeR/OUXZUHUoiYabGk8Y4Y0F/rgq+R4MrOLmA==", + "dependencies": { + "@types/trusted-types": "^2.0.2" + } + }, "node_modules/@lit/reactive-element": { "version": "1.6.2", "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-1.6.2.tgz", @@ -8748,30 +8784,30 @@ "integrity": "sha512-q6thtu+7R6MOB+i9GorFPCcWeOImW43BzCAtKnDAYWwaoueb8Lg1EhBkIhAyfEIH+yZ/9c5lnZdU61/GRPoP+g==" }, "node_modules/igniteui-webcomponents": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-4.5.0.tgz", - "integrity": "sha512-rGqFEwCpDmHYDFKmgnm3djmKbJh8Z8U63P/mnXHl6243s1ec8hFzOS33gmFpq82FiNXU1L35nL1eGtlweEp85Q==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-4.6.0.tgz", + "integrity": "sha512-JLHdRQGbizcck3jV+eMrA0PE/RHjS0I8q7eFad34WvSYILfF1XS9FMJxLXHr9/YycNv5sroYqvsnnwzC4zQMBw==", "dependencies": { "@floating-ui/dom": "^1.5.3", - "@lit-labs/virtualizer": "^2.0.7", - "lit": "^2.8.0" + "@lit-labs/virtualizer": "^2.0.10", + "lit": "^3.1.0" } }, "node_modules/igniteui-webcomponents-charts": { - "version": "4.3.3-beta.1", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-charts/-/igniteui-webcomponents-charts-4.3.3-beta.1.tgz", - "integrity": "sha512-HtiIIFLZaziJNWgvPkGAF0z6s9y6qrlFyPiKFKGQhs5ssdy/sWd7Nt0aFijebEMKAY/LtCLEvR6eV36cZ/BoKA==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-charts/-/igniteui-webcomponents-charts-4.6.0.tgz", + "integrity": "sha512-uRGG+HrNXd6gn1DKixbXWcTn1abZwFeRHWlvH/1imKtaKXJeeLITZgJufMtqDHR+UFxYckCf7oEFBD1pdlJJ7w==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "4.3.3-beta.1" + "igniteui-webcomponents-core": "4.6.0" } }, "node_modules/igniteui-webcomponents-core": { - "version": "4.3.3-beta.1", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-core/-/igniteui-webcomponents-core-4.3.3-beta.1.tgz", - "integrity": "sha512-mhrsfM3I2PdU5LCzQL3jUZ/aX+2OGEI4KAZZc2iGgbnxaqO/3vTXh73UpqMGrXZr8BPhln7xJ9QRBzZufMXtFw==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-core/-/igniteui-webcomponents-core-4.6.0.tgz", + "integrity": "sha512-44fQddNhELN63rRlhUDDOCvAzeUshMk1sjA+d4yYP1R8jqLsgFN1AAlUZvYro+oEhD+pqhpNfWZONSXZVuHkpQ==", "dependencies": { "tslib": "^2.3.1" }, @@ -8780,112 +8816,148 @@ } }, "node_modules/igniteui-webcomponents-datasources": { - "version": "4.3.3-beta.1", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-datasources/-/igniteui-webcomponents-datasources-4.3.3-beta.1.tgz", - "integrity": "sha512-5U/Hw34Q4kkJrDds6BRGaMPVGxxkpeIfSPvaUL9foPbEPmrsX6l6Q9L7PPDHIqJmToDnH1JZNK/k1RYanGp3BA==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-datasources/-/igniteui-webcomponents-datasources-4.6.0.tgz", + "integrity": "sha512-qWPDUg9ROiHcr1cv5Da+gSJnp4cTUhwhEdyWP9fLMNrYiZL3vKluW3znvd3CVp+7sVE5517eTdbtLfDCwGfnrg==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "4.3.3-beta.1" + "igniteui-webcomponents-core": "4.6.0" } }, "node_modules/igniteui-webcomponents-excel": { - "version": "4.3.3-beta.1", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-excel/-/igniteui-webcomponents-excel-4.3.3-beta.1.tgz", - "integrity": "sha512-VwJN5YG+/uLjng3TXTQIJ3dtJv2gS2WMmU4iO9gZof8bMPw6pulBBwP108/xlXDYSeZ4Cak8XTDr6/wf6bv90w==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-excel/-/igniteui-webcomponents-excel-4.6.0.tgz", + "integrity": "sha512-Fh/kpC1pe/7Ly70S0Up9+7MFow1fTNmuotgy7QVg8nyijVt+s3FS115N0Nteo2tow0DFQr2/TYYLQvKBmBfaxA==", "dependencies": { "jszip": "^3.1.5", "pako": "^1.0.6", "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "4.3.3-beta.1" + "igniteui-webcomponents-core": "4.6.0" } }, "node_modules/igniteui-webcomponents-gauges": { - "version": "4.3.3-beta.1", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-gauges/-/igniteui-webcomponents-gauges-4.3.3-beta.1.tgz", - "integrity": "sha512-X4aIrfGG2qVGPJ1AqyAwwp7hI/CuWJusgnxwZ0CtYqO5ylZ7eCjmVqsOqQHQNCGLhZtF2311Yj4xzILWuI+Dow==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-gauges/-/igniteui-webcomponents-gauges-4.6.0.tgz", + "integrity": "sha512-/CclYMaYmRLwXWN5nciiaJ7VsmMRjEuKcNnr3pdkmJAiFOwC8nsturR2R6EqSTI4G+QwE/sp+WpLcjVDyoOcCw==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "4.3.3-beta.1" + "igniteui-webcomponents-core": "4.6.0" } }, "node_modules/igniteui-webcomponents-grids": { - "version": "4.3.3-beta.1", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-grids/-/igniteui-webcomponents-grids-4.3.3-beta.1.tgz", - "integrity": "sha512-BbyxYRnnILd5M9wVhZyd9jK2idAByjrQva2WrPfz8Idj77FIxxUN93twB3CIdgA1VEQaSi3UuSKley7i+40LMQ==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-grids/-/igniteui-webcomponents-grids-4.6.0.tgz", + "integrity": "sha512-tFeuKxbzDnLSjtiBsU/6d3cIbTjFWZlJnl930iq/Q51FihteaErhd4ahH3AjWxsVWwfBebXkR/d82lh/vtjpfQ==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1" + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0" } }, "node_modules/igniteui-webcomponents-inputs": { - "version": "4.3.3-beta.1", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-inputs/-/igniteui-webcomponents-inputs-4.3.3-beta.1.tgz", - "integrity": "sha512-txH6oA5T9eJgozg4rwymdgC3hCvc0nT+Voecfpug18fUn08lKohonTtNZD8WSUWKEgJjNgOIJAhVchd/ryd4cA==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-inputs/-/igniteui-webcomponents-inputs-4.6.0.tgz", + "integrity": "sha512-TL6QIrDQhHxB2ORorIJV1tVawb6cvORBPRmQlUcQBJqZxUFvBq7u6G0QAo+tBdEapr0GIechr8JKBVNZX+qE4g==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "4.3.3-beta.1" + "igniteui-webcomponents-core": "4.6.0" } }, "node_modules/igniteui-webcomponents-layouts": { - "version": "4.3.3-beta.1", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-layouts/-/igniteui-webcomponents-layouts-4.3.3-beta.1.tgz", - "integrity": "sha512-j2+LGcNxoo79geaB3jsjOKpn4tzRzqbBk1vWaDHS0JvUWRv8Y5Tx9q/JMI4mcRFOYeAI8rQt8E0mUx8c6Xc4JA==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-layouts/-/igniteui-webcomponents-layouts-4.6.0.tgz", + "integrity": "sha512-Blo4baoj0B6o3RpUn+HJLWEuTMl1/edoL+VJM6HYCboZM0+7SwkAvGxwHNeMCbvKPt9wvnYl31PITemHNAbhag==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1" + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0" } }, "node_modules/igniteui-webcomponents-maps": { - "version": "4.3.3-beta.1", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-maps/-/igniteui-webcomponents-maps-4.3.3-beta.1.tgz", - "integrity": "sha512-RA8fGddDjN5oeSZxc5pm8cc6OqFSoyIhOkLX/egIeQkRVr62qBd+XFe1pIj3HKl2hAlq+qDI8SQrZQWa7fALmA==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-maps/-/igniteui-webcomponents-maps-4.6.0.tgz", + "integrity": "sha512-j2BGoWv3nhhuhCdDbZtG6Bqv8qCxo0CW4y6drE1pBamxgcHCYl44MyiLMX/Iv7iS4LzqieGvgPy+ZWfKWwGvKg==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1" + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0" } }, "node_modules/igniteui-webcomponents-spreadsheet": { - "version": "4.3.3-beta.1", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet/-/igniteui-webcomponents-spreadsheet-4.3.3-beta.1.tgz", - "integrity": "sha512-+b1EDMNlYVE8dlCJgE3PGlafM81U8e9ILoact1O5o58/vNm2jDCVsxTQ1zvJyXgtLN93S4fOr3c9JRIGJVfl1A==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet/-/igniteui-webcomponents-spreadsheet-4.6.0.tgz", + "integrity": "sha512-uTUvW7x49gFYxBwLa8ceXQPyXR2AXkZ12NdbDaZf08q2QG8nkvHZX1OvOK7tCjxHn5TrWMuFw2BaS5rgKC2A6A==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1" + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0" } }, "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter": { - "version": "4.3.3-beta.1", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet-chart-adapter/-/igniteui-webcomponents-spreadsheet-chart-adapter-4.3.3-beta.1.tgz", - "integrity": "sha512-/4SBoHpYYfVLIsGWstIMKpEVyv5kvV8/WeVFP7M2AXMCsUTVRtW4G//AWSwGHzen0t/pS3kyEZA5arrT5AzKtA==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet-chart-adapter/-/igniteui-webcomponents-spreadsheet-chart-adapter-4.6.0.tgz", + "integrity": "sha512-HQGD1I0NX9bq/38Rv31/MALqKXhYCNLrF5IuTgcLop/ZV/s1Gpu0BFPdEj/ikOEhrpI10Q7zHKGVgMlEVcmmmw==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet": "4.3.3-beta.1" + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-spreadsheet": "4.6.0" + } + }, + "node_modules/igniteui-webcomponents/node_modules/@lit/reactive-element": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-2.0.2.tgz", + "integrity": "sha512-SVOwLAWUQg3Ji1egtOt1UiFe4zdDpnWHyc5qctSceJ5XIu0Uc76YmGpIjZgx9YJ0XtdW0Jm507sDvjOu+HnB8w==", + "dependencies": { + "@lit-labs/ssr-dom-shim": "^1.1.2" + } + }, + "node_modules/igniteui-webcomponents/node_modules/lit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lit/-/lit-3.1.0.tgz", + "integrity": "sha512-rzo/hmUqX8zmOdamDAeydfjsGXbbdtAFqMhmocnh2j9aDYqbu0fjXygjCa0T99Od9VQ/2itwaGrjZz/ZELVl7w==", + "dependencies": { + "@lit/reactive-element": "^2.0.0", + "lit-element": "^4.0.0", + "lit-html": "^3.1.0" + } + }, + "node_modules/igniteui-webcomponents/node_modules/lit-element": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-4.0.2.tgz", + "integrity": "sha512-/W6WQZUa5VEXwC7H9tbtDMdSs9aWil3Ou8hU6z2cOKWbsm/tXPAcsoaHVEtrDo0zcOIE5GF6QgU55tlGL2Nihg==", + "dependencies": { + "@lit-labs/ssr-dom-shim": "^1.1.2", + "@lit/reactive-element": "^2.0.0", + "lit-html": "^3.1.0" + } + }, + "node_modules/igniteui-webcomponents/node_modules/lit-html": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-3.1.0.tgz", + "integrity": "sha512-FwAjq3iNsaO6SOZXEIpeROlJLUlrbyMkn4iuv4f4u1H40Jw8wkeR/OUXZUHUoiYabGk8Y4Y0F/rgq+R4MrOLmA==", + "dependencies": { + "@types/trusted-types": "^2.0.2" } }, "node_modules/ignore": { diff --git a/package.json b/package.json index 942de16dcb..ecdcfa1339 100644 --- a/package.json +++ b/package.json @@ -42,18 +42,18 @@ "core-js": "^3.6.5", "file-saver": "^2.0.2", "igniteui-dockmanager": "1.14.2", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-datasources": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet-chart-adapter": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-datasources": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", + "igniteui-webcomponents-spreadsheet": "4.6.0", + "igniteui-webcomponents-spreadsheet-chart-adapter": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 769e3c0c00..f8ac83730c 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 2be87c7f5f..e2d233ec0e 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index d223cd018b..29dcddc60c 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index cde7aa0265..55f0eeb6f8 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index fbf200bc8e..11c69f76e0 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 2be87c7f5f..e2d233ec0e 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 a3feb30e38..ffd859e2ca 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 769e3c0c00..f8ac83730c 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index b6fec67a1d..b8fbfd972f 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index f2c2525176..7c47e1ad52 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 937d531e93..66aed0de95 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 937d531e93..66aed0de95 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 4134d777a1..c30ecb8594 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 8625a64d41..b10693f182 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index d979647349..7140001469 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index d979647349..7140001469 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 9de2e1308f..739b5a058a 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 7eac19d671..f7ca10c503 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 9ac3392e0f..d5cad00dc8 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 35145329bf..d6f8ec7708 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index d2180cf96f..d267c2d820 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 15f540f701..8921cc266f 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index ac4ff61b15..409be0f688 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index c94b402611..dc9642c997 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index d2180cf96f..d267c2d820 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 90e7a0b4df..b3c0994757 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index d223cd018b..29dcddc60c 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 b161634b89..e4cf85078a 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index e3a28d789c..edfe8ef58c 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 94f9c95094..5f98887828 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index aad5157c58..588ef4aca6 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 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 @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 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 @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index cf1831b0e2..e607580539 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 517d5e144f..bc5eb6a7cc 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-error-bars/package.json b/samples/charts/data-chart/series-error-bars/package.json index dea8add5e0..d5c061252d 100644 --- a/samples/charts/data-chart/series-error-bars/package.json +++ b/samples/charts/data-chart/series-error-bars/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index eb82923638..dbcc2cce49 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 3084843f88..04f822f6e4 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 145cdf80b4..d378463bc8 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 625aaab1bd..43bf103f64 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 016b04a8f8..4acc95d1c9 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 29ba0dc69c..552a162fce 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 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 @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index f1114b6dc6..dae656f341 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 2b6b2ecbcc..80bd0ba555 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 b3e6eb066e..a370f43db6 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-financial-indicator-column/package.json b/samples/charts/data-chart/type-financial-indicator-column/package.json index 03958bc3a9..5ec4489b9d 100644 --- a/samples/charts/data-chart/type-financial-indicator-column/package.json +++ b/samples/charts/data-chart/type-financial-indicator-column/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-financial-indicator-line/package.json b/samples/charts/data-chart/type-financial-indicator-line/package.json index 068cd69d4b..2185d158e5 100644 --- a/samples/charts/data-chart/type-financial-indicator-line/package.json +++ b/samples/charts/data-chart/type-financial-indicator-line/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 3fe4864989..20b5b5a2ce 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index cb313c09eb..eda53324b8 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 923f9d0cee..8bf0472f35 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 fbb96d1fa5..f18f6685b3 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 5d1a44db8d..f3d3ad54e5 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 4fb85dddd1..2f30f4567c 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 e69445a391..9af1af7a51 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 7127e98e62..501f20728f 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 91e60ad49a..7b19bc63ff 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 489c09a42f..3ade19319f 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 d75d8c44ec..2ca04543e7 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 5c3c0507fa..8c99e33e6a 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 1e2eca40a5..6902b1707f 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 366269370f..4ffa01d054 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 23b9987cbd..0d43339762 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 3da9291f67..30f0797805 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 8f9ffc496f..50ea1aeb09 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 3f4f313f22..fc2126d1ca 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index ff4b2185db..9323861830 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index ca176246dd..84d736ec43 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index f323fe98cc..bb5154d208 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 865bf43602..1f88ce5c3a 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 7eab0770f2..e1ec77c582 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index c418429d78..616af3e9b4 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 3e79f881dd..9e12f58fe3 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 859a823df0..2a496c3cc9 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 01fee588ee..b2ecadcc40 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 44daf0c020..1108392ebc 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 43e290d2b6..39cbaf9d8c 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 4d633e9b11..036dec0ace 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 84527f5ad8..816f249186 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 4b24066f00..0b0a167b32 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 90b3ee3e3b..295191775f 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index f5c4f74f41..5200e500df 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 3c03721c0c..4074979761 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 090e52c17e..d6b17adb37 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index d223cd018b..29dcddc60c 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 99f4591bee..fd1310f84a 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index c46e5ce9d1..925a7481e4 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.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 d223cd018b..29dcddc60c 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 d223cd018b..29dcddc60c 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index e18ecda215..8116671359 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -26,9 +26,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 d223cd018b..29dcddc60c 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index d223cd018b..29dcddc60c 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index a26cbc1957..b87709c0f3 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 698866543d..9a03277ea7 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 9f9be06fc4..2c8e7431f7 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index ca4ab4cec0..8838f99dcf 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/date-picker/date-limits/package.json b/samples/editors/date-picker/date-limits/package.json index b385ee9333..3e7ce4e9e9 100644 --- a/samples/editors/date-picker/date-limits/package.json +++ b/samples/editors/date-picker/date-limits/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/date-picker/editing/package.json b/samples/editors/date-picker/editing/package.json index 6b39691ae9..0a430c5e7f 100644 --- a/samples/editors/date-picker/editing/package.json +++ b/samples/editors/date-picker/editing/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/date-picker/format/package.json b/samples/editors/date-picker/format/package.json index 293c57529c..777692ba0a 100644 --- a/samples/editors/date-picker/format/package.json +++ b/samples/editors/date-picker/format/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/date-picker/overview/package.json b/samples/editors/date-picker/overview/package.json index e6c9dca131..a76bc9f52e 100644 --- a/samples/editors/date-picker/overview/package.json +++ b/samples/editors/date-picker/overview/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/date-picker/range/package.json b/samples/editors/date-picker/range/package.json index 5aa62fb2fe..ed49fe6f7f 100644 --- a/samples/editors/date-picker/range/package.json +++ b/samples/editors/date-picker/range/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/multi-column-combobox/overview/package.json b/samples/editors/multi-column-combobox/overview/package.json index ee4b54e061..35d166fb38 100644 --- a/samples/editors/multi-column-combobox/overview/package.json +++ b/samples/editors/multi-column-combobox/overview/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index bbc0450038..b5b22949a3 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -25,11 +25,11 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index 24fa533b5d..096d04aa3d 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -25,8 +25,8 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 8503917274..e92449e408 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -25,8 +25,8 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index b21f3eada1..9c68e46e5d 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -25,8 +25,8 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index 5bfc6903bf..f87cf55de0 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -25,12 +25,12 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index ef5ffcab13..06558616f5 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -25,12 +25,12 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index ef064454e5..446e73fe05 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-spreadsheet": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 7abf600f21..9fd4f17552 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -25,11 +25,11 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet-chart-adapter": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-spreadsheet": "4.6.0", + "igniteui-webcomponents-spreadsheet-chart-adapter": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index e57373cf1b..6f8ba53139 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet-chart-adapter": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-spreadsheet": "4.6.0", + "igniteui-webcomponents-spreadsheet-chart-adapter": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index 5bfa4a8ab6..fe3d4c5e60 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-spreadsheet": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index b14ad149aa..255973da5c 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-spreadsheet": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index ba4becb22b..337283f8f5 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-spreadsheet": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 7dc624ae39..23c55d0804 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-spreadsheet": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index bb8f243931..d7561a4f19 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-spreadsheet": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/filter-dialog/package.json b/samples/excel/spreadsheet/filter-dialog/package.json index 834ba43472..394f52f01d 100644 --- a/samples/excel/spreadsheet/filter-dialog/package.json +++ b/samples/excel/spreadsheet/filter-dialog/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-spreadsheet": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/format-dialog/package.json b/samples/excel/spreadsheet/format-dialog/package.json index 06aeeb25b7..9c3c352da5 100644 --- a/samples/excel/spreadsheet/format-dialog/package.json +++ b/samples/excel/spreadsheet/format-dialog/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-spreadsheet": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 0075072416..4fd7aae2eb 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-spreadsheet": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index 540425540d..efe063a243 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-spreadsheet": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/sort-dialog/package.json b/samples/excel/spreadsheet/sort-dialog/package.json index 5454f00a97..32b9fe7dca 100644 --- a/samples/excel/spreadsheet/sort-dialog/package.json +++ b/samples/excel/spreadsheet/sort-dialog/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-excel": "4.3.3-beta.1", - "igniteui-webcomponents-spreadsheet": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-excel": "4.6.0", + "igniteui-webcomponents-spreadsheet": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 344f8d7bbc..0d3070df80 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 9a9a7319a6..bd8d115e9a 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 2187967189..bde9bde6bc 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 83ea23007c..f457d0d013 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 083d6e7421..ab272ae750 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 4d4fdb010a..586286388d 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 2f5e1c0d9d..944951a733 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/type-filled/package.json b/samples/gauges/bullet-graph/type-filled/package.json index 69ea1e3091..793af1e933 100644 --- a/samples/gauges/bullet-graph/type-filled/package.json +++ b/samples/gauges/bullet-graph/type-filled/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/type-horizontal/package.json b/samples/gauges/bullet-graph/type-horizontal/package.json index d89c723b21..6e2ad94cd6 100644 --- a/samples/gauges/bullet-graph/type-horizontal/package.json +++ b/samples/gauges/bullet-graph/type-horizontal/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/type-reversed/package.json b/samples/gauges/bullet-graph/type-reversed/package.json index 43e4765424..78d19fb770 100644 --- a/samples/gauges/bullet-graph/type-reversed/package.json +++ b/samples/gauges/bullet-graph/type-reversed/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/type-segmented/package.json b/samples/gauges/bullet-graph/type-segmented/package.json index b812dfaff0..f60db93198 100644 --- a/samples/gauges/bullet-graph/type-segmented/package.json +++ b/samples/gauges/bullet-graph/type-segmented/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/type-vertical/package.json b/samples/gauges/bullet-graph/type-vertical/package.json index 695aa074e0..f5b2c72913 100644 --- a/samples/gauges/bullet-graph/type-vertical/package.json +++ b/samples/gauges/bullet-graph/type-vertical/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 9f5612c999..373ea607ef 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 683ee5383b..bc26b31990 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index ac1db461e3..2a8b627f51 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index a471ec351d..f30720b111 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 9bd4252683..39cc79b754 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index b1de64dbf5..4e143d2d85 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index a8924d78bc..797003e386 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-curved/package.json b/samples/gauges/linear-gauge/type-curved/package.json index bb1fb040fa..f96d5ba32a 100644 --- a/samples/gauges/linear-gauge/type-curved/package.json +++ b/samples/gauges/linear-gauge/type-curved/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-filled/package.json b/samples/gauges/linear-gauge/type-filled/package.json index 1b5489b34e..96f1386922 100644 --- a/samples/gauges/linear-gauge/type-filled/package.json +++ b/samples/gauges/linear-gauge/type-filled/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-horizontal/package.json b/samples/gauges/linear-gauge/type-horizontal/package.json index 582c4104fa..2d6fab92b2 100644 --- a/samples/gauges/linear-gauge/type-horizontal/package.json +++ b/samples/gauges/linear-gauge/type-horizontal/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-multi-range/package.json b/samples/gauges/linear-gauge/type-multi-range/package.json index 32a2f4955b..01143084bb 100644 --- a/samples/gauges/linear-gauge/type-multi-range/package.json +++ b/samples/gauges/linear-gauge/type-multi-range/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-multi-scale/package.json b/samples/gauges/linear-gauge/type-multi-scale/package.json index 20d1c367ff..1498efc7d8 100644 --- a/samples/gauges/linear-gauge/type-multi-scale/package.json +++ b/samples/gauges/linear-gauge/type-multi-scale/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-segmented/package.json b/samples/gauges/linear-gauge/type-segmented/package.json index fbe183c445..a77977a254 100644 --- a/samples/gauges/linear-gauge/type-segmented/package.json +++ b/samples/gauges/linear-gauge/type-segmented/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-vertical/package.json b/samples/gauges/linear-gauge/type-vertical/package.json index f0481a0e9a..a4d32e8780 100644 --- a/samples/gauges/linear-gauge/type-vertical/package.json +++ b/samples/gauges/linear-gauge/type-vertical/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 34b9451808..5f6d1984cf 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 009a46087a..a0aa15a776 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index d47b07f422..7235874de3 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 8fea95ec47..6cd10ecd02 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index b17ba0c359..9af6c87f25 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index d1eed4a6c6..ec3025ab17 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 3240cff237..6114caf629 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-column/package.json b/samples/gauges/radial-gauge/type-column/package.json index b616155ad9..43f50bc7da 100644 --- a/samples/gauges/radial-gauge/type-column/package.json +++ b/samples/gauges/radial-gauge/type-column/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-curved/package.json b/samples/gauges/radial-gauge/type-curved/package.json index 59a687791d..52134f150f 100644 --- a/samples/gauges/radial-gauge/type-curved/package.json +++ b/samples/gauges/radial-gauge/type-curved/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-direction/package.json b/samples/gauges/radial-gauge/type-direction/package.json index 256b022479..aed3412286 100644 --- a/samples/gauges/radial-gauge/type-direction/package.json +++ b/samples/gauges/radial-gauge/type-direction/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-full/package.json b/samples/gauges/radial-gauge/type-full/package.json index 978acd5c8f..2281ff4559 100644 --- a/samples/gauges/radial-gauge/type-full/package.json +++ b/samples/gauges/radial-gauge/type-full/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-half/package.json b/samples/gauges/radial-gauge/type-half/package.json index 7bbc3ec58e..5be3d36fdf 100644 --- a/samples/gauges/radial-gauge/type-half/package.json +++ b/samples/gauges/radial-gauge/type-half/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-quatre/package.json b/samples/gauges/radial-gauge/type-quatre/package.json index acbf51ff67..ecad3b33c2 100644 --- a/samples/gauges/radial-gauge/type-quatre/package.json +++ b/samples/gauges/radial-gauge/type-quatre/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-ring/package.json b/samples/gauges/radial-gauge/type-ring/package.json index 2ca25feaa2..9d06b2f383 100644 --- a/samples/gauges/radial-gauge/type-ring/package.json +++ b/samples/gauges/radial-gauge/type-ring/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-segmented/package.json b/samples/gauges/radial-gauge/type-segmented/package.json index a74d68c301..8e5785bb35 100644 --- a/samples/gauges/radial-gauge/type-segmented/package.json +++ b/samples/gauges/radial-gauge/type-segmented/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-semi/package.json b/samples/gauges/radial-gauge/type-semi/package.json index ee6c26369c..cf8668d902 100644 --- a/samples/gauges/radial-gauge/type-semi/package.json +++ b/samples/gauges/radial-gauge/type-semi/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/accessibility/package.json b/samples/grids/data-grid/accessibility/package.json index 628ab84299..ac3ba873e6 100644 --- a/samples/grids/data-grid/accessibility/package.json +++ b/samples/grids/data-grid/accessibility/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/binding-data-service/package.json b/samples/grids/data-grid/binding-data-service/package.json index 44cbabf0a7..c43eb86c3f 100644 --- a/samples/grids/data-grid/binding-data-service/package.json +++ b/samples/grids/data-grid/binding-data-service/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/binding-live-data/package.json b/samples/grids/data-grid/binding-live-data/package.json index 23060ba8eb..890199ba26 100644 --- a/samples/grids/data-grid/binding-live-data/package.json +++ b/samples/grids/data-grid/binding-live-data/package.json @@ -29,11 +29,11 @@ "@webcomponents/webcomponentsjs": "2.3.0", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/binding-local-data/package.json b/samples/grids/data-grid/binding-local-data/package.json index 33423af992..476df04074 100644 --- a/samples/grids/data-grid/binding-local-data/package.json +++ b/samples/grids/data-grid/binding-local-data/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/binding-remote-data/package.json b/samples/grids/data-grid/binding-remote-data/package.json index 77eb92069c..c8450962f7 100644 --- a/samples/grids/data-grid/binding-remote-data/package.json +++ b/samples/grids/data-grid/binding-remote-data/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-datasources": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-datasources": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/cell-activation/package.json b/samples/grids/data-grid/cell-activation/package.json index 3733726db5..3ef22ad76d 100644 --- a/samples/grids/data-grid/cell-activation/package.json +++ b/samples/grids/data-grid/cell-activation/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/cell-editing/package.json b/samples/grids/data-grid/cell-editing/package.json index 7ae9f19d36..27e109f038 100644 --- a/samples/grids/data-grid/cell-editing/package.json +++ b/samples/grids/data-grid/cell-editing/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/cell-merging/package.json b/samples/grids/data-grid/cell-merging/package.json index 936231f030..283ba885cc 100644 --- a/samples/grids/data-grid/cell-merging/package.json +++ b/samples/grids/data-grid/cell-merging/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-datasources": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-datasources": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/cell-selection/package.json b/samples/grids/data-grid/cell-selection/package.json index 97dcb13ba1..ac9a35793f 100644 --- a/samples/grids/data-grid/cell-selection/package.json +++ b/samples/grids/data-grid/cell-selection/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-animation/package.json b/samples/grids/data-grid/column-animation/package.json index ccd110e569..3d2670cbfe 100644 --- a/samples/grids/data-grid/column-animation/package.json +++ b/samples/grids/data-grid/column-animation/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-chooser-picker/package.json b/samples/grids/data-grid/column-chooser-picker/package.json index e37fbfebdb..006555b78d 100644 --- a/samples/grids/data-grid/column-chooser-picker/package.json +++ b/samples/grids/data-grid/column-chooser-picker/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-chooser-toolbar/package.json b/samples/grids/data-grid/column-chooser-toolbar/package.json index 9082df18b9..236983191f 100644 --- a/samples/grids/data-grid/column-chooser-toolbar/package.json +++ b/samples/grids/data-grid/column-chooser-toolbar/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-filter-expressions/package.json b/samples/grids/data-grid/column-filter-expressions/package.json index d26205f618..7abf47b437 100644 --- a/samples/grids/data-grid/column-filter-expressions/package.json +++ b/samples/grids/data-grid/column-filter-expressions/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-filter-operands/package.json b/samples/grids/data-grid/column-filter-operands/package.json index c13edd159b..5f31316a8f 100644 --- a/samples/grids/data-grid/column-filter-operands/package.json +++ b/samples/grids/data-grid/column-filter-operands/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-filtering/package.json b/samples/grids/data-grid/column-filtering/package.json index b3b51e47f7..9a7162082c 100644 --- a/samples/grids/data-grid/column-filtering/package.json +++ b/samples/grids/data-grid/column-filtering/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-moving/package.json b/samples/grids/data-grid/column-moving/package.json index daee7128a2..60fd0686f1 100644 --- a/samples/grids/data-grid/column-moving/package.json +++ b/samples/grids/data-grid/column-moving/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-options/package.json b/samples/grids/data-grid/column-options/package.json index 092e0abd22..8d0b4407f7 100644 --- a/samples/grids/data-grid/column-options/package.json +++ b/samples/grids/data-grid/column-options/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-pinning-picker/package.json b/samples/grids/data-grid/column-pinning-picker/package.json index de01761013..a851178621 100644 --- a/samples/grids/data-grid/column-pinning-picker/package.json +++ b/samples/grids/data-grid/column-pinning-picker/package.json @@ -25,10 +25,10 @@ "@webcomponents/webcomponentsjs": "2.3.0", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-pinning-toolbar/package.json b/samples/grids/data-grid/column-pinning-toolbar/package.json index 8b0e33a05d..664d9487d0 100644 --- a/samples/grids/data-grid/column-pinning-toolbar/package.json +++ b/samples/grids/data-grid/column-pinning-toolbar/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-resizing/package.json b/samples/grids/data-grid/column-resizing/package.json index 7a7e43cefa..65bc016f97 100644 --- a/samples/grids/data-grid/column-resizing/package.json +++ b/samples/grids/data-grid/column-resizing/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-scrolling/package.json b/samples/grids/data-grid/column-scrolling/package.json index 671081cfd7..7cf939524d 100644 --- a/samples/grids/data-grid/column-scrolling/package.json +++ b/samples/grids/data-grid/column-scrolling/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-sorting/package.json b/samples/grids/data-grid/column-sorting/package.json index 0d8bfc0fcf..f84e9a5272 100644 --- a/samples/grids/data-grid/column-sorting/package.json +++ b/samples/grids/data-grid/column-sorting/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-summaries/package.json b/samples/grids/data-grid/column-summaries/package.json index 206b853bd6..2f79854b59 100644 --- a/samples/grids/data-grid/column-summaries/package.json +++ b/samples/grids/data-grid/column-summaries/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-types/package.json b/samples/grids/data-grid/column-types/package.json index 5a7b3ec72c..fea1f530fc 100644 --- a/samples/grids/data-grid/column-types/package.json +++ b/samples/grids/data-grid/column-types/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/load-save-layout/package.json b/samples/grids/data-grid/load-save-layout/package.json index 061591f5b8..36ddd7f834 100644 --- a/samples/grids/data-grid/load-save-layout/package.json +++ b/samples/grids/data-grid/load-save-layout/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/localization/package.json b/samples/grids/data-grid/localization/package.json index 6bbfee2dc3..3cdcdaf408 100644 --- a/samples/grids/data-grid/localization/package.json +++ b/samples/grids/data-grid/localization/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/overview/package.json b/samples/grids/data-grid/overview/package.json index 1d48db2d67..f593bcd65b 100644 --- a/samples/grids/data-grid/overview/package.json +++ b/samples/grids/data-grid/overview/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/pager/package.json b/samples/grids/data-grid/pager/package.json index 62e497ba7a..8aae17f347 100644 --- a/samples/grids/data-grid/pager/package.json +++ b/samples/grids/data-grid/pager/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/performance/package.json b/samples/grids/data-grid/performance/package.json index 69ffb0c03e..9b93a65e98 100644 --- a/samples/grids/data-grid/performance/package.json +++ b/samples/grids/data-grid/performance/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/row-group-descriptions/package.json b/samples/grids/data-grid/row-group-descriptions/package.json index 5a19e039cf..19e169a8da 100644 --- a/samples/grids/data-grid/row-group-descriptions/package.json +++ b/samples/grids/data-grid/row-group-descriptions/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/row-grouping/package.json b/samples/grids/data-grid/row-grouping/package.json index 5a19e039cf..19e169a8da 100644 --- a/samples/grids/data-grid/row-grouping/package.json +++ b/samples/grids/data-grid/row-grouping/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/row-highlighting/package.json b/samples/grids/data-grid/row-highlighting/package.json index 325b5e4a7f..1d2535db7b 100644 --- a/samples/grids/data-grid/row-highlighting/package.json +++ b/samples/grids/data-grid/row-highlighting/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/row-paging/package.json b/samples/grids/data-grid/row-paging/package.json index ae72740619..605b4393a6 100644 --- a/samples/grids/data-grid/row-paging/package.json +++ b/samples/grids/data-grid/row-paging/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/row-pinning/package.json b/samples/grids/data-grid/row-pinning/package.json index 9cb75fd5fc..7117b7aaf6 100644 --- a/samples/grids/data-grid/row-pinning/package.json +++ b/samples/grids/data-grid/row-pinning/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/row-selection/package.json b/samples/grids/data-grid/row-selection/package.json index 97dcb13ba1..ac9a35793f 100644 --- a/samples/grids/data-grid/row-selection/package.json +++ b/samples/grids/data-grid/row-selection/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/type-comparison-table/package.json b/samples/grids/data-grid/type-comparison-table/package.json index f1e618eedd..d5f57cab6e 100644 --- a/samples/grids/data-grid/type-comparison-table/package.json +++ b/samples/grids/data-grid/type-comparison-table/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-datasources": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-datasources": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/type-heatmap-table/package.json b/samples/grids/data-grid/type-heatmap-table/package.json index 1cff65b4b7..760d5b0ca5 100644 --- a/samples/grids/data-grid/type-heatmap-table/package.json +++ b/samples/grids/data-grid/type-heatmap-table/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/type-marketing-table/package.json b/samples/grids/data-grid/type-marketing-table/package.json index 0049cacdee..8f9ecf5b5b 100644 --- a/samples/grids/data-grid/type-marketing-table/package.json +++ b/samples/grids/data-grid/type-marketing-table/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/type-matrix-table/package.json b/samples/grids/data-grid/type-matrix-table/package.json index cde8dd037f..2bfdf31bad 100644 --- a/samples/grids/data-grid/type-matrix-table/package.json +++ b/samples/grids/data-grid/type-matrix-table/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/type-periodic-table/package.json b/samples/grids/data-grid/type-periodic-table/package.json index a457982af4..0a9dc35ba0 100644 --- a/samples/grids/data-grid/type-periodic-table/package.json +++ b/samples/grids/data-grid/type-periodic-table/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/type-table/package.json b/samples/grids/data-grid/type-table/package.json index c644e021a0..a5072b424b 100644 --- a/samples/grids/data-grid/type-table/package.json +++ b/samples/grids/data-grid/type-table/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/action-strip/package.json b/samples/grids/grid/action-strip/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/action-strip/package.json +++ b/samples/grids/grid/action-strip/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/advanced-filtering-options/package.json b/samples/grids/grid/advanced-filtering-options/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/advanced-filtering-options/package.json +++ b/samples/grids/grid/advanced-filtering-options/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/advanced-filtering-style/package.json b/samples/grids/grid/advanced-filtering-style/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/advanced-filtering-style/package.json +++ b/samples/grids/grid/advanced-filtering-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/binding-composite-data/package.json b/samples/grids/grid/binding-composite-data/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/binding-composite-data/package.json +++ b/samples/grids/grid/binding-composite-data/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/binding-crud-data/package.json b/samples/grids/grid/binding-crud-data/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/binding-crud-data/package.json +++ b/samples/grids/grid/binding-crud-data/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/binding-nested-data-1/package.json b/samples/grids/grid/binding-nested-data-1/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/binding-nested-data-1/package.json +++ b/samples/grids/grid/binding-nested-data-1/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cascading-combo/package.json b/samples/grids/grid/cascading-combo/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/cascading-combo/package.json +++ b/samples/grids/grid/cascading-combo/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cell-editing-sample/package.json b/samples/grids/grid/cell-editing-sample/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/cell-editing-sample/package.json +++ b/samples/grids/grid/cell-editing-sample/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cell-editing-styling/package.json b/samples/grids/grid/cell-editing-styling/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/cell-editing-styling/package.json +++ b/samples/grids/grid/cell-editing-styling/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cell-selection-mode/package.json b/samples/grids/grid/cell-selection-mode/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/cell-selection-mode/package.json +++ b/samples/grids/grid/cell-selection-mode/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cell-selection-style/package.json b/samples/grids/grid/cell-selection-style/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/cell-selection-style/package.json +++ b/samples/grids/grid/cell-selection-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/clipboard-operations/package.json b/samples/grids/grid/clipboard-operations/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/clipboard-operations/package.json +++ b/samples/grids/grid/clipboard-operations/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-auto-sizing/package.json b/samples/grids/grid/column-auto-sizing/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/column-auto-sizing/package.json +++ b/samples/grids/grid/column-auto-sizing/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-collapsible-groups/package.json b/samples/grids/grid/column-collapsible-groups/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/column-collapsible-groups/package.json +++ b/samples/grids/grid/column-collapsible-groups/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-data-types/package.json b/samples/grids/grid/column-data-types/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/column-data-types/package.json +++ b/samples/grids/grid/column-data-types/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-hiding-options/package.json b/samples/grids/grid/column-hiding-options/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/column-hiding-options/package.json +++ b/samples/grids/grid/column-hiding-options/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-hiding-toolbar-style/package.json b/samples/grids/grid/column-hiding-toolbar-style/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/grid/column-hiding-toolbar-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-hiding-toolbar/package.json b/samples/grids/grid/column-hiding-toolbar/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/column-hiding-toolbar/package.json +++ b/samples/grids/grid/column-hiding-toolbar/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-moving-options/package.json b/samples/grids/grid/column-moving-options/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/column-moving-options/package.json +++ b/samples/grids/grid/column-moving-options/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-moving-styles/package.json b/samples/grids/grid/column-moving-styles/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/column-moving-styles/package.json +++ b/samples/grids/grid/column-moving-styles/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-pinning-options/package.json b/samples/grids/grid/column-pinning-options/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/column-pinning-options/package.json +++ b/samples/grids/grid/column-pinning-options/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-pinning-right-side/package.json b/samples/grids/grid/column-pinning-right-side/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/column-pinning-right-side/package.json +++ b/samples/grids/grid/column-pinning-right-side/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-pinning-styles/package.json b/samples/grids/grid/column-pinning-styles/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/column-pinning-styles/package.json +++ b/samples/grids/grid/column-pinning-styles/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-pinning/package.json b/samples/grids/grid/column-pinning/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/column-pinning/package.json +++ b/samples/grids/grid/column-pinning/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-resize-styling/package.json b/samples/grids/grid/column-resize-styling/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/column-resize-styling/package.json +++ b/samples/grids/grid/column-resize-styling/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-resizing/package.json b/samples/grids/grid/column-resizing/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/column-resizing/package.json +++ b/samples/grids/grid/column-resizing/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-selection-group/package.json b/samples/grids/grid/column-selection-group/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/column-selection-group/package.json +++ b/samples/grids/grid/column-selection-group/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-selection-mode/package.json b/samples/grids/grid/column-selection-mode/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/column-selection-mode/package.json +++ b/samples/grids/grid/column-selection-mode/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-selection-styles/package.json b/samples/grids/grid/column-selection-styles/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/column-selection-styles/package.json +++ b/samples/grids/grid/column-selection-styles/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-sorting-indicators/package.json b/samples/grids/grid/column-sorting-indicators/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/column-sorting-indicators/package.json +++ b/samples/grids/grid/column-sorting-indicators/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-sorting-options/package.json b/samples/grids/grid/column-sorting-options/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/column-sorting-options/package.json +++ b/samples/grids/grid/column-sorting-options/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-sorting-style/package.json b/samples/grids/grid/column-sorting-style/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/column-sorting-style/package.json +++ b/samples/grids/grid/column-sorting-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/conditional-cell-style-1/package.json b/samples/grids/grid/conditional-cell-style-1/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/conditional-cell-style-1/package.json +++ b/samples/grids/grid/conditional-cell-style-1/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/conditional-cell-style-2/package.json b/samples/grids/grid/conditional-cell-style-2/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/conditional-cell-style-2/package.json +++ b/samples/grids/grid/conditional-cell-style-2/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/conditional-row-selectors/package.json b/samples/grids/grid/conditional-row-selectors/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/conditional-row-selectors/package.json +++ b/samples/grids/grid/conditional-row-selectors/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/custom-context-menu/package.json b/samples/grids/grid/custom-context-menu/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/custom-context-menu/package.json +++ b/samples/grids/grid/custom-context-menu/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/custom-filtering/package.json b/samples/grids/grid/custom-filtering/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/custom-filtering/package.json +++ b/samples/grids/grid/custom-filtering/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-batch-editing-actions/package.json b/samples/grids/grid/data-batch-editing-actions/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/data-batch-editing-actions/package.json +++ b/samples/grids/grid/data-batch-editing-actions/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-exporting-indicator/package.json b/samples/grids/grid/data-exporting-indicator/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/data-exporting-indicator/package.json +++ b/samples/grids/grid/data-exporting-indicator/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-paste-options/package.json b/samples/grids/grid/data-paste-options/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/data-paste-options/package.json +++ b/samples/grids/grid/data-paste-options/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-performance-virtualization/package.json b/samples/grids/grid/data-performance-virtualization/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/data-performance-virtualization/package.json +++ b/samples/grids/grid/data-performance-virtualization/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-searching/package.json b/samples/grids/grid/data-searching/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/data-searching/package.json +++ b/samples/grids/grid/data-searching/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-summaries-custom/package.json b/samples/grids/grid/data-summaries-custom/package.json index 634a1b4137..a3507ef7a9 100644 --- a/samples/grids/grid/data-summaries-custom/package.json +++ b/samples/grids/grid/data-summaries-custom/package.json @@ -22,14 +22,14 @@ "start:legacy": "npm run serve:dev:legacy" }, "dependencies": { - "igniteui-webcomponents-core": "4.2.5", - "igniteui-webcomponents-grids": "4.2.5", - "igniteui-webcomponents-inputs": "4.2.5", - "igniteui-webcomponents-layouts": "4.2.5", "@webcomponents/custom-elements": "^1.4.1", "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, @@ -43,20 +43,20 @@ "@types/source-map": "^0.5.7", "babel-loader": "^8.1.0", "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", "fork-ts-checker-webpack-plugin": "^4.1.5", - "tsconfig-paths-webpack-plugin": "^4.0.0", "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", - "parcel-bundler": "^1.6.1", - "css-loader": "^1.0.0", - "csv-loader": "^3.0.2", - "file-loader": "^4.2.0", - "style-loader": "^0.22.1", - "xml-loader": "^1.2.1", - "worker-loader": "^3.0.8" + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" } -} \ No newline at end of file +} diff --git a/samples/grids/grid/data-summary-formatter/package.json b/samples/grids/grid/data-summary-formatter/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/data-summary-formatter/package.json +++ b/samples/grids/grid/data-summary-formatter/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-summary-options/package.json b/samples/grids/grid/data-summary-options/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/data-summary-options/package.json +++ b/samples/grids/grid/data-summary-options/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-summary-template/package.json b/samples/grids/grid/data-summary-template/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/data-summary-template/package.json +++ b/samples/grids/grid/data-summary-template/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-validation-style/package.json b/samples/grids/grid/data-validation-style/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/data-validation-style/package.json +++ b/samples/grids/grid/data-validation-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-validator-service-cross-field/package.json b/samples/grids/grid/data-validator-service-cross-field/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/data-validator-service-cross-field/package.json +++ b/samples/grids/grid/data-validator-service-cross-field/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-validator-service-extended/package.json b/samples/grids/grid/data-validator-service-extended/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/data-validator-service-extended/package.json +++ b/samples/grids/grid/data-validator-service-extended/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-validator-service/package.json b/samples/grids/grid/data-validator-service/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/data-validator-service/package.json +++ b/samples/grids/grid/data-validator-service/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-columns/package.json b/samples/grids/grid/editing-columns/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/editing-columns/package.json +++ b/samples/grids/grid/editing-columns/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-events/package.json b/samples/grids/grid/editing-events/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/editing-events/package.json +++ b/samples/grids/grid/editing-events/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-excel-style/package.json b/samples/grids/grid/editing-excel-style/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/editing-excel-style/package.json +++ b/samples/grids/grid/editing-excel-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-lifecycle/package.json b/samples/grids/grid/editing-lifecycle/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/editing-lifecycle/package.json +++ b/samples/grids/grid/editing-lifecycle/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-exporting/package.json b/samples/grids/grid/excel-exporting/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/excel-exporting/package.json +++ b/samples/grids/grid/excel-exporting/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-style-filtering-sample-1/package.json b/samples/grids/grid/excel-style-filtering-sample-1/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-1/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-style-filtering-sample-2/package.json b/samples/grids/grid/excel-style-filtering-sample-2/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-2/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-style-filtering-sample-3/package.json b/samples/grids/grid/excel-style-filtering-sample-3/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-3/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-style-filtering-style/package.json b/samples/grids/grid/excel-style-filtering-style/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/excel-style-filtering-style/package.json +++ b/samples/grids/grid/excel-style-filtering-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/external-advanced-filtering/package.json b/samples/grids/grid/external-advanced-filtering/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/external-advanced-filtering/package.json +++ b/samples/grids/grid/external-advanced-filtering/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/filtering-options/package.json b/samples/grids/grid/filtering-options/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/filtering-options/package.json +++ b/samples/grids/grid/filtering-options/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/filtering-strategy/package.json b/samples/grids/grid/filtering-strategy/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/filtering-strategy/package.json +++ b/samples/grids/grid/filtering-strategy/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/filtering-style/package.json b/samples/grids/grid/filtering-style/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/filtering-style/package.json +++ b/samples/grids/grid/filtering-style/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/finjs/package.json b/samples/grids/grid/finjs/package.json index 6c419aa9fc..851e6e8aff 100644 --- a/samples/grids/grid/finjs/package.json +++ b/samples/grids/grid/finjs/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-custom/package.json b/samples/grids/grid/groupby-custom/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/groupby-custom/package.json +++ b/samples/grids/grid/groupby-custom/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-expressions/package.json b/samples/grids/grid/groupby-expressions/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/groupby-expressions/package.json +++ b/samples/grids/grid/groupby-expressions/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-paging/package.json b/samples/grids/grid/groupby-paging/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/groupby-paging/package.json +++ b/samples/grids/grid/groupby-paging/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-styling/package.json b/samples/grids/grid/groupby-styling/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/groupby-styling/package.json +++ b/samples/grids/grid/groupby-styling/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-summary-options/package.json b/samples/grids/grid/groupby-summary-options/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/groupby-summary-options/package.json +++ b/samples/grids/grid/groupby-summary-options/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-summary-styling/package.json b/samples/grids/grid/groupby-summary-styling/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/groupby-summary-styling/package.json +++ b/samples/grids/grid/groupby-summary-styling/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/infinite-scroll/package.json b/samples/grids/grid/infinite-scroll/package.json index 7880d815e6..84bd7b3fd1 100644 --- a/samples/grids/grid/infinite-scroll/package.json +++ b/samples/grids/grid/infinite-scroll/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "rxjs": "7.8.1", "tslib": "^2.0.0" diff --git a/samples/grids/grid/keyboard-custom-navigation/package.json b/samples/grids/grid/keyboard-custom-navigation/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/keyboard-custom-navigation/package.json +++ b/samples/grids/grid/keyboard-custom-navigation/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/keyboard-mrl-navigation/package.json b/samples/grids/grid/keyboard-mrl-navigation/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/package.json +++ b/samples/grids/grid/keyboard-mrl-navigation/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/keyboard-navigation-guide/package.json b/samples/grids/grid/keyboard-navigation-guide/package.json index 634a1b4137..a3507ef7a9 100644 --- a/samples/grids/grid/keyboard-navigation-guide/package.json +++ b/samples/grids/grid/keyboard-navigation-guide/package.json @@ -22,14 +22,14 @@ "start:legacy": "npm run serve:dev:legacy" }, "dependencies": { - "igniteui-webcomponents-core": "4.2.5", - "igniteui-webcomponents-grids": "4.2.5", - "igniteui-webcomponents-inputs": "4.2.5", - "igniteui-webcomponents-layouts": "4.2.5", "@webcomponents/custom-elements": "^1.4.1", "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, @@ -43,20 +43,20 @@ "@types/source-map": "^0.5.7", "babel-loader": "^8.1.0", "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", "fork-ts-checker-webpack-plugin": "^4.1.5", - "tsconfig-paths-webpack-plugin": "^4.0.0", "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", - "parcel-bundler": "^1.6.1", - "css-loader": "^1.0.0", - "csv-loader": "^3.0.2", - "file-loader": "^4.2.0", - "style-loader": "^0.22.1", - "xml-loader": "^1.2.1", - "worker-loader": "^3.0.8" + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" } -} \ No newline at end of file +} diff --git a/samples/grids/grid/layout-display-density/package.json b/samples/grids/grid/layout-display-density/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/layout-display-density/package.json +++ b/samples/grids/grid/layout-display-density/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/master-detail/package.json b/samples/grids/grid/master-detail/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/master-detail/package.json +++ b/samples/grids/grid/master-detail/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-cell-selection-mode/package.json b/samples/grids/grid/multi-cell-selection-mode/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/multi-cell-selection-mode/package.json +++ b/samples/grids/grid/multi-cell-selection-mode/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-column-headers-export/package.json b/samples/grids/grid/multi-column-headers-export/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/multi-column-headers-export/package.json +++ b/samples/grids/grid/multi-column-headers-export/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-column-headers-overview/package.json b/samples/grids/grid/multi-column-headers-overview/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/multi-column-headers-overview/package.json +++ b/samples/grids/grid/multi-column-headers-overview/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-column-headers-styling/package.json b/samples/grids/grid/multi-column-headers-styling/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/multi-column-headers-styling/package.json +++ b/samples/grids/grid/multi-column-headers-styling/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-column-headers-template/package.json b/samples/grids/grid/multi-column-headers-template/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/multi-column-headers-template/package.json +++ b/samples/grids/grid/multi-column-headers-template/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-row-layout-options/package.json b/samples/grids/grid/multi-row-layout-options/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/multi-row-layout-options/package.json +++ b/samples/grids/grid/multi-row-layout-options/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-row-layout-style/package.json b/samples/grids/grid/multi-row-layout-style/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/multi-row-layout-style/package.json +++ b/samples/grids/grid/multi-row-layout-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/overview/package.json b/samples/grids/grid/overview/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/overview/package.json +++ b/samples/grids/grid/overview/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/remote-paging-data/package.json b/samples/grids/grid/remote-paging-data/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/remote-paging-data/package.json +++ b/samples/grids/grid/remote-paging-data/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-adding/package.json b/samples/grids/grid/row-adding/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/row-adding/package.json +++ b/samples/grids/grid/row-adding/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-classes/package.json b/samples/grids/grid/row-classes/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/row-classes/package.json +++ b/samples/grids/grid/row-classes/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-drag-base/package.json b/samples/grids/grid/row-drag-base/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/row-drag-base/package.json +++ b/samples/grids/grid/row-drag-base/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-editing-options/package.json b/samples/grids/grid/row-editing-options/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/row-editing-options/package.json +++ b/samples/grids/grid/row-editing-options/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-editing-style/package.json b/samples/grids/grid/row-editing-style/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/row-editing-style/package.json +++ b/samples/grids/grid/row-editing-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-paging-basic/package.json b/samples/grids/grid/row-paging-basic/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/row-paging-basic/package.json +++ b/samples/grids/grid/row-paging-basic/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-paging-options/package.json b/samples/grids/grid/row-paging-options/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/row-paging-options/package.json +++ b/samples/grids/grid/row-paging-options/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-pinning-drag/package.json b/samples/grids/grid/row-pinning-drag/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/row-pinning-drag/package.json +++ b/samples/grids/grid/row-pinning-drag/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-pinning-extra-column/package.json b/samples/grids/grid/row-pinning-extra-column/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/row-pinning-extra-column/package.json +++ b/samples/grids/grid/row-pinning-extra-column/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-pinning-options/package.json b/samples/grids/grid/row-pinning-options/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/row-pinning-options/package.json +++ b/samples/grids/grid/row-pinning-options/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-pinning-style/package.json b/samples/grids/grid/row-pinning-style/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/row-pinning-style/package.json +++ b/samples/grids/grid/row-pinning-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-reorder/package.json b/samples/grids/grid/row-reorder/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/row-reorder/package.json +++ b/samples/grids/grid/row-reorder/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-selection-mode/package.json b/samples/grids/grid/row-selection-mode/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/row-selection-mode/package.json +++ b/samples/grids/grid/row-selection-mode/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-selection-template-excel/package.json b/samples/grids/grid/row-selection-template-excel/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/row-selection-template-excel/package.json +++ b/samples/grids/grid/row-selection-template-excel/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-selection-template-numbers/package.json b/samples/grids/grid/row-selection-template-numbers/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/row-selection-template-numbers/package.json +++ b/samples/grids/grid/row-selection-template-numbers/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-styles/package.json b/samples/grids/grid/row-styles/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/row-styles/package.json +++ b/samples/grids/grid/row-styles/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/state-persistence-about/package.json b/samples/grids/grid/state-persistence-about/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/state-persistence-about/package.json +++ b/samples/grids/grid/state-persistence-about/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/state-persistence-main/package.json b/samples/grids/grid/state-persistence-main/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/grid/state-persistence-main/package.json +++ b/samples/grids/grid/state-persistence-main/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/styling-custom-CSS/package.json b/samples/grids/grid/styling-custom-CSS/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/styling-custom-CSS/package.json +++ b/samples/grids/grid/styling-custom-CSS/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-sample-1/package.json b/samples/grids/grid/toolbar-sample-1/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/toolbar-sample-1/package.json +++ b/samples/grids/grid/toolbar-sample-1/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-sample-2/package.json b/samples/grids/grid/toolbar-sample-2/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/toolbar-sample-2/package.json +++ b/samples/grids/grid/toolbar-sample-2/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-sample-3/package.json b/samples/grids/grid/toolbar-sample-3/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/toolbar-sample-3/package.json +++ b/samples/grids/grid/toolbar-sample-3/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-sample-4/package.json b/samples/grids/grid/toolbar-sample-4/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/toolbar-sample-4/package.json +++ b/samples/grids/grid/toolbar-sample-4/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-style/package.json b/samples/grids/grid/toolbar-style/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/grid/toolbar-style/package.json +++ b/samples/grids/grid/toolbar-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/list/add-list-items/package.json b/samples/grids/list/add-list-items/package.json index f4911137d4..d8aa00d314 100644 --- a/samples/grids/list/add-list-items/package.json +++ b/samples/grids/list/add-list-items/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/grids/list/list-item-content/package.json b/samples/grids/list/list-item-content/package.json index ef0998ff4f..b0d1f74726 100644 --- a/samples/grids/list/list-item-content/package.json +++ b/samples/grids/list/list-item-content/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/grids/list/overview/package.json b/samples/grids/list/overview/package.json index 1c47a6e46d..f0560f78ea 100644 --- a/samples/grids/list/overview/package.json +++ b/samples/grids/list/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/grids/list/styling/package.json b/samples/grids/list/styling/package.json index fe17fdddb7..e061c6f0e2 100644 --- a/samples/grids/list/styling/package.json +++ b/samples/grids/list/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/grids/pivot-grid/aggregate-max-sales/package.json b/samples/grids/pivot-grid/aggregate-max-sales/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/package.json +++ b/samples/grids/pivot-grid/aggregate-max-sales/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/aggregate-units-sold/package.json b/samples/grids/pivot-grid/aggregate-units-sold/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/package.json +++ b/samples/grids/pivot-grid/aggregate-units-sold/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/basic/package.json b/samples/grids/pivot-grid/basic/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/pivot-grid/basic/package.json +++ b/samples/grids/pivot-grid/basic/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/data-selector/package.json b/samples/grids/pivot-grid/data-selector/package.json index 6ad4f0fa8c..12ca0d2e7b 100644 --- a/samples/grids/pivot-grid/data-selector/package.json +++ b/samples/grids/pivot-grid/data-selector/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/features/package.json b/samples/grids/pivot-grid/features/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/pivot-grid/features/package.json +++ b/samples/grids/pivot-grid/features/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/remote/package.json b/samples/grids/pivot-grid/remote/package.json index 6ad4f0fa8c..12ca0d2e7b 100644 --- a/samples/grids/pivot-grid/remote/package.json +++ b/samples/grids/pivot-grid/remote/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/action-strip/package.json b/samples/grids/tree-grid/action-strip/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/action-strip/package.json +++ b/samples/grids/tree-grid/action-strip/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/advanced-filtering-options/package.json b/samples/grids/tree-grid/advanced-filtering-options/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/package.json +++ b/samples/grids/tree-grid/advanced-filtering-options/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/advanced-filtering-style/package.json b/samples/grids/tree-grid/advanced-filtering-style/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/package.json +++ b/samples/grids/tree-grid/advanced-filtering-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/cell-editing-sample/package.json b/samples/grids/tree-grid/cell-editing-sample/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/tree-grid/cell-editing-sample/package.json +++ b/samples/grids/tree-grid/cell-editing-sample/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/cell-selection-mode/package.json b/samples/grids/tree-grid/cell-selection-mode/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/tree-grid/cell-selection-mode/package.json +++ b/samples/grids/tree-grid/cell-selection-mode/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/cell-selection-style/package.json b/samples/grids/tree-grid/cell-selection-style/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/cell-selection-style/package.json +++ b/samples/grids/tree-grid/cell-selection-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/clipboard-operations/package.json b/samples/grids/tree-grid/clipboard-operations/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/tree-grid/clipboard-operations/package.json +++ b/samples/grids/tree-grid/clipboard-operations/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-auto-sizing/package.json b/samples/grids/tree-grid/column-auto-sizing/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/column-auto-sizing/package.json +++ b/samples/grids/tree-grid/column-auto-sizing/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-collapsible-groups/package.json b/samples/grids/tree-grid/column-collapsible-groups/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/package.json +++ b/samples/grids/tree-grid/column-collapsible-groups/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-hiding-toolbar/package.json b/samples/grids/tree-grid/column-hiding-toolbar/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-moving-options/package.json b/samples/grids/tree-grid/column-moving-options/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/column-moving-options/package.json +++ b/samples/grids/tree-grid/column-moving-options/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-moving-styles/package.json b/samples/grids/tree-grid/column-moving-styles/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/column-moving-styles/package.json +++ b/samples/grids/tree-grid/column-moving-styles/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning-options/package.json b/samples/grids/tree-grid/column-pinning-options/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/column-pinning-options/package.json +++ b/samples/grids/tree-grid/column-pinning-options/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning-right-side/package.json b/samples/grids/tree-grid/column-pinning-right-side/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/package.json +++ b/samples/grids/tree-grid/column-pinning-right-side/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning-styles/package.json b/samples/grids/tree-grid/column-pinning-styles/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/column-pinning-styles/package.json +++ b/samples/grids/tree-grid/column-pinning-styles/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning-toolbar/package.json b/samples/grids/tree-grid/column-pinning-toolbar/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/package.json +++ b/samples/grids/tree-grid/column-pinning-toolbar/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning/package.json b/samples/grids/tree-grid/column-pinning/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/column-pinning/package.json +++ b/samples/grids/tree-grid/column-pinning/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-resize-styling/package.json b/samples/grids/tree-grid/column-resize-styling/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/column-resize-styling/package.json +++ b/samples/grids/tree-grid/column-resize-styling/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-resizing/package.json b/samples/grids/tree-grid/column-resizing/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/column-resizing/package.json +++ b/samples/grids/tree-grid/column-resizing/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-selection-group/package.json b/samples/grids/tree-grid/column-selection-group/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/column-selection-group/package.json +++ b/samples/grids/tree-grid/column-selection-group/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-selection-mode/package.json b/samples/grids/tree-grid/column-selection-mode/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/tree-grid/column-selection-mode/package.json +++ b/samples/grids/tree-grid/column-selection-mode/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-selection-style/package.json b/samples/grids/tree-grid/column-selection-style/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/column-selection-style/package.json +++ b/samples/grids/tree-grid/column-selection-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-sorting-indicators/package.json b/samples/grids/tree-grid/column-sorting-indicators/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/package.json +++ b/samples/grids/tree-grid/column-sorting-indicators/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-sorting-options/package.json b/samples/grids/tree-grid/column-sorting-options/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/tree-grid/column-sorting-options/package.json +++ b/samples/grids/tree-grid/column-sorting-options/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-sorting-style/package.json b/samples/grids/tree-grid/column-sorting-style/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/column-sorting-style/package.json +++ b/samples/grids/tree-grid/column-sorting-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/conditional-cell-style-1/package.json b/samples/grids/tree-grid/conditional-cell-style-1/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-1/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/custom-filtering/package.json b/samples/grids/tree-grid/custom-filtering/package.json index c0f0abc43f..a3507ef7a9 100644 --- a/samples/grids/tree-grid/custom-filtering/package.json +++ b/samples/grids/tree-grid/custom-filtering/package.json @@ -22,14 +22,14 @@ "start:legacy": "npm run serve:dev:legacy" }, "dependencies": { - "igniteui-webcomponents-core": "4.3.0-beta.1", - "igniteui-webcomponents-grids": "4.3.0-beta.1", - "igniteui-webcomponents-inputs": "4.3.0-beta.1", - "igniteui-webcomponents-layouts": "4.3.0-beta.1", "@webcomponents/custom-elements": "^1.4.1", "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, @@ -43,20 +43,20 @@ "@types/source-map": "^0.5.7", "babel-loader": "^8.1.0", "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", "fork-ts-checker-webpack-plugin": "^4.1.5", - "tsconfig-paths-webpack-plugin": "^4.0.0", "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", - "parcel-bundler": "^1.6.1", - "css-loader": "^1.0.0", - "csv-loader": "^3.0.2", - "file-loader": "^4.2.0", - "style-loader": "^0.22.1", - "xml-loader": "^1.2.1", - "worker-loader": "^3.0.8" + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" } -} \ No newline at end of file +} diff --git a/samples/grids/tree-grid/editing-columns/package.json b/samples/grids/tree-grid/editing-columns/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/editing-columns/package.json +++ b/samples/grids/tree-grid/editing-columns/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/editing-events/package.json b/samples/grids/tree-grid/editing-events/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/editing-events/package.json +++ b/samples/grids/tree-grid/editing-events/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/editing-lifecycle/package.json b/samples/grids/tree-grid/editing-lifecycle/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/editing-lifecycle/package.json +++ b/samples/grids/tree-grid/editing-lifecycle/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-exporting/package.json b/samples/grids/tree-grid/excel-exporting/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/excel-exporting/package.json +++ b/samples/grids/tree-grid/excel-exporting/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-style-filtering-style/package.json b/samples/grids/tree-grid/excel-style-filtering-style/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/finjs/package.json b/samples/grids/tree-grid/finjs/package.json index 3b2d45b5d9..851e6e8aff 100644 --- a/samples/grids/tree-grid/finjs/package.json +++ b/samples/grids/tree-grid/finjs/package.json @@ -22,15 +22,15 @@ "start:legacy": "npm run serve:dev:legacy" }, "dependencies": { - "igniteui-webcomponents-core": "4.3.0", - "igniteui-webcomponents-grids": "4.3.0", - "igniteui-webcomponents-inputs": "4.3.0", - "igniteui-webcomponents-layouts": "4.3.0", - "igniteui-webcomponents-charts": "4.3.0", "@webcomponents/custom-elements": "^1.4.1", "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, @@ -44,20 +44,20 @@ "@types/source-map": "^0.5.7", "babel-loader": "^8.1.0", "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", "fork-ts-checker-webpack-plugin": "^4.1.5", - "tsconfig-paths-webpack-plugin": "^4.0.0", "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", - "parcel-bundler": "^1.6.1", - "css-loader": "^1.0.0", - "csv-loader": "^3.0.2", - "file-loader": "^4.2.0", - "style-loader": "^0.22.1", - "xml-loader": "^1.2.1", - "worker-loader": "^3.0.8" + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" } -} \ No newline at end of file +} diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/package.json b/samples/grids/tree-grid/keyboard-custom-navigation/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/package.json +++ b/samples/grids/tree-grid/keyboard-custom-navigation/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/package.json b/samples/grids/tree-grid/keyboard-navigation-guide/package.json index be069cfd30..a3507ef7a9 100644 --- a/samples/grids/tree-grid/keyboard-navigation-guide/package.json +++ b/samples/grids/tree-grid/keyboard-navigation-guide/package.json @@ -22,14 +22,14 @@ "start:legacy": "npm run serve:dev:legacy" }, "dependencies": { - "igniteui-webcomponents-core": "4.3.0", - "igniteui-webcomponents-grids": "4.3.0", - "igniteui-webcomponents-inputs": "4.3.0", - "igniteui-webcomponents-layouts": "4.3.0", "@webcomponents/custom-elements": "^1.4.1", "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, @@ -43,20 +43,20 @@ "@types/source-map": "^0.5.7", "babel-loader": "^8.1.0", "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", "fork-ts-checker-webpack-plugin": "^4.1.5", - "tsconfig-paths-webpack-plugin": "^4.0.0", "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", - "parcel-bundler": "^1.6.1", - "css-loader": "^1.0.0", - "csv-loader": "^3.0.2", - "file-loader": "^4.2.0", - "style-loader": "^0.22.1", - "xml-loader": "^1.2.1", - "worker-loader": "^3.0.8" + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" } -} \ No newline at end of file +} diff --git a/samples/grids/tree-grid/layout-display-density/package.json b/samples/grids/tree-grid/layout-display-density/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/tree-grid/layout-display-density/package.json +++ b/samples/grids/tree-grid/layout-display-density/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/load-on-demand/package.json b/samples/grids/tree-grid/load-on-demand/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/load-on-demand/package.json +++ b/samples/grids/tree-grid/load-on-demand/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-column-headers-export/package.json b/samples/grids/tree-grid/multi-column-headers-export/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/package.json +++ b/samples/grids/tree-grid/multi-column-headers-export/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-column-headers-overview/package.json b/samples/grids/tree-grid/multi-column-headers-overview/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/package.json +++ b/samples/grids/tree-grid/multi-column-headers-overview/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-column-headers-styling/package.json b/samples/grids/tree-grid/multi-column-headers-styling/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/package.json +++ b/samples/grids/tree-grid/multi-column-headers-styling/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-column-headers-template/package.json b/samples/grids/tree-grid/multi-column-headers-template/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/package.json +++ b/samples/grids/tree-grid/multi-column-headers-template/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/overview-styling/package.json b/samples/grids/tree-grid/overview-styling/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/overview-styling/package.json +++ b/samples/grids/tree-grid/overview-styling/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/overview/package.json b/samples/grids/tree-grid/overview/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/overview/package.json +++ b/samples/grids/tree-grid/overview/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-editing-options/package.json b/samples/grids/tree-grid/row-editing-options/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/row-editing-options/package.json +++ b/samples/grids/tree-grid/row-editing-options/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-editing-style/package.json b/samples/grids/tree-grid/row-editing-style/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/row-editing-style/package.json +++ b/samples/grids/tree-grid/row-editing-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-selection-mode/package.json b/samples/grids/tree-grid/row-selection-mode/package.json index 2f0bbfc6ff..bd62120254 100644 --- a/samples/grids/tree-grid/row-selection-mode/package.json +++ b/samples/grids/tree-grid/row-selection-mode/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-selection-template-numbers/package.json b/samples/grids/tree-grid/row-selection-template-numbers/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/package.json +++ b/samples/grids/tree-grid/row-selection-template-numbers/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-styles/package.json b/samples/grids/tree-grid/row-styles/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/row-styles/package.json +++ b/samples/grids/tree-grid/row-styles/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/using-primary-foreign-keys/package.json b/samples/grids/tree-grid/using-primary-foreign-keys/package.json index 47f65775ee..a3507ef7a9 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/package.json +++ b/samples/grids/tree-grid/using-primary-foreign-keys/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-grids": "4.3.3-beta.1", - "igniteui-webcomponents-inputs": "4.3.3-beta.1", - "igniteui-webcomponents-layouts": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-grids": "4.6.0", + "igniteui-webcomponents-inputs": "4.6.0", + "igniteui-webcomponents-layouts": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree/basic-example/package.json b/samples/grids/tree/basic-example/package.json index 8bbb9c4394..0275b7c183 100644 --- a/samples/grids/tree/basic-example/package.json +++ b/samples/grids/tree/basic-example/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.1.1", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/grids/tree/load-on-demand-virtualized/package.json b/samples/grids/tree/load-on-demand-virtualized/package.json index 02e9d0a4b0..06a832106a 100644 --- a/samples/grids/tree/load-on-demand-virtualized/package.json +++ b/samples/grids/tree/load-on-demand-virtualized/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.1.1", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/grids/tree/load-on-demand/package.json b/samples/grids/tree/load-on-demand/package.json index 58f421d6a7..20c7179dca 100644 --- a/samples/grids/tree/load-on-demand/package.json +++ b/samples/grids/tree/load-on-demand/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.1.1", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/badge/outlined/package.json b/samples/inputs/badge/outlined/package.json index 7e03e21e91..eb9bb50712 100644 --- a/samples/inputs/badge/outlined/package.json +++ b/samples/inputs/badge/outlined/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/badge/shape/package.json b/samples/inputs/badge/shape/package.json index 8681b5a6d6..12c596ceb6 100644 --- a/samples/inputs/badge/shape/package.json +++ b/samples/inputs/badge/shape/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/badge/variants/package.json b/samples/inputs/badge/variants/package.json index c1ccc06e8c..7b9cbd0a71 100644 --- a/samples/inputs/badge/variants/package.json +++ b/samples/inputs/badge/variants/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button-group/alignment/package.json b/samples/inputs/button-group/alignment/package.json index c54b10252d..335a4e6269 100644 --- a/samples/inputs/button-group/alignment/package.json +++ b/samples/inputs/button-group/alignment/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button-group/overview/package.json b/samples/inputs/button-group/overview/package.json index dd2553dcfb..4fa2383041 100644 --- a/samples/inputs/button-group/overview/package.json +++ b/samples/inputs/button-group/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button-group/selection/package.json b/samples/inputs/button-group/selection/package.json index 18b84ef448..883673ad1a 100644 --- a/samples/inputs/button-group/selection/package.json +++ b/samples/inputs/button-group/selection/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button-group/size/package.json b/samples/inputs/button-group/size/package.json index e68db28ff5..b59eac46dc 100644 --- a/samples/inputs/button-group/size/package.json +++ b/samples/inputs/button-group/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button-group/styling/package.json b/samples/inputs/button-group/styling/package.json index 466673df30..7fb5cc870f 100644 --- a/samples/inputs/button-group/styling/package.json +++ b/samples/inputs/button-group/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button/contained/package.json b/samples/inputs/button/contained/package.json index 4949eed618..dc96bfded4 100644 --- a/samples/inputs/button/contained/package.json +++ b/samples/inputs/button/contained/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button/download/package.json b/samples/inputs/button/download/package.json index 8ff72eddfc..59c0994b5c 100644 --- a/samples/inputs/button/download/package.json +++ b/samples/inputs/button/download/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button/fab/package.json b/samples/inputs/button/fab/package.json index ab9334c21e..bbb4c7cfba 100644 --- a/samples/inputs/button/fab/package.json +++ b/samples/inputs/button/fab/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button/flat/package.json b/samples/inputs/button/flat/package.json index 40ab568515..cd1f1bb2d8 100644 --- a/samples/inputs/button/flat/package.json +++ b/samples/inputs/button/flat/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button/outlined/package.json b/samples/inputs/button/outlined/package.json index 12308c32cb..b449ae8709 100644 --- a/samples/inputs/button/outlined/package.json +++ b/samples/inputs/button/outlined/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button/overview/package.json b/samples/inputs/button/overview/package.json index f80ea4d972..dd4580987e 100644 --- a/samples/inputs/button/overview/package.json +++ b/samples/inputs/button/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button/size/package.json b/samples/inputs/button/size/package.json index f62ea65210..1be44f95a0 100644 --- a/samples/inputs/button/size/package.json +++ b/samples/inputs/button/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button/styling/package.json b/samples/inputs/button/styling/package.json index 94ca763338..d11d0f9dae 100644 --- a/samples/inputs/button/styling/package.json +++ b/samples/inputs/button/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/checkbox/checking/package.json b/samples/inputs/checkbox/checking/package.json index 6ed2543959..225366ba45 100644 --- a/samples/inputs/checkbox/checking/package.json +++ b/samples/inputs/checkbox/checking/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/checkbox/disabled/package.json b/samples/inputs/checkbox/disabled/package.json index 58a163bdf9..ef94d97df7 100644 --- a/samples/inputs/checkbox/disabled/package.json +++ b/samples/inputs/checkbox/disabled/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/checkbox/indeterminate/package.json b/samples/inputs/checkbox/indeterminate/package.json index a8e60f5e3b..0817b4a8f1 100644 --- a/samples/inputs/checkbox/indeterminate/package.json +++ b/samples/inputs/checkbox/indeterminate/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/checkbox/label/package.json b/samples/inputs/checkbox/label/package.json index d44c75a4f2..bfeb7ed512 100644 --- a/samples/inputs/checkbox/label/package.json +++ b/samples/inputs/checkbox/label/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/checkbox/overview/package.json b/samples/inputs/checkbox/overview/package.json index 4e321b7372..e0b93da64e 100644 --- a/samples/inputs/checkbox/overview/package.json +++ b/samples/inputs/checkbox/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/chip/multiple/package.json b/samples/inputs/chip/multiple/package.json index 6ed2543959..225366ba45 100644 --- a/samples/inputs/chip/multiple/package.json +++ b/samples/inputs/chip/multiple/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/chip/overview/package.json b/samples/inputs/chip/overview/package.json index 6ed2543959..225366ba45 100644 --- a/samples/inputs/chip/overview/package.json +++ b/samples/inputs/chip/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/chip/size/package.json b/samples/inputs/chip/size/package.json index 6ed2543959..225366ba45 100644 --- a/samples/inputs/chip/size/package.json +++ b/samples/inputs/chip/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/chip/styling/package.json b/samples/inputs/chip/styling/package.json index 6ed2543959..225366ba45 100644 --- a/samples/inputs/chip/styling/package.json +++ b/samples/inputs/chip/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/chip/variants/package.json b/samples/inputs/chip/variants/package.json index 6ed2543959..225366ba45 100644 --- a/samples/inputs/chip/variants/package.json +++ b/samples/inputs/chip/variants/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/circular-progress-indicator/dynamic/package.json b/samples/inputs/circular-progress-indicator/dynamic/package.json index ff1ca00c85..3662806aa4 100644 --- a/samples/inputs/circular-progress-indicator/dynamic/package.json +++ b/samples/inputs/circular-progress-indicator/dynamic/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/circular-progress-indicator/indeterminate/package.json b/samples/inputs/circular-progress-indicator/indeterminate/package.json index 969478bf46..5a5101e358 100644 --- a/samples/inputs/circular-progress-indicator/indeterminate/package.json +++ b/samples/inputs/circular-progress-indicator/indeterminate/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/circular-progress-indicator/simple/package.json b/samples/inputs/circular-progress-indicator/simple/package.json index 41034a29fc..72e198987d 100644 --- a/samples/inputs/circular-progress-indicator/simple/package.json +++ b/samples/inputs/circular-progress-indicator/simple/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/circular-progress-indicator/styling/package.json b/samples/inputs/circular-progress-indicator/styling/package.json index 0c80c08f9a..3c7836d1c8 100644 --- a/samples/inputs/circular-progress-indicator/styling/package.json +++ b/samples/inputs/circular-progress-indicator/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/combo/features/package.json b/samples/inputs/combo/features/package.json index db80011f06..da861f6d0c 100644 --- a/samples/inputs/combo/features/package.json +++ b/samples/inputs/combo/features/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.0.0", "tslib": "^2.0.0" diff --git a/samples/inputs/combo/overview/package.json b/samples/inputs/combo/overview/package.json index 3cde3bc6a3..66a06bedf6 100644 --- a/samples/inputs/combo/overview/package.json +++ b/samples/inputs/combo/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.0.0", "tslib": "^2.0.0" diff --git a/samples/inputs/combo/selection/package.json b/samples/inputs/combo/selection/package.json index a8eace3d4a..6585add51b 100644 --- a/samples/inputs/combo/selection/package.json +++ b/samples/inputs/combo/selection/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.0.0", "tslib": "^2.0.0" diff --git a/samples/inputs/combo/simplified/package.json b/samples/inputs/combo/simplified/package.json index 835f5550b6..e3590af662 100644 --- a/samples/inputs/combo/simplified/package.json +++ b/samples/inputs/combo/simplified/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.0.0", "tslib": "^2.0.0" diff --git a/samples/inputs/combo/styling/package.json b/samples/inputs/combo/styling/package.json index bea4a5da2e..6b573decb7 100644 --- a/samples/inputs/combo/styling/package.json +++ b/samples/inputs/combo/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.0.0", "tslib": "^2.0.0" diff --git a/samples/inputs/combo/templates/package.json b/samples/inputs/combo/templates/package.json index edb3d32e87..8e3ce1a769 100644 --- a/samples/inputs/combo/templates/package.json +++ b/samples/inputs/combo/templates/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.0.0", "tslib": "^2.0.0" diff --git a/samples/inputs/date-time-input/input-format-display-format/package.json b/samples/inputs/date-time-input/input-format-display-format/package.json index 92b69c11d4..45bd865005 100644 --- a/samples/inputs/date-time-input/input-format-display-format/package.json +++ b/samples/inputs/date-time-input/input-format-display-format/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/date-time-input/min-max-value/package.json b/samples/inputs/date-time-input/min-max-value/package.json index 78f483fbf6..e5c718ce41 100644 --- a/samples/inputs/date-time-input/min-max-value/package.json +++ b/samples/inputs/date-time-input/min-max-value/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/date-time-input/overview/package.json b/samples/inputs/date-time-input/overview/package.json index 421b901621..36122396ac 100644 --- a/samples/inputs/date-time-input/overview/package.json +++ b/samples/inputs/date-time-input/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/date-time-input/step-up-down/package.json b/samples/inputs/date-time-input/step-up-down/package.json index e8c00daa93..48c50d81db 100644 --- a/samples/inputs/date-time-input/step-up-down/package.json +++ b/samples/inputs/date-time-input/step-up-down/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/dropdown/group/package.json b/samples/inputs/dropdown/group/package.json index 42d54c0728..f1a2c8a50b 100644 --- a/samples/inputs/dropdown/group/package.json +++ b/samples/inputs/dropdown/group/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/dropdown/header/package.json b/samples/inputs/dropdown/header/package.json index 2ddfe43148..d80469c339 100644 --- a/samples/inputs/dropdown/header/package.json +++ b/samples/inputs/dropdown/header/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/dropdown/item/package.json b/samples/inputs/dropdown/item/package.json index 3914e28109..d62e0c0301 100644 --- a/samples/inputs/dropdown/item/package.json +++ b/samples/inputs/dropdown/item/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/dropdown/overview/package.json b/samples/inputs/dropdown/overview/package.json index 56772f87c9..65b60b4a4e 100644 --- a/samples/inputs/dropdown/overview/package.json +++ b/samples/inputs/dropdown/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/dropdown/position/package.json b/samples/inputs/dropdown/position/package.json index cda4e5076c..d5017c5701 100644 --- a/samples/inputs/dropdown/position/package.json +++ b/samples/inputs/dropdown/position/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/dropdown/styling/package.json b/samples/inputs/dropdown/styling/package.json index 360e5d4f6e..4df95f2493 100644 --- a/samples/inputs/dropdown/styling/package.json +++ b/samples/inputs/dropdown/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/dropdown/target/package.json b/samples/inputs/dropdown/target/package.json index daaa95cf94..b794380951 100644 --- a/samples/inputs/dropdown/target/package.json +++ b/samples/inputs/dropdown/target/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/form/overview/package.json b/samples/inputs/form/overview/package.json index 261d06277a..a7cba6d2dd 100644 --- a/samples/inputs/form/overview/package.json +++ b/samples/inputs/form/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/icon-button/size/package.json b/samples/inputs/icon-button/size/package.json index 4949eed618..dc96bfded4 100644 --- a/samples/inputs/icon-button/size/package.json +++ b/samples/inputs/icon-button/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/icon-button/styling/package.json b/samples/inputs/icon-button/styling/package.json index 4949eed618..dc96bfded4 100644 --- a/samples/inputs/icon-button/styling/package.json +++ b/samples/inputs/icon-button/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/icon-button/variant/package.json b/samples/inputs/icon-button/variant/package.json index 4949eed618..dc96bfded4 100644 --- a/samples/inputs/icon-button/variant/package.json +++ b/samples/inputs/icon-button/variant/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/input/helper-text/package.json b/samples/inputs/input/helper-text/package.json index 4569511012..b83e7e5b7f 100644 --- a/samples/inputs/input/helper-text/package.json +++ b/samples/inputs/input/helper-text/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/input/overview/package.json b/samples/inputs/input/overview/package.json index 145b3de4f6..64f1bd606b 100644 --- a/samples/inputs/input/overview/package.json +++ b/samples/inputs/input/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/input/prefix-suffix/package.json b/samples/inputs/input/prefix-suffix/package.json index 54cc4eb4fa..6e69211a2f 100644 --- a/samples/inputs/input/prefix-suffix/package.json +++ b/samples/inputs/input/prefix-suffix/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/input/size/package.json b/samples/inputs/input/size/package.json index 881ec93df6..05c273955b 100644 --- a/samples/inputs/input/size/package.json +++ b/samples/inputs/input/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/input/styling/package.json b/samples/inputs/input/styling/package.json index 6f01362763..678d6dd5aa 100644 --- a/samples/inputs/input/styling/package.json +++ b/samples/inputs/input/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/linear-progress-indicator/dynamic/package.json b/samples/inputs/linear-progress-indicator/dynamic/package.json index ff1ca00c85..3662806aa4 100644 --- a/samples/inputs/linear-progress-indicator/dynamic/package.json +++ b/samples/inputs/linear-progress-indicator/dynamic/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/linear-progress-indicator/simple/package.json b/samples/inputs/linear-progress-indicator/simple/package.json index b680ed573b..d7275a8a05 100644 --- a/samples/inputs/linear-progress-indicator/simple/package.json +++ b/samples/inputs/linear-progress-indicator/simple/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/linear-progress-indicator/striped/package.json b/samples/inputs/linear-progress-indicator/striped/package.json index 197afdb97b..b9abc228ad 100644 --- a/samples/inputs/linear-progress-indicator/striped/package.json +++ b/samples/inputs/linear-progress-indicator/striped/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/linear-progress-indicator/styling/package.json b/samples/inputs/linear-progress-indicator/styling/package.json index 6e930bdba9..5d7f8d3ed3 100644 --- a/samples/inputs/linear-progress-indicator/styling/package.json +++ b/samples/inputs/linear-progress-indicator/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/linear-progress-indicator/types/package.json b/samples/inputs/linear-progress-indicator/types/package.json index 0c5e2c4802..19ebc9ff7f 100644 --- a/samples/inputs/linear-progress-indicator/types/package.json +++ b/samples/inputs/linear-progress-indicator/types/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/mask-input/applying-mask/package.json b/samples/inputs/mask-input/applying-mask/package.json index 598fe2b81b..0eabb953ce 100644 --- a/samples/inputs/mask-input/applying-mask/package.json +++ b/samples/inputs/mask-input/applying-mask/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/mask-input/overview/package.json b/samples/inputs/mask-input/overview/package.json index 0e613e1304..ba99747bd1 100644 --- a/samples/inputs/mask-input/overview/package.json +++ b/samples/inputs/mask-input/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/mask-input/value-modes/package.json b/samples/inputs/mask-input/value-modes/package.json index d76aa7846a..0275a89b59 100644 --- a/samples/inputs/mask-input/value-modes/package.json +++ b/samples/inputs/mask-input/value-modes/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/radio/alignment/package.json b/samples/inputs/radio/alignment/package.json index ec34933833..789e8259de 100644 --- a/samples/inputs/radio/alignment/package.json +++ b/samples/inputs/radio/alignment/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/radio/disabled/package.json b/samples/inputs/radio/disabled/package.json index 18589d0bf0..03ac46ed12 100644 --- a/samples/inputs/radio/disabled/package.json +++ b/samples/inputs/radio/disabled/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/radio/group/package.json b/samples/inputs/radio/group/package.json index f2fc2a9ead..2d8c3034c1 100644 --- a/samples/inputs/radio/group/package.json +++ b/samples/inputs/radio/group/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/radio/invalid/package.json b/samples/inputs/radio/invalid/package.json index 2a15240f7c..f6ec5b584e 100644 --- a/samples/inputs/radio/invalid/package.json +++ b/samples/inputs/radio/invalid/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/radio/label/package.json b/samples/inputs/radio/label/package.json index 0053d65838..97fa239254 100644 --- a/samples/inputs/radio/label/package.json +++ b/samples/inputs/radio/label/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/radio/styling/package.json b/samples/inputs/radio/styling/package.json index 5971da7cf1..98fd57d383 100644 --- a/samples/inputs/radio/styling/package.json +++ b/samples/inputs/radio/styling/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/rating/basic/package.json b/samples/inputs/rating/basic/package.json index 7e03e21e91..eb9bb50712 100644 --- a/samples/inputs/rating/basic/package.json +++ b/samples/inputs/rating/basic/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/rating/custom/package.json b/samples/inputs/rating/custom/package.json index 2f5a2973a3..b871dc1896 100644 --- a/samples/inputs/rating/custom/package.json +++ b/samples/inputs/rating/custom/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/rating/empty/package.json b/samples/inputs/rating/empty/package.json index fa7c86be79..b7402537e4 100644 --- a/samples/inputs/rating/empty/package.json +++ b/samples/inputs/rating/empty/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/rating/single-selection/package.json b/samples/inputs/rating/single-selection/package.json index 55741d399e..2a96e5b6d8 100644 --- a/samples/inputs/rating/single-selection/package.json +++ b/samples/inputs/rating/single-selection/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/rating/styling/package.json b/samples/inputs/rating/styling/package.json index 7e03e21e91..eb9bb50712 100644 --- a/samples/inputs/rating/styling/package.json +++ b/samples/inputs/rating/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/ripple/button/package.json b/samples/inputs/ripple/button/package.json index 46a554d1e7..4b577f3d0c 100644 --- a/samples/inputs/ripple/button/package.json +++ b/samples/inputs/ripple/button/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/ripple/color/package.json b/samples/inputs/ripple/color/package.json index 774dfd8c33..59ec1c5914 100644 --- a/samples/inputs/ripple/color/package.json +++ b/samples/inputs/ripple/color/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/select/group/package.json b/samples/inputs/select/group/package.json index bcfc26d21b..6e34e0e254 100644 --- a/samples/inputs/select/group/package.json +++ b/samples/inputs/select/group/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/select/header/package.json b/samples/inputs/select/header/package.json index 480a52caae..863dbcfff6 100644 --- a/samples/inputs/select/header/package.json +++ b/samples/inputs/select/header/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/select/item/package.json b/samples/inputs/select/item/package.json index c62ac2b4df..b9833e8528 100644 --- a/samples/inputs/select/item/package.json +++ b/samples/inputs/select/item/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/select/overview/package.json b/samples/inputs/select/overview/package.json index 006a863b17..93df8f8f73 100644 --- a/samples/inputs/select/overview/package.json +++ b/samples/inputs/select/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/select/styling/package.json b/samples/inputs/select/styling/package.json index 22bc86cd39..470c8eb310 100644 --- a/samples/inputs/select/styling/package.json +++ b/samples/inputs/select/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/constraints/package.json b/samples/inputs/slider/constraints/package.json index 31bab3a191..9a9a754e9e 100644 --- a/samples/inputs/slider/constraints/package.json +++ b/samples/inputs/slider/constraints/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/disabled/package.json b/samples/inputs/slider/disabled/package.json index a3714fcd37..85d74acb85 100644 --- a/samples/inputs/slider/disabled/package.json +++ b/samples/inputs/slider/disabled/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/discrete/package.json b/samples/inputs/slider/discrete/package.json index ece06254e1..1931862a7c 100644 --- a/samples/inputs/slider/discrete/package.json +++ b/samples/inputs/slider/discrete/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/labels/package.json b/samples/inputs/slider/labels/package.json index 3c83efb9cb..d3bdac34f4 100644 --- a/samples/inputs/slider/labels/package.json +++ b/samples/inputs/slider/labels/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/overview/package.json b/samples/inputs/slider/overview/package.json index 2cdf66bdfc..3024e8a9dd 100644 --- a/samples/inputs/slider/overview/package.json +++ b/samples/inputs/slider/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/styling/package.json b/samples/inputs/slider/styling/package.json index 0ea2e23a1b..0314b63132 100644 --- a/samples/inputs/slider/styling/package.json +++ b/samples/inputs/slider/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/tick-labels/package.json b/samples/inputs/slider/tick-labels/package.json index 453cc8ceeb..a75ed99c45 100644 --- a/samples/inputs/slider/tick-labels/package.json +++ b/samples/inputs/slider/tick-labels/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/ticks/package.json b/samples/inputs/slider/ticks/package.json index a5de5c10de..43527e1b7a 100644 --- a/samples/inputs/slider/ticks/package.json +++ b/samples/inputs/slider/ticks/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/value-format/package.json b/samples/inputs/slider/value-format/package.json index 92147ae260..4ea0824ff3 100644 --- a/samples/inputs/slider/value-format/package.json +++ b/samples/inputs/slider/value-format/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/value/package.json b/samples/inputs/slider/value/package.json index cff953abd1..68a170c6fc 100644 --- a/samples/inputs/slider/value/package.json +++ b/samples/inputs/slider/value/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/switches/checking/package.json b/samples/inputs/switches/checking/package.json index e381a80891..2008f5de63 100644 --- a/samples/inputs/switches/checking/package.json +++ b/samples/inputs/switches/checking/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/switches/disabled/package.json b/samples/inputs/switches/disabled/package.json index e7014389aa..4f1cde0832 100644 --- a/samples/inputs/switches/disabled/package.json +++ b/samples/inputs/switches/disabled/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/switches/label/package.json b/samples/inputs/switches/label/package.json index 6c8a96644b..4fea912ee9 100644 --- a/samples/inputs/switches/label/package.json +++ b/samples/inputs/switches/label/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/switches/overview/package.json b/samples/inputs/switches/overview/package.json index 5303b2ddb5..f499954298 100644 --- a/samples/inputs/switches/overview/package.json +++ b/samples/inputs/switches/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/accordion/customization/package.json b/samples/layouts/accordion/customization/package.json index 55f44fa39a..c87b5b50e7 100644 --- a/samples/layouts/accordion/customization/package.json +++ b/samples/layouts/accordion/customization/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/accordion/nested-scenario/package.json b/samples/layouts/accordion/nested-scenario/package.json index 55f44fa39a..c87b5b50e7 100644 --- a/samples/layouts/accordion/nested-scenario/package.json +++ b/samples/layouts/accordion/nested-scenario/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/accordion/overview/package.json b/samples/layouts/accordion/overview/package.json index 55f44fa39a..c87b5b50e7 100644 --- a/samples/layouts/accordion/overview/package.json +++ b/samples/layouts/accordion/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/avatar/icon/package.json b/samples/layouts/avatar/icon/package.json index 95e4204011..5dd43c1e54 100644 --- a/samples/layouts/avatar/icon/package.json +++ b/samples/layouts/avatar/icon/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/avatar/image/package.json b/samples/layouts/avatar/image/package.json index f6f941cb71..a7e93c83b2 100644 --- a/samples/layouts/avatar/image/package.json +++ b/samples/layouts/avatar/image/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/avatar/initials/package.json b/samples/layouts/avatar/initials/package.json index 84d5a2887c..61a7f3a0b0 100644 --- a/samples/layouts/avatar/initials/package.json +++ b/samples/layouts/avatar/initials/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/avatar/shape/package.json b/samples/layouts/avatar/shape/package.json index fb0fa1d1d8..b6759ae447 100644 --- a/samples/layouts/avatar/shape/package.json +++ b/samples/layouts/avatar/shape/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/avatar/size/package.json b/samples/layouts/avatar/size/package.json index 62c996cfa0..1012137dcd 100644 --- a/samples/layouts/avatar/size/package.json +++ b/samples/layouts/avatar/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/card/horizontal/package.json b/samples/layouts/card/horizontal/package.json index f5da1e6013..c762f6534b 100644 --- a/samples/layouts/card/horizontal/package.json +++ b/samples/layouts/card/horizontal/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/card/integration/package.json b/samples/layouts/card/integration/package.json index 188f6e4436..382a3d8c4e 100644 --- a/samples/layouts/card/integration/package.json +++ b/samples/layouts/card/integration/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/card/overview/package.json b/samples/layouts/card/overview/package.json index c5dcf52f61..0eebf14f47 100644 --- a/samples/layouts/card/overview/package.json +++ b/samples/layouts/card/overview/package.json @@ -24,7 +24,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/card/semi-horizontal/package.json b/samples/layouts/card/semi-horizontal/package.json index d91515c4ac..843b00378b 100644 --- a/samples/layouts/card/semi-horizontal/package.json +++ b/samples/layouts/card/semi-horizontal/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/card/styling/package.json b/samples/layouts/card/styling/package.json index f59e02edc6..1ab0000520 100644 --- a/samples/layouts/card/styling/package.json +++ b/samples/layouts/card/styling/package.json @@ -24,7 +24,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/dock-manager/embedding-frames/package.json b/samples/layouts/dock-manager/embedding-frames/package.json index 83de23b486..95be9d4d15 100644 --- a/samples/layouts/dock-manager/embedding-frames/package.json +++ b/samples/layouts/dock-manager/embedding-frames/package.json @@ -24,7 +24,7 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-dockmanager": "1.14.2", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/dock-manager/hiding-panes/package.json b/samples/layouts/dock-manager/hiding-panes/package.json index 91dac0dfcb..837142cb1f 100644 --- a/samples/layouts/dock-manager/hiding-panes/package.json +++ b/samples/layouts/dock-manager/hiding-panes/package.json @@ -24,7 +24,7 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-dockmanager": "1.14.2", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/dock-manager/overview/package.json b/samples/layouts/dock-manager/overview/package.json index 4acb62e15b..7c7147d46e 100644 --- a/samples/layouts/dock-manager/overview/package.json +++ b/samples/layouts/dock-manager/overview/package.json @@ -24,7 +24,7 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-dockmanager": "1.14.2", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/dock-manager/styling/package.json b/samples/layouts/dock-manager/styling/package.json index 0283969a74..93159f3a90 100644 --- a/samples/layouts/dock-manager/styling/package.json +++ b/samples/layouts/dock-manager/styling/package.json @@ -25,8 +25,8 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-dockmanager": "1.14.2", - "igniteui-webcomponents": "4.5.0", - "igniteui-webcomponents-core": "4.3.3-beta.1", + "igniteui-webcomponents": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/dock-manager/updating-panes/package.json b/samples/layouts/dock-manager/updating-panes/package.json index ffb648fb54..6554da4d3b 100644 --- a/samples/layouts/dock-manager/updating-panes/package.json +++ b/samples/layouts/dock-manager/updating-panes/package.json @@ -24,10 +24,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-dockmanager": "1.14.2", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-gauges": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-gauges": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/expansion-panel/component-customization/package.json b/samples/layouts/expansion-panel/component-customization/package.json index ca8ace68b4..5339b833d2 100644 --- a/samples/layouts/expansion-panel/component-customization/package.json +++ b/samples/layouts/expansion-panel/component-customization/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/expansion-panel/properties-and-events/package.json b/samples/layouts/expansion-panel/properties-and-events/package.json index 1ab1352b82..9517ecf9e6 100644 --- a/samples/layouts/expansion-panel/properties-and-events/package.json +++ b/samples/layouts/expansion-panel/properties-and-events/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/expansion-panel/styling/package.json b/samples/layouts/expansion-panel/styling/package.json index 02579f8727..cdd867254b 100644 --- a/samples/layouts/expansion-panel/styling/package.json +++ b/samples/layouts/expansion-panel/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/expansion-panel/usage/package.json b/samples/layouts/expansion-panel/usage/package.json index 55f44fa39a..c87b5b50e7 100644 --- a/samples/layouts/expansion-panel/usage/package.json +++ b/samples/layouts/expansion-panel/usage/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/icon/sizing/package.json b/samples/layouts/icon/sizing/package.json index 37438924bb..9e148d4fad 100644 --- a/samples/layouts/icon/sizing/package.json +++ b/samples/layouts/icon/sizing/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/icon/styling/package.json b/samples/layouts/icon/styling/package.json index 37438924bb..9e148d4fad 100644 --- a/samples/layouts/icon/styling/package.json +++ b/samples/layouts/icon/styling/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/stepper/animations/package.json b/samples/layouts/stepper/animations/package.json index 0d367d1407..46d908ca47 100644 --- a/samples/layouts/stepper/animations/package.json +++ b/samples/layouts/stepper/animations/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "install": "^0.13.0", "lit": "^2.1.1", "lit-html": "^2.0.0", diff --git a/samples/layouts/stepper/linear/package.json b/samples/layouts/stepper/linear/package.json index 4e7e22c07e..c9ddd91e13 100644 --- a/samples/layouts/stepper/linear/package.json +++ b/samples/layouts/stepper/linear/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "install": "^0.13.0", "lit": "^2.1.1", "lit-html": "^2.0.0", diff --git a/samples/layouts/stepper/orientation/package.json b/samples/layouts/stepper/orientation/package.json index e11dfb0a49..4d1e9dcc45 100644 --- a/samples/layouts/stepper/orientation/package.json +++ b/samples/layouts/stepper/orientation/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "install": "^0.13.0", "lit": "^2.1.1", "lit-html": "^2.0.0", diff --git a/samples/layouts/stepper/overview/package.json b/samples/layouts/stepper/overview/package.json index 20a7e65e63..8e4409f920 100644 --- a/samples/layouts/stepper/overview/package.json +++ b/samples/layouts/stepper/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "install": "^0.13.0", "lit": "^2.1.1", "lit-html": "^2.0.0", diff --git a/samples/layouts/stepper/steptypes/package.json b/samples/layouts/stepper/steptypes/package.json index cdbee4dc96..7cd1baa77c 100644 --- a/samples/layouts/stepper/steptypes/package.json +++ b/samples/layouts/stepper/steptypes/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "install": "^0.13.0", "lit": "^2.1.1", "lit-html": "^2.0.0", diff --git a/samples/layouts/tabs/alignment/package.json b/samples/layouts/tabs/alignment/package.json index 7876976ffa..d735fe6a5e 100644 --- a/samples/layouts/tabs/alignment/package.json +++ b/samples/layouts/tabs/alignment/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/tabs/overview/package.json b/samples/layouts/tabs/overview/package.json index 1aa6661f55..19ebfa0a58 100644 --- a/samples/layouts/tabs/overview/package.json +++ b/samples/layouts/tabs/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/tabs/prefix-suffix/package.json b/samples/layouts/tabs/prefix-suffix/package.json index cecabd314c..e26ce54575 100644 --- a/samples/layouts/tabs/prefix-suffix/package.json +++ b/samples/layouts/tabs/prefix-suffix/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/tabs/scrolling/package.json b/samples/layouts/tabs/scrolling/package.json index 5fe2772e2d..536cd06025 100644 --- a/samples/layouts/tabs/scrolling/package.json +++ b/samples/layouts/tabs/scrolling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 26e1772993..e2080c53fd 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 bf84a0e61d..1069044951 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 1583268abc..04e361e4d4 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 75229ef34c..c787aca937 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 7fa1063575..03e53c435d 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 93ca256f92..257ad3098c 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index e0ee80aea2..a958ea70f2 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 9aa95dd096..28c73740ac 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 1580131aed..ebbab45f5f 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/display-all-imagery/package.json b/samples/maps/geo-map/display-all-imagery/package.json index 40ab1fe69e..239b2d944a 100644 --- a/samples/maps/geo-map/display-all-imagery/package.json +++ b/samples/maps/geo-map/display-all-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 8bdb68ca74..2706ea7e84 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 414dc9b73d..debdba2d99 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index ddd8825eb2..a3b3a26831 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.0.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 01522eb2cf..9cd0a32469 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 5a5d70761d..6dcbf63d5f 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index b29a596ea8..5fb42e7e80 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 58ddc2e57f..a9f7897958 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index ff65d49469..6ecc740049 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 666ded7254..98a1c535bc 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/synchronization/package.json b/samples/maps/geo-map/synchronization/package.json index 80cc29e06c..39dde10419 100644 --- a/samples/maps/geo-map/synchronization/package.json +++ b/samples/maps/geo-map/synchronization/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 66fea58713..8fd8666742 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 02bf0e4a0e..98c9e66709 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 6bf1cc8cca..a6794ddbf9 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 1c8a1f3b39..92fbe7347a 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 c5a8b4174a..797ae8ea2e 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 cb6dfb2137..2a9ed113b6 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 0b05a78386..c08e0cca64 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, 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 46114303c7..30fb3e8286 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "4.3.3-beta.1", - "igniteui-webcomponents-core": "4.3.3-beta.1", - "igniteui-webcomponents-maps": "4.3.3-beta.1", + "igniteui-webcomponents-charts": "4.6.0", + "igniteui-webcomponents-core": "4.6.0", + "igniteui-webcomponents-maps": "4.6.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" }, diff --git a/samples/menus/nav-bar/overview/package.json b/samples/menus/nav-bar/overview/package.json index 6ffe273e31..4f3ddb9b96 100644 --- a/samples/menus/nav-bar/overview/package.json +++ b/samples/menus/nav-bar/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/menus/nav-bar/styling/package.json b/samples/menus/nav-bar/styling/package.json index 450fb9c61e..f70050f6e5 100644 --- a/samples/menus/nav-bar/styling/package.json +++ b/samples/menus/nav-bar/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/menus/nav-drawer/add-drawer-items/package.json b/samples/menus/nav-drawer/add-drawer-items/package.json index 4a129d27d0..096c920a1a 100644 --- a/samples/menus/nav-drawer/add-drawer-items/package.json +++ b/samples/menus/nav-drawer/add-drawer-items/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/menus/nav-drawer/add-mini/package.json b/samples/menus/nav-drawer/add-mini/package.json index eae4dadb39..3163417a8b 100644 --- a/samples/menus/nav-drawer/add-mini/package.json +++ b/samples/menus/nav-drawer/add-mini/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/menus/nav-drawer/add-positions-navbar/package.json b/samples/menus/nav-drawer/add-positions-navbar/package.json index e5c69725ad..c674ec263e 100644 --- a/samples/menus/nav-drawer/add-positions-navbar/package.json +++ b/samples/menus/nav-drawer/add-positions-navbar/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/menus/nav-drawer/styling/package.json b/samples/menus/nav-drawer/styling/package.json index 6bc3583542..579b9b7184 100644 --- a/samples/menus/nav-drawer/styling/package.json +++ b/samples/menus/nav-drawer/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/dialog/closing-variations/package.json b/samples/notifications/dialog/closing-variations/package.json index 79ffb01a75..02c6a8db4c 100644 --- a/samples/notifications/dialog/closing-variations/package.json +++ b/samples/notifications/dialog/closing-variations/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/dialog/form/package.json b/samples/notifications/dialog/form/package.json index fe7a8278e3..5d02449007 100644 --- a/samples/notifications/dialog/form/package.json +++ b/samples/notifications/dialog/form/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/dialog/overview/package.json b/samples/notifications/dialog/overview/package.json index 73f79b4551..9675638059 100644 --- a/samples/notifications/dialog/overview/package.json +++ b/samples/notifications/dialog/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/dialog/styling/package.json b/samples/notifications/dialog/styling/package.json index d7ba23289f..af6603d7b4 100644 --- a/samples/notifications/dialog/styling/package.json +++ b/samples/notifications/dialog/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/snackbar/action-text/package.json b/samples/notifications/snackbar/action-text/package.json index 7b1ade337d..53927313ae 100644 --- a/samples/notifications/snackbar/action-text/package.json +++ b/samples/notifications/snackbar/action-text/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/snackbar/display-time/package.json b/samples/notifications/snackbar/display-time/package.json index 7b1ade337d..53927313ae 100644 --- a/samples/notifications/snackbar/display-time/package.json +++ b/samples/notifications/snackbar/display-time/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/snackbar/overview/package.json b/samples/notifications/snackbar/overview/package.json index 7b1ade337d..53927313ae 100644 --- a/samples/notifications/snackbar/overview/package.json +++ b/samples/notifications/snackbar/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/snackbar/styling/package.json b/samples/notifications/snackbar/styling/package.json index 7b1ade337d..53927313ae 100644 --- a/samples/notifications/snackbar/styling/package.json +++ b/samples/notifications/snackbar/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/toast/overview/package.json b/samples/notifications/toast/overview/package.json index 6ed2543959..225366ba45 100644 --- a/samples/notifications/toast/overview/package.json +++ b/samples/notifications/toast/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/toast/properties/package.json b/samples/notifications/toast/properties/package.json index 6ed2543959..225366ba45 100644 --- a/samples/notifications/toast/properties/package.json +++ b/samples/notifications/toast/properties/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/toast/styling/package.json b/samples/notifications/toast/styling/package.json index 6ed2543959..225366ba45 100644 --- a/samples/notifications/toast/styling/package.json +++ b/samples/notifications/toast/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.2", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/disabled-dates/package.json b/samples/scheduling/calendar/disabled-dates/package.json index af5c5ac00c..712718046c 100644 --- a/samples/scheduling/calendar/disabled-dates/package.json +++ b/samples/scheduling/calendar/disabled-dates/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/formatting/package.json b/samples/scheduling/calendar/formatting/package.json index 2ff9f34a6b..6c1af73164 100644 --- a/samples/scheduling/calendar/formatting/package.json +++ b/samples/scheduling/calendar/formatting/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/header/package.json b/samples/scheduling/calendar/header/package.json index f25b103fc3..14dd8a9abc 100644 --- a/samples/scheduling/calendar/header/package.json +++ b/samples/scheduling/calendar/header/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/multiple-months/package.json b/samples/scheduling/calendar/multiple-months/package.json index f77a61c2c6..fa040932c2 100644 --- a/samples/scheduling/calendar/multiple-months/package.json +++ b/samples/scheduling/calendar/multiple-months/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/multiple-selection/package.json b/samples/scheduling/calendar/multiple-selection/package.json index 4d43a78358..3331d288c4 100644 --- a/samples/scheduling/calendar/multiple-selection/package.json +++ b/samples/scheduling/calendar/multiple-selection/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/overview/package.json b/samples/scheduling/calendar/overview/package.json index 7266486b5c..9fea4ee822 100644 --- a/samples/scheduling/calendar/overview/package.json +++ b/samples/scheduling/calendar/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/range-selection/package.json b/samples/scheduling/calendar/range-selection/package.json index 0535f876ae..9dff1c5836 100644 --- a/samples/scheduling/calendar/range-selection/package.json +++ b/samples/scheduling/calendar/range-selection/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/size/package.json b/samples/scheduling/calendar/size/package.json index f406486bec..93c61a8485 100644 --- a/samples/scheduling/calendar/size/package.json +++ b/samples/scheduling/calendar/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/special-dates/package.json b/samples/scheduling/calendar/special-dates/package.json index 7921726047..0b1f7f5b07 100644 --- a/samples/scheduling/calendar/special-dates/package.json +++ b/samples/scheduling/calendar/special-dates/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/styling/package.json b/samples/scheduling/calendar/styling/package.json index 7ded67f98f..95dfb35fc4 100644 --- a/samples/scheduling/calendar/styling/package.json +++ b/samples/scheduling/calendar/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/week-numbers/package.json b/samples/scheduling/calendar/week-numbers/package.json index 83ac28ecd3..c06e1f9409 100644 --- a/samples/scheduling/calendar/week-numbers/package.json +++ b/samples/scheduling/calendar/week-numbers/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.5.0", + "igniteui-webcomponents": "4.6.0", "lit": "^2.0.0", "lit-html": "^2.2.0", "tslib": "^2.0.0"