diff --git a/CODEOWNERS b/.github/CODEOWNERS similarity index 100% rename from CODEOWNERS rename to .github/CODEOWNERS diff --git a/README.md b/README.md index c97bc4c64f..101d60da07 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,7 @@ Follow these instructions to run all samples locally in a browser application. This will install required packages and [Ignite UI for Web Components](https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/general-getting-started.html) packages from npm website: - [igniteui-webcomponents-core](https://www.npmjs.com/package/igniteui-webcomponents-core) +- [igniteui-webcomponents-core](https://www.npmjs.com/package/igniteui-webcomponents-dashboards) - [igniteui-webcomponents-charts](https://www.npmjs.com/package/igniteui-webcomponents-charts) - [igniteui-webcomponents-excel](https://www.npmjs.com/package/igniteui-webcomponents-excel) - [igniteui-webcomponents-gauges](https://www.npmjs.com/package/igniteui-webcomponents-gauges) @@ -170,6 +171,20 @@ Next, follow these steps: - submit your pull request +## Updating Packages in Samples + +NOTE Do NOT find replace version of packages in package.json files. + +- open this repo in VS Code +- open [./browser/tasks/gulp-samples.js](./browser/tasks/gulp-samples.js) file +- navigate to the `updateIG` function +- update version of packages in `packageUpgrades` array +- open terminal window +- run `cd browser` command +- run the `gulp updateIG` command +- run `npm install --legacy-peer-deps` command +- create AND merge a pull request with changes in all package.json files in this repository +- create 2nd pull request with similar changes in `/editor-templates/WebComponents/main-template/package.json` of the [igniteui-xplat-examples](https://github.com/IgniteUI/igniteui-xplat-examples) repository. ## Learn More diff --git a/browser/config-overrides.js b/browser/config-overrides.js index 73ea2a304d..2f6a9c869b 100644 --- a/browser/config-overrides.js +++ b/browser/config-overrides.js @@ -1,4 +1,5 @@ +//note: I suspect this was copied over from the react browser, and isn't needed here. module.exports = function override(config, env) { console.log("Running config-overrides.js"); const paths = require('./node_modules/react-scripts/config/paths'); @@ -41,16 +42,21 @@ module.exports = function override(config, env) { name: 'igniteui-webcomponents-grids', chunks: 'all', }, - igniteuiMaps: { + igniteuiInputs: { test: /[\\/]node_modules[\\/](igniteui-webcomponents-inputs)[\\/]/, name: 'igniteui-webcomponents-inputs', chunks: 'all', }, - igniteuiMaps: { + igniteuiLayouts: { test: /[\\/]node_modules[\\/](igniteui-webcomponents-layouts)[\\/]/, name: 'igniteui-webcomponents-layouts', chunks: 'all', }, + igniteuiDashboards: { + test: /[\\/]node_modules[\\/](igniteui-webcomponents-dashboards)[\\/]/, + name: 'igniteui-webcomponents-dashboards', + chunks: 'all', + }, igniteuiMaps: { test: /[\\/]node_modules[\\/](igniteui-webcomponents-maps)[\\/]/, name: 'igniteui-webcomponents-maps', diff --git a/browser/public/index.html b/browser/public/index.html index e2c3eb2761..06f2b0fe5b 100644 --- a/browser/public/index.html +++ b/browser/public/index.html @@ -105,6 +105,13 @@ Trendline Value Lines + + diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-all/tsconfig.json b/samples/charts/category-chart/annotations-all/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/annotations-all/tsconfig.json +++ b/samples/charts/category-chart/annotations-all/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/annotations-callouts/index.html b/samples/charts/category-chart/annotations-callouts/index.html index 14c339db1f..94c836090d 100644 --- a/samples/charts/category-chart/annotations-callouts/index.html +++ b/samples/charts/category-chart/annotations-callouts/index.html @@ -52,7 +52,8 @@ crosshairs-annotation-y-axis-precision="0" y-axis-maximum-value="35" y-axis-title="Degrees Celsius" - y-axis-label-location="OutsideRight"> + y-axis-label-location="OutsideRight" + is-transition-in-enabled="false"> diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-callouts/tsconfig.json b/samples/charts/category-chart/annotations-callouts/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/annotations-callouts/tsconfig.json +++ b/samples/charts/category-chart/annotations-callouts/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/annotations-crosshairs/index.html b/samples/charts/category-chart/annotations-crosshairs/index.html index 8d7bc5cafd..ca40e11d7d 100644 --- a/samples/charts/category-chart/annotations-crosshairs/index.html +++ b/samples/charts/category-chart/annotations-crosshairs/index.html @@ -64,7 +64,8 @@ crosshairs-line-thickness="2" crosshairs-snap-to-data="true" y-axis-maximum-value="35" - y-axis-label-location="OutsideRight"> + y-axis-label-location="OutsideRight" + is-transition-in-enabled="false"> diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-crosshairs/tsconfig.json b/samples/charts/category-chart/annotations-crosshairs/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/annotations-crosshairs/tsconfig.json +++ b/samples/charts/category-chart/annotations-crosshairs/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/annotations-custom/index.html b/samples/charts/category-chart/annotations-custom/index.html index aadb39b02e..962d1ecd59 100644 --- a/samples/charts/category-chart/annotations-custom/index.html +++ b/samples/charts/category-chart/annotations-custom/index.html @@ -54,7 +54,8 @@ callouts-y-member-path="temperature" callouts-label-member-path="tempInfo" y-axis-maximum-value="35" - y-axis-label-location="OutsideRight"> + y-axis-label-location="OutsideRight" + is-transition-in-enabled="false"> diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-custom/tsconfig.json b/samples/charts/category-chart/annotations-custom/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/annotations-custom/tsconfig.json +++ b/samples/charts/category-chart/annotations-custom/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/annotations-final-value/index.html b/samples/charts/category-chart/annotations-final-value/index.html index e308946cc0..360de60843 100644 --- a/samples/charts/category-chart/annotations-final-value/index.html +++ b/samples/charts/category-chart/annotations-final-value/index.html @@ -54,7 +54,8 @@ final-value-annotations-precision="0" crosshairs-annotation-y-axis-precision="0" y-axis-maximum-value="35" - y-axis-label-location="OutsideRight"> + y-axis-label-location="OutsideRight" + is-transition-in-enabled="false"> diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-final-value/tsconfig.json b/samples/charts/category-chart/annotations-final-value/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/annotations-final-value/tsconfig.json +++ b/samples/charts/category-chart/annotations-final-value/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/annotations-highlighting/index.html b/samples/charts/category-chart/annotations-highlighting/index.html index 5ec0811292..a1ec555068 100644 --- a/samples/charts/category-chart/annotations-highlighting/index.html +++ b/samples/charts/category-chart/annotations-highlighting/index.html @@ -57,7 +57,8 @@ highlighting-behavior="NearestItemsAndSeries" y-axis-maximum-value="35" y-axis-label-location="OutsideRight" - tool-tip-type="None"> + tool-tip-type="None" + is-transition-in-enabled="false"> diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-highlighting/tsconfig.json b/samples/charts/category-chart/annotations-highlighting/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/annotations-highlighting/tsconfig.json +++ b/samples/charts/category-chart/annotations-highlighting/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 6e8852c772..5a308bd76f 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.json b/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/area-chart-single-source/tsconfig.json b/samples/charts/category-chart/area-chart-single-source/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/area-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/area-chart-single-source/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/area-chart-styling/tsconfig.json b/samples/charts/category-chart/area-chart-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/area-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/area-chart-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-gap/tsconfig.json b/samples/charts/category-chart/axis-gap/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/axis-gap/tsconfig.json +++ b/samples/charts/category-chart/axis-gap/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/axis-gridlines/index.html b/samples/charts/category-chart/axis-gridlines/index.html index 321f19187d..3075dff4d8 100644 --- a/samples/charts/category-chart/axis-gridlines/index.html +++ b/samples/charts/category-chart/axis-gridlines/index.html @@ -25,6 +25,28 @@ is-wrapping-enabled="true" name="propertyEditorPanel1" id="propertyEditorPanel1"> + + + + { @@ -50,32 +49,33 @@ export class CategoryChartHighlighting { if(value == "Series"){ this.chart.isItemHighlightingEnabled = false; this.chart.isSeriesHighlightingEnabled = true; - this.chart.isCategoryHighlightingEnabled = false; + this.chart.isCategoryHighlightingEnabled = false; } else if(value == "Item") { this.chart.isItemHighlightingEnabled = true; this.chart.isSeriesHighlightingEnabled = false; - this.chart.isCategoryHighlightingEnabled = false; + this.chart.isCategoryHighlightingEnabled = false; } else if(value == "Category") { this.chart.isItemHighlightingEnabled = false; this.chart.isSeriesHighlightingEnabled = false; - this.chart.isCategoryHighlightingEnabled = true; + this.chart.isCategoryHighlightingEnabled = true; } else if(value=="None") { this.chart.isItemHighlightingEnabled = false; this.chart.isSeriesHighlightingEnabled = false; - this.chart.isCategoryHighlightingEnabled = false; + this.chart.isCategoryHighlightingEnabled = false; } - - } - + } + public onHighlightingModeChanged(e: any) { this.chart.highlightingMode = e.target.value as SeriesHighlightingMode; } + public onBehaviorModeChanged(e: any) { this.chart.highlightingBehavior = e.target.value as SeriesHighlightingBehavior; } + public onLegendHighlightingModeChanged(e: any) { this.chart.legendHighlightingMode = e.target.value as LegendHighlightingMode; } 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 cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.json b/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/custom-selection/tsconfig.json b/samples/charts/category-chart/custom-selection/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/custom-selection/tsconfig.json +++ b/samples/charts/category-chart/custom-selection/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-aggregations/tsconfig.json b/samples/charts/category-chart/data-aggregations/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/data-aggregations/tsconfig.json +++ b/samples/charts/category-chart/data-aggregations/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-filter/tsconfig.json b/samples/charts/category-chart/data-filter/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/data-filter/tsconfig.json +++ b/samples/charts/category-chart/data-filter/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.json b/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-legend/tsconfig.json b/samples/charts/category-chart/data-legend/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/data-legend/tsconfig.json +++ b/samples/charts/category-chart/data-legend/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json b/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json +++ b/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-tooltip/tsconfig.json b/samples/charts/category-chart/data-tooltip/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/data-tooltip/tsconfig.json +++ b/samples/charts/category-chart/data-tooltip/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 53d7b12959..d90f53a72c 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/format-specifiers/tsconfig.json b/samples/charts/category-chart/format-specifiers/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/format-specifiers/tsconfig.json +++ b/samples/charts/category-chart/format-specifiers/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 9f5f886fdc..ac475b6011 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 b396cff716..8a60ec2fc0 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/highlighting-behavior/index.html b/samples/charts/category-chart/highlighting-behavior/index.html index 29388c215d..1c62dcd469 100644 --- a/samples/charts/category-chart/highlighting-behavior/index.html +++ b/samples/charts/category-chart/highlighting-behavior/index.html @@ -45,7 +45,8 @@ highlighting-mode="Brighten" highlighting-behavior="DirectlyOver" tool-tip-type="None" - crosshairs-display-mode="None"> + crosshairs-display-mode="None" + is-transition-in-enabled="false"> diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/highlighting-behavior/tsconfig.json b/samples/charts/category-chart/highlighting-behavior/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/highlighting-behavior/tsconfig.json +++ b/samples/charts/category-chart/highlighting-behavior/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/highlighting-mode/index.html b/samples/charts/category-chart/highlighting-mode/index.html index b67469a622..bb0acc25c6 100644 --- a/samples/charts/category-chart/highlighting-mode/index.html +++ b/samples/charts/category-chart/highlighting-mode/index.html @@ -44,7 +44,8 @@ is-vertical-zoom-enabled="false" highlighting-mode="BrightenSpecific" tool-tip-type="None" - crosshairs-display-mode="None"> + crosshairs-display-mode="None" + is-transition-in-enabled="false"> diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/highlighting-mode/tsconfig.json b/samples/charts/category-chart/highlighting-mode/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/highlighting-mode/tsconfig.json +++ b/samples/charts/category-chart/highlighting-mode/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index a2061879ac..ee7425d2b0 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/legend-highlighting/index.html b/samples/charts/category-chart/legend-highlighting/index.html index 6ba290621a..205a63f877 100644 --- a/samples/charts/category-chart/legend-highlighting/index.html +++ b/samples/charts/category-chart/legend-highlighting/index.html @@ -42,7 +42,8 @@ is-horizontal-zoom-enabled="false" is-vertical-zoom-enabled="false" highlighting-mode="Brighten" - legend-highlighting-mode="MatchSeries"> + legend-highlighting-mode="MatchSeries" + is-transition-in-enabled="false"> diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/legend-highlighting/tsconfig.json b/samples/charts/category-chart/legend-highlighting/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/legend-highlighting/tsconfig.json +++ b/samples/charts/category-chart/legend-highlighting/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.json b/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/line-chart-single-source/tsconfig.json b/samples/charts/category-chart/line-chart-single-source/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/line-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/line-chart-single-source/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/line-chart-styling/tsconfig.json b/samples/charts/category-chart/line-chart-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/line-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/line-chart-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 80a11dbde7..0c1a725ab9 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/line-chart-with-animations/src/index.ts b/samples/charts/category-chart/line-chart-with-animations/src/index.ts index 45fddb335c..1f0a36a98e 100644 --- a/samples/charts/category-chart/line-chart-with-animations/src/index.ts +++ b/samples/charts/category-chart/line-chart-with-animations/src/index.ts @@ -60,7 +60,7 @@ export class CategoryChartLineChartWithAnimations { public onTransitionTimeChanged(e: any) { this.chart.transitionInDuration = e.target.value; - this.transitionLabel.textContent = e.target.value + "ms"; + this.transitionLabel.textContent = e.target.value + "ms"; this.reloadChart(); } 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 6e8852c772..5a308bd76f 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/line-chart-with-annotations/src/index.ts b/samples/charts/category-chart/line-chart-with-annotations/src/index.ts index 8dee95332d..b85a8889d7 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/src/index.ts +++ b/samples/charts/category-chart/line-chart-with-annotations/src/index.ts @@ -12,7 +12,7 @@ export class Sample { private chart: IgcCategoryChartComponent; public includedProperties: string[] = ["Year", "USA"]; public data: any[] = []; - + constructor() { this.onCrosshairsVisible = this.onCrosshairsVisible.bind(this); @@ -38,7 +38,7 @@ export class Sample { let checkbox4 = document.getElementById('checkbox4'); checkbox4!.addEventListener('change', this.onMarkersVisible); } - + public initData() { this.data = [ { Year: "2009", USA: 19 }, @@ -53,7 +53,7 @@ export class Sample { { Year: "2018", USA: 34 }, { Year: "2019", USA: 38 }, ]; - + let idx: number = 0; for (const item of this.data) { diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/marker-options/tsconfig.json b/samples/charts/category-chart/marker-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/marker-options/tsconfig.json +++ b/samples/charts/category-chart/marker-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index b566357064..f3e9b57f01 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/marker-templates/src/index.ts b/samples/charts/category-chart/marker-templates/src/index.ts index 7d290c3167..0156ddc722 100644 --- a/samples/charts/category-chart/marker-templates/src/index.ts +++ b/samples/charts/category-chart/marker-templates/src/index.ts @@ -65,7 +65,6 @@ export class CategoryChartMarkerTemplates { return; } - const dataItem = renderInfo.data.item; if (dataItem === null) return; diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/overview/tsconfig.json b/samples/charts/category-chart/overview/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/overview/tsconfig.json +++ b/samples/charts/category-chart/overview/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.json b/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/point-chart-single-source/tsconfig.json b/samples/charts/category-chart/point-chart-single-source/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/point-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/point-chart-single-source/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/point-chart-styling/tsconfig.json b/samples/charts/category-chart/point-chart-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/point-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/point-chart-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/selection-modes/tsconfig.json b/samples/charts/category-chart/selection-modes/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/selection-modes/tsconfig.json +++ b/samples/charts/category-chart/selection-modes/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/selection-multiple-modes/tsconfig.json b/samples/charts/category-chart/selection-multiple-modes/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/selection-multiple-modes/tsconfig.json +++ b/samples/charts/category-chart/selection-multiple-modes/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.json b/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-area-single-source/tsconfig.json b/samples/charts/category-chart/spline-area-single-source/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/spline-area-single-source/tsconfig.json +++ b/samples/charts/category-chart/spline-area-single-source/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-area-styling/tsconfig.json b/samples/charts/category-chart/spline-area-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/spline-area-styling/tsconfig.json +++ b/samples/charts/category-chart/spline-area-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-multiple-sources/tsconfig.json b/samples/charts/category-chart/spline-multiple-sources/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/spline-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/spline-multiple-sources/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-single-source/tsconfig.json b/samples/charts/category-chart/spline-single-source/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/spline-single-source/tsconfig.json +++ b/samples/charts/category-chart/spline-single-source/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-styling/tsconfig.json b/samples/charts/category-chart/spline-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/spline-styling/tsconfig.json +++ b/samples/charts/category-chart/spline-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 5fda8b5427..a12256ae4d 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-area-multiple-sources/tsconfig.json b/samples/charts/category-chart/step-area-multiple-sources/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/step-area-multiple-sources/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-area-single-source/tsconfig.json b/samples/charts/category-chart/step-area-single-source/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/step-area-single-source/tsconfig.json +++ b/samples/charts/category-chart/step-area-single-source/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-area-styling/tsconfig.json b/samples/charts/category-chart/step-area-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/step-area-styling/tsconfig.json +++ b/samples/charts/category-chart/step-area-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-line-multiple-sources/tsconfig.json b/samples/charts/category-chart/step-line-multiple-sources/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/step-line-multiple-sources/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-line-single-source/tsconfig.json b/samples/charts/category-chart/step-line-single-source/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/step-line-single-source/tsconfig.json +++ b/samples/charts/category-chart/step-line-single-source/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-line-styling/tsconfig.json b/samples/charts/category-chart/step-line-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/step-line-styling/tsconfig.json +++ b/samples/charts/category-chart/step-line-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 526ac329dc..6f31441c9e 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/tooltip-template/src/index.ts b/samples/charts/category-chart/tooltip-template/src/index.ts index ed6181a424..636c73d6c7 100644 --- a/samples/charts/category-chart/tooltip-template/src/index.ts +++ b/samples/charts/category-chart/tooltip-template/src/index.ts @@ -14,12 +14,12 @@ export class CategoryChartTooltipTemplate { public data: any[] = []; constructor() { - + this.initData(); this.chart = document.getElementById('chart') as IgcCategoryChartComponent; - this.chart.seriesAdded = this.onSeriesAdded; - this.chart.dataSource = this.data; + this.chart.seriesAdded = this.onSeriesAdded; + this.chart.dataSource = this.data; } public onSeriesAdded = (s: IgcDomainChartComponent, e: IgcChartSeriesEventArgs) => { @@ -34,19 +34,19 @@ export class CategoryChartTooltipTemplate { var dataItem = context.item; if (!dataItem) return null; - + var tooltipItem1 = document.createElement("div"); tooltipItem1.innerHTML = "Franchise: " + dataItem.Franchise; tooltipItem1.className = "tooltipTitle"; - + var tooltipItem2 = document.createElement("div"); tooltipItem2.innerHTML = "Revenue of All Movies: " + dataItem.TotalRevenue; tooltipItem2.className = "tooltipLbl"; - + var tooltipItem3= document.createElement("div"); tooltipItem3.innerHTML = "Highest Grossing Movie: $" + dataItem.HighestGrossing; tooltipItem3.className = "tooltipLbl"; - + var tooltip = document.createElement("div"); tooltip.className = "tooltipVertical"; tooltip.appendChild(tooltipItem1); @@ -64,7 +64,7 @@ export class CategoryChartTooltipTemplate { { Franchise: "Avengers", TotalRevenue: 7.76, HighestGrossing: 2.8 }, { Franchise: "Spider Man", TotalRevenue: 7.22, HighestGrossing: 1.28 }, { Franchise: "James Bond", TotalRevenue: 7.12, HighestGrossing: 1.11 } - ]; + ]; } } diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 526ac329dc..6f31441c9e 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 7364741400..dc025a6269 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/value-lines/tsconfig.json b/samples/charts/category-chart/value-lines/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/category-chart/value-lines/tsconfig.json +++ b/samples/charts/category-chart/value-lines/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/dashboard-tile/chart-dashboard/.prettierrc b/samples/charts/dashboard-tile/chart-dashboard/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/.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/dashboard-tile/chart-dashboard/ReadMe.md b/samples/charts/dashboard-tile/chart-dashboard/ReadMe.md new file mode 100644 index 0000000000..d6362d70a9 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of Web Components application with example of Chart Dashboard feature using [Dashboard Tile](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-wc-examples.git +git checkout master +cd ./igniteui-wc-examples +cd ./samples/charts/dashboard-tile/chart-dashboard +``` + +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/charts/dashboard-tile/chart-dashboard/index.html b/samples/charts/dashboard-tile/chart-dashboard/index.html new file mode 100644 index 0000000000..218865596c --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/index.html @@ -0,0 +1,34 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+ + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json new file mode 100644 index 0000000000..79102fd069 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/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": { + "babel-runtime": "^6.26.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-dashboards": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", + "lit-html": "^3.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.96.1", + "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/dashboard-tile/chart-dashboard/sandbox.config.json b/samples/charts/dashboard-tile/chart-dashboard/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/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/dashboard-tile/chart-dashboard/src/OlympicMedalsTopCountries.ts b/samples/charts/dashboard-tile/chart-dashboard/src/OlympicMedalsTopCountries.ts new file mode 100644 index 0000000000..d47a868bd9 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/src/OlympicMedalsTopCountries.ts @@ -0,0 +1,64 @@ +export class OlympicMedalsTopCountriesItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public year: string; + public america: number; + public china: number; + public russia: number; + +} +export class OlympicMedalsTopCountries extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OlympicMedalsTopCountriesItem( + { + year: `1996`, + america: 148, + china: 110, + russia: 95 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2000`, + america: 142, + china: 115, + russia: 91 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2004`, + america: 134, + china: 121, + russia: 86 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2008`, + america: 131, + china: 129, + russia: 65 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2012`, + america: 135, + china: 115, + russia: 77 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2016`, + america: 146, + china: 112, + russia: 88 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/index.css b/samples/charts/dashboard-tile/chart-dashboard/src/index.css new file mode 100644 index 0000000000..8b42ec3ed2 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/src/index.css @@ -0,0 +1,3 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/index.ts b/samples/charts/dashboard-tile/chart-dashboard/src/index.ts new file mode 100644 index 0000000000..2b49de8a23 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/src/index.ts @@ -0,0 +1,44 @@ +import { IgcDashboardTileModule, IgcDataChartDashboardTileModule, IgcGeographicMapDashboardTileModule, IgcLinearGaugeDashboardTileModule, IgcPieChartDashboardTileModule, IgcRadialGaugeDashboardTileModule } from 'igniteui-webcomponents-dashboards'; +import { IgcDashboardTileComponent } from 'igniteui-webcomponents-dashboards'; +import { OlympicMedalsTopCountriesItem, OlympicMedalsTopCountries } from './OlympicMedalsTopCountries'; + +import { ModuleManager } from 'igniteui-webcomponents-core'; + +import "./index.css"; + +ModuleManager.register( + IgcDashboardTileModule, + IgcDataChartDashboardTileModule, + IgcGeographicMapDashboardTileModule, + IgcLinearGaugeDashboardTileModule, + IgcPieChartDashboardTileModule, + IgcRadialGaugeDashboardTileModule +); + +export class Sample { + + private dashboard: IgcDashboardTileComponent + private _bind: () => void; + + constructor() { + var dashboard = this.dashboard = document.getElementById('dashboard') as IgcDashboardTileComponent; + + this._bind = () => { + dashboard.dataSource = this.olympicMedalsTopCountries; + } + this._bind(); + + } + + private _olympicMedalsTopCountries: OlympicMedalsTopCountries = null; + public get olympicMedalsTopCountries(): OlympicMedalsTopCountries { + if (this._olympicMedalsTopCountries == null) + { + this._olympicMedalsTopCountries = new OlympicMedalsTopCountries(); + } + return this._olympicMedalsTopCountries; + } + +} + +new Sample(); diff --git a/samples/charts/dashboard-tile/chart-dashboard/tsconfig.json b/samples/charts/dashboard-tile/chart-dashboard/tsconfig.json new file mode 100644 index 0000000000..e7c370def4 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/tsconfig.json @@ -0,0 +1,41 @@ +{ + "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" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/chart-dashboard/tslint.json b/samples/charts/dashboard-tile/chart-dashboard/tslint.json new file mode 100644 index 0000000000..e3b56e93a1 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/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/dashboard-tile/chart-dashboard/webpack.config.js b/samples/charts/dashboard-tile/chart-dashboard/webpack.config.js new file mode 100644 index 0000000000..1de7f08279 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/webpack.config.js @@ -0,0 +1,103 @@ +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, '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/charts/dashboard-tile/financial-dashboard/.prettierrc b/samples/charts/dashboard-tile/financial-dashboard/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/.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/dashboard-tile/financial-dashboard/index.html b/samples/charts/dashboard-tile/financial-dashboard/index.html new file mode 100644 index 0000000000..218865596c --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/index.html @@ -0,0 +1,34 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+ + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json new file mode 100644 index 0000000000..79102fd069 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/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": { + "babel-runtime": "^6.26.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-dashboards": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", + "lit-html": "^3.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.96.1", + "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/dashboard-tile/financial-dashboard/sandbox.config.json b/samples/charts/dashboard-tile/financial-dashboard/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/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/dashboard-tile/financial-dashboard/src/MultipleStocks.ts b/samples/charts/dashboard-tile/financial-dashboard/src/MultipleStocks.ts new file mode 100644 index 0000000000..3688676b43 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/src/MultipleStocks.ts @@ -0,0 +1,107 @@ +//begin async data +export class MultipleStocks extends Array> { + public static async fetch(): Promise { + const dataSources: any[] = [ + //await this.getAmazonStock(), + await this.getGoogleStock(), + await this.getAmazonStock(), + //await this.getTeslaStock() + ]; + return new Promise((resolve, reject) => { + resolve(dataSources); + }); + } + + /** gets Amazon stock OHLC prices from a .JSON file */ + public static async getAmazonStock(): Promise { + let url = "https://static.infragistics.com/xplatform/data/stocks/stockAmazon.json"; + let response = await fetch(url); + let jsonData = await response.json(); + let stockData = this.convertData(jsonData); + // setting data intent for Series Title, e.g. FinancialChart usage + (stockData as any).__dataIntents = { + close: ["SeriesTitle/Amazon"] + }; + // console.log("fetchAmazonStock: ", stockData.length); + + return new Promise((resolve, reject) => { + resolve(stockData); + }); + } + + /** gets Tesla stock OHLC prices from a .JSON file */ + public static async getTeslaStock(): Promise { + let url = "https://static.infragistics.com/xplatform/data/stocks/stockTesla.json"; + let response = await fetch(url); + let jsonData = await response.json(); + let stockData = this.convertData(jsonData); + // setting data intent for Series Title, e.g. FinancialChart usage + (stockData as any).__dataIntents = { + close: ["SeriesTitle/Tesla"] + }; + return new Promise((resolve, reject) => { + resolve(stockData); + }); + } + + /** gets Microsoft stock OHLC prices from a .JSON file */ + public static async getMicrosoftStock(): Promise { + let url = "https://static.infragistics.com/xplatform/data/stocks/stockMicrosoft.json"; + let response = await fetch(url); + let jsonData = await response.json(); + let stockData = this.convertData(jsonData); + // setting data intent for Series Title, e.g. FinancialChart usage + (stockData as any).__dataIntents = { + close: ["SeriesTitle/Microsoft"] + }; + return new Promise((resolve, reject) => { + resolve(stockData); + }); + } + + /** gets Google stock OHLC prices from a .JSON file */ + public static async getGoogleStock(): Promise { + let url = "https://static.infragistics.com/xplatform/data/stocks/stockGoogle.json"; + let response = await fetch(url); + let jsonData = await response.json(); + let stockData = this.convertData(jsonData); + // setting data intent for Series Title, e.g. FinancialChart usage + (stockData as any).__dataIntents = { + close: ["SeriesTitle/Google"] + }; + return new Promise((resolve, reject) => { + resolve(stockData); + }); + } + + public static convertData(jsonData: any[]): StockItem[] { + let stockItems: StockItem[] = []; + + for (let json of jsonData) { + let parts = json.date.split("-"); // "2020-01-01" + let item = new StockItem(); + item.date = new Date(parts[0], parts[1], parts[2]); + item.open = json.open; + item.high = json.high; + item.low = json.low; + item.close = json.close; + item.volume = json.volume; + stockItems.push(item); + + } + + return stockItems; + } + } + + export class StockItem { + public open?: number; + public close?: number; + public high?: number; + public low?: number; + public volume?: number; + + public date?: Date; + + } +//end async data \ No newline at end of file diff --git a/samples/charts/dashboard-tile/financial-dashboard/src/index.css b/samples/charts/dashboard-tile/financial-dashboard/src/index.css new file mode 100644 index 0000000000..8b42ec3ed2 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/src/index.css @@ -0,0 +1,3 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/dashboard-tile/financial-dashboard/src/index.ts b/samples/charts/dashboard-tile/financial-dashboard/src/index.ts new file mode 100644 index 0000000000..3cab63b8cd --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/src/index.ts @@ -0,0 +1,46 @@ +import { IgcDashboardTileModule, IgcDataChartDashboardTileModule, IgcGeographicMapDashboardTileModule, IgcLinearGaugeDashboardTileModule, IgcPieChartDashboardTileModule, IgcRadialGaugeDashboardTileModule } from 'igniteui-webcomponents-dashboards'; +import { IgcDashboardTileComponent } from 'igniteui-webcomponents-dashboards'; +import { MultipleStocks } from './MultipleStocks'; + +import { ModuleManager } from 'igniteui-webcomponents-core'; + +import "./index.css"; + +ModuleManager.register( + IgcDashboardTileModule, + IgcDataChartDashboardTileModule, + IgcGeographicMapDashboardTileModule, + IgcLinearGaugeDashboardTileModule, + IgcPieChartDashboardTileModule, + IgcRadialGaugeDashboardTileModule +); + +export class Sample { + + private dashboard: IgcDashboardTileComponent + private _bind: () => void; + + constructor() { + var dashboard = this.dashboard = document.getElementById('dashboard') as IgcDashboardTileComponent; + + this._bind = () => { + dashboard.dataSource = this.multipleStocks; + } + this._bind(); + + } + + private _multipleStocks: MultipleStocks = null; + private _isFetching: boolean = false; + public get multipleStocks(): MultipleStocks { + if (this._multipleStocks == null && !this._isFetching) + { + this._isFetching = true; + ( async () => { this._multipleStocks = await (await MultipleStocks.fetch()); if ((this as any)._bind) { (this as any)._bind(); } })(); + } + return this._multipleStocks; + } + +} + +new Sample(); diff --git a/samples/charts/dashboard-tile/financial-dashboard/tsconfig.json b/samples/charts/dashboard-tile/financial-dashboard/tsconfig.json new file mode 100644 index 0000000000..e7c370def4 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/tsconfig.json @@ -0,0 +1,41 @@ +{ + "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" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/financial-dashboard/tslint.json b/samples/charts/dashboard-tile/financial-dashboard/tslint.json new file mode 100644 index 0000000000..e3b56e93a1 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/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/dashboard-tile/financial-dashboard/webpack.config.js b/samples/charts/dashboard-tile/financial-dashboard/webpack.config.js new file mode 100644 index 0000000000..1de7f08279 --- /dev/null +++ b/samples/charts/dashboard-tile/financial-dashboard/webpack.config.js @@ -0,0 +1,103 @@ +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, '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/charts/dashboard-tile/gauge-dashboard/.prettierrc b/samples/charts/dashboard-tile/gauge-dashboard/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/.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/dashboard-tile/gauge-dashboard/ReadMe.md b/samples/charts/dashboard-tile/gauge-dashboard/ReadMe.md new file mode 100644 index 0000000000..1c4830fa5f --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of Web Components application with example of Gauge Dashboard feature using [Dashboard Tile](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-wc-examples.git +git checkout master +cd ./igniteui-wc-examples +cd ./samples/charts/dashboard-tile/gauge-dashboard +``` + +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/charts/dashboard-tile/gauge-dashboard/index.html b/samples/charts/dashboard-tile/gauge-dashboard/index.html new file mode 100644 index 0000000000..4ca17dbd1e --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/index.html @@ -0,0 +1,35 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+ + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json new file mode 100644 index 0000000000..79102fd069 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/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": { + "babel-runtime": "^6.26.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-dashboards": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", + "lit-html": "^3.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.96.1", + "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/dashboard-tile/gauge-dashboard/sandbox.config.json b/samples/charts/dashboard-tile/gauge-dashboard/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/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/dashboard-tile/gauge-dashboard/src/index.css b/samples/charts/dashboard-tile/gauge-dashboard/src/index.css new file mode 100644 index 0000000000..8b42ec3ed2 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/index.css @@ -0,0 +1,3 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/index.ts b/samples/charts/dashboard-tile/gauge-dashboard/src/index.ts new file mode 100644 index 0000000000..3e08177d40 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/index.ts @@ -0,0 +1,37 @@ +import { IgcDashboardTileModule, IgcDataChartDashboardTileModule, IgcGeographicMapDashboardTileModule, IgcLinearGaugeDashboardTileModule, IgcPieChartDashboardTileModule, IgcRadialGaugeDashboardTileModule } from 'igniteui-webcomponents-dashboards'; +import { IgcDashboardTileComponent } from 'igniteui-webcomponents-dashboards'; + +import { ModuleManager } from 'igniteui-webcomponents-core'; + +import "./index.css"; + +ModuleManager.register( + IgcDashboardTileModule, + IgcDataChartDashboardTileModule, + IgcGeographicMapDashboardTileModule, + IgcLinearGaugeDashboardTileModule, + IgcPieChartDashboardTileModule, + IgcRadialGaugeDashboardTileModule +); + +export class Sample { + + private dashboard: IgcDashboardTileComponent + + constructor() { + var dashboard = this.dashboard = document.getElementById('dashboard') as IgcDashboardTileComponent; + + this.dashboardTileGaugeOnInit(); + } + + + public dashboardTileGaugeOnInit(): void { + + var target = this.dashboard; + + target.dataSource = 40; + } + +} + +new Sample(); diff --git a/samples/charts/dashboard-tile/gauge-dashboard/tsconfig.json b/samples/charts/dashboard-tile/gauge-dashboard/tsconfig.json new file mode 100644 index 0000000000..e7c370def4 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/tsconfig.json @@ -0,0 +1,41 @@ +{ + "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" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/gauge-dashboard/tslint.json b/samples/charts/dashboard-tile/gauge-dashboard/tslint.json new file mode 100644 index 0000000000..e3b56e93a1 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/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/dashboard-tile/gauge-dashboard/webpack.config.js b/samples/charts/dashboard-tile/gauge-dashboard/webpack.config.js new file mode 100644 index 0000000000..1de7f08279 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/webpack.config.js @@ -0,0 +1,103 @@ +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, '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/charts/dashboard-tile/map-dashboard/.prettierrc b/samples/charts/dashboard-tile/map-dashboard/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/.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/dashboard-tile/map-dashboard/ReadMe.md b/samples/charts/dashboard-tile/map-dashboard/ReadMe.md new file mode 100644 index 0000000000..ec66ca9d1c --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of Web Components application with example of Map Dashboard feature using [Dashboard Tile](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-wc-examples.git +git checkout master +cd ./igniteui-wc-examples +cd ./samples/charts/dashboard-tile/map-dashboard +``` + +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/charts/dashboard-tile/map-dashboard/index.html b/samples/charts/dashboard-tile/map-dashboard/index.html new file mode 100644 index 0000000000..918bbc32f5 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/index.html @@ -0,0 +1,35 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+ + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json new file mode 100644 index 0000000000..79102fd069 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/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": { + "babel-runtime": "^6.26.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-dashboards": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", + "lit-html": "^3.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.96.1", + "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/dashboard-tile/map-dashboard/sandbox.config.json b/samples/charts/dashboard-tile/map-dashboard/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/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/dashboard-tile/map-dashboard/src/WorldCities.ts b/samples/charts/dashboard-tile/map-dashboard/src/WorldCities.ts new file mode 100644 index 0000000000..7ffffb7ab3 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/src/WorldCities.ts @@ -0,0 +1,5478 @@ +export class WorldCitiesItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public capital: boolean; + public population: number; + public y: number; + public x: number; + public country: string; + public name: string; + +} +export class WorldCities extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new WorldCitiesItem( + { + capital: true, + population: 23.62, + y: 35.68, + x: 139.81, + country: `Japan`, + name: `Tokyo` + }), + new WorldCitiesItem( + { + capital: false, + population: 16.47, + y: 40.75, + x: -74.1, + country: `US`, + name: `New York` + }), + new WorldCitiesItem( + { + capital: true, + population: 15.85, + y: 37.54, + x: 126.94, + country: `South Korea`, + name: `Seoul` + }), + new WorldCitiesItem( + { + capital: false, + population: 15.18, + y: -23.58, + x: -46.62, + country: `Brazil`, + name: `Sao Paulo` + }), + new WorldCitiesItem( + { + capital: false, + population: 15.04, + y: 34.64, + x: 135.52, + country: `Japan`, + name: `Osaka` + }), + new WorldCitiesItem( + { + capital: true, + population: 14.1, + y: 19.43, + x: -99.13, + country: `Mexico`, + name: `Mexico City` + }), + new WorldCitiesItem( + { + capital: true, + population: 13.1, + y: 55.75, + x: 37.7, + country: `Russia`, + name: `Moscow` + }), + new WorldCitiesItem( + { + capital: false, + population: 11.1, + y: 22.54, + x: 88.33, + country: `India`, + name: `Calcutta` + }), + new WorldCitiesItem( + { + capital: true, + population: 11.1, + y: 51.49, + x: -0.18, + country: `UK`, + name: `London` + }), + new WorldCitiesItem( + { + capital: true, + population: 10.75, + y: -34.67, + x: -58.41, + country: `Argentina`, + name: `Buenos Aires` + }), + new WorldCitiesItem( + { + capital: false, + population: 10.15, + y: -22.72, + x: -43.46, + country: `Brazil`, + name: `Rio de Janeiro` + }), + new WorldCitiesItem( + { + capital: false, + population: 9.95, + y: 19.05, + x: 73.17, + country: `India`, + name: `Bombay` + }), + new WorldCitiesItem( + { + capital: true, + population: 9.78, + y: 48.88, + x: 2.43, + country: `France`, + name: `Paris` + }), + new WorldCitiesItem( + { + capital: false, + population: 9.76, + y: 34, + x: -118.25, + country: `US`, + name: `Los Angeles` + }), + new WorldCitiesItem( + { + capital: false, + population: 9.41, + y: 24.98, + x: 121.53, + country: `Taiwan`, + name: `Chingmei` + }), + new WorldCitiesItem( + { + capital: true, + population: 9.3, + y: 30.08, + x: 31.25, + country: `Egypt`, + name: `Cairo` + }), + new WorldCitiesItem( + { + capital: false, + population: 9.3, + y: 31.25, + x: 121.47, + country: `China`, + name: `Shanghai` + }), + new WorldCitiesItem( + { + capital: true, + population: 8.6, + y: -6.29, + x: 106.76, + country: `Indonesia`, + name: `Jakarta` + }), + new WorldCitiesItem( + { + capital: false, + population: 7.72, + y: 41.83, + x: -87.64, + country: `US`, + name: `Chicago` + }), + new WorldCitiesItem( + { + capital: false, + population: 7.2, + y: 28.53, + x: 77.22, + country: `India`, + name: `Delhi` + }), + new WorldCitiesItem( + { + capital: true, + population: 6.45, + y: 13.75, + x: 100.55, + country: `Thailand`, + name: `Bangkok` + }), + new WorldCitiesItem( + { + capital: true, + population: 6.45, + y: 39.91, + x: 116.39, + country: `China`, + name: `Beijing` + }), + new WorldCitiesItem( + { + capital: true, + population: 6.4, + y: 35.77, + x: 51.45, + country: `Iran`, + name: `Tehran` + }), + new WorldCitiesItem( + { + capital: true, + population: 6.13, + y: 25.04, + x: 121.51, + country: `Taiwan`, + name: `Taipei` + }), + new WorldCitiesItem( + { + capital: false, + population: 5.83, + y: 59.95, + x: 30.45, + country: `Russia`, + name: `Saint Petersburg` + }), + new WorldCitiesItem( + { + capital: false, + population: 5.75, + y: 41.07, + x: 29.01, + country: `Turkey`, + name: `Istanbul` + }), + new WorldCitiesItem( + { + capital: true, + population: 5.47, + y: 14.55, + x: 121.17, + country: `Philippines`, + name: `Manila` + }), + new WorldCitiesItem( + { + capital: true, + population: 5.4, + y: 22.43, + x: 114.15, + country: `UK`, + name: `Hong Kong` + }), + new WorldCitiesItem( + { + capital: false, + population: 5.3, + y: 24.85, + x: 67.03, + country: `Pakistan`, + name: `Karachi` + }), + new WorldCitiesItem( + { + capital: false, + population: 5.21, + y: 39.93, + x: -75.22, + country: `US`, + name: `Philadelphia` + }), + new WorldCitiesItem( + { + capital: true, + population: 5.06, + y: 52.52, + x: 13.33, + country: `Germany`, + name: `Berlin` + }), + new WorldCitiesItem( + { + capital: false, + population: 4.88, + y: 39.13, + x: 117.19, + country: `China`, + name: `Tianjin` + }), + new WorldCitiesItem( + { + capital: false, + population: 4.8, + y: 35.15, + x: 136.92, + country: `Japan`, + name: `Nagoya` + }), + new WorldCitiesItem( + { + capital: false, + population: 4.69, + y: 42.39, + x: -83.08, + country: `US`, + name: `Detroit` + }), + new WorldCitiesItem( + { + capital: true, + population: 4.65, + y: 40.44, + x: -3.69, + country: `Spain`, + name: `Madrid` + }), + new WorldCitiesItem( + { + capital: false, + population: 4.47, + y: 13.06, + x: 80.25, + country: `India`, + name: `Madras` + }), + new WorldCitiesItem( + { + capital: true, + population: 4.34, + y: -12.07, + x: -76.82, + country: `Peru`, + name: `Lima` + }), + new WorldCitiesItem( + { + capital: true, + population: 4.26, + y: 4.63, + x: -74.08, + country: `Colombia`, + name: `Bogota` + }), + new WorldCitiesItem( + { + capital: true, + population: 4.1, + y: -33.48, + x: -70.65, + country: `Chile`, + name: `Santiago` + }), + new WorldCitiesItem( + { + capital: false, + population: 4.05, + y: 37.73, + x: -122.31, + country: `US`, + name: `San Francisco` + }), + new WorldCitiesItem( + { + capital: false, + population: 4.04, + y: 41.53, + x: 2.17, + country: `Spain`, + name: `BarceXa` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.97, + y: 42.38, + x: -71.1, + country: `US`, + name: `Boston` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.87, + y: 51.35, + x: 7.12, + country: `Germany`, + name: `Essen` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.84, + y: 33.33, + x: 44.4, + country: `Iraq`, + name: `Baghdad` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.84, + y: 41.8, + x: 123.38, + country: `China`, + name: `Shenyang` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.8, + y: 6.45, + x: 3.3, + country: `Nigeria`, + name: `Lagos` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.8, + y: 35.16, + x: 129.05, + country: `South Korea`, + name: `Pusan` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.75, + y: 45.47, + x: 9.19, + country: `Italy`, + name: `Milano` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.65, + y: -26.18, + x: 28, + country: `South Africa`, + name: `Johannesburg` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.6, + y: 10.5, + x: -66.9, + country: `Venezuela`, + name: `Caracas` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.49, + y: 30.57, + x: 114.28, + country: `China`, + name: `Wuhan` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.43, + y: 23.71, + x: 90.41, + country: `Bangladesh`, + name: `Dhaka` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.43, + y: 43.72, + x: -79.41, + country: `Canada`, + name: `Toronto` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.37, + y: -33.89, + x: 151.03, + country: `Australia`, + name: `Sydney` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.35, + y: 31.07, + x: 29.98, + country: `Egypt`, + name: `Alexandria` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.22, + y: 38.89, + x: -76.95, + country: `US`, + name: `Washington D.C.` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.17, + y: 41.88, + x: 12.52, + country: `Italy`, + name: `Roma` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.1, + y: 10.76, + x: 106.66, + country: `Vietnam`, + name: `Ho Chi Minh City` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.05, + y: 23.1, + x: 113.29, + country: `China`, + name: `Guangzhou` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.03, + y: 38.12, + x: 23.65, + country: `Greece`, + name: `Athens` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.02, + y: 1.23, + x: 104.18, + country: `Singapore`, + name: `Singapore` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.02, + y: 31.55, + x: 74.34, + country: `Pakistan`, + name: `Lahore` + }), + new WorldCitiesItem( + { + capital: true, + population: 3, + y: -4.39, + x: 15.47, + country: `Zaire`, + name: `Kinshasa` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.99, + y: 35.44, + x: 139.62, + country: `Japan`, + name: `Yokohama` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.95, + y: -19.85, + x: -43.91, + country: `Brazil`, + name: `Belo Horizonte` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.95, + y: 12.97, + x: 77.59, + country: `India`, + name: `Bangalore` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.92, + y: 45.54, + x: -73.65, + country: `Canada`, + name: `Montreal` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.9, + y: 50.45, + x: 30.5, + country: `Ukraine`, + name: `Kiev` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.88, + y: 40.83, + x: 14.27, + country: `Italy`, + name: `Napoli` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.83, + y: -37.85, + x: 145.08, + country: `Australia`, + name: `Melbourne` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.83, + y: 25.83, + x: -80.27, + country: `US`, + name: `Miami` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.8, + y: 16.87, + x: 96.12, + country: `Burma`, + name: `Rangoon` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.77, + y: 53.48, + x: -2.26, + country: `UK`, + name: `Manchester` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.75, + y: 17.39, + x: 78.49, + country: `India`, + name: `Hyderabad` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.75, + y: 29.77, + x: -95.41, + country: `US`, + name: `Houston` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.73, + y: 32.76, + x: -96.66, + country: `US`, + name: `Dallas` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.67, + y: 45.76, + x: 126.62, + country: `China`, + name: `Harbin` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.67, + y: 52.49, + x: -1.86, + country: `UK`, + name: `Birmingham` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.63, + y: -8.09, + x: -34.91, + country: `Brazil`, + name: `Recife` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.6, + y: -30.04, + x: -51.21, + country: `Brazil`, + name: `Porto Alegre` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.56, + y: 47.51, + x: 19.09, + country: `Hungary`, + name: `Budapest` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.55, + y: 36.6, + x: 2.99, + country: `Algeria`, + name: `Algiers` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.48, + y: 33.54, + x: -7.53, + country: `Morocco`, + name: `Casablanca` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.45, + y: 29.54, + x: 106.52, + country: `China`, + name: `Chongqing` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.4, + y: 23.04, + x: 72.57, + country: `India`, + name: `Ahmadabad` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.4, + y: 39.93, + x: 32.85, + country: `Turkey`, + name: `Ankara` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.38, + y: 50.84, + x: 4.37, + country: `Belgium`, + name: `Bruxelles` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.33, + y: 41.25, + x: 69.35, + country: `Uzbekistan`, + name: `Toshkent` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.33, + y: 20.67, + x: -103.34, + country: `Mexico`, + name: `Guadalajara` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.32, + y: 52.24, + x: 21.01, + country: `Poland`, + name: `Warsaw` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.29, + y: 32.05, + x: 118.77, + country: `China`, + name: `Nanjing` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.25, + y: 38.73, + x: -9.13, + country: `Portugal`, + name: `Lisboa` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.25, + y: 44.43, + x: 26.12, + country: `Romania`, + name: `Bucharest` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.23, + y: 53.57, + x: 10.03, + country: `Germany`, + name: `Hamburg` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.22, + y: 40.5, + x: -80, + country: `US`, + name: `Pittsburgh` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.22, + y: 41.39, + x: -81.73, + country: `US`, + name: `Cleveland` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.21, + y: 35.86, + x: 128.59, + country: `South Korea`, + name: `Taegu` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.2, + y: 38.64, + x: -90.34, + country: `US`, + name: `St. Louis` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.2, + y: 48.04, + x: 37.74, + country: `Ukraine`, + name: `Donets'k` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.13, + y: 23.05, + x: -82.42, + country: `Cuba`, + name: `Havana` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.1, + y: 32.76, + x: -117.13, + country: `US`, + name: `San Diego` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.1, + y: 6.24, + x: -75.59, + country: `Colombia`, + name: `Medellin` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.08, + y: 47.59, + x: -122.32, + country: `US`, + name: `Seattle` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.05, + y: -12.6, + x: -38.48, + country: `Brazil`, + name: `Salvador` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.05, + y: 7.02, + x: 80.09, + country: `Sri Lanka`, + name: `Colombo` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.05, + y: 34.27, + x: 108.88, + country: `China`, + name: `Xian` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.03, + y: -7.4, + x: 112.68, + country: `Indonesia`, + name: `Surabaja` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.02, + y: 25.68, + x: -100.32, + country: `Mexico`, + name: `Monterrey` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.02, + y: 40.32, + x: 49.82, + country: `Azerbaijan`, + name: `Baku` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.02, + y: 56.29, + x: 43.94, + country: `Russia`, + name: `Nizhniy Novgorod` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.01, + y: 44.92, + x: -93.31, + country: `US`, + name: `Minneapolis` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.96, + y: 33.8, + x: -84.35, + country: `US`, + name: `Atlanta` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.96, + y: 39.32, + x: -76.62, + country: `US`, + name: `Baltimore` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.96, + y: 48.14, + x: 11.54, + country: `Germany`, + name: `Munich` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.95, + y: 5.32, + x: -4.02, + country: `Ivory Coast`, + name: `Abidjan` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.94, + y: 49.99, + x: 36.21, + country: `Ukraine`, + name: `Kharkov` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.9, + y: 43.06, + x: 141.35, + country: `Japan`, + name: `Sapporo` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.88, + y: 26.46, + x: 80.32, + country: `India`, + name: `Kanpur` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.88, + y: 48.2, + x: 16.32, + country: `Austria`, + name: `Vienna` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.87, + y: 30.47, + x: 30.85, + country: `Egypt`, + name: `Giza` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.86, + y: 52.37, + x: 4.89, + country: `Netherlands`, + name: `Amsterdam` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.85, + y: 33.52, + x: 36.31, + country: `Syria`, + name: `Damascus` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.85, + y: 50.13, + x: 8.67, + country: `Germany`, + name: `Frankfurt am Main` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.84, + y: 22.67, + x: 120.34, + country: `Taiwan`, + name: `Kao-Hsiung` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.82, + y: -3.78, + x: -38.59, + country: `Brazil`, + name: `Fortaleza` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.81, + y: 30.67, + x: 104.07, + country: `China`, + name: `Chengdu` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.8, + y: -6.91, + x: 107.61, + country: `Indonesia`, + name: `Bandung` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.8, + y: 55.86, + x: -4.27, + country: `UK`, + name: `Glasgow` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.79, + y: -33.8, + x: 18.69, + country: `South Africa`, + name: `Cape Town` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.77, + y: 18.4, + x: -66.08, + country: `Puerto Rico`, + name: `San Juan` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.77, + y: 18.54, + x: 73.85, + country: `India`, + name: `Pune` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.76, + y: 50.94, + x: 6.93, + country: `Germany`, + name: `Koln` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.75, + y: 33.31, + x: 130.32, + country: `Japan`, + name: `Fukuoka` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.74, + y: 43.88, + x: 125.31, + country: `China`, + name: `Changchung` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.7, + y: -25.43, + x: -49.28, + country: `Brazil`, + name: `Curitiba` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.69, + y: 55.72, + x: 12.55, + country: `Denmark`, + name: `Kobenhavn` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.68, + y: 33.78, + x: 35.66, + country: `Lebanon`, + name: `Beirut` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.68, + y: 39.03, + x: 121.6, + country: `China`, + name: `Dalian` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.67, + y: 31.92, + x: 34.86, + country: `Israel`, + name: `Tel Aviv-Yafo` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.66, + y: 37.89, + x: 112.55, + country: `China`, + name: `Taiyuan` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.65, + y: 53.9, + x: 27.58, + country: `Belarus`, + name: `Minsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.62, + y: 56.85, + x: 60.61, + country: `Russia`, + name: `Yekaterinburg` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.6, + y: 48.42, + x: 35.14, + country: `Ukraine`, + name: `Dnepropetrovsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.6, + y: 37.59, + x: 126.77, + country: `South Korea`, + name: `Inch\`on` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.6, + y: 39.03, + x: 125.76, + country: `North Korea`, + name: `Pyongyang` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.6, + y: 55.03, + x: 82.94, + country: `Russia`, + name: `Novosibirsk` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.57, + y: -15.79, + x: -47.9, + country: `Brazil`, + name: `Brasilia` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.57, + y: 34.38, + x: 132.44, + country: `Japan`, + name: `Hiroshima` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.55, + y: -34.92, + x: -56.17, + country: `Uruguay`, + name: `Montevideo` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.55, + y: 38.44, + x: 27.21, + country: `Turkey`, + name: `Izmir` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.55, + y: -29.84, + x: 30.94, + country: `South Africa`, + name: `Durban` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.55, + y: 45.07, + x: 7.67, + country: `Italy`, + name: `Torino` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.54, + y: 53.81, + x: -1.5, + country: `UK`, + name: `Leeds` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.52, + y: 53.42, + x: -2.77, + country: `UK`, + name: `Liverpool` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.52, + y: 33.68, + x: 130.8, + country: `Japan`, + name: `Kita Kyushu` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.5, + y: 9.03, + x: 38.7, + country: `Ethiopia`, + name: `Adis Abeba` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.5, + y: 21.03, + x: 105.82, + country: `Vietnam`, + name: `Hanoi` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.5, + y: 53.14, + x: 50.1, + country: `Russia`, + name: `Samara` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.48, + y: 3.15, + x: 101.71, + country: `Malaysia`, + name: `Kuala Lumpur` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.48, + y: 33.51, + x: -112.11, + country: `US`, + name: `Phoenix` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.48, + y: 35.01, + x: 135.75, + country: `Japan`, + name: `Kyoto` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.48, + y: 39.15, + x: -84.48, + country: `US`, + name: `Cincinnati` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.48, + y: 42.9, + x: -78.85, + country: `US`, + name: `Buffalo` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.46, + y: -9, + x: 13.46, + country: `Angola`, + name: `Luanda` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.46, + y: 36.29, + x: 59.6, + country: `Iran`, + name: `Mashhad` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.46, + y: 36.66, + x: 116.97, + country: `China`, + name: `Jinan` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.46, + y: 41.72, + x: 44.78, + country: `Georgia`, + name: `Tbilisi` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.45, + y: 59.24, + x: 18.08, + country: `Sweden`, + name: `Stockholm` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.43, + y: 14.63, + x: -16.85, + country: `Senegal`, + name: `Dakar` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.41, + y: 39.75, + x: -105.07, + country: `US`, + name: `Denver` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.41, + y: 34.66, + x: 135.18, + country: `Japan`, + name: `Kobe` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.4, + y: 3.46, + x: -76.52, + country: `Colombia`, + name: `Cali` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.4, + y: 14.62, + x: -90.52, + country: `Guatemala`, + name: `Guatemala` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.4, + y: 44.8, + x: 20.41, + country: `Serbia`, + name: `Belgrade` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.39, + y: 22.48, + x: 91.83, + country: `Bangladesh`, + name: `Chittagong` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.38, + y: 49.27, + x: -122.96, + country: `Canada`, + name: `Vancouver` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.38, + y: 29.19, + x: 48, + country: `Kuwait`, + name: `Al Kuwayt` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.38, + y: 43.07, + x: -87.99, + country: `US`, + name: `Milwaukee` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.37, + y: 3.59, + x: 98.68, + country: `Indonesia`, + name: `Medan` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.36, + y: 48.71, + x: 44.48, + country: `Russia`, + name: `Volgograd` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.33, + y: 14.65, + x: 121.03, + country: `Philippines`, + name: `Quezon City` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.32, + y: 50.11, + x: 14.46, + country: `Czechia`, + name: `Prague` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.32, + y: 55.15, + x: 61.39, + country: `Russia`, + name: `Chelyabinsk` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.31, + y: 18.5, + x: -69.91, + country: `Dominican Rp`, + name: `Santo Domingo` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.31, + y: 40.21, + x: 44.53, + country: `Armenia`, + name: `Yerevan` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.3, + y: 21.62, + x: 39.37, + country: `Saudi Arabia`, + name: `Jiddah` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.3, + y: -6.82, + x: 39.25, + country: `Tanzania`, + name: `Dar es Salaam` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.3, + y: 21.16, + x: 79.09, + country: `India`, + name: `Nagpur` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.3, + y: 41.12, + x: 122.98, + country: `China`, + name: `Anshan` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.29, + y: -1.17, + x: 36.83, + country: `Kenya`, + name: `Nairobi` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.28, + y: 25.05, + x: 102.7, + country: `China`, + name: `Kunming` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 36.15, + x: 120.43, + country: `China`, + name: `Qingdao` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 30.25, + x: 120.17, + country: `China`, + name: `Hangzhou` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 36.11, + x: 103.6, + country: `China`, + name: `Lanzhou` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 38.99, + x: -94.63, + country: `US`, + name: `Kansas City` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 39.47, + x: -0.37, + country: `Spain`, + name: `Valencia` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 41.86, + x: 123.91, + country: `China`, + name: `Fushun` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 45.75, + x: 4.86, + country: `France`, + name: `Lyon` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.25, + y: 24.65, + x: 46.77, + country: `Saudi Arabia`, + name: `Ar Riyad` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.25, + y: -2.2, + x: -79.91, + country: `Ecuador`, + name: `Guayaquil` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.25, + y: 5.56, + x: -0.2, + country: `Ghana`, + name: `Accra` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.25, + y: 31.95, + x: 35.93, + country: `Jordan`, + name: `Amman` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.23, + y: 41.15, + x: -8.49, + country: `Portugal`, + name: `Porto` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.23, + y: 43.3, + x: 5.38, + country: `France`, + name: `Marseille` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.23, + y: 45.44, + x: -122.64, + country: `US`, + name: `Portland` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.23, + y: 36.82, + x: 10.17, + country: `Tunisia`, + name: `Tunis` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.22, + y: 36.22, + x: 37.16, + country: `Syria`, + name: `Aleppo` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.21, + y: 42.71, + x: 23.33, + country: `Bulgaria`, + name: `Sofia` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.2, + y: -1.61, + x: -48.32, + country: `Brazil`, + name: `Belem` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.19, + y: 28.2, + x: 112.97, + country: `China`, + name: `Changsha` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.19, + y: 29.96, + x: -90.1, + country: `US`, + name: `New Orleans` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.19, + y: 38.08, + x: 114.56, + country: `China`, + name: `Shijiazhuang` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.19, + y: 43.26, + x: 76.91, + country: `Kazakhstan`, + name: `Almaty` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.19, + y: 46.57, + x: 30.68, + country: `Ukraine`, + name: `Odessa` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.18, + y: 34.53, + x: 69.14, + country: `Afghanistan`, + name: `Kabul` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.18, + y: 55.06, + x: 73.25, + country: `Russia`, + name: `Omsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.17, + y: 34.76, + x: 113.64, + country: `China`, + name: `Zhengzhou` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.17, + y: 43.85, + x: 126.57, + country: `China`, + name: `Jilin` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.17, + y: 47.23, + x: 39.69, + country: `Russia`, + name: `Rostov-na-Donu` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.16, + y: 58, + x: 56.23, + country: `Russia`, + name: `Perm'` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.15, + y: -27.45, + x: 153.03, + country: `Australia`, + name: `Brisbane` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.15, + y: 47.34, + x: 123.96, + country: `China`, + name: `Qiqihar` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.14, + y: 11.01, + x: -74.68, + country: `Colombia`, + name: `Barranquilla` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.14, + y: 7.38, + x: 3.9, + country: `Nigeria`, + name: `Ibadan` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.14, + y: 53.34, + x: -6.26, + country: `Ireland`, + name: `Dublin` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.14, + y: 55.73, + x: 49.15, + country: `Russia`, + name: `Kazan'` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.12, + y: 40.65, + x: 109.98, + country: `China`, + name: `Baotou` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.11, + y: 51.93, + x: 4.49, + country: `Netherlands`, + name: `Rotterdam` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.1, + y: 31.41, + x: 73.08, + country: `Pakistan`, + name: `Faisalabad` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.1, + y: 51.21, + x: 4.43, + country: `Belgium`, + name: `Antwerp` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.1, + y: 54.82, + x: 56.1, + country: `Russia`, + name: `Ufa` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.09, + y: 35.5, + x: 139.73, + country: `Japan`, + name: `Kawasaki` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.07, + y: -31.32, + x: -64.18, + country: `Argentina`, + name: `Cordoba` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.07, + y: -25.96, + x: 32.57, + country: `Mozambique`, + name: `Maputo` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.06, + y: -23.95, + x: -46.31, + country: `Brazil`, + name: `Santos` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.06, + y: 26.85, + x: 80.92, + country: `India`, + name: `Lucknow` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.06, + y: 39.62, + x: 118.18, + country: `China`, + name: `Tangshan` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.06, + y: 51.78, + x: 19.48, + country: `Poland`, + name: `Lodz` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.05, + y: -0.23, + x: -78.52, + country: `Ecuador`, + name: `Quito` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.05, + y: 19.05, + x: -98.19, + country: `Mexico`, + name: `Puebla de Zaragoza` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.04, + y: 31.78, + x: -106.45, + country: `US`, + name: `El Paso` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.04, + y: -32.94, + x: -60.66, + country: `Argentina`, + name: `Rosario` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.04, + y: 43.78, + x: 87.59, + country: `China`, + name: `Urumqi` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.03, + y: 4.14, + x: 9.71, + country: `Cameroon`, + name: `Douala` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.03, + y: 28.67, + x: 115.89, + country: `China`, + name: `Nanchang` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.02, + y: -7.03, + x: 110.44, + country: `Indonesia`, + name: `Semarang` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.02, + y: 25.61, + x: 85.14, + country: `India`, + name: `Patna` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.02, + y: 26.91, + x: 75.8, + country: `India`, + name: `Jaipur` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.02, + y: 50.63, + x: 3.06, + country: `France`, + name: `Lille` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.01, + y: 26.57, + x: 106.7, + country: `China`, + name: `Guiyang` + }), + new WorldCitiesItem( + { + capital: true, + population: 1, + y: 56.88, + x: 24.05, + country: `Latvia`, + name: `Riga` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.99, + y: -31.98, + x: 115.92, + country: `Australia`, + name: `Perth` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.99, + y: 32.75, + x: 13.21, + country: `Libya`, + name: `Tripoli` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.99, + y: -16.73, + x: -49.25, + country: `Brazil`, + name: `Goiania` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.99, + y: -16.5, + x: -68.15, + country: `Bolivia`, + name: `La Paz` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.99, + y: 32.65, + x: 51.68, + country: `Iran`, + name: `Esfahan` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.98, + y: 33.92, + x: -6.75, + country: `Morocco`, + name: `Rabat` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.98, + y: -34.92, + x: 138.87, + country: `Australia`, + name: `Adelaide` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.98, + y: 43.28, + x: -2.97, + country: `Spain`, + name: `Bilbao` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.97, + y: 29.43, + x: -98.52, + country: `US`, + name: `San Antonio` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.97, + y: 38.08, + x: 46.29, + country: `Iran`, + name: `Tabriz` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.96, + y: -25.73, + x: 28.22, + country: `South Africa`, + name: `Pretoria` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.96, + y: 9.91, + x: 78.12, + country: `India`, + name: `Madurai` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.96, + y: 40.04, + x: -82.99, + country: `US`, + name: `Columbus` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.94, + y: 37.37, + x: -5.97, + country: `Spain`, + name: `Sevilla` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.93, + y: 25.28, + x: 82.96, + country: `India`, + name: `Benares` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.92, + y: 15.55, + x: 32.53, + country: `Sudan`, + name: `Khartoum` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.92, + y: 13.7, + x: -89.2, + country: `El Salvador`, + name: `San Salvador` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.91, + y: 54.37, + x: 18.62, + country: `Poland`, + name: `Gdansk` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.9, + y: 60.2, + x: 24.98, + country: `Finland`, + name: `Helsinki` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.89, + y: -17.83, + x: 31.02, + country: `Zimbabwe`, + name: `Harare` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.89, + y: 10.65, + x: -71.64, + country: `Venezuela`, + name: `Maracaibo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.89, + y: 26.07, + x: 119.3, + country: `China`, + name: `Fuzhou` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.88, + y: 18.53, + x: -72.34, + country: `Haiti`, + name: `Port-au-Prince` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.87, + y: 38.57, + x: -121.42, + country: `US`, + name: `Sacramento` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.85, + y: 29.63, + x: 52.57, + country: `Iran`, + name: `Shiraz` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.85, + y: -36.89, + x: 174.8, + country: `New Zealand`, + name: `Auckland` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.85, + y: 35.11, + x: -90, + country: `US`, + name: `Memphis` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.84, + y: 33.61, + x: 73.04, + country: `Pakistan`, + name: `Rawalpindi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.83, + y: 36.79, + x: 118.06, + country: `China`, + name: `Zibo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.83, + y: 50.06, + x: 19.95, + country: `Poland`, + name: `Krakow` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.82, + y: 43.21, + x: -77.64, + country: `US`, + name: `Rochester` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.82, + y: 45.37, + x: -75.65, + country: `Canada`, + name: `Ottawa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.81, + y: 44.46, + x: 8.92, + country: `Italy`, + name: `Genova` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.81, + y: -3.12, + x: -60.01, + country: `Brazil`, + name: `Manaus` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.8, + y: 9.52, + x: -12.8, + country: `Guinea`, + name: `Conakry` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.8, + y: 25.38, + x: 68.37, + country: `Pakistan`, + name: `Hyderabad` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.8, + y: 36.88, + x: -76.27, + country: `US`, + name: `Norfolk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.8, + y: 53.08, + x: 8.86, + country: `Germany`, + name: `Bremen` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.79, + y: 53.57, + x: -113.27, + country: `Canada`, + name: `Edmonton` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.79, + y: -3, + x: 104.83, + country: `Indonesia`, + name: `Palembang` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.79, + y: 49.84, + x: 24.03, + country: `Ukraine`, + name: `Lvov` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.78, + y: 22.38, + x: 114.23, + country: `UK`, + name: `Kowloon` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.78, + y: 37, + x: 35.32, + country: `Turkey`, + name: `Adana` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.77, + y: 51.9, + x: 4.3, + country: `Netherlands`, + name: `The Hague` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.77, + y: 18.02, + x: -76.8, + country: `Jamaica`, + name: `Kingston` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.76, + y: 21.32, + x: -157.81, + country: `US`, + name: `Honolulu` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.75, + y: 50.62, + x: 5.57, + country: `Belgium`, + name: `Liege` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.74, + y: 34.67, + x: 112.36, + country: `China`, + name: `Luoyang` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.74, + y: 35.49, + x: -97.53, + country: `US`, + name: `Oklahoma City` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.72, + y: 38.13, + x: 13.4, + country: `Italy`, + name: `Palermo` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.72, + y: 59.93, + x: 10.72, + country: `Norway`, + name: `Oslo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.71, + y: 40.63, + x: 22.8, + country: `Greece`, + name: `ThessaXiki` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.71, + y: 57.75, + x: 12, + country: `Sweden`, + name: `Goteborg` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.71, + y: -5.19, + x: 119.72, + country: `Indonesia`, + name: `Vjuag Padang` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.71, + y: 24.14, + x: 120.67, + country: `Taiwan`, + name: `T\`ai-chung` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.71, + y: 53.37, + x: -1.46, + country: `UK`, + name: `Sheffield` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.7, + y: -25.22, + x: -57.67, + country: `Paraguay`, + name: `Asuncion` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.7, + y: 45.81, + x: 15.96, + country: `Croatia`, + name: `Zagreb` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.7, + y: 11.56, + x: 104.91, + country: `Cambodia`, + name: `Phnom Penh` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.7, + y: 51.35, + x: 12.4, + country: `Germany`, + name: `Leipzig` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.69, + y: 9.99, + x: 76.52, + country: `India`, + name: `Cochin` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.69, + y: -33.88, + x: 25.48, + country: `South Africa`, + name: `Port Elizabeth` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.69, + y: 54.59, + x: -5.91, + country: `UK`, + name: `Belfast` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.68, + y: -32.9, + x: -71.3, + country: `Chile`, + name: `Valparaiso` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.68, + y: -36.88, + x: -72.85, + country: `Chile`, + name: `Concepcion` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.68, + y: 12.15, + x: -86.27, + country: `Nicaragua`, + name: `Managua` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.68, + y: 40.69, + x: -111.89, + country: `US`, + name: `Salt Lake City` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.67, + y: 47, + x: 28.83, + country: `Moldova`, + name: `Kishinev` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.67, + y: 9.93, + x: -84.08, + country: `Costa Rica`, + name: `San Jose` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.67, + y: 51.03, + x: -114.05, + country: `Canada`, + name: `Calgary` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.67, + y: 51.05, + x: 13.71, + country: `Germany`, + name: `Dresden` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.66, + y: 23.17, + x: 120.23, + country: `Taiwan`, + name: `T\`ai-nan` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.66, + y: -18.87, + x: 47.5, + country: `Madagascar`, + name: `Antananarivo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.65, + y: 43.13, + x: 131.96, + country: `Russia`, + name: `Vladivostok` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.65, + y: -32.9, + x: -68.83, + country: `Argentina`, + name: `Mendoza` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.65, + y: 3.87, + x: 11.51, + country: `Cameroon`, + name: `Yaounde` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.65, + y: 12.65, + x: -7.99, + country: `Mali`, + name: `Bamako` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.65, + y: 22.84, + x: 89.56, + country: `Bangladesh`, + name: `Khulna` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.64, + y: 30.33, + x: -81.66, + country: `US`, + name: `Jacksonville` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.64, + y: 43.78, + x: 11.21, + country: `Italy`, + name: `Firenze` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.64, + y: 44.84, + x: -0.6, + country: `France`, + name: `Bordeaux` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.64, + y: 51.12, + x: 17.04, + country: `Poland`, + name: `Wroclaw` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.63, + y: 37.31, + x: -121.85, + country: `US`, + name: `San Jose` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.63, + y: 8.95, + x: -79.4, + country: `Panama`, + name: `Panama` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.63, + y: 35.75, + x: -0.52, + country: `Algeria`, + name: `Oran` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.63, + y: 51.5, + x: -3.15, + country: `UK`, + name: `Cardiff` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.63, + y: 55.88, + x: -3.3, + country: `UK`, + name: `Edinburgh` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.63, + y: 49.92, + x: -97.12, + country: `Canada`, + name: `Winnipeg` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.63, + y: 52.32, + x: 104.25, + country: `Russia`, + name: `Irkutsk` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.62, + y: 42.88, + x: 74.77, + country: `Kyrgyzstan`, + name: `Frunze` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.62, + y: 10.18, + x: -68, + country: `Venezuela`, + name: `Valencia` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.62, + y: 30.5, + x: 47.76, + country: `Iraq`, + name: `Al Basra` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.61, + y: 49.88, + x: 73.2, + country: `Kazakhstan`, + name: `Karaganda` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.6, + y: 48.53, + x: 135.07, + country: `Russia`, + name: `Khabarovsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.6, + y: 17.75, + x: 83.33, + country: `India`, + name: `Vishakhapatnam` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.6, + y: -2.5, + x: -44.43, + country: `Brazil`, + name: `Sao Luis` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.6, + y: 53.7, + x: 87.17, + country: `Russia`, + name: `Novokuznetsk` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.6, + y: 2.04, + x: 45.34, + country: `Somalia`, + name: `Muqdisho` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.6, + y: 46.8, + x: -71.24, + country: `Canada`, + name: `Quebec` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.59, + y: 28, + x: -82.59, + country: `US`, + name: `Tampa` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.59, + y: 38.63, + x: 68.9, + country: `Tajikistan`, + name: `Dushanfe` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.59, + y: -4.29, + x: 15.29, + country: `Congo`, + name: `Brazzaville` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.59, + y: 31.63, + x: 74.87, + country: `India`, + name: `Amritsar` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.58, + y: 54.69, + x: 25.28, + country: `Lithuania`, + name: `Vilnius` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.57, + y: 36.34, + x: 43.14, + country: `Iraq`, + name: `Mosul` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.57, + y: 41.65, + x: -0.88, + country: `Spain`, + name: `Zaragoza` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.57, + y: 50.73, + x: 7.1, + country: `Germany`, + name: `Bonn` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.57, + y: 51.51, + x: 7.47, + country: `Germany`, + name: `Dortmund` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.55, + y: 14.1, + x: -87.2, + country: `Honduras`, + name: `Tegucigalpa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.55, + y: 21.43, + x: 39.81, + country: `Saudi Arabia`, + name: `Mecca` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.55, + y: 47.93, + x: 106.91, + country: `Mongolia`, + name: `Ulaanbaatar` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.54, + y: -15.43, + x: 28.17, + country: `Zambia`, + name: `Lusaka` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.54, + y: -11.68, + x: 27.55, + country: `Zaire`, + name: `Lumumbashi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.54, + y: 11.92, + x: 8.52, + country: `Nigeria`, + name: `Kano` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.54, + y: 31.15, + x: -8, + country: `Morocco`, + name: `Marrakech` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.54, + y: 34.04, + x: -5, + country: `Morocco`, + name: `Fes` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.54, + y: 43.6, + x: 1.44, + country: `France`, + name: `Toulouse` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.53, + y: 15.62, + x: 32.48, + country: `Sudan`, + name: `Omdurman` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.53, + y: 8.38, + x: -12.91, + country: `Sierra Leone`, + name: `Freetown` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.53, + y: 21.98, + x: 96.08, + country: `Burma`, + name: `Mandalay` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.52, + y: 51.49, + x: 6.78, + country: `Germany`, + name: `Duisburg` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.51, + y: 46.25, + x: 48, + country: `Russia`, + name: `Astrakhan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.51, + y: -5.78, + x: -35.25, + country: `Brazil`, + name: `Natal` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.5, + y: 10.07, + x: -69.34, + country: `Venezuela`, + name: `Barquisimeto` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.49, + y: 5.35, + x: 100.55, + country: `Malaysia`, + name: `George Town` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.49, + y: 31.77, + x: 35.23, + country: `Israel`, + name: `Jerusalem` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.48, + y: 59.28, + x: 24.75, + country: `Estonia`, + name: `Tallinn` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.48, + y: 35.21, + x: -80.84, + country: `US`, + name: `Charlotte` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.47, + y: 6.52, + x: -10.77, + country: `Liberia`, + name: `Monrovia` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.47, + y: 4.37, + x: 18.56, + country: `Cent Af Rep`, + name: `Bangui` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.47, + y: 47.22, + x: -1.56, + country: `France`, + name: `Nantes` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.47, + y: 51.05, + x: 3.74, + country: `Belgium`, + name: `Gent` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.47, + y: 68.96, + x: 33.09, + country: `Russia`, + name: `Murmansk` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.46, + y: 0.32, + x: 32.58, + country: `Uganda`, + name: `Kampala` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.45, + y: 42, + x: 21.53, + country: `Macedonia`, + name: `Skopje` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.45, + y: 32.88, + x: 129.86, + country: `Japan`, + name: `Nagasaki` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.45, + y: -16.4, + x: -71.52, + country: `Peru`, + name: `Arequipa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.45, + y: 49.2, + x: 16.62, + country: `Czechia`, + name: `Brno` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.44, + y: 12.48, + x: -1.67, + country: `Burkina Faso`, + name: `Ouagadouou` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.44, + y: -4.02, + x: 39.67, + country: `Kenya`, + name: `Mombasa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.44, + y: 32.04, + x: 20.31, + country: `Libya`, + name: `Banghazi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.44, + y: -17.79, + x: -63.2, + country: `Bolivia`, + name: `Santa Cruz de La Sierra` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.43, + y: 48.27, + x: 17.27, + country: `Slovakia`, + name: `Bratislava` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.43, + y: 15.36, + x: 44.21, + country: `Yemen`, + name: `Sanaa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.43, + y: 22.24, + x: -97.84, + country: `Mexico`, + name: `Tampico` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.43, + y: 34.73, + x: 36.72, + country: `Syria`, + name: `Homs` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.42, + y: 45.42, + x: 12.37, + country: `Italy`, + name: `Venezia` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.42, + y: 64.52, + x: 40.65, + country: `Russia`, + name: `Arkhangelsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.41, + y: -20.2, + x: 28.71, + country: `Zimbabwe`, + name: `Bulawayo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.41, + y: -33, + x: 151.91, + country: `Australia`, + name: `Newcastle` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.41, + y: 7.08, + x: 125.61, + country: `Philippines`, + name: `Davao` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.4, + y: 6.28, + x: 1.35, + country: `Togo`, + name: `Lome` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.4, + y: 13.6, + x: 2.08, + country: `Niger`, + name: `Niamey` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.4, + y: 20.82, + x: -89.55, + country: `Mexico`, + name: `Merida` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.4, + y: 37.95, + x: 58.39, + country: `Turkmenistan`, + name: `Ashkhabad` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.4, + y: 48.58, + x: 7.77, + country: `France`, + name: `Strasbourg` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.39, + y: 19.01, + x: -96.08, + country: `Mexico`, + name: `Veracruz` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.39, + y: 28.56, + x: -105.97, + country: `Mexico`, + name: `Chihuaha` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.39, + y: 20.86, + x: 106.68, + country: `Vietnam`, + name: `Haiphong` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.38, + y: 18, + x: 102.68, + country: `Laos`, + name: `Vientiane` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.37, + y: 10.64, + x: -61.49, + country: `Trinidad`, + name: `Port of Spain` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.37, + y: 39.66, + x: 66.95, + country: `Uzbekistan`, + name: `Samarkand` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.35, + y: -41.21, + x: 175.14, + country: `New Zealand`, + name: `Wellington` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.35, + y: -7.93, + x: -79, + country: `Peru`, + name: `Trujillo` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.34, + y: 43.87, + x: 18.43, + country: `Bosnia`, + name: `Sarajevo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.34, + y: 48.3, + x: 14.29, + country: `Austria`, + name: `Linz` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.33, + y: 40.72, + x: -74.2, + country: `US`, + name: `Newark` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.33, + y: 29.96, + x: 32.56, + country: `Egypt`, + name: `Suez` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.33, + y: 47.06, + x: 15.43, + country: `Austria`, + name: `Graz` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.32, + y: 12.86, + x: 45.18, + country: `Yemen`, + name: `Aden` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.32, + y: -33.03, + x: 27.9, + country: `South Africa`, + name: `East Xdon` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.32, + y: -43.55, + x: 172.68, + country: `New Zealand`, + name: `Christchurch` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.32, + y: 27.71, + x: 85.31, + country: `Nepal`, + name: `Kathmandu` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.31, + y: 12.95, + x: 75.16, + country: `India`, + name: `Mangalore` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.31, + y: 34.75, + x: 10.76, + country: `Tunisia`, + name: `Sfax` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.31, + y: 25.2, + x: 51.5, + country: `Qatar`, + name: `Doha` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.3, + y: -0.92, + x: 100.48, + country: `Indonesia`, + name: `Padang` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.3, + y: 44.63, + x: -63.58, + country: `Canada`, + name: `Halifax` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.3, + y: 16.97, + x: -99.93, + country: `Mexico`, + name: `ACapulco` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.3, + y: 12.1, + x: 15.24, + country: `Chad`, + name: `N'Djamena` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.3, + y: 39.23, + x: 9.11, + country: `Italy`, + name: `Cagliari` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.3, + y: 46.95, + x: 7.45, + country: `Switzerland`, + name: `Bern` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.29, + y: -19.77, + x: 35.02, + country: `Mozambique`, + name: `Beira` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.29, + y: -4.64, + x: 12.06, + country: `Congo`, + name: `Pointe Noire` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.29, + y: 40.75, + x: 140.67, + country: `Japan`, + name: `Aomori` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.29, + y: 24.43, + x: 39.7, + country: `Saudi Arabia`, + name: `Al Madinah` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.29, + y: -31.62, + x: -60.7, + country: `Argentina`, + name: `Santa Fe` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.29, + y: -5.89, + x: 22.4, + country: `Zaire`, + name: `Kananga` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.28, + y: 18.03, + x: -15.78, + country: `Mauritania`, + name: `Nouakchott` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.28, + y: 15.33, + x: 38.97, + country: `Eritrea`, + name: `Asmara` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.28, + y: 29.6, + x: 60.83, + country: `Iran`, + name: `Zahedan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.28, + y: -6.62, + x: -79.83, + country: `Peru`, + name: `Chiclayo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.28, + y: -15.55, + x: -56.05, + country: `Brazil`, + name: `Cuiaba` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.28, + y: 0.52, + x: 25.2, + country: `Zaire`, + name: `Kisangani` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.27, + y: 53.2, + x: 158.72, + country: `Russia`, + name: `Petropavloski-Kamchatskiy` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.27, + y: -3.27, + x: 29.53, + country: `Burundi`, + name: `Bujumbura` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.27, + y: -35.35, + x: 149.04, + country: `Australia`, + name: `Canberra` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.27, + y: 28.57, + x: 77.22, + country: `India`, + name: `New Delhi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.26, + y: 49.32, + x: 0.22, + country: `France`, + name: `Le Havre` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.26, + y: 48.65, + x: -123.57, + country: `Canada`, + name: `Victoria` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.26, + y: 11.88, + x: 13.26, + country: `Niger`, + name: `Maiduguri` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.26, + y: -12.04, + x: -76.84, + country: `Peru`, + name: `Callao` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.25, + y: -7.33, + x: 19, + country: `Zaire`, + name: `Kahemba` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.25, + y: 6.45, + x: 7.49, + country: `Nigeria`, + name: `Enugu` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.25, + y: 39.9, + x: 41.29, + country: `Turkey`, + name: `Erzurum` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.24, + y: 24.24, + x: 54.62, + country: `UAE`, + name: `Abu Zaby` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.24, + y: 5.93, + x: -55.23, + country: `SuriName`, + name: `Paramaribo` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.24, + y: -0.5, + x: 9.49, + country: `Gabon`, + name: `Libreville` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.24, + y: 60.35, + x: 5.49, + country: `Norway`, + name: `Bergen` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.24, + y: 41.32, + x: 36.37, + country: `Turkey`, + name: `Samsun` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.24, + y: 45.7, + x: 13.93, + country: `Italy`, + name: `Trieste` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.23, + y: -13.92, + x: 33.82, + country: `Malawi`, + name: `LiXgwe` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.23, + y: 31.97, + x: 54.45, + country: `Iran`, + name: `Yazd` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.23, + y: -29.15, + x: 26.26, + country: `South Africa`, + name: `Bloemfontein` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.23, + y: -2.46, + x: -54.61, + country: `Brazil`, + name: `Santarem` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.23, + y: 46.07, + x: 14.64, + country: `Slovenia`, + name: `Ljubljana` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.22, + y: 1.42, + x: 124.88, + country: `Indonesia`, + name: `Manado` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.22, + y: -8.93, + x: -78.45, + country: `Peru`, + name: `Chimbote` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.22, + y: -27.4, + x: -58.9, + country: `Argentina`, + name: `Resistencia` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.22, + y: 47.8, + x: 13.09, + country: `Austria`, + name: `Salzburg` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.22, + y: -38.73, + x: -62.27, + country: `Argentina`, + name: `Bahia Blanca` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.21, + y: -1.21, + x: 116.86, + country: `Indonesia`, + name: `Balikpapan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.21, + y: 19.62, + x: 37.22, + country: `Sudan`, + name: `Bur Sudan` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.21, + y: 41.33, + x: 19.83, + country: `Albania`, + name: `Tirane` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: 7.58, + x: -72.01, + country: `Venezuela`, + name: `San Cristobal` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: 34.34, + x: 36.01, + country: `Lebanon`, + name: `Tripoli` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: 31.6, + x: 65.5, + country: `Afghanistan`, + name: `Qandahar` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: 23.36, + x: -106.27, + country: `Mexico`, + name: `Mazatlan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: -12.73, + x: 15.78, + country: `Angola`, + name: `Huambo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: -8.75, + x: -63.9, + country: `Brazil`, + name: `Porto Velho` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: 52.11, + x: -106.63, + country: `Canada`, + name: `Saskatoon` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.2, + y: 33.72, + x: 73.06, + country: `Pakistan`, + name: `Islamabad` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.19, + y: 6.77, + x: -58.17, + country: `Guyana`, + name: `Georgetown` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.19, + y: 24.08, + x: 32.95, + country: `Egypt`, + name: `Aswan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.19, + y: 62.01, + x: 129.83, + country: `Russia`, + name: `Yakutsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.19, + y: 50.41, + x: -104.65, + country: `Canada`, + name: `Regina` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.18, + y: 61.19, + x: -149.17, + country: `US`, + name: `Anchorage` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.18, + y: -23.83, + x: -70.23, + country: `Chile`, + name: `Antofagasta` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.18, + y: -13.6, + x: -71.86, + country: `Peru`, + name: `Cuzco` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.18, + y: -2.12, + x: 29.99, + country: `Rwanda`, + name: `Kigali` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.18, + y: 35.17, + x: 33.39, + country: `Cyprus`, + name: `Nicosia` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.18, + y: -3.75, + x: -73.19, + country: `Peru`, + name: `Iquitos` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.18, + y: 47.27, + x: 11.35, + country: `Austria`, + name: `Innsbruck` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.17, + y: 69.33, + x: 88.1, + country: `Russia`, + name: `Noril\`sk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.17, + y: -43, + x: 147.5, + country: `Australia`, + name: `Hobart` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.17, + y: 50.33, + x: 110.75, + country: `Russia`, + name: `Chatanga` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.17, + y: 16.46, + x: 107.7, + country: `Vietnam`, + name: `Hue` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.16, + y: 6.6, + x: 2.63, + country: `Benin`, + name: `Porto Novo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.16, + y: 34.46, + x: 62.21, + country: `Afghanistan`, + name: `Herat` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.15, + y: 16.92, + x: -96.94, + country: `Mexico`, + name: `Oaxaca` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.15, + y: -9.55, + x: 147.41, + country: `Papua N Guin`, + name: `Port Moresby` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.15, + y: 38.14, + x: 21.88, + country: `Greece`, + name: `Patras` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.15, + y: 39.48, + x: 76, + country: `China`, + name: `Kashi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.15, + y: -12.72, + x: 13.46, + country: `Angola`, + name: `Benguela` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.15, + y: 59.57, + x: 150.78, + country: `Russia`, + name: `Magadan` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.14, + y: 64.31, + x: -21.34, + country: `Iceland`, + name: `Reykjavik` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.14, + y: 55.57, + x: 9.9, + country: `Denmark`, + name: `Odense` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.14, + y: 13.18, + x: 30.16, + country: `Sudan`, + name: `El Obeid` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.14, + y: -28.66, + x: 24.83, + country: `South Africa`, + name: `Kimberley` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.14, + y: -5.81, + x: 13.45, + country: `Zaire`, + name: `Matadi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.13, + y: 0.05, + x: 18.46, + country: `Zaire`, + name: `Mbandaka` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.13, + y: 49.74, + x: 6.27, + country: `Luxembourg`, + name: `Luxembourg` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.12, + y: -22.57, + x: 17.1, + country: `Namibia`, + name: `Windhoek` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.12, + y: 67.8, + x: 64.33, + country: `Russia`, + name: `Vorkuta` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.12, + y: 45.34, + x: -65.65, + country: `Canada`, + name: `Saint John` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.12, + y: -0.82, + x: 9.15, + country: `Gabon`, + name: `Port Gentil` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.12, + y: 11.5, + x: 43.1, + country: `Djibouti`, + name: `Djibouti` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.11, + y: -20.26, + x: -69.91, + country: `Chile`, + name: `Iquique` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.11, + y: 11.91, + x: -15.65, + country: `GuineaBissau`, + name: `Bissau` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.11, + y: -3.39, + x: 129.31, + country: `Indonesia`, + name: `Ambon` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.11, + y: -45.86, + x: 170.5, + country: `New Zealand`, + name: `Dunedin` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.11, + y: -19.3, + x: 146.83, + country: `Australia`, + name: `Townsville` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.11, + y: -29.26, + x: 27.89, + country: `Lesotho`, + name: `Maseru` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.1, + y: 46.92, + x: -122.88, + country: `US`, + name: `Olympia` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.1, + y: 13.45, + x: -16.49, + country: `Gambia`, + name: `Banjul` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.1, + y: -45.83, + x: -67.5, + country: `Argentina`, + name: `Comodoro Rivadavia` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.1, + y: -53.15, + x: -70.8, + country: `Chile`, + name: `Punte Arenas` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.1, + y: -18.23, + x: 49.41, + country: `Madagascar`, + name: `Toamasina` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.1, + y: -24.66, + x: 25.79, + country: `Botswana`, + name: `Gaborone` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.09, + y: 15.95, + x: -16.3, + country: `Senegal`, + name: `Saint Louis` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.09, + y: 27, + x: -13.18, + country: `W Sahara`, + name: `Laayoune` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.09, + y: -19.04, + x: -65.26, + country: `Bolivia`, + name: `Sucre` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.08, + y: -31.31, + x: -57.71, + country: `Uruguay`, + name: `Salto` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.08, + y: 42.5, + x: 19.4, + country: `Montenegro`, + name: `Podgorica` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.08, + y: -41.48, + x: -73, + country: `Chile`, + name: `Puerto Montt` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.08, + y: 29.65, + x: 91.13, + country: `China`, + name: `Lhasa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.07, + y: 61.15, + x: 47, + country: `Russia`, + name: `Kotlas` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.07, + y: -12.7, + x: 130.99, + country: `Australia`, + name: `Darwin` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.07, + y: 1.5, + x: 110.43, + country: `Malaysia`, + name: `Kuching` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.06, + y: -23.29, + x: 44.02, + country: `Madagascar`, + name: `Toliara` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.06, + y: -31, + x: -71.02, + country: `Chile`, + name: `Coquimbo` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.06, + y: 4.93, + x: 114.97, + country: `Brunei`, + name: `Bandar Seri Begawan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.06, + y: -17.83, + x: 25.88, + country: `Zambia`, + name: `Livingstone` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.06, + y: -23.43, + x: 150.48, + country: `Australia`, + name: `Rockhampton` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.05, + y: 23.52, + x: 58.63, + country: `Oman`, + name: `Masqat` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.05, + y: -4.95, + x: 30, + country: `Tanzania`, + name: `Kigoma` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.05, + y: 16.96, + x: 7.98, + country: `Niger`, + name: `Agadez` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.05, + y: -10.26, + x: 40.18, + country: `Tanzania`, + name: `Mtwara` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.05, + y: -46.41, + x: 168.45, + country: `New Zealand`, + name: `Invercargill` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.05, + y: -6.18, + x: 35.75, + country: `Tanzania`, + name: `Dodoma` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.04, + y: 64.84, + x: -147.65, + country: `US`, + name: `Fairbanks` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.04, + y: 19.71, + x: -155.07, + country: `US`, + name: `Hilo` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.04, + y: 4.92, + x: -52.4, + country: `Fr Guiana`, + name: `Cayenne` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.04, + y: -26.3, + x: 31.19, + country: `Swaziland`, + name: `Mbabne` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.04, + y: -16.85, + x: 145.71, + country: `Australia`, + name: `Cairns` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.03, + y: 3.64, + x: 8.82, + country: `Eq Guinea`, + name: `Malabo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.03, + y: 50.28, + x: -66.4, + country: `Canada`, + name: `Sept-Iles` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.03, + y: -41.3, + x: 173.27, + country: `New Zealand`, + name: `Nelson` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.03, + y: 16.76, + x: -3.01, + country: `Mali`, + name: `Tombouctoo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: 58.39, + x: -134.13, + country: `US`, + name: `Juneau` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: -23.1, + x: 14.62, + country: `Namibia`, + name: `Walvis Bay` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: 54.42, + x: -130.05, + country: `Canada`, + name: `Prince Rupert` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: 20.9, + x: -16.83, + country: `Mauritania`, + name: `Nouadnibou` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: 27.2, + x: 2.53, + country: `Algeria`, + name: `In Salah` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: -32.04, + x: 115.93, + country: `Australia`, + name: `Fremantle` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: 68.35, + x: 17.3, + country: `Norway`, + name: `Narvik` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 62.52, + x: -114.06, + country: `Canada`, + name: `Yellowknife` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.01, + y: 17.12, + x: -88.8, + country: `Belize`, + name: `Belmopan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 70.39, + x: 23.91, + country: `Norway`, + name: `Hammerfest` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.01, + y: 64.27, + x: -51.58, + country: `Greenland`, + name: `Godthab` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 60.65, + x: -135.01, + country: `Canada`, + name: `Whitehorse` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 59.33, + x: 143.25, + country: `Russia`, + name: `Okhotsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 52.05, + x: 113.58, + country: `Russia`, + name: `Chita` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 55.88, + x: 37.75, + country: `Russia`, + name: `Druzba` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 53.31, + x: -60.55, + country: `Canada`, + name: `Goose Bay` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.01, + y: 27.44, + x: 89.67, + country: `Bhutan`, + name: `Thimbu` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 78.2, + x: 15.66, + country: `Norway`, + name: `Xgyearbyen` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 30.14, + x: 9.82, + country: `Libya`, + name: `Ghadamis` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 71.7, + x: 128.75, + country: `Russia`, + name: `Tiksi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 77.67, + x: -69, + country: `Greenland`, + name: `Thule` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 22.83, + x: 5.55, + country: `Algeria`, + name: `Tamanrasset` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 60.12, + x: -149.45, + country: `US`, + name: `Seward` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 70.53, + x: -23, + country: `Greenland`, + name: `Scoresbyund` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 66.57, + x: 66.58, + country: `Russia`, + name: `Salekhard` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 64.59, + x: -165.27, + country: `US`, + name: `Nome` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 68.27, + x: -133.67, + country: `Canada`, + name: `Inuvik` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 67.35, + x: 86.55, + country: `Russia`, + name: `Igarka` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 69.38, + x: -53.63, + country: `Greenland`, + name: `Godhavn` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 58.71, + x: -94.18, + country: `Canada`, + name: `Churchill` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 2.75, + x: -60.5, + country: `Brazil`, + name: `Boa Vista` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: -15.75, + x: 133.22, + country: `Australia`, + name: `Birdum` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 65.67, + x: -37.31, + country: `Greenland`, + name: `Angmagssalik` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 64.4, + x: 177.13, + country: `Russia`, + name: `Anadyr` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 47.81, + x: 97, + country: `Mongolia`, + name: `Uliastay` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: -15.05, + x: 40.7, + country: `Mozambique`, + name: `Mocambique` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: -51.71, + x: -69.41, + country: `Argentina`, + name: `Rio Gallegos` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 27.7, + x: -8.16, + country: `Algeria`, + name: `Tindouf` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 25.91, + x: 13.91, + country: `Libya`, + name: `Murzuq` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 21.76, + x: 31.28, + country: `Sudan`, + name: `Wadi Halfa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: -23.63, + x: 133.93, + country: `Australia`, + name: `Alice Springs` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 46.96, + x: 142.75, + country: `Russia`, + name: `Yuzhno-Sakhalinsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 50.08, + x: 45.53, + country: `Russia`, + name: `Nikolayevsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 67.58, + x: 133.41, + country: `Russia`, + name: `Verkhoyansk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 54.86, + x: -67.01, + country: `Canada`, + name: `Schefferville` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 51.33, + x: -80.73, + country: `Canada`, + name: `Moosonee` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/dashboard-tile/map-dashboard/src/index.css b/samples/charts/dashboard-tile/map-dashboard/src/index.css new file mode 100644 index 0000000000..8b42ec3ed2 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/src/index.css @@ -0,0 +1,3 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/dashboard-tile/map-dashboard/src/index.ts b/samples/charts/dashboard-tile/map-dashboard/src/index.ts new file mode 100644 index 0000000000..53a2e79d21 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/src/index.ts @@ -0,0 +1,44 @@ +import { IgcDashboardTileModule, IgcDataChartDashboardTileModule, IgcGeographicMapDashboardTileModule, IgcLinearGaugeDashboardTileModule, IgcPieChartDashboardTileModule, IgcRadialGaugeDashboardTileModule } from 'igniteui-webcomponents-dashboards'; +import { IgcDashboardTileComponent } from 'igniteui-webcomponents-dashboards'; +import { WorldCitiesItem, WorldCities } from './WorldCities'; + +import { ModuleManager } from 'igniteui-webcomponents-core'; + +import "./index.css"; + +ModuleManager.register( + IgcDashboardTileModule, + IgcDataChartDashboardTileModule, + IgcGeographicMapDashboardTileModule, + IgcLinearGaugeDashboardTileModule, + IgcPieChartDashboardTileModule, + IgcRadialGaugeDashboardTileModule +); + +export class Sample { + + private dashboard: IgcDashboardTileComponent + private _bind: () => void; + + constructor() { + var dashboard = this.dashboard = document.getElementById('dashboard') as IgcDashboardTileComponent; + + this._bind = () => { + dashboard.dataSource = this.worldCities; + } + this._bind(); + + } + + private _worldCities: WorldCities = null; + public get worldCities(): WorldCities { + if (this._worldCities == null) + { + this._worldCities = new WorldCities(); + } + return this._worldCities; + } + +} + +new Sample(); diff --git a/samples/charts/dashboard-tile/map-dashboard/tsconfig.json b/samples/charts/dashboard-tile/map-dashboard/tsconfig.json new file mode 100644 index 0000000000..e7c370def4 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/tsconfig.json @@ -0,0 +1,41 @@ +{ + "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" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/map-dashboard/tslint.json b/samples/charts/dashboard-tile/map-dashboard/tslint.json new file mode 100644 index 0000000000..e3b56e93a1 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/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/dashboard-tile/map-dashboard/webpack.config.js b/samples/charts/dashboard-tile/map-dashboard/webpack.config.js new file mode 100644 index 0000000000..1de7f08279 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/webpack.config.js @@ -0,0 +1,103 @@ +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, '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/charts/dashboard-tile/pie-dashboard/.prettierrc b/samples/charts/dashboard-tile/pie-dashboard/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/.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/dashboard-tile/pie-dashboard/ReadMe.md b/samples/charts/dashboard-tile/pie-dashboard/ReadMe.md new file mode 100644 index 0000000000..44c855f922 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of Web Components application with example of Pie Dashboard feature using [Dashboard Tile](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-wc-examples.git +git checkout master +cd ./igniteui-wc-examples +cd ./samples/charts/dashboard-tile/pie-dashboard +``` + +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/charts/dashboard-tile/pie-dashboard/index.html b/samples/charts/dashboard-tile/pie-dashboard/index.html new file mode 100644 index 0000000000..218865596c --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/index.html @@ -0,0 +1,34 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+ + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json new file mode 100644 index 0000000000..79102fd069 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/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": { + "babel-runtime": "^6.26.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-dashboards": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", + "lit-html": "^3.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.96.1", + "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/dashboard-tile/pie-dashboard/sandbox.config.json b/samples/charts/dashboard-tile/pie-dashboard/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/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/dashboard-tile/pie-dashboard/src/EnergyGlobalDemand.ts b/samples/charts/dashboard-tile/pie-dashboard/src/EnergyGlobalDemand.ts new file mode 100644 index 0000000000..3d2ed388a0 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/dashboard-tile/pie-dashboard/src/index.css b/samples/charts/dashboard-tile/pie-dashboard/src/index.css new file mode 100644 index 0000000000..8b42ec3ed2 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/src/index.css @@ -0,0 +1,3 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/dashboard-tile/pie-dashboard/src/index.ts b/samples/charts/dashboard-tile/pie-dashboard/src/index.ts new file mode 100644 index 0000000000..58784b8353 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/src/index.ts @@ -0,0 +1,44 @@ +import { IgcDashboardTileModule, IgcDataChartDashboardTileModule, IgcGeographicMapDashboardTileModule, IgcLinearGaugeDashboardTileModule, IgcPieChartDashboardTileModule, IgcRadialGaugeDashboardTileModule } from 'igniteui-webcomponents-dashboards'; +import { IgcDashboardTileComponent } from 'igniteui-webcomponents-dashboards'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; + +import { ModuleManager } from 'igniteui-webcomponents-core'; + +import "./index.css"; + +ModuleManager.register( + IgcDashboardTileModule, + IgcDataChartDashboardTileModule, + IgcGeographicMapDashboardTileModule, + IgcLinearGaugeDashboardTileModule, + IgcPieChartDashboardTileModule, + IgcRadialGaugeDashboardTileModule +); + +export class Sample { + + private dashboard: IgcDashboardTileComponent + private _bind: () => void; + + constructor() { + var dashboard = this.dashboard = document.getElementById('dashboard') as IgcDashboardTileComponent; + + this._bind = () => { + dashboard.dataSource = this.energyGlobalDemand; + } + this._bind(); + + } + + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + +} + +new Sample(); diff --git a/samples/charts/dashboard-tile/pie-dashboard/tsconfig.json b/samples/charts/dashboard-tile/pie-dashboard/tsconfig.json new file mode 100644 index 0000000000..e7c370def4 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/tsconfig.json @@ -0,0 +1,41 @@ +{ + "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" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/pie-dashboard/tslint.json b/samples/charts/dashboard-tile/pie-dashboard/tslint.json new file mode 100644 index 0000000000..e3b56e93a1 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/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/dashboard-tile/pie-dashboard/webpack.config.js b/samples/charts/dashboard-tile/pie-dashboard/webpack.config.js new file mode 100644 index 0000000000..1de7f08279 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/webpack.config.js @@ -0,0 +1,103 @@ +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, '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/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/annotations-custom/tsconfig.json b/samples/charts/data-chart/annotations-custom/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/annotations-custom/tsconfig.json +++ b/samples/charts/data-chart/annotations-custom/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.json b/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 4313c76dd2..46882e908b 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 9186f79ca8..813dedf04c 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-crossing/src/index.ts b/samples/charts/data-chart/axis-crossing/src/index.ts index 8f5d725e5d..94c0be46a0 100644 --- a/samples/charts/data-chart/axis-crossing/src/index.ts +++ b/samples/charts/data-chart/axis-crossing/src/index.ts @@ -7,12 +7,12 @@ ModuleManager.register( IgcDataChartCoreModule, IgcDataChartScatterModule, IgcDataChartScatterCoreModule, - IgcDataChartInteractivityModule, + IgcDataChartInteractivityModule, ); export class DataChartAxisCrossing { - private chart: IgcDataChartComponent; + private chart: IgcDataChartComponent; private xAxis: IgcNumericXAxisComponent; private yAxis: IgcNumericYAxisComponent; private xAxisCrossLabel: HTMLLabelElement; @@ -25,9 +25,9 @@ export class DataChartAxisCrossing { this.onYAxisSliderChanged = this.onYAxisSliderChanged.bind(this); this.initData(); - - this.chart = document.getElementById('chart') as IgcDataChartComponent; - + + this.chart = document.getElementById('chart') as IgcDataChartComponent; + this.xAxis = document.getElementById("xAxis") as IgcNumericXAxisComponent; this.yAxis = document.getElementById("yAxis") as IgcNumericYAxisComponent; @@ -39,11 +39,11 @@ export class DataChartAxisCrossing { const xAxisSlider = document.getElementById("xAxisCrossingSlider") as HTMLInputElement; xAxisSlider.addEventListener("input", this.onXAxisSliderChanged); - + const yAxisSlider = document.getElementById("yAxisCrossingSlider") as HTMLInputElement; yAxisSlider.addEventListener("input", this.onYAxisSliderChanged); - this.chart.dataSource = this.data; + this.chart.dataSource = this.data; } public initData() { diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-label-rotation/tsconfig.json b/samples/charts/data-chart/axis-label-rotation/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/axis-label-rotation/tsconfig.json +++ b/samples/charts/data-chart/axis-label-rotation/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 9186f79ca8..813dedf04c 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-min-max-gap/tsconfig.json b/samples/charts/data-chart/axis-min-max-gap/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/axis-min-max-gap/tsconfig.json +++ b/samples/charts/data-chart/axis-min-max-gap/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index ebf041a5c2..1087f95ca6 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 ba0a679ef3..3042bdc784 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 a8d28a917c..2398f91e94 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.json b/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json b/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/bar-chart-single-source/tsconfig.json b/samples/charts/data-chart/bar-chart-single-source/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/bar-chart-single-source/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-single-source/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/bar-chart-styling/tsconfig.json b/samples/charts/data-chart/bar-chart-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/bar-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/callout-layer-styling/tsconfig.json b/samples/charts/data-chart/callout-layer-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/callout-layer-styling/tsconfig.json +++ b/samples/charts/data-chart/callout-layer-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.json b/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-highlight-filter/tsconfig.json b/samples/charts/data-chart/chart-highlight-filter/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/chart-highlight-filter/tsconfig.json +++ b/samples/charts/data-chart/chart-highlight-filter/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 1b8365059c..e812aef287 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 cb25ff8645..c16b4a016a 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 3ce8dfde46..36d4cbe59f 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 e994fc5aff..cd8a9cbb6b 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 68094b19f5..b3560b3cd7 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 cb25ff8645..c16b4a016a 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/composite-chart/src/index.ts b/samples/charts/data-chart/composite-chart/src/index.ts index d59fae60a2..b93b210980 100644 --- a/samples/charts/data-chart/composite-chart/src/index.ts +++ b/samples/charts/data-chart/composite-chart/src/index.ts @@ -35,7 +35,7 @@ export class DataChartCompositeChart { var ret = num; if (num >= 1000000) return (num / 1000000.0).toFixed(1) + "M"; if (num >= 1000) return (num / 1000.0).toFixed(1) + "K"; - + return ret.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ","); } @@ -54,17 +54,17 @@ export class DataChartCompositeChart { for (let i = 0; i < this.data.length; i++) { const item = this.data[i]; - + item.Revenue = item.Revenue * 1000; item.Expenses = item.Expenses * 1000; - + item.Income = item.Revenue - item.Expenses; item.IncomePerRevenue = (item.Income / item.Revenue) * 100; - + // calculating x-offset for callouts item.RevenueX = i; item.ExpensesX = i + 0.5; - + // formatting values for callouts item.FormattedRevenue = "$" + this.formatNumber(item.Revenue); item.FormattedIncome = "$" + this.formatNumber(item.Income); diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index a931b5dccc..71800285b4 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/crosshair-layer-styling/src/index.ts b/samples/charts/data-chart/crosshair-layer-styling/src/index.ts index 8e74b81acc..c7dd71c94b 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/src/index.ts +++ b/samples/charts/data-chart/crosshair-layer-styling/src/index.ts @@ -23,7 +23,6 @@ export class DataChartCrosshairLayerStyling { this.chart = document.getElementById('chart') as IgcDataChartComponent; this.chart.dataSource = SampleCategoryData.create(); - } } diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index a273195873..47595ef1c3 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/custom-drawing-annotations/sandbox.config.json b/samples/charts/data-chart/custom-drawing-annotations/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/sandbox.config.json +++ b/samples/charts/data-chart/custom-drawing-annotations/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/index.css b/samples/charts/data-chart/custom-drawing-annotations/src/index.css index 8b42ec3ed2..0fe9368715 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/src/index.css +++ b/samples/charts/data-chart/custom-drawing-annotations/src/index.css @@ -1,3 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/charts/data-chart/custom-drawing-annotations/src/index.ts b/samples/charts/data-chart/custom-drawing-annotations/src/index.ts index bfde18910c..cf1241fcce 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/src/index.ts +++ b/samples/charts/data-chart/custom-drawing-annotations/src/index.ts @@ -2,9 +2,9 @@ import { IgcDataChartCoreModule, IgcCategoryXAxisComponent, IgcDataChartCategory import { IgcToolActionLabelComponent, IgcToolCommandEventArgs, IgcToolbarComponent, IgcToolbarModule } from 'igniteui-webcomponents-layouts'; import { StockItem, StocksHistory } from './StocksHistory'; import { IgPoint, ModuleManager } from 'igniteui-webcomponents-core'; - import "./index.css"; + ModuleManager.register( IgcToolbarModule, IgcLegendModule, @@ -19,9 +19,9 @@ ModuleManager.register( IgcDataChartAnnotationModule ); -export class Sample { +export class Sample { - private data: any[]; + private data: any[]; private chart: IgcDataChartComponent; private xAxis: IgcCategoryXAxisComponent; private yAxis: IgcNumericYAxisComponent; @@ -42,40 +42,40 @@ export class Sample { private isAxisRangeInitialized: boolean; private isDrawingHorizontalLine: boolean; private isDrawingRangeArea: boolean; - private isDrawingSlopeLine: boolean; + private isDrawingSlopeLine: boolean; private horizontalLine: IgcLineSeriesComponent; private rangeArea: IgcRangeAreaSeriesComponent; private slopeLine: IgcLineSeriesComponent; - - constructor() { + + constructor() { const legend = document.getElementById("legend") as IgcLegendComponent; this.chart = document.getElementById("chart") as IgcDataChartComponent; - - this.toolbar = document.getElementById("toolbar") as IgcToolbarComponent; + + this.toolbar = document.getElementById("toolbar") as IgcToolbarComponent; this.toolbar.target = this.chart; - + this.drawHorizontalLineToolAction = document.getElementById("drawHorizontalLineToolAction") as IgcToolActionLabelComponent; this.drawSlopeLineToolAction = document.getElementById("drawSlopeLineToolAction") as IgcToolActionLabelComponent; this.drawRangeAreaToolAction = document.getElementById("drawRangeAreaToolAction") as IgcToolActionLabelComponent; this.xAxis = document.getElementById("xAxis") as IgcCategoryXAxisComponent; - this.xAxis.formatLabel = this.onFormatXAxisLabel.bind(this); + this.xAxis.formatLabel = this.onFormatXAxisLabel.bind(this); this.yAxis = document.getElementById("yAxis") as IgcNumericYAxisComponent; let financialSeries = document.getElementById("financialSeries") as IgcFinancialPriceSeriesComponent; - + this.horizontalLine = document.getElementById("horizontalLine") as IgcLineSeriesComponent; this.rangeArea = document.getElementById("rangeAreaSeries") as IgcRangeAreaSeriesComponent; this.slopeLine = document.getElementById("slopeLine") as IgcLineSeriesComponent; - + StocksHistory.getMicrosoftStock().then((stocks: any[]) => { this.data = stocks; this.xAxis.dataSource = this.data; - financialSeries.dataSource = this.data; - + financialSeries.dataSource = this.data; + this.plotHorizontalLine(38, true); this.plotRangeArea(50, 60, true); this.plotSlopeLine({x: 0, y:45}, {x: this.data.length - 1, y: 80}, true); @@ -93,49 +93,49 @@ export class Sample { public onChartMouseLeftButtonDown(s: IgcSeriesViewerComponent, e: IgcPlotAreaMouseButtonEventArgs){ this.initializeAxisRange(); - if (!this.isAxisRangeInitialized) return; + if (!this.isAxisRangeInitialized) return; - if (this.drawMode == "DrawHorizontalLine") this.isDrawingHorizontalLine = true; - if (this.drawMode == "DrawSlopeLine") this.isDrawingSlopeLine = true; - if (this.drawMode == "DrawRangeArea") this.isDrawingRangeArea = true; + if (this.drawMode == "DrawHorizontalLine") this.isDrawingHorizontalLine = true; + if (this.drawMode == "DrawSlopeLine") this.isDrawingSlopeLine = true; + if (this.drawMode == "DrawRangeArea") this.isDrawingRangeArea = true; - this.chartMouseDownLocation = this.getDataLocation(e.plotAreaPosition); - this.chartMouseMoveLocation = this.getDataLocation(e.plotAreaPosition); + this.chartMouseDownLocation = this.getDataLocation(e.plotAreaPosition); + this.chartMouseMoveLocation = this.getDataLocation(e.plotAreaPosition); - this.plotRangeArea(this.chartMouseDownLocation.y, this.chartMouseMoveLocation.y, false); - this.plotSlopeLine(this.chartMouseDownLocation, this.chartMouseMoveLocation, false); - this.plotHorizontalLine(this.chartMouseMoveLocation.y, false); + this.plotRangeArea(this.chartMouseDownLocation.y, this.chartMouseMoveLocation.y, false); + this.plotSlopeLine(this.chartMouseDownLocation, this.chartMouseMoveLocation, false); + this.plotHorizontalLine(this.chartMouseMoveLocation.y, false); } public onChartMouseOver(s: IgcSeriesViewerComponent, e: IgcPlotAreaMouseEventArgs){ - if (!this.isAxisRangeInitialized) return; + if (!this.isAxisRangeInitialized) return; - this.chartMouseMoveLocation = this.getDataLocation(e.plotAreaPosition); + this.chartMouseMoveLocation = this.getDataLocation(e.plotAreaPosition); - this.plotRangeArea(this.chartMouseDownLocation.y, this.chartMouseMoveLocation.y, false); - this.plotSlopeLine(this.chartMouseDownLocation, this.chartMouseMoveLocation, false); - this.plotHorizontalLine(this.chartMouseMoveLocation.y, false); + this.plotRangeArea(this.chartMouseDownLocation.y, this.chartMouseMoveLocation.y, false); + this.plotSlopeLine(this.chartMouseDownLocation, this.chartMouseMoveLocation, false); + this.plotHorizontalLine(this.chartMouseMoveLocation.y, false); } public onChartMouseLeftButtonUp(s: IgcSeriesViewerComponent, e: IgcPlotAreaMouseButtonEventArgs){ this.isDrawingSlopeLine = false; this.isDrawingRangeArea = false; - this.isDrawingHorizontalLine = false; + this.isDrawingHorizontalLine = false; } public initializeAxisRange(){ if (this.isAxisRangeInitialized) return; - this.isAxisRangeInitialized = true; + this.isAxisRangeInitialized = true; this.axisMaxValue = this.yAxis.actualMaximumValue; - this.axisMinValue = this.yAxis.actualMinimumValue; + this.axisMinValue = this.yAxis.actualMinimumValue; this.yAxis.maximumValue = this.axisMaxValue; this.yAxis.minimumValue = this.axisMinValue; } public getDataLocation(chartPixel: IgPoint): IgPoint - { + { var x = this.xAxis.unscaleValue(chartPixel.x); var y = this.yAxis.unscaleValue(chartPixel.y); @@ -152,7 +152,7 @@ export class Sample { for(let i=0; i void; constructor() { @@ -101,7 +103,6 @@ export class Sample { tooltips.valueFormatSpecifiers = this.numberFormatSpecifier5; } this._bind(); - } private _highestGrossingMovies: HighestGrossingMovies = null; diff --git a/samples/charts/data-chart/format-specifiers/tsconfig.json b/samples/charts/data-chart/format-specifiers/tsconfig.json index a15284fdc2..de23257dd8 100644 --- a/samples/charts/data-chart/format-specifiers/tsconfig.json +++ b/samples/charts/data-chart/format-specifiers/tsconfig.json @@ -1,34 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 0740c88fe2..00280ec3f2 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-area-chart-styling/tsconfig.json b/samples/charts/data-chart/polar-area-chart-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/polar-area-chart-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-area-chart/tsconfig.json b/samples/charts/data-chart/polar-area-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/polar-area-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-area-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 4856057f53..ff924b4b80 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-line-chart/tsconfig.json b/samples/charts/data-chart/polar-line-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/polar-line-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-line-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-scatter-chart/tsconfig.json b/samples/charts/data-chart/polar-scatter-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/polar-scatter-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-scatter-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-spline-area-chart/tsconfig.json b/samples/charts/data-chart/polar-spline-area-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-spline-area-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-spline-chart/tsconfig.json b/samples/charts/data-chart/polar-spline-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/polar-spline-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-spline-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-area-chart-styling/tsconfig.json b/samples/charts/data-chart/radial-area-chart-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/radial-area-chart-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-area-chart/tsconfig.json b/samples/charts/data-chart/radial-area-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/radial-area-chart/tsconfig.json +++ b/samples/charts/data-chart/radial-area-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 21bea624d8..8c3666c9a2 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-chart-types/src/index.ts b/samples/charts/data-chart/radial-chart-types/src/index.ts index 93de6b5834..2f3b3959d7 100644 --- a/samples/charts/data-chart/radial-chart-types/src/index.ts +++ b/samples/charts/data-chart/radial-chart-types/src/index.ts @@ -85,7 +85,6 @@ export class DataChartTypeRadialSeries { this.chart.series.clear(); this.chart.series.add(series1); this.chart.series.add(series2); - } else if (seriesType === 'Radial Line Chart') { // creating a series with mapping to data columns of financial data const series1 = new IgcRadialLineSeriesComponent(); @@ -102,7 +101,6 @@ export class DataChartTypeRadialSeries { this.chart.series.clear(); this.chart.series.add(series1); this.chart.series.add(series2); - } else if (seriesType === 'Radial Column Chart') { // creating a series with mapping to data columns of financial data const series1 = new IgcRadialColumnSeriesComponent(); diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-column-chart-selection/tsconfig.json b/samples/charts/data-chart/radial-column-chart-selection/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/tsconfig.json +++ b/samples/charts/data-chart/radial-column-chart-selection/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-column-chart/tsconfig.json b/samples/charts/data-chart/radial-column-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/radial-column-chart/tsconfig.json +++ b/samples/charts/data-chart/radial-column-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-label-mode/tsconfig.json b/samples/charts/data-chart/radial-label-mode/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/radial-label-mode/tsconfig.json +++ b/samples/charts/data-chart/radial-label-mode/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-line-chart/tsconfig.json b/samples/charts/data-chart/radial-line-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/radial-line-chart/tsconfig.json +++ b/samples/charts/data-chart/radial-line-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-pie-chart/tsconfig.json b/samples/charts/data-chart/radial-pie-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/radial-pie-chart/tsconfig.json +++ b/samples/charts/data-chart/radial-pie-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tsconfig.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tsconfig.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/tsconfig.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/tsconfig.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/range-area-chart/tsconfig.json b/samples/charts/data-chart/range-area-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/range-area-chart/tsconfig.json +++ b/samples/charts/data-chart/range-area-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/range-column-chart/tsconfig.json b/samples/charts/data-chart/range-column-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/range-column-chart/tsconfig.json +++ b/samples/charts/data-chart/range-column-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/index.html b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/index.html index a291a9ae17..1f84fdb6a8 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/index.html +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/index.html @@ -24,23 +24,26 @@ id="chart" is-horizontal-zoom-enabled="true" is-vertical-zoom-enabled="true" - chart-title="Public Debt vs. Population" - subtitle="GDP per Capita"> + chart-title="Population vs. Public Debt vs. GDP" + title-top-margin="10" + title-bottom-margin="0"> + abbreviate-large-numbers="true"> + abbreviate-large-numbers="true" + maximum-value="1000"> + + diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts index a0b3fbe3f3..2c09f68a27 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/WorldStats.ts @@ -4160,7 +4160,7 @@ export class WorldStats extends Array { status: `Dependency`, longitude: -53.13, latitude: 3.893, - gdpPerPerson: 4386128, + gdpPerPerson: 4386, rank: 180, unemployment: 3, oilProduction: 0, @@ -5322,29 +5322,6 @@ export class WorldStats extends Array { internet: 4009 }), new WorldStatsItem( - { - code: `ATA`, - name: `Antarctica`, - continent: `Antarctica`, - population: 4050, - gdpTotal: 810, - economy: `Developing`, - region: `Antarctica`, - status: `Indeterminate`, - longitude: 54.592, - latitude: -70.81, - gdpPerPerson: 200000, - rank: 231, - unemployment: 9, - oilProduction: 2, - birthRate: 18, - medianAge: 42, - electricity: 63975, - televisions: 2439, - publicDebt: 45, - internet: 2190 - }), - new WorldStatsItem( { code: `IOT`, name: `British Indian Territory`, diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/index.ts b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/index.ts index 78606afebc..70c7149245 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/index.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/index.ts @@ -1,6 +1,6 @@ import { IgcNumberAbbreviatorModule, IgcDataChartCoreModule, IgcDataChartScatterModule, IgcDataChartScatterCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; import { ComponentRenderer, NumberAbbreviatorDescriptionModule, DataChartCoreDescriptionModule, DataChartScatterDescriptionModule, DataChartScatterCoreDescriptionModule, DataChartInteractivityDescriptionModule, DataChartAnnotationDescriptionModule } from 'igniteui-webcomponents-core'; -import { IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcBubbleSeriesComponent, IgcSizeScaleComponent, IgcValueBrushScaleComponent } from 'igniteui-webcomponents-charts'; +import { IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcBubbleSeriesComponent, IgcSizeScaleComponent, IgcValueBrushScaleComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { WorldStatsItem, WorldStats } from './WorldStats'; import { ModuleManager } from 'igniteui-webcomponents-core'; @@ -29,7 +29,7 @@ export class Sample { var sizeScale1 = new IgcSizeScaleComponent(); sizeScale1.isLogarithmic = false; sizeScale1.minimumValue = 10; - sizeScale1.maximumValue = 120; + sizeScale1.maximumValue = 80; this._sizeScale1 = sizeScale1; } @@ -41,14 +41,15 @@ export class Sample { { var valueBrushScale1 = new IgcValueBrushScaleComponent(); valueBrushScale1.isLogarithmic = false; - valueBrushScale1.minimumValue = 0; - valueBrushScale1.maximumValue = 100000; - valueBrushScale1.brushes = ["rgba(26, 161, 226, 1)", "rgba(24, 154, 217, 1)", "rgba(22, 146, 206, 1)", "rgba(19, 133, 188, 1)", "rgba(15, 121, 171, 1)", "rgba(12, 107, 153, 1)", "rgba(9, 94, 136, 1)", "rgba(5, 82, 119, 1)", "rgba(2, 70, 105, 1)", "rgba(0, 63, 94, 1)"]; + valueBrushScale1.minimumValue = 500; + valueBrushScale1.maximumValue = 260000; + valueBrushScale1.brushes = ["rgba(150, 189, 250, 1)", "rgba(111, 164, 247, 1)", "rgba(82, 144, 242, 1)", "rgba(19, 94, 212, 1)"]; this._valueBrushScale1 = valueBrushScale1; } return this._valueBrushScale1; } + private dataToolTipLayer: IgcDataToolTipLayerComponent private _bind: () => void; constructor() { @@ -56,6 +57,7 @@ export class Sample { var xAxis = this.xAxis = document.getElementById('xAxis') as IgcNumericXAxisComponent; var yAxis = this.yAxis = document.getElementById('yAxis') as IgcNumericYAxisComponent; var bubbleSeries1 = this.bubbleSeries1 = document.getElementById('bubbleSeries1') as IgcBubbleSeriesComponent; + var dataToolTipLayer = this.dataToolTipLayer = document.getElementById('dataToolTipLayer') as IgcDataToolTipLayerComponent; this._bind = () => { bubbleSeries1.radiusScale = this.sizeScale1; diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/index.html b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/index.html index e4be7e0386..9df0f3e182 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/index.html +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/index.html @@ -45,6 +45,8 @@ name="yAxis" id="yAxis" title="GDP per Capita" + maximum-value="1000000" + title-left-margin="10" is-logarithmic="true" abbreviate-large-numbers="true"> @@ -54,7 +56,10 @@ title="African Countries" x-member-path="population" y-member-path="gDP" - radius-member-path="population" + radius-member-path="workedHours" + x-member-as-legend-label="Population" + y-member-as-legend-label="GDP" + radius-member-as-legend-label="Work Hours" marker-type="Circle" show-default-tooltip="true"> @@ -64,10 +69,29 @@ title="European Countries" x-member-path="population" y-member-path="gDP" - radius-member-path="population" + radius-member-path="workedHours" + x-member-as-legend-label="Population" + y-member-as-legend-label="GDP" + radius-member-as-legend-label="Work Hours" marker-type="Circle" show-default-tooltip="true"> + + 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 18acf18b3f..49f1c56754 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 @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.ts b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.ts index 4640b54a4c..75c50b53c4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.ts @@ -1,5 +1,5 @@ import { IgcLegendModule, IgcNumberAbbreviatorModule, IgcDataChartCoreModule, IgcDataChartScatterModule, IgcDataChartScatterCoreModule, IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; -import { IgcLegendComponent, IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcBubbleSeriesComponent, IgcSizeScaleComponent } from 'igniteui-webcomponents-charts'; +import { IgcLegendComponent, IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcBubbleSeriesComponent, IgcSizeScaleComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { CountryStatsAfricaItem, CountryStatsAfrica } from './CountryStatsAfrica'; import { CountryStatsEuropeItem, CountryStatsEurope } from './CountryStatsEurope'; @@ -30,7 +30,7 @@ export class Sample { var sizeScale1 = new IgcSizeScaleComponent(); sizeScale1.isLogarithmic = false; sizeScale1.minimumValue = 10; - sizeScale1.maximumValue = 50; + sizeScale1.maximumValue = 80; this._sizeScale1 = sizeScale1; } @@ -44,12 +44,13 @@ export class Sample { var sizeScale2 = new IgcSizeScaleComponent(); sizeScale2.isLogarithmic = false; sizeScale2.minimumValue = 10; - sizeScale2.maximumValue = 50; + sizeScale2.maximumValue = 80; this._sizeScale2 = sizeScale2; } return this._sizeScale2; } + private dataToolTipLayer: IgcDataToolTipLayerComponent private _bind: () => void; constructor() { @@ -59,6 +60,7 @@ export class Sample { var yAxis = this.yAxis = document.getElementById('yAxis') as IgcNumericYAxisComponent; var bubbleSeries1 = this.bubbleSeries1 = document.getElementById('bubbleSeries1') as IgcBubbleSeriesComponent; var bubbleSeries2 = this.bubbleSeries2 = document.getElementById('bubbleSeries2') as IgcBubbleSeriesComponent; + var dataToolTipLayer = this.dataToolTipLayer = document.getElementById('dataToolTipLayer') as IgcDataToolTipLayerComponent; this._bind = () => { chart.legend = this.legend; diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tsconfig.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tsconfig.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/index.html b/samples/charts/data-chart/scatter-bubble-chart-single-source/index.html index 11c922a386..1533934e27 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/index.html +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/index.html @@ -18,28 +18,30 @@
-
- Total Population of Selected Countries -
-
+ id="chart" + chart-title="Population vs. Public Debt vs. GDP" + title-top-margin="10" + title-bottom-margin="0"> + maximum-value="1000"> + id="dataToolTipLayer" + value-row-margin-top="1" + label-text-margin-top="1" + title-text-margin-top="1" + units-text-margin-top="1" + value-row-margin-bottom="1" + label-text-margin-bottom="1" + title-text-margin-bottom="1" + units-text-margin-bottom="1" + units-text-margin-right="5" + value-text-margin-left="10" + label-text-margin-left="1" + layout-mode="Vertical" + badge-shape="Hidden" + header-row-visible="false">
diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 18acf18b3f..49f1c56754 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 @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts index a0b3fbe3f3..2c09f68a27 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/WorldStats.ts @@ -4160,7 +4160,7 @@ export class WorldStats extends Array { status: `Dependency`, longitude: -53.13, latitude: 3.893, - gdpPerPerson: 4386128, + gdpPerPerson: 4386, rank: 180, unemployment: 3, oilProduction: 0, @@ -5322,29 +5322,6 @@ export class WorldStats extends Array { internet: 4009 }), new WorldStatsItem( - { - code: `ATA`, - name: `Antarctica`, - continent: `Antarctica`, - population: 4050, - gdpTotal: 810, - economy: `Developing`, - region: `Antarctica`, - status: `Indeterminate`, - longitude: 54.592, - latitude: -70.81, - gdpPerPerson: 200000, - rank: 231, - unemployment: 9, - oilProduction: 2, - birthRate: 18, - medianAge: 42, - electricity: 63975, - televisions: 2439, - publicDebt: 45, - internet: 2190 - }), - new WorldStatsItem( { code: `IOT`, name: `British Indian Territory`, diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/index.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/index.ts index f253007057..80ae99ee05 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/index.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/index.ts @@ -28,7 +28,7 @@ export class Sample { var sizeScale1 = new IgcSizeScaleComponent(); sizeScale1.isLogarithmic = false; sizeScale1.minimumValue = 10; - sizeScale1.maximumValue = 50; + sizeScale1.maximumValue = 80; this._sizeScale1 = sizeScale1; } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/tsconfig.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/tsconfig.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/index.html b/samples/charts/data-chart/scatter-bubble-chart-styling/index.html index f469b5c36c..dd2570e9cf 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/index.html +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/index.html @@ -18,67 +18,67 @@
-
- Total Population of Selected Countries -
- -
- - -
-
+ id="chart" + chart-title="Population vs. Public Debt vs. GDP" + title-top-margin="10" + title-bottom-margin="0"> + abbreviate-large-numbers="true" + maximum-value="1000"> - - + id="dataToolTipLayer" + value-row-margin-top="1" + label-text-margin-top="1" + title-text-margin-top="1" + units-text-margin-top="1" + value-row-margin-bottom="1" + label-text-margin-bottom="1" + title-text-margin-bottom="1" + units-text-margin-bottom="1" + units-text-margin-right="5" + value-text-margin-left="10" + label-text-margin-left="1" + layout-mode="Vertical" + badge-shape="Hidden" + included-columns="X, Y, Radius" + header-row-visible="false">
diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsAfrica.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsAfrica.ts deleted file mode 100644 index 34e0a73da1..0000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsAfrica.ts +++ /dev/null @@ -1,431 +0,0 @@ -export class CountryStatsAfricaItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public code: string; - public population: number; - public workedHours: number; - public gDP: number; - public name: string; - -} -export class CountryStatsAfrica extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new CountryStatsAfricaItem( - { - code: `DZA`, - population: 39728000, - workedHours: 47.5, - gDP: 13725, - name: `Algeria` - }), - new CountryStatsAfricaItem( - { - code: `AGO`, - population: 27884000, - workedHours: 39.8, - gDP: 6228, - name: `Angola` - }), - new CountryStatsAfricaItem( - { - code: `BEN`, - population: 10576000, - workedHours: 43.7, - gDP: 1987, - name: `Benin` - }), - new CountryStatsAfricaItem( - { - code: `BWA`, - population: 2121000, - workedHours: 41.2, - gDP: 15357, - name: `Botswana` - }), - new CountryStatsAfricaItem( - { - code: `BFA`, - population: 18111000, - workedHours: 39.3, - gDP: 1596, - name: `Burkina Faso` - }), - new CountryStatsAfricaItem( - { - code: `BDI`, - population: 10160000, - workedHours: 36.4, - gDP: 748, - name: `Burundi` - }), - new CountryStatsAfricaItem( - { - code: `CMR`, - population: 23298000, - workedHours: 42, - gDP: 3289, - name: `Cameroon` - }), - new CountryStatsAfricaItem( - { - code: `CPV`, - population: 525000, - workedHours: 45, - gDP: 5915, - name: `Cape Verde` - }), - new CountryStatsAfricaItem( - { - code: `CAF`, - population: 4493000, - workedHours: 38, - gDP: 622, - name: `Central African Republic` - }), - new CountryStatsAfricaItem( - { - code: `TCD`, - population: 14111000, - workedHours: 40.4, - gDP: 2067, - name: `Chad` - }), - new CountryStatsAfricaItem( - { - code: `COM`, - population: 777000, - workedHours: 40.1, - gDP: 1413, - name: `Comoros` - }), - new CountryStatsAfricaItem( - { - code: `COG`, - population: 4856000, - workedHours: 38.1, - gDP: 5543, - name: `Congo` - }), - new CountryStatsAfricaItem( - { - code: `CIV`, - population: 23226000, - workedHours: 39.7, - gDP: 3242, - name: `Cote Ivoire` - }), - new CountryStatsAfricaItem( - { - code: `COD`, - population: 76245000, - workedHours: 44, - gDP: 812, - name: `Democratic Republic of Congo` - }), - new CountryStatsAfricaItem( - { - code: `EGY`, - population: 92443000, - workedHours: 39.7, - gDP: 10096, - name: `Egypt` - }), - new CountryStatsAfricaItem( - { - code: `GNQ`, - population: 1169000, - workedHours: 38.8, - gDP: 27554, - name: `Equatorial Guinea` - }), - new CountryStatsAfricaItem( - { - code: `SWZ`, - population: 1104000, - workedHours: 45.7, - gDP: 7759, - name: `Eswatini` - }), - new CountryStatsAfricaItem( - { - code: `ETH`, - population: 101000000, - workedHours: 40.1, - gDP: 1533, - name: `Ethiopia` - }), - new CountryStatsAfricaItem( - { - code: `GAB`, - population: 1948000, - workedHours: 40.5, - gDP: 16837, - name: `Gabon` - }), - new CountryStatsAfricaItem( - { - code: `GMB`, - population: 2086000, - workedHours: 40.3, - gDP: 1568, - name: `Gambia` - }), - new CountryStatsAfricaItem( - { - code: `GHA`, - population: 27849000, - workedHours: 47.6, - gDP: 3927, - name: `Ghana` - }), - new CountryStatsAfricaItem( - { - code: `GIN`, - population: 11432000, - workedHours: 43.4, - gDP: 1758, - name: `Guinea` - }), - new CountryStatsAfricaItem( - { - code: `GNB`, - population: 1737000, - workedHours: 35.1, - gDP: 1446, - name: `Guinea-Bissau` - }), - new CountryStatsAfricaItem( - { - code: `KEN`, - population: 47878000, - workedHours: 43.9, - gDP: 2836, - name: `Kenya` - }), - new CountryStatsAfricaItem( - { - code: `LSO`, - population: 2059000, - workedHours: 47.6, - gDP: 2708, - name: `Lesotho` - }), - new CountryStatsAfricaItem( - { - code: `LBR`, - population: 4472000, - workedHours: 40.3, - gDP: 785, - name: `Liberia` - }), - new CountryStatsAfricaItem( - { - code: `LBY`, - population: 6418000, - workedHours: 42.5, - gDP: 14847, - name: `Libya` - }), - new CountryStatsAfricaItem( - { - code: `MDG`, - population: 24234000, - workedHours: 40.8, - gDP: 1377, - name: `Madagascar` - }), - new CountryStatsAfricaItem( - { - code: `MWI`, - population: 16745000, - workedHours: 44.5, - gDP: 1089, - name: `Malawi` - }), - new CountryStatsAfricaItem( - { - code: `MLI`, - population: 17439000, - workedHours: 40.6, - gDP: 1919, - name: `Mali` - }), - new CountryStatsAfricaItem( - { - code: `MRT`, - population: 4046000, - workedHours: 45.9, - gDP: 3602, - name: `Mauritania` - }), - new CountryStatsAfricaItem( - { - code: `MUS`, - population: 1259000, - workedHours: 44.4, - gDP: 18864, - name: `Mauritius` - }), - new CountryStatsAfricaItem( - { - code: `MAR`, - population: 34664000, - workedHours: 39.6, - gDP: 7297, - name: `Morocco` - }), - new CountryStatsAfricaItem( - { - code: `MOZ`, - population: 27042000, - workedHours: 46.7, - gDP: 1118, - name: `Mozambique` - }), - new CountryStatsAfricaItem( - { - code: `NAM`, - population: 2315000, - workedHours: 43.1, - gDP: 9975, - name: `Namibia` - }), - new CountryStatsAfricaItem( - { - code: `NER`, - population: 20002000, - workedHours: 45, - gDP: 908, - name: `Niger` - }), - new CountryStatsAfricaItem( - { - code: `NGA`, - population: 181000000, - workedHours: 32.76, - gDP: 5671, - name: `Nigeria` - }), - new CountryStatsAfricaItem( - { - code: `RWA`, - population: 11369000, - workedHours: 46.3, - gDP: 1731, - name: `Rwanda` - }), - new CountryStatsAfricaItem( - { - code: `STP`, - population: 199000, - workedHours: 38.2, - gDP: 2948, - name: `Sao Tome` - }), - new CountryStatsAfricaItem( - { - code: `SEN`, - population: 14578000, - workedHours: 46.8, - gDP: 2294, - name: `Senegal` - }), - new CountryStatsAfricaItem( - { - code: `SYC`, - population: 95000, - workedHours: 39.8, - gDP: 24857, - name: `Seychelles` - }), - new CountryStatsAfricaItem( - { - code: `SLE`, - population: 7172000, - workedHours: 35.4, - gDP: 1314, - name: `Sierra Leone` - }), - new CountryStatsAfricaItem( - { - code: `ZAF`, - population: 55386000, - workedHours: 42.48, - gDP: 12378, - name: `South Africa` - }), - new CountryStatsAfricaItem( - { - code: `SSD`, - population: 10716000, - workedHours: 39.3, - gDP: 1875, - name: `South Sudan` - }), - new CountryStatsAfricaItem( - { - code: `SDN`, - population: 38903000, - workedHours: 36.3, - gDP: 4290, - name: `Sudan` - }), - new CountryStatsAfricaItem( - { - code: `TZA`, - population: 51483000, - workedHours: 38, - gDP: 2491, - name: `Tanzania` - }), - new CountryStatsAfricaItem( - { - code: `TGO`, - population: 7323000, - workedHours: 38.8, - gDP: 1351, - name: `Togo` - }), - new CountryStatsAfricaItem( - { - code: `TUN`, - population: 11180000, - workedHours: 35.2, - gDP: 10766, - name: `Tunisia` - }), - new CountryStatsAfricaItem( - { - code: `UGA`, - population: 38225000, - workedHours: 38.6, - gDP: 1666, - name: `Uganda` - }), - new CountryStatsAfricaItem( - { - code: `ZMB`, - population: 15879000, - workedHours: 46.6, - gDP: 3627, - name: `Zambia` - }), - new CountryStatsAfricaItem( - { - code: `ZWE`, - population: 13815000, - workedHours: 41.4, - gDP: 1912, - name: `Zimbabwe` - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsEurope.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsEurope.ts deleted file mode 100644 index d0b93024d2..0000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsEurope.ts +++ /dev/null @@ -1,351 +0,0 @@ -export class CountryStatsEuropeItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public code: string; - public population: number; - public workedHours: number; - public gDP: number; - public name: string; - -} -export class CountryStatsEurope extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new CountryStatsEuropeItem( - { - code: `ALB`, - population: 2891000, - workedHours: 41, - gDP: 10970, - name: `Albania` - }), - new CountryStatsEuropeItem( - { - code: `AUT`, - population: 8679000, - workedHours: 30.75, - gDP: 44305, - name: `Austria` - }), - new CountryStatsEuropeItem( - { - code: `BLR`, - population: 9439000, - workedHours: 43.5, - gDP: 17230, - name: `Belarus` - }), - new CountryStatsEuropeItem( - { - code: `BEL`, - population: 11288000, - workedHours: 29.7, - gDP: 41708, - name: `Belgium` - }), - new CountryStatsEuropeItem( - { - code: `BIH`, - population: 3429000, - workedHours: 46.5, - gDP: 10932, - name: `Bosnia` - }), - new CountryStatsEuropeItem( - { - code: `BGR`, - population: 7200000, - workedHours: 31.62, - gDP: 17000, - name: `Bulgaria` - }), - new CountryStatsEuropeItem( - { - code: `HRV`, - population: 4233000, - workedHours: 35.15, - gDP: 20984, - name: `Croatia` - }), - new CountryStatsEuropeItem( - { - code: `CYP`, - population: 1161000, - workedHours: 34.42, - gDP: 30549, - name: `Cyprus` - }), - new CountryStatsEuropeItem( - { - code: `CZE`, - population: 10601000, - workedHours: 33.77, - gDP: 30605, - name: `Czechia` - }), - new CountryStatsEuropeItem( - { - code: `DNK`, - population: 5689000, - workedHours: 27.16, - gDP: 45459, - name: `Denmark` - }), - new CountryStatsEuropeItem( - { - code: `EST`, - population: 1315000, - workedHours: 35.61, - gDP: 27550, - name: `Estonia` - }), - new CountryStatsEuropeItem( - { - code: `FIN`, - population: 5481000, - workedHours: 31.48, - gDP: 38942, - name: `Finland` - }), - new CountryStatsEuropeItem( - { - code: `FRA`, - population: 64453000, - workedHours: 29.03, - gDP: 37766, - name: `France` - }), - new CountryStatsEuropeItem( - { - code: `DEU`, - population: 81787000, - workedHours: 26.31, - gDP: 43938, - name: `Germany` - }), - new CountryStatsEuropeItem( - { - code: `GRC`, - population: 10660000, - workedHours: 39.06, - gDP: 24170, - name: `Greece` - }), - new CountryStatsEuropeItem( - { - code: `HUN`, - population: 9778000, - workedHours: 36.99, - gDP: 25034, - name: `Hungary` - }), - new CountryStatsEuropeItem( - { - code: `ISL`, - population: 330000, - workedHours: 29.02, - gDP: 43048, - name: `Iceland` - }), - new CountryStatsEuropeItem( - { - code: `IRL`, - population: 4652000, - workedHours: 33.47, - gDP: 60818, - name: `Ireland` - }), - new CountryStatsEuropeItem( - { - code: `ITA`, - population: 60578000, - workedHours: 33.04, - gDP: 34302, - name: `Italy` - }), - new CountryStatsEuropeItem( - { - code: `LVA`, - population: 1998000, - workedHours: 36.57, - gDP: 23019, - name: `Latvia` - }), - new CountryStatsEuropeItem( - { - code: `LTU`, - population: 2932000, - workedHours: 35.76, - gDP: 27046, - name: `Lithuania` - }), - new CountryStatsEuropeItem( - { - code: `LUX`, - population: 567000, - workedHours: 29.25, - gDP: 94089, - name: `Luxembourg` - }), - new CountryStatsEuropeItem( - { - code: `MLT`, - population: 434000, - workedHours: 37.78, - gDP: 34087, - name: `Malta` - }), - new CountryStatsEuropeItem( - { - code: `MDA`, - population: 4071000, - workedHours: 41, - gDP: 4747, - name: `Moldova` - }), - new CountryStatsEuropeItem( - { - code: `MNE`, - population: 627000, - workedHours: 47.2, - gDP: 15290, - name: `Montenegro` - }), - new CountryStatsEuropeItem( - { - code: `NLD`, - population: 16938000, - workedHours: 27.38, - gDP: 46494, - name: `Netherlands` - }), - new CountryStatsEuropeItem( - { - code: `MKD`, - population: 2079000, - workedHours: 36.6, - gDP: 12760, - name: `North Macedonia` - }), - new CountryStatsEuropeItem( - { - code: `NOR`, - population: 5200000, - workedHours: 27.36, - gDP: 64008, - name: `Norway` - }), - new CountryStatsEuropeItem( - { - code: `POL`, - population: 38034000, - workedHours: 39.4, - gDP: 25300, - name: `Poland` - }), - new CountryStatsEuropeItem( - { - code: `PRT`, - population: 10368000, - workedHours: 36.06, - gDP: 26608, - name: `Portugal` - }), - new CountryStatsEuropeItem( - { - code: `ROU`, - population: 19925000, - workedHours: 34.34, - gDP: 20556, - name: `Romania` - }), - new CountryStatsEuropeItem( - { - code: `RUS`, - population: 145000000, - workedHours: 38.04, - gDP: 24517, - name: `Russia` - }), - new CountryStatsEuropeItem( - { - code: `SMR`, - population: 33000, - workedHours: 40.1, - gDP: 56372, - name: `San Marino` - }), - new CountryStatsEuropeItem( - { - code: `SRB`, - population: 8877000, - workedHours: 46.5, - gDP: 13278, - name: `Serbia` - }), - new CountryStatsEuropeItem( - { - code: `SVK`, - population: 5436000, - workedHours: 33.73, - gDP: 28309, - name: `Slovakia` - }), - new CountryStatsEuropeItem( - { - code: `SVN`, - population: 2071000, - workedHours: 32.46, - gDP: 29038, - name: `Slovenia` - }), - new CountryStatsEuropeItem( - { - code: `ESP`, - population: 46672000, - workedHours: 32.68, - gDP: 32291, - name: `Spain` - }), - new CountryStatsEuropeItem( - { - code: `SWE`, - population: 9765000, - workedHours: 30.96, - gDP: 45679, - name: `Sweden` - }), - new CountryStatsEuropeItem( - { - code: `CHE`, - population: 8297000, - workedHours: 30.57, - gDP: 57264, - name: `Switzerland` - }), - new CountryStatsEuropeItem( - { - code: `UKR`, - population: 44922000, - workedHours: 38.6, - gDP: 7465, - name: `Ukraine` - }), - new CountryStatsEuropeItem( - { - code: `GBR`, - population: 65860000, - workedHours: 32.1, - gDP: 38839, - name: `United Kingdom` - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts new file mode 100644 index 0000000000..2c09f68a27 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts @@ -0,0 +1,5420 @@ +export class WorldStatsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public code: string; + public name: string; + public continent: string; + public population: number; + public gdpTotal: number; + public economy: string; + public region: string; + public status: string; + public longitude: number; + public latitude: number; + public gdpPerPerson: number; + public rank: number; + public unemployment: number; + public oilProduction: number; + public birthRate: number; + public medianAge: number; + public electricity: number; + public televisions: number; + public publicDebt: number; + public internet: number; + +} +export class WorldStats extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new WorldStatsItem( + { + code: `CHN`, + name: `China`, + continent: `Asia`, + population: 1379302771, + gdpTotal: 21140000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 104.18, + latitude: 35.887, + gdpPerPerson: 15327, + rank: 1, + unemployment: 4, + oilProduction: 3725000, + birthRate: 14, + medianAge: 34, + electricity: 3256000, + televisions: 400000000, + publicDebt: 18, + internet: 253000000 + }), + new WorldStatsItem( + { + code: `IND`, + name: `India`, + continent: `Asia`, + population: 1281935911, + gdpTotal: 8721000, + economy: `Emerging`, + region: `Southern Asia`, + status: `Country`, + longitude: 78.022, + latitude: 22.665, + gdpPerPerson: 6803, + rank: 2, + unemployment: 7, + oilProduction: 810000, + birthRate: 22, + medianAge: 25, + electricity: 661600, + televisions: 63000000, + publicDebt: 58, + internet: 80000000 + }), + new WorldStatsItem( + { + code: `USA`, + name: `United States`, + continent: `North America`, + population: 326625791, + gdpTotal: 18560000, + economy: `Developed`, + region: `Northern America`, + status: `Country`, + longitude: -101.8, + latitude: 39.818, + gdpPerPerson: 56823, + rank: 3, + unemployment: 5, + oilProduction: 7460000, + birthRate: 14, + medianAge: 37, + electricity: 4062000, + televisions: 219000000, + publicDebt: 61, + internet: 223000000 + }), + new WorldStatsItem( + { + code: `IDN`, + name: `Indonesia`, + continent: `Asia`, + population: 260580739, + gdpTotal: 3028000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 102.72, + latitude: -2.698, + gdpPerPerson: 11620, + rank: 4, + unemployment: 9, + oilProduction: 837500, + birthRate: 19, + medianAge: 27, + electricity: 125900, + televisions: 13750000, + publicDebt: 34, + internet: 13000000 + }), + new WorldStatsItem( + { + code: `BRA`, + name: `Brazil`, + continent: `South America`, + population: 207353391, + gdpTotal: 3081000, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -48.88, + latitude: -12.89, + gdpPerPerson: 14859, + rank: 5, + unemployment: 9, + oilProduction: 1797000, + birthRate: 19, + medianAge: 28, + electricity: 396400, + televisions: 36500000, + publicDebt: 45, + internet: 50000000 + }), + new WorldStatsItem( + { + code: `PAK`, + name: `Pakistan`, + continent: `Asia`, + population: 204924861, + gdpTotal: 988200, + economy: `Emerging`, + region: `Southern Asia`, + status: `Country`, + longitude: 67.624, + latitude: 28.421, + gdpPerPerson: 4822, + rank: 6, + unemployment: 6, + oilProduction: 62000, + birthRate: 28, + medianAge: 21, + electricity: 89820, + televisions: 3100000, + publicDebt: 51, + internet: 17500000 + }), + new WorldStatsItem( + { + code: `NGA`, + name: `Nigeria`, + continent: `Africa`, + population: 190632261, + gdpTotal: 1089000, + economy: `Emerging`, + region: `Western Africa`, + status: `Country`, + longitude: 8.657, + latitude: 9.075, + gdpPerPerson: 5713, + rank: 7, + unemployment: 5, + oilProduction: 2166000, + birthRate: 37, + medianAge: 19, + electricity: 22530, + televisions: 6900000, + publicDebt: 14, + internet: 10000000 + }), + new WorldStatsItem( + { + code: `BGD`, + name: `Bangladesh`, + continent: `Asia`, + population: 157826578, + gdpTotal: 628400, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 89.935, + latitude: 24.474, + gdpPerPerson: 3982, + rank: 8, + unemployment: 3, + oilProduction: 6746, + birthRate: 29, + medianAge: 23, + electricity: 21350, + televisions: 770000, + publicDebt: 37, + internet: 500000 + }), + new WorldStatsItem( + { + code: `RUS`, + name: `Russia`, + continent: `Europe`, + population: 142257519, + gdpTotal: 3745000, + economy: `Emerging`, + region: `Eastern Europe`, + status: `Country`, + longitude: 42.379, + latitude: 56.974, + gdpPerPerson: 26325, + rank: 9, + unemployment: 6, + oilProduction: 9870000, + birthRate: 11, + medianAge: 38, + electricity: 1000000, + televisions: 60500000, + publicDebt: 6, + internet: 30000000 + }), + new WorldStatsItem( + { + code: `JPN`, + name: `Japan`, + continent: `Asia`, + population: 126451398, + gdpTotal: 4932000, + economy: `Developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 138.48, + latitude: 36.519, + gdpPerPerson: 39003, + rank: 10, + unemployment: 4, + oilProduction: 125000, + birthRate: 8, + medianAge: 44, + electricity: 1025000, + televisions: 86500000, + publicDebt: 170, + internet: 88110000 + }), + new WorldStatsItem( + { + code: `MEX`, + name: `Mexico`, + continent: `North America`, + population: 124574795, + gdpTotal: 2307000, + economy: `Emerging`, + region: `Central America`, + status: `Country`, + longitude: -102.5, + latitude: 23.63, + gdpPerPerson: 18519, + rank: 11, + unemployment: 4, + oilProduction: 3083000, + birthRate: 20, + medianAge: 26, + electricity: 222400, + televisions: 25600000, + publicDebt: 23, + internet: 22812000 + }), + new WorldStatsItem( + { + code: `ETH`, + name: `Ethiopia`, + continent: `Africa`, + population: 105350020, + gdpTotal: 174700, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 40.489, + latitude: 9.154, + gdpPerPerson: 1658, + rank: 12, + unemployment: 5, + oilProduction: 1, + birthRate: 25, + medianAge: 52, + electricity: 60942, + televisions: 66893500, + publicDebt: 45, + internet: 291000 + }), + new WorldStatsItem( + { + code: `PHL`, + name: `Philippines`, + continent: `Asia`, + population: 104256076, + gdpTotal: 801900, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 121.4, + latitude: 16.78, + gdpPerPerson: 7692, + rank: 13, + unemployment: 7, + oilProduction: 0, + birthRate: 26, + medianAge: 22, + electricity: 53670, + televisions: 3700000, + publicDebt: 56, + internet: 5300000 + }), + new WorldStatsItem( + { + code: `EGY`, + name: `Egypt`, + continent: `Africa`, + population: 97041072, + gdpTotal: 1105000, + economy: `Emerging`, + region: `Middle East`, + status: `Country`, + longitude: 30.787, + latitude: 26.825, + gdpPerPerson: 11387, + rank: 14, + unemployment: 9, + oilProduction: 665000, + birthRate: 22, + medianAge: 25, + electricity: 102500, + televisions: 7700000, + publicDebt: 106, + internet: 8620000 + }), + new WorldStatsItem( + { + code: `VNM`, + name: `Vietnam`, + continent: `Asia`, + population: 96160163, + gdpTotal: 594900, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 108.46, + latitude: 13.711, + gdpPerPerson: 6187, + rank: 15, + unemployment: 4, + oilProduction: 324000, + birthRate: 16, + medianAge: 27, + electricity: 59010, + televisions: 3570000, + publicDebt: 42, + internet: 17870000 + }), + new WorldStatsItem( + { + code: `COD`, + name: `Dem. Rep. Congo`, + continent: `Africa`, + population: 83301151, + gdpTotal: 66010, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 21.738, + latitude: -4.071, + gdpPerPerson: 792, + rank: 16, + unemployment: 3, + oilProduction: 4, + birthRate: 13, + medianAge: 41, + electricity: 48913, + televisions: 55942436, + publicDebt: 16, + internet: 8903936 + }), + new WorldStatsItem( + { + code: `IRN`, + name: `Iran`, + continent: `Asia`, + population: 82021564, + gdpTotal: 1459000, + economy: `Emerging`, + region: `Middle East`, + status: `Country`, + longitude: 53.664, + latitude: 32.435, + gdpPerPerson: 17788, + rank: 17, + unemployment: 12, + oilProduction: 3956000, + birthRate: 17, + medianAge: 26, + electricity: 170400, + televisions: 4610000, + publicDebt: 17, + internet: 23000000 + }), + new WorldStatsItem( + { + code: `TUR`, + name: `Turkey`, + continent: `Asia`, + population: 80845215, + gdpTotal: 1670000, + economy: `Emerging`, + region: `Middle East`, + status: `Country`, + longitude: 35.243, + latitude: 38.962, + gdpPerPerson: 20657, + rank: 18, + unemployment: 10, + oilProduction: 45460, + birthRate: 16, + medianAge: 29, + electricity: 154200, + televisions: 20900000, + publicDebt: 39, + internet: 13150000 + }), + new WorldStatsItem( + { + code: `DEU`, + name: `Germany`, + continent: `Europe`, + population: 80594017, + gdpTotal: 3979000, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 11.43, + latitude: 52.237, + gdpPerPerson: 49371, + rank: 19, + unemployment: 9, + oilProduction: 141700, + birthRate: 8, + medianAge: 43, + electricity: 579400, + televisions: 51400000, + publicDebt: 65, + internet: 42500000 + }), + new WorldStatsItem( + { + code: `THA`, + name: `Thailand`, + continent: `Asia`, + population: 68414135, + gdpTotal: 1161000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 100.65, + latitude: 15.345, + gdpPerPerson: 16970, + rank: 20, + unemployment: 1, + oilProduction: 310000, + birthRate: 14, + medianAge: 33, + electricity: 124600, + televisions: 15190000, + publicDebt: 38, + internet: 13416000 + }), + new WorldStatsItem( + { + code: `FRA`, + name: `France`, + continent: `Europe`, + population: 67106161, + gdpTotal: 2699000, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 2.267, + latitude: 46.645, + gdpPerPerson: 40220, + rank: 21, + unemployment: 12, + oilProduction: 1, + birthRate: 24, + medianAge: 48, + electricity: 63711, + televisions: 43156970, + publicDebt: 11, + internet: 7012454 + }), + new WorldStatsItem( + { + code: `GBR`, + name: `United Kingdom`, + continent: `Europe`, + population: 64769452, + gdpTotal: 2788000, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: -1.233, + latitude: 52.242, + gdpPerPerson: 43045, + rank: 22, + unemployment: 5, + oilProduction: 1636000, + birthRate: 11, + medianAge: 40, + electricity: 372600, + televisions: 30500000, + publicDebt: 44, + internet: 40200000 + }), + new WorldStatsItem( + { + code: `ITA`, + name: `Italy`, + continent: `Europe`, + population: 62137802, + gdpTotal: 2221000, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 15.701, + latitude: 40.885, + gdpPerPerson: 35743, + rank: 23, + unemployment: 6, + oilProduction: 164800, + birthRate: 8, + medianAge: 43, + electricity: 278500, + televisions: 30300000, + publicDebt: 104, + internet: 32000000 + }), + new WorldStatsItem( + { + code: `MMR`, + name: `Myanmar`, + continent: `Asia`, + population: 55123814, + gdpTotal: 311100, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 96.028, + latitude: 21.509, + gdpPerPerson: 5644, + rank: 24, + unemployment: 13, + oilProduction: 4, + birthRate: 24, + medianAge: 37, + electricity: 26955, + televisions: 39322205, + publicDebt: 18, + internet: 30207772 + }), + new WorldStatsItem( + { + code: `ZAF`, + name: `South Africa`, + continent: `Africa`, + population: 54841552, + gdpTotal: 739100, + economy: `Emerging`, + region: `Southern Africa`, + status: `Country`, + longitude: 22.489, + latitude: -32.4, + gdpPerPerson: 13477, + rank: 25, + unemployment: 24, + oilProduction: 200000, + birthRate: 20, + medianAge: 24, + electricity: 264000, + televisions: 6000000, + publicDebt: 31, + internet: 5100000 + }), + new WorldStatsItem( + { + code: `TZA`, + name: `Tanzania`, + continent: `Africa`, + population: 53950935, + gdpTotal: 150600, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 34.894, + latitude: -6.356, + gdpPerPerson: 2791, + rank: 26, + unemployment: 6, + oilProduction: 3, + birthRate: 9, + medianAge: 34, + electricity: 10186, + televisions: 35987980, + publicDebt: 20, + internet: 400000 + }), + new WorldStatsItem( + { + code: `KOR`, + name: `South Korea`, + continent: `Asia`, + population: 51181299, + gdpTotal: 1929000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 128.29, + latitude: 36.399, + gdpPerPerson: 37690, + rank: 27, + unemployment: 3, + oilProduction: 17050, + birthRate: 9, + medianAge: 37, + electricity: 403200, + televisions: 15900000, + publicDebt: 28, + internet: 35590000 + }), + new WorldStatsItem( + { + code: `ESP`, + name: `Spain`, + continent: `Europe`, + population: 48958159, + gdpTotal: 1690000, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: -2.892, + latitude: 40.569, + gdpPerPerson: 34519, + rank: 28, + unemployment: 8, + oilProduction: 29350, + birthRate: 10, + medianAge: 41, + electricity: 270300, + televisions: 16200000, + publicDebt: 36, + internet: 19690000 + }), + new WorldStatsItem( + { + code: `COL`, + name: `Colombia`, + continent: `South America`, + population: 47698524, + gdpTotal: 688000, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -72.95, + latitude: 4.099, + gdpPerPerson: 14424, + rank: 29, + unemployment: 11, + oilProduction: 531300, + birthRate: 20, + medianAge: 27, + electricity: 50470, + televisions: 4590000, + publicDebt: 53, + internet: 12100000 + }), + new WorldStatsItem( + { + code: `KEN`, + name: `Kenya`, + continent: `Africa`, + population: 47615739, + gdpTotal: 152700, + economy: `Emerging`, + region: `Eastern Africa`, + status: `Country`, + longitude: 37.929, + latitude: 0.4, + gdpPerPerson: 3207, + rank: 30, + unemployment: 40, + oilProduction: 0, + birthRate: 38, + medianAge: 19, + electricity: 5502, + televisions: 730000, + publicDebt: 49, + internet: 3000000 + }), + new WorldStatsItem( + { + code: `ARG`, + name: `Argentina`, + continent: `South America`, + population: 44293293, + gdpTotal: 879400, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -64.84, + latitude: -33.07, + gdpPerPerson: 19854, + rank: 31, + unemployment: 9, + oilProduction: 730000, + birthRate: 18, + medianAge: 30, + electricity: 101100, + televisions: 7950000, + publicDebt: 56, + internet: 9309000 + }), + new WorldStatsItem( + { + code: `UKR`, + name: `Ukraine`, + continent: `Europe`, + population: 44033874, + gdpTotal: 352600, + economy: `Developing`, + region: `Eastern Europe`, + status: `Country`, + longitude: 30.86, + latitude: 49.723, + gdpPerPerson: 8007, + rank: 32, + unemployment: 2, + oilProduction: 90400, + birthRate: 10, + medianAge: 39, + electricity: 192100, + televisions: 18050000, + publicDebt: 12, + internet: 10000000 + }), + new WorldStatsItem( + { + code: `DZA`, + name: `Algeria`, + continent: `Africa`, + population: 40969443, + gdpTotal: 609400, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 1.642, + latitude: 28.04, + gdpPerPerson: 14875, + rank: 33, + unemployment: 12, + oilProduction: 1358000, + birthRate: 17, + medianAge: 26, + electricity: 31910, + televisions: 3100000, + publicDebt: 18, + internet: 3500000 + }), + new WorldStatsItem( + { + code: `UGA`, + name: `Uganda`, + continent: `Africa`, + population: 39570125, + gdpTotal: 84930, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 32.27, + latitude: 1.375, + gdpPerPerson: 2146, + rank: 34, + unemployment: 10, + oilProduction: 1, + birthRate: 10, + medianAge: 32, + electricity: 35388, + televisions: 27867123, + publicDebt: 21, + internet: 2000000 + }), + new WorldStatsItem( + { + code: `IRQ`, + name: `Iraq`, + continent: `Asia`, + population: 39192111, + gdpTotal: 596700, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 43.66, + latitude: 33.218, + gdpPerPerson: 15225, + rank: 35, + unemployment: 6, + oilProduction: 0, + birthRate: 20, + medianAge: 44, + electricity: 48545, + televisions: 13178804, + publicDebt: 40, + internet: 9538092 + }), + new WorldStatsItem( + { + code: `POL`, + name: `Poland`, + continent: `Europe`, + population: 38476269, + gdpTotal: 1052000, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 20.073, + latitude: 52.374, + gdpPerPerson: 27342, + rank: 36, + unemployment: 13, + oilProduction: 0, + birthRate: 10, + medianAge: 38, + electricity: 146200, + televisions: 13050000, + publicDebt: 43, + internet: 16000000 + }), + new WorldStatsItem( + { + code: `SDN`, + name: `Sudan`, + continent: `Africa`, + population: 37345935, + gdpTotal: 176300, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 30.217, + latitude: 15.434, + gdpPerPerson: 4721, + rank: 37, + unemployment: 19, + oilProduction: 484500, + birthRate: 34, + medianAge: 19, + electricity: 3944, + televisions: 2380000, + publicDebt: 106, + internet: 1500000 + }), + new WorldStatsItem( + { + code: `CAN`, + name: `Canada`, + continent: `North America`, + population: 35623680, + gdpTotal: 1674000, + economy: `Developed`, + region: `Northern America`, + status: `Country`, + longitude: -108, + latitude: 55.855, + gdpPerPerson: 46991, + rank: 38, + unemployment: 6, + oilProduction: 3310000, + birthRate: 10, + medianAge: 40, + electricity: 609600, + televisions: 21500000, + publicDebt: 64, + internet: 28000000 + }), + new WorldStatsItem( + { + code: `AFG`, + name: `Afghanistan`, + continent: `Asia`, + population: 34124811, + gdpTotal: 64080, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 66.041, + latitude: 33.977, + gdpPerPerson: 1878, + rank: 39, + unemployment: 9, + oilProduction: 2, + birthRate: 15, + medianAge: 39, + electricity: 64532, + televisions: 15374294, + publicDebt: 25, + internet: 18662148 + }), + new WorldStatsItem( + { + code: `MAR`, + name: `Morocco`, + continent: `Africa`, + population: 33986655, + gdpTotal: 282800, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: -5.707, + latitude: 32.104, + gdpPerPerson: 8321, + rank: 40, + unemployment: 10, + oilProduction: 300, + birthRate: 21, + medianAge: 25, + electricity: 21370, + televisions: 3100000, + publicDebt: 67, + internet: 7300000 + }), + new WorldStatsItem( + { + code: `MYS`, + name: `Malaysia`, + continent: `Asia`, + population: 31381992, + gdpTotal: 863000, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 101.72, + latitude: 4.89, + gdpPerPerson: 27500, + rank: 41, + unemployment: 3, + oilProduction: 757500, + birthRate: 22, + medianAge: 25, + electricity: 82360, + televisions: 10800000, + publicDebt: 42, + internet: 15868000 + }), + new WorldStatsItem( + { + code: `VEN`, + name: `Venezuela`, + continent: `South America`, + population: 31304016, + gdpTotal: 468600, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -64.78, + latitude: 6.695, + gdpPerPerson: 14969, + rank: 42, + unemployment: 9, + oilProduction: 2398000, + birthRate: 21, + medianAge: 25, + electricity: 99200, + televisions: 4100000, + publicDebt: 19, + internet: 5720000 + }), + new WorldStatsItem( + { + code: `PER`, + name: `Peru`, + continent: `South America`, + population: 31036656, + gdpTotal: 410400, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -73.82, + latitude: -12.89, + gdpPerPerson: 13223, + rank: 43, + unemployment: 7, + oilProduction: 119000, + birthRate: 20, + medianAge: 26, + electricity: 24970, + televisions: 3060000, + publicDebt: 29, + internet: 7636000 + }), + new WorldStatsItem( + { + code: `UZB`, + name: `Uzbekistan`, + continent: `Asia`, + population: 29748859, + gdpTotal: 202300, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 63.288, + latitude: 42.338, + gdpPerPerson: 6800, + rank: 44, + unemployment: 1, + oilProduction: 109400, + birthRate: 18, + medianAge: 24, + electricity: 49000, + televisions: 6400000, + publicDebt: 19, + internet: 1200000 + }), + new WorldStatsItem( + { + code: `NPL`, + name: `Nepal`, + continent: `Asia`, + population: 29384297, + gdpTotal: 71520, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 82.328, + latitude: 28.843, + gdpPerPerson: 2434, + rank: 45, + unemployment: 5, + oilProduction: 3, + birthRate: 18, + medianAge: 34, + electricity: 68842, + televisions: 21075997, + publicDebt: 16, + internet: 7780693 + }), + new WorldStatsItem( + { + code: `AGO`, + name: `Angola`, + continent: `Africa`, + population: 29310273, + gdpTotal: 189000, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 18.097, + latitude: -12.37, + gdpPerPerson: 6448, + rank: 46, + unemployment: 14, + oilProduction: 0, + birthRate: 15, + medianAge: 38, + electricity: 25890, + televisions: 21283158, + publicDebt: 12, + internet: 100000 + }), + new WorldStatsItem( + { + code: `SAU`, + name: `Saudi Arabia`, + continent: `Asia`, + population: 28571770, + gdpTotal: 1731000, + economy: `Developed`, + region: `Middle East`, + status: `Country`, + longitude: 45.129, + latitude: 24.248, + gdpPerPerson: 60584, + rank: 47, + unemployment: 13, + oilProduction: 11000000, + birthRate: 29, + medianAge: 22, + electricity: 165600, + televisions: 5100000, + publicDebt: 24, + internet: 6200000 + }), + new WorldStatsItem( + { + code: `YEM`, + name: `Yemen`, + continent: `Asia`, + population: 28036829, + gdpTotal: 73450, + economy: `Least developed`, + region: `Middle East`, + status: `Country`, + longitude: 48.53, + latitude: 15.658, + gdpPerPerson: 2620, + rank: 48, + unemployment: 35, + oilProduction: 339200, + birthRate: 42, + medianAge: 17, + electricity: 4456, + televisions: 470000, + publicDebt: 34, + internet: 320000 + }), + new WorldStatsItem( + { + code: `GHA`, + name: `Ghana`, + continent: `Africa`, + population: 27499924, + gdpTotal: 120800, + economy: `Developing`, + region: `Western Africa`, + status: `Country`, + longitude: -0.893, + latitude: 8.607, + gdpPerPerson: 4393, + rank: 49, + unemployment: 11, + oilProduction: 700, + birthRate: 29, + medianAge: 20, + electricity: 7042, + televisions: 1900000, + publicDebt: 59, + internet: 650000 + }), + new WorldStatsItem( + { + code: `MOZ`, + name: `Mozambique`, + continent: `Africa`, + population: 26573706, + gdpTotal: 35010, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 38.075, + latitude: -15.41, + gdpPerPerson: 1317, + rank: 50, + unemployment: 21, + oilProduction: 0, + birthRate: 38, + medianAge: 17, + electricity: 13170, + televisions: 67600, + publicDebt: 22, + internet: 200000 + }), + new WorldStatsItem( + { + code: `PRK`, + name: `North Korea`, + continent: `Asia`, + population: 25248140, + gdpTotal: 40000, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 127.01, + latitude: 40.333, + gdpPerPerson: 1584, + rank: 51, + unemployment: 13, + oilProduction: 0, + birthRate: 23, + medianAge: 55, + electricity: 35619, + televisions: 16501842, + publicDebt: 30, + internet: 2340760 + }), + new WorldStatsItem( + { + code: `MDG`, + name: `Madagascar`, + continent: `Africa`, + population: 25054161, + gdpTotal: 36860, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 46.87, + latitude: -18.82, + gdpPerPerson: 1471, + rank: 52, + unemployment: 15, + oilProduction: 0, + birthRate: 20, + medianAge: 36, + electricity: 86068, + televisions: 9470858, + publicDebt: 31, + internet: 1407981 + }), + new WorldStatsItem( + { + code: `CMR`, + name: `Cameroon`, + continent: `Africa`, + population: 24994885, + gdpTotal: 77240, + economy: `Developing`, + region: `Middle Africa`, + status: `Country`, + longitude: 12.451, + latitude: 4.365, + gdpPerPerson: 3090, + rank: 53, + unemployment: 30, + oilProduction: 85300, + birthRate: 35, + medianAge: 19, + electricity: 4090, + televisions: 450000, + publicDebt: 16, + internet: 370000 + }), + new WorldStatsItem( + { + code: `CIV`, + name: `Ivory Coast`, + continent: `Africa`, + population: 24184810, + gdpTotal: 87120, + economy: `Developing`, + region: `Western Africa`, + status: `Country`, + longitude: -5.555, + latitude: 7.538, + gdpPerPerson: 3602, + rank: 54, + unemployment: 3, + oilProduction: 1, + birthRate: 17, + medianAge: 55, + electricity: 49302, + televisions: 9034402, + publicDebt: 75, + internet: 300000 + }), + new WorldStatsItem( + { + code: `TWN`, + name: `Taiwan`, + continent: `Asia`, + population: 23508428, + gdpTotal: 1127000, + economy: `Developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 120.96, + latitude: 23.636, + gdpPerPerson: 47940, + rank: 55, + unemployment: 4, + oilProduction: 600, + birthRate: 9, + medianAge: 36, + electricity: 235000, + televisions: 8800000, + publicDebt: 28, + internet: 14760000 + }), + new WorldStatsItem( + { + code: `AUS`, + name: `Australia`, + continent: `Oceania`, + population: 23232413, + gdpTotal: 1189000, + economy: `Developed`, + region: `Australia`, + status: `Country`, + longitude: 135.87, + latitude: -25.63, + gdpPerPerson: 51178, + rank: 56, + unemployment: 4, + oilProduction: 540000, + birthRate: 13, + medianAge: 37, + electricity: 236700, + televisions: 10150000, + publicDebt: 16, + internet: 11240000 + }), + new WorldStatsItem( + { + code: `LKA`, + name: `Sri Lanka`, + continent: `Asia`, + population: 22409381, + gdpTotal: 236700, + economy: `Developing`, + region: `Southern Asia`, + status: `Country`, + longitude: 80.792, + latitude: 7.881, + gdpPerPerson: 10563, + rank: 57, + unemployment: 6, + oilProduction: 0, + birthRate: 17, + medianAge: 30, + electricity: 8411, + televisions: 1530000, + publicDebt: 86, + internet: 771700 + }), + new WorldStatsItem( + { + code: `ROU`, + name: `Romania`, + continent: `Europe`, + population: 21529967, + gdpTotal: 441000, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 24.974, + latitude: 45.967, + gdpPerPerson: 20483, + rank: 58, + unemployment: 4, + oilProduction: 115000, + birthRate: 11, + medianAge: 37, + electricity: 60520, + televisions: 5250000, + publicDebt: 13, + internet: 12000000 + }), + new WorldStatsItem( + { + code: `BFA`, + name: `Burkina Faso`, + continent: `Africa`, + population: 20107509, + gdpTotal: 32990, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -1.567, + latitude: 12.251, + gdpPerPerson: 1641, + rank: 59, + unemployment: 4, + oilProduction: 5, + birthRate: 21, + medianAge: 30, + electricity: 82658, + televisions: 7478745, + publicDebt: 14, + internet: 5896530 + }), + new WorldStatsItem( + { + code: `NER`, + name: `Niger`, + continent: `Africa`, + population: 19245344, + gdpTotal: 20150, + economy: `Least developed`, + region: `Northern Africa`, + status: `Country`, + longitude: 10.845, + latitude: 17.92, + gdpPerPerson: 1047, + rank: 60, + unemployment: 9, + oilProduction: 5, + birthRate: 18, + medianAge: 53, + electricity: 10652, + televisions: 8203307, + publicDebt: 17, + internet: 157021 + }), + new WorldStatsItem( + { + code: `MWI`, + name: `Malawi`, + continent: `Africa`, + population: 19196246, + gdpTotal: 21200, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 34.282, + latitude: -13.26, + gdpPerPerson: 1104, + rank: 61, + unemployment: 12, + oilProduction: 3, + birthRate: 12, + medianAge: 51, + electricity: 20676, + televisions: 4938675, + publicDebt: 51, + internet: 139500 + }), + new WorldStatsItem( + { + code: `KAZ`, + name: `Kazakhstan`, + continent: `Asia`, + population: 18556698, + gdpTotal: 460700, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 66.966, + latitude: 47.999, + gdpPerPerson: 24827, + rank: 62, + unemployment: 7, + oilProduction: 1355000, + birthRate: 16, + medianAge: 29, + electricity: 76340, + televisions: 3880000, + publicDebt: 8, + internet: 1901000 + }), + new WorldStatsItem( + { + code: `SYR`, + name: `Syria`, + continent: `Asia`, + population: 18028549, + gdpTotal: 50280, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 39.062, + latitude: 34.807, + gdpPerPerson: 2789, + rank: 63, + unemployment: 9, + oilProduction: 379000, + birthRate: 27, + medianAge: 21, + electricity: 153200, + televisions: 1050000, + publicDebt: 38, + internet: 3470000 + }), + new WorldStatsItem( + { + code: `MLI`, + name: `Mali`, + continent: `Africa`, + population: 17885245, + gdpTotal: 38090, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -1.496, + latitude: 17.867, + gdpPerPerson: 2130, + rank: 64, + unemployment: 4, + oilProduction: 4, + birthRate: 21, + medianAge: 46, + electricity: 72483, + televisions: 4783188, + publicDebt: 38, + internet: 8619386 + }), + new WorldStatsItem( + { + code: `CHL`, + name: `Chile`, + continent: `South America`, + population: 17789267, + gdpTotal: 436100, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -69.11, + latitude: -23.36, + gdpPerPerson: 24515, + rank: 65, + unemployment: 7, + oilProduction: 15100, + birthRate: 15, + medianAge: 31, + electricity: 47600, + televisions: 3150000, + publicDebt: 4, + internet: 557000 + }), + new WorldStatsItem( + { + code: `NLD`, + name: `Netherlands`, + continent: `Europe`, + population: 17084719, + gdpTotal: 870800, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 6.272, + latitude: 52.971, + gdpPerPerson: 50970, + rank: 66, + unemployment: 5, + oilProduction: 76000, + birthRate: 11, + medianAge: 40, + electricity: 94340, + televisions: 8100000, + publicDebt: 46, + internet: 15000000 + }), + new WorldStatsItem( + { + code: `ECU`, + name: `Ecuador`, + continent: `South America`, + population: 16290913, + gdpTotal: 182400, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -77.98, + latitude: -1.291, + gdpPerPerson: 11196, + rank: 67, + unemployment: 9, + oilProduction: 511100, + birthRate: 22, + medianAge: 24, + electricity: 12940, + televisions: 2500000, + publicDebt: 33, + internet: 1549000 + }), + new WorldStatsItem( + { + code: `KHM`, + name: `Cambodia`, + continent: `Asia`, + population: 16204486, + gdpTotal: 58940, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 104.96, + latitude: 12.558, + gdpPerPerson: 3637, + rank: 68, + unemployment: 15, + oilProduction: 1, + birthRate: 17, + medianAge: 50, + electricity: 45509, + televisions: 2489832, + publicDebt: 22, + internet: 11512560 + }), + new WorldStatsItem( + { + code: `ZMB`, + name: `Zambia`, + continent: `Africa`, + population: 15972000, + gdpTotal: 65170, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 26.301, + latitude: -14.3, + gdpPerPerson: 4080, + rank: 69, + unemployment: 50, + oilProduction: 150, + birthRate: 41, + medianAge: 17, + electricity: 8850, + televisions: 277000, + publicDebt: 28, + internet: 500000 + }), + new WorldStatsItem( + { + code: `GTM`, + name: `Guatemala`, + continent: `North America`, + population: 15460732, + gdpTotal: 131800, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -90.4, + latitude: 15.225, + gdpPerPerson: 8525, + rank: 70, + unemployment: 3, + oilProduction: 13000, + birthRate: 29, + medianAge: 19, + electricity: 7281, + televisions: 1323000, + publicDebt: 21, + internet: 1320000 + }), + new WorldStatsItem( + { + code: `SEN`, + name: `Senegal`, + continent: `Africa`, + population: 14668522, + gdpTotal: 39720, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -14.76, + latitude: 15.47, + gdpPerPerson: 2708, + rank: 71, + unemployment: 48, + oilProduction: 0, + birthRate: 37, + medianAge: 19, + electricity: 2159, + televisions: 361000, + publicDebt: 23, + internet: 820000 + }), + new WorldStatsItem( + { + code: `ZWE`, + name: `Zimbabwe`, + continent: `Africa`, + population: 13805084, + gdpTotal: 28330, + economy: `Emerging`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.115, + latitude: -19.02, + gdpPerPerson: 2052, + rank: 72, + unemployment: 80, + oilProduction: 0, + birthRate: 32, + medianAge: 18, + electricity: 9950, + televisions: 370000, + publicDebt: 218, + internet: 1351000 + }), + new WorldStatsItem( + { + code: `SSD`, + name: `South Sudan`, + continent: `Africa`, + population: 13026129, + gdpTotal: 20880, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.708, + latitude: 7.857, + gdpPerPerson: 1603, + rank: 73, + unemployment: 11, + oilProduction: 5, + birthRate: 8, + medianAge: 43, + electricity: 41476, + televisions: 7716253, + publicDebt: 41, + internet: 4569804 + }), + new WorldStatsItem( + { + code: `GIN`, + name: `Guinea`, + continent: `Africa`, + population: 12413867, + gdpTotal: 16080, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -9.522, + latitude: 10.478, + gdpPerPerson: 1295, + rank: 74, + unemployment: 15, + oilProduction: 4, + birthRate: 5, + medianAge: 49, + electricity: 15826, + televisions: 6262180, + publicDebt: 32, + internet: 6439493 + }), + new WorldStatsItem( + { + code: `TCD`, + name: `Chad`, + continent: `Africa`, + population: 12075985, + gdpTotal: 30590, + economy: `Least developed`, + region: `Northern Africa`, + status: `Country`, + longitude: 18.716, + latitude: 15.46, + gdpPerPerson: 2533, + rank: 75, + unemployment: 15, + oilProduction: 2, + birthRate: 25, + medianAge: 46, + electricity: 57747, + televisions: 8629897, + publicDebt: 33, + internet: 6531943 + }), + new WorldStatsItem( + { + code: `RWA`, + name: `Rwanda`, + continent: `Africa`, + population: 11901484, + gdpTotal: 21970, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.867, + latitude: -1.936, + gdpPerPerson: 1846, + rank: 76, + unemployment: 14, + oilProduction: 0, + birthRate: 23, + medianAge: 51, + electricity: 51710, + televisions: 1363647, + publicDebt: 36, + internet: 2425128 + }), + new WorldStatsItem( + { + code: `BEL`, + name: `Belgium`, + continent: `Europe`, + population: 11491346, + gdpTotal: 508600, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 4.605, + latitude: 50.911, + gdpPerPerson: 44259, + rank: 77, + unemployment: 8, + oilProduction: 9000, + birthRate: 10, + medianAge: 41, + electricity: 80840, + televisions: 4720000, + publicDebt: 85, + internet: 5220000 + }), + new WorldStatsItem( + { + code: `BDI`, + name: `Burundi`, + continent: `Africa`, + population: 11466756, + gdpTotal: 7892, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.913, + latitude: -3.384, + gdpPerPerson: 688, + rank: 78, + unemployment: 12, + oilProduction: 3, + birthRate: 16, + medianAge: 35, + electricity: 43850, + televisions: 2920735, + publicDebt: 20, + internet: 3908915 + }), + new WorldStatsItem( + { + code: `TUN`, + name: `Tunisia`, + continent: `Africa`, + population: 11403800, + gdpTotal: 130800, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 9.516, + latitude: 33.785, + gdpPerPerson: 11470, + rank: 79, + unemployment: 14, + oilProduction: 76900, + birthRate: 16, + medianAge: 29, + electricity: 12850, + televisions: 920000, + publicDebt: 55, + internet: 1722000 + }), + new WorldStatsItem( + { + code: `CUB`, + name: `Cuba`, + continent: `North America`, + population: 11147407, + gdpTotal: 132900, + economy: `Emerging`, + region: `Central America`, + status: `Country`, + longitude: -80.54, + latitude: 22.567, + gdpPerPerson: 11922, + rank: 80, + unemployment: 2, + oilProduction: 58300, + birthRate: 11, + medianAge: 37, + electricity: 16450, + televisions: 2640000, + publicDebt: 37, + internet: 1310000 + }), + new WorldStatsItem( + { + code: `BOL`, + name: `Bolivia`, + continent: `South America`, + population: 11138234, + gdpTotal: 78350, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -63.57, + latitude: -16.3, + gdpPerPerson: 7034, + rank: 81, + unemployment: 8, + oilProduction: 46470, + birthRate: 22, + medianAge: 23, + electricity: 5293, + televisions: 900000, + publicDebt: 46, + internet: 1000000 + }), + new WorldStatsItem( + { + code: `BEN`, + name: `Benin`, + continent: `Africa`, + population: 11038805, + gdpTotal: 24310, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: 2.704, + latitude: 10.535, + gdpPerPerson: 2202, + rank: 82, + unemployment: 2, + oilProduction: 0, + birthRate: 25, + medianAge: 40, + electricity: 13145, + televisions: 7167916, + publicDebt: 34, + internet: 8520122 + }), + new WorldStatsItem( + { + code: `PRT`, + name: `Portugal`, + continent: `Europe`, + population: 10839514, + gdpTotal: 297100, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: -7.757, + latitude: 40.815, + gdpPerPerson: 27409, + rank: 83, + unemployment: 8, + oilProduction: 9500, + birthRate: 10, + medianAge: 39, + electricity: 49040, + televisions: 3310000, + publicDebt: 64, + internet: 3549000 + }), + new WorldStatsItem( + { + code: `GRC`, + name: `Greece`, + continent: `Europe`, + population: 10768477, + gdpTotal: 290500, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 21.871, + latitude: 39.558, + gdpPerPerson: 26977, + rank: 84, + unemployment: 8, + oilProduction: 5687, + birthRate: 10, + medianAge: 42, + electricity: 56130, + televisions: 2540000, + publicDebt: 90, + internet: 2540000 + }), + new WorldStatsItem( + { + code: `DOM`, + name: `Dominican Republic`, + continent: `North America`, + population: 10734247, + gdpTotal: 161900, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -70.17, + latitude: 18.775, + gdpPerPerson: 15083, + rank: 85, + unemployment: 16, + oilProduction: 12, + birthRate: 23, + medianAge: 25, + electricity: 12220, + televisions: 770000, + publicDebt: 41, + internet: 1677000 + }), + new WorldStatsItem( + { + code: `CZE`, + name: `Czechia`, + continent: `Europe`, + population: 10674723, + gdpTotal: 350900, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 15.461, + latitude: 49.807, + gdpPerPerson: 32872, + rank: 86, + unemployment: 7, + oilProduction: 18030, + birthRate: 9, + medianAge: 40, + electricity: 77380, + televisions: 3405834, + publicDebt: 26, + internet: 4400000 + }), + new WorldStatsItem( + { + code: `HTI`, + name: `Haiti`, + continent: `North America`, + population: 10646714, + gdpTotal: 19340, + economy: `Least developed`, + region: `Central America`, + status: `Country`, + longitude: -72.23, + latitude: 19.342, + gdpPerPerson: 1817, + rank: 87, + unemployment: 15, + oilProduction: 2, + birthRate: 9, + medianAge: 52, + electricity: 12871, + televisions: 4329511, + publicDebt: 25, + internet: 4777792 + }), + new WorldStatsItem( + { + code: `JOR`, + name: `Jordan`, + continent: `Asia`, + population: 10248069, + gdpTotal: 86190, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 38.125, + latitude: 32.309, + gdpPerPerson: 8410, + rank: 88, + unemployment: 14, + oilProduction: 0, + birthRate: 20, + medianAge: 24, + electricity: 9074, + televisions: 500000, + publicDebt: 72, + internet: 1127000 + }), + new WorldStatsItem( + { + code: `AZE`, + name: `Azerbaijan`, + continent: `Asia`, + population: 9961396, + gdpTotal: 167900, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 48.401, + latitude: 40.344, + gdpPerPerson: 16855, + rank: 89, + unemployment: 1, + oilProduction: 934700, + birthRate: 18, + medianAge: 28, + electricity: 23800, + televisions: 170000, + publicDebt: 7, + internet: 1036000 + }), + new WorldStatsItem( + { + code: `SWE`, + name: `Sweden`, + continent: `Europe`, + population: 9960487, + gdpTotal: 498100, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 17.594, + latitude: 64.621, + gdpPerPerson: 50008, + rank: 90, + unemployment: 6, + oilProduction: 2350, + birthRate: 10, + medianAge: 41, + electricity: 153200, + televisions: 4600000, + publicDebt: 42, + internet: 7000000 + }), + new WorldStatsItem( + { + code: `HUN`, + name: `Hungary`, + continent: `Europe`, + population: 9850845, + gdpTotal: 267600, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 19.485, + latitude: 47.153, + gdpPerPerson: 27165, + rank: 91, + unemployment: 7, + oilProduction: 42180, + birthRate: 10, + medianAge: 39, + electricity: 33690, + televisions: 4420000, + publicDebt: 67, + internet: 4200000 + }), + new WorldStatsItem( + { + code: `BLR`, + name: `Belarus`, + continent: `Europe`, + population: 9549747, + gdpTotal: 165400, + economy: `Developing`, + region: `Eastern Europe`, + status: `Country`, + longitude: 27.943, + latitude: 53.705, + gdpPerPerson: 17320, + rank: 92, + unemployment: 15, + oilProduction: 5, + birthRate: 7, + medianAge: 33, + electricity: 84070, + televisions: 3348094, + publicDebt: 6, + internet: 3754027 + }), + new WorldStatsItem( + { + code: `HND`, + name: `Honduras`, + continent: `North America`, + population: 9038741, + gdpTotal: 43190, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -86.74, + latitude: 14.889, + gdpPerPerson: 4778, + rank: 93, + unemployment: 28, + oilProduction: 0, + birthRate: 27, + medianAge: 20, + electricity: 5339, + televisions: 570000, + publicDebt: 24, + internet: 344100 + }), + new WorldStatsItem( + { + code: `AUT`, + name: `Austria`, + continent: `Europe`, + population: 8754413, + gdpTotal: 416600, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 14.987, + latitude: 47.624, + gdpPerPerson: 47587, + rank: 94, + unemployment: 4, + oilProduction: 23320, + birthRate: 9, + medianAge: 42, + electricity: 61020, + televisions: 10150000, + publicDebt: 59, + internet: 4277000 + }), + new WorldStatsItem( + { + code: `TJK`, + name: `Tajikistan`, + continent: `Asia`, + population: 8468555, + gdpTotal: 25810, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 71.234, + latitude: 38.86, + gdpPerPerson: 3048, + rank: 95, + unemployment: 11, + oilProduction: 5, + birthRate: 8, + medianAge: 44, + electricity: 56534, + televisions: 6542566, + publicDebt: 44, + internet: 4521889 + }), + new WorldStatsItem( + { + code: `ISR`, + name: `Israel`, + continent: `Asia`, + population: 8299706, + gdpTotal: 297000, + economy: `Developed`, + region: `Middle East`, + status: `Country`, + longitude: 34.977, + latitude: 30.748, + gdpPerPerson: 35784, + rank: 96, + unemployment: 7, + oilProduction: 100, + birthRate: 20, + medianAge: 29, + electricity: 46850, + televisions: 1690000, + publicDebt: 81, + internet: 2000000 + }), + new WorldStatsItem( + { + code: `CHE`, + name: `Switzerland`, + continent: `Europe`, + population: 8236303, + gdpTotal: 496300, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 7.865, + latitude: 46.729, + gdpPerPerson: 60258, + rank: 97, + unemployment: 3, + oilProduction: 3202, + birthRate: 10, + medianAge: 41, + electricity: 56100, + televisions: 3310000, + publicDebt: 44, + internet: 4610000 + }), + new WorldStatsItem( + { + code: `TGO`, + name: `Togo`, + continent: `Africa`, + population: 7965055, + gdpTotal: 11610, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: 1.146, + latitude: 6.799, + gdpPerPerson: 1458, + rank: 98, + unemployment: 3, + oilProduction: 4, + birthRate: 9, + medianAge: 37, + electricity: 28181, + televisions: 2309082, + publicDebt: 41, + internet: 789456 + }), + new WorldStatsItem( + { + code: `SOM`, + name: `Somalia`, + continent: `Africa`, + population: 7531386, + gdpTotal: 4719, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 44.134, + latitude: 3.077, + gdpPerPerson: 627, + rank: 99, + unemployment: 2, + oilProduction: 4, + birthRate: 12, + medianAge: 50, + electricity: 29272, + televisions: 1648650, + publicDebt: 22, + internet: 3227211 + }), + new WorldStatsItem( + { + code: `HKG`, + name: `Hong Kong`, + continent: `Asia`, + population: 7191503, + gdpTotal: 427400, + economy: `Developing`, + region: `Eastern Asia`, + status: `Dependency`, + longitude: 114.08, + latitude: 22.38, + gdpPerPerson: 59431, + rank: 100, + unemployment: 3, + oilProduction: 0, + birthRate: 8, + medianAge: 55, + electricity: 86792, + televisions: 4084025, + publicDebt: 35, + internet: 3907543 + }), + new WorldStatsItem( + { + code: `LAO`, + name: `Laos`, + continent: `Asia`, + population: 7126706, + gdpTotal: 40960, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 102.36, + latitude: 20.171, + gdpPerPerson: 5747, + rank: 101, + unemployment: 8, + oilProduction: 0, + birthRate: 6, + medianAge: 34, + electricity: 7093, + televisions: 4503172, + publicDebt: 19, + internet: 5426041 + }), + new WorldStatsItem( + { + code: `SRB`, + name: `Serbia`, + continent: `Europe`, + population: 7111024, + gdpTotal: 101800, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 20.908, + latitude: 44.206, + gdpPerPerson: 14316, + rank: 102, + unemployment: 5, + oilProduction: 4, + birthRate: 13, + medianAge: 48, + electricity: 30150, + televisions: 1316607, + publicDebt: 17, + internet: 4104775 + }), + new WorldStatsItem( + { + code: `BGR`, + name: `Bulgaria`, + continent: `Europe`, + population: 7101510, + gdpTotal: 143100, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 25.465, + latitude: 42.741, + gdpPerPerson: 20151, + rank: 103, + unemployment: 8, + oilProduction: 3661, + birthRate: 10, + medianAge: 41, + electricity: 45700, + televisions: 3310000, + publicDebt: 11, + internet: 1899000 + }), + new WorldStatsItem( + { + code: `PRY`, + name: `Paraguay`, + continent: `South America`, + population: 6943739, + gdpTotal: 64670, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -58.44, + latitude: -23.42, + gdpPerPerson: 9313, + rank: 104, + unemployment: 6, + oilProduction: 0, + birthRate: 28, + medianAge: 22, + electricity: 70000, + televisions: 990000, + publicDebt: 27, + internet: 280000 + }), + new WorldStatsItem( + { + code: `PNG`, + name: `Papua New Guinea`, + continent: `Oceania`, + population: 6909701, + gdpTotal: 28020, + economy: `Developing`, + region: `Melanesia`, + status: `Country`, + longitude: 143.62, + latitude: -5.836, + gdpPerPerson: 4055, + rank: 105, + unemployment: 2, + oilProduction: 47800, + birthRate: 28, + medianAge: 22, + electricity: 3698, + televisions: 59841, + publicDebt: 40, + internet: 110000 + }), + new WorldStatsItem( + { + code: `LBY`, + name: `Libya`, + continent: `Africa`, + population: 6653210, + gdpTotal: 90890, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 17.23, + latitude: 26.339, + gdpPerPerson: 13661, + rank: 106, + unemployment: 30, + oilProduction: 1712000, + birthRate: 26, + medianAge: 24, + electricity: 21150, + televisions: 730000, + publicDebt: 5, + internet: 260000 + }), + new WorldStatsItem( + { + code: `LBN`, + name: `Lebanon`, + continent: `Asia`, + population: 6229794, + gdpTotal: 85160, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 36.042, + latitude: 34.168, + gdpPerPerson: 13670, + rank: 107, + unemployment: 20, + oilProduction: 0, + birthRate: 18, + medianAge: 29, + electricity: 9183, + televisions: 1180000, + publicDebt: 187, + internet: 950000 + }), + new WorldStatsItem( + { + code: `SLV`, + name: `El Salvador`, + continent: `North America`, + population: 6172011, + gdpTotal: 54790, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -88.91, + latitude: 13.798, + gdpPerPerson: 8877, + rank: 108, + unemployment: 6, + oilProduction: 0, + birthRate: 26, + medianAge: 22, + electricity: 5316, + televisions: 600000, + publicDebt: 37, + internet: 700000 + }), + new WorldStatsItem( + { + code: `SLE`, + name: `Sierra Leone`, + continent: `Africa`, + population: 6163195, + gdpTotal: 10640, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -11.78, + latitude: 8.452, + gdpPerPerson: 1726, + rank: 109, + unemployment: 14, + oilProduction: 4, + birthRate: 6, + medianAge: 37, + electricity: 37412, + televisions: 2727270, + publicDebt: 6, + internet: 223239 + }), + new WorldStatsItem( + { + code: `ARE`, + name: `United Arab Emirates`, + continent: `Asia`, + population: 6072475, + gdpTotal: 667200, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 54.192, + latitude: 23.795, + gdpPerPerson: 109873, + rank: 110, + unemployment: 2, + oilProduction: 2510000, + birthRate: 16, + medianAge: 30, + electricity: 57060, + televisions: 310000, + publicDebt: 21, + internet: 2300000 + }), + new WorldStatsItem( + { + code: `NIC`, + name: `Nicaragua`, + continent: `North America`, + population: 6025951, + gdpTotal: 33550, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -85.09, + latitude: 12.523, + gdpPerPerson: 5568, + rank: 111, + unemployment: 5, + oilProduction: 0, + birthRate: 24, + medianAge: 22, + electricity: 2778, + televisions: 320000, + publicDebt: 63, + internet: 155000 + }), + new WorldStatsItem( + { + code: `ERI`, + name: `Eritrea`, + continent: `Africa`, + population: 5918919, + gdpTotal: 9169, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 39.772, + latitude: 15.191, + gdpPerPerson: 1549, + rank: 112, + unemployment: 9, + oilProduction: 5, + birthRate: 17, + medianAge: 54, + electricity: 67474, + televisions: 2078077, + publicDebt: 41, + internet: 1067843 + }), + new WorldStatsItem( + { + code: `SGP`, + name: `Singapore`, + continent: `Asia`, + population: 5888926, + gdpTotal: 487900, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 103.82, + latitude: 1.356, + gdpPerPerson: 82850, + rank: 113, + unemployment: 2, + oilProduction: 9836, + birthRate: 9, + medianAge: 38, + electricity: 39440, + televisions: 1330000, + publicDebt: 96, + internet: 3105000 + }), + new WorldStatsItem( + { + code: `KGZ`, + name: `Kyrgyzstan`, + continent: `Asia`, + population: 5789122, + gdpTotal: 21010, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 74.738, + latitude: 41.224, + gdpPerPerson: 3629, + rank: 114, + unemployment: 12, + oilProduction: 1, + birthRate: 21, + medianAge: 42, + electricity: 16640, + televisions: 2101152, + publicDebt: 15, + internet: 738896 + }), + new WorldStatsItem( + { + code: `CAF`, + name: `Central African Republic`, + continent: `Africa`, + population: 5625118, + gdpTotal: 3206, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 20.917, + latitude: 6.633, + gdpPerPerson: 570, + rank: 115, + unemployment: 8, + oilProduction: 5, + birthRate: 13, + medianAge: 32, + electricity: 71424, + televisions: 635931, + publicDebt: 29, + internet: 1933873 + }), + new WorldStatsItem( + { + code: `DNK`, + name: `Denmark`, + continent: `Europe`, + population: 5605948, + gdpTotal: 264800, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 9.348, + latitude: 56.13, + gdpPerPerson: 47236, + rank: 116, + unemployment: 3, + oilProduction: 342000, + birthRate: 11, + medianAge: 40, + electricity: 43350, + televisions: 3121000, + publicDebt: 26, + internet: 3500000 + }), + new WorldStatsItem( + { + code: `FIN`, + name: `Finland`, + continent: `Europe`, + population: 5491218, + gdpTotal: 224137, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 25.988, + latitude: 61.841, + gdpPerPerson: 40817, + rank: 117, + unemployment: 7, + oilProduction: 8951, + birthRate: 10, + medianAge: 42, + electricity: 73470, + televisions: 3200000, + publicDebt: 36, + internet: 3600000 + }), + new WorldStatsItem( + { + code: `SVK`, + name: `Slovakia`, + continent: `Europe`, + population: 5445829, + gdpTotal: 168800, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 18.877, + latitude: 48.702, + gdpPerPerson: 30996, + rank: 118, + unemployment: 8, + oilProduction: 12840, + birthRate: 11, + medianAge: 37, + electricity: 29890, + televisions: 2620000, + publicDebt: 36, + internet: 2350000 + }), + new WorldStatsItem( + { + code: `TKM`, + name: `Turkmenistan`, + continent: `Asia`, + population: 5351277, + gdpTotal: 94720, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 59.562, + latitude: 38.975, + gdpPerPerson: 17700, + rank: 119, + unemployment: 11, + oilProduction: 4, + birthRate: 11, + medianAge: 43, + electricity: 91281, + televisions: 2935468, + publicDebt: 17, + internet: 3203210 + }), + new WorldStatsItem( + { + code: `NOR`, + name: `Norway`, + continent: `Europe`, + population: 5320045, + gdpTotal: 364700, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 9.66, + latitude: 60.712, + gdpPerPerson: 68552, + rank: 120, + unemployment: 3, + oilProduction: 2560000, + birthRate: 11, + medianAge: 39, + electricity: 135800, + televisions: 2030000, + publicDebt: 83, + internet: 3800000 + }), + new WorldStatsItem( + { + code: `IRL`, + name: `Ireland`, + continent: `Europe`, + population: 5011102, + gdpTotal: 322000, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: -8.209, + latitude: 53.42, + gdpPerPerson: 64257, + rank: 121, + unemployment: 5, + oilProduction: 0, + birthRate: 14, + medianAge: 35, + electricity: 24130, + televisions: 1820000, + publicDebt: 25, + internet: 1708000 + }), + new WorldStatsItem( + { + code: `COG`, + name: `Congo`, + continent: `Africa`, + population: 4954674, + gdpTotal: 30270, + economy: `Developing`, + region: `Middle Africa`, + status: `Country`, + longitude: 16.264, + latitude: -0.07, + gdpPerPerson: 6109, + rank: 122, + unemployment: 13, + oilProduction: 4, + birthRate: 11, + medianAge: 52, + electricity: 83556, + televisions: 1560800, + publicDebt: 6, + internet: 2650237 + }), + new WorldStatsItem( + { + code: `CRI`, + name: `Costa Rica`, + continent: `North America`, + population: 4930258, + gdpTotal: 79260, + economy: `Emerging`, + region: `Central America`, + status: `Country`, + longitude: -83.91, + latitude: 9.92, + gdpPerPerson: 16076, + rank: 123, + unemployment: 5, + oilProduction: 0, + birthRate: 18, + medianAge: 27, + electricity: 8349, + televisions: 525000, + publicDebt: 47, + internet: 1500000 + }), + new WorldStatsItem( + { + code: `GEO`, + name: `Georgia`, + continent: `Asia`, + population: 4926330, + gdpTotal: 37270, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 43.257, + latitude: 42.162, + gdpPerPerson: 7565, + rank: 124, + unemployment: 15, + oilProduction: 5, + birthRate: 10, + medianAge: 43, + electricity: 44936, + televisions: 2728128, + publicDebt: 29, + internet: 3844448 + }), + new WorldStatsItem( + { + code: `LBR`, + name: `Liberia`, + continent: `Africa`, + population: 4689021, + gdpTotal: 3881, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -9.454, + latitude: 6.445, + gdpPerPerson: 828, + rank: 125, + unemployment: 4, + oilProduction: 0, + birthRate: 8, + medianAge: 35, + electricity: 89626, + televisions: 3065112, + publicDebt: 38, + internet: 1475304 + }), + new WorldStatsItem( + { + code: `PSE`, + name: `Palestine`, + continent: `Asia`, + population: 4543126, + gdpTotal: 21221, + economy: `Developing`, + region: `Middle East`, + status: `Disputed`, + longitude: 35.347, + latitude: 32.031, + gdpPerPerson: 4671, + rank: 126, + unemployment: 9, + oilProduction: 1, + birthRate: 10, + medianAge: 48, + electricity: 45973, + televisions: 2774033, + publicDebt: 16, + internet: 1718915 + }), + new WorldStatsItem( + { + code: `NZL`, + name: `New Zealand`, + continent: `Oceania`, + population: 4510327, + gdpTotal: 174800, + economy: `Developed`, + region: `Australia`, + status: `Country`, + longitude: 169.42, + latitude: -44.86, + gdpPerPerson: 38756, + rank: 127, + unemployment: 4, + oilProduction: 25880, + birthRate: 14, + medianAge: 36, + electricity: 42060, + televisions: 1926000, + publicDebt: 21, + internet: 3360000 + }), + new WorldStatsItem( + { + code: `HRV`, + name: `Croatia`, + continent: `Europe`, + population: 4292095, + gdpTotal: 94240, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 16.847, + latitude: 45.674, + gdpPerPerson: 21957, + rank: 128, + unemployment: 12, + oilProduction: 17100, + birthRate: 10, + medianAge: 41, + electricity: 11990, + televisions: 1220000, + publicDebt: 48, + internet: 1995000 + }), + new WorldStatsItem( + { + code: `BIH`, + name: `Bosnia`, + continent: `Europe`, + population: 3856181, + gdpTotal: 42530, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 17.66, + latitude: 43.918, + gdpPerPerson: 11029, + rank: 129, + unemployment: 46, + oilProduction: 0, + birthRate: 9, + medianAge: 39, + electricity: 12220, + televisions: 0, + publicDebt: 34, + internet: 1055000 + }), + new WorldStatsItem( + { + code: `MRT`, + name: `Mauritania`, + continent: `Africa`, + population: 3758571, + gdpTotal: 16710, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -8.89, + latitude: 20.387, + gdpPerPerson: 4446, + rank: 130, + unemployment: 9, + oilProduction: 5, + birthRate: 25, + medianAge: 50, + electricity: 15176, + televisions: 2558125, + publicDebt: 29, + internet: 2098221 + }), + new WorldStatsItem( + { + code: `PAN`, + name: `Panama`, + continent: `North America`, + population: 3753142, + gdpTotal: 93120, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -81.17, + latitude: 8.457, + gdpPerPerson: 24811, + rank: 131, + unemployment: 6, + oilProduction: 0, + birthRate: 21, + medianAge: 27, + electricity: 5661, + televisions: 510000, + publicDebt: 53, + internet: 525200 + }), + new WorldStatsItem( + { + code: `SOL`, + name: `Somaliland`, + continent: `Africa`, + population: 3500000, + gdpTotal: 12250, + economy: `Developing`, + region: `Eastern Africa`, + status: `Indeterminate`, + longitude: 45.798, + latitude: 9.748, + gdpPerPerson: 3500, + rank: 132, + unemployment: 1, + oilProduction: 4, + birthRate: 13, + medianAge: 43, + electricity: 73247, + televisions: 2235408, + publicDebt: 21, + internet: 1300238 + }), + new WorldStatsItem( + { + code: `MDA`, + name: `Moldova`, + continent: `Europe`, + population: 3474121, + gdpTotal: 18540, + economy: `Developing`, + region: `Eastern Europe`, + status: `Country`, + longitude: 28.552, + latitude: 47.515, + gdpPerPerson: 5337, + rank: 133, + unemployment: 2, + oilProduction: 0, + birthRate: 11, + medianAge: 34, + electricity: 3881, + televisions: 1260000, + publicDebt: 23, + internet: 700000 + }), + new WorldStatsItem( + { + code: `OMN`, + name: `Oman`, + continent: `Asia`, + population: 3424386, + gdpTotal: 173100, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 57.563, + latitude: 22.014, + gdpPerPerson: 50549, + rank: 134, + unemployment: 15, + oilProduction: 710800, + birthRate: 35, + medianAge: 19, + electricity: 11890, + televisions: 1600000, + publicDebt: 4, + internet: 340000 + }), + new WorldStatsItem( + { + code: `URY`, + name: `Uruguay`, + continent: `South America`, + population: 3360148, + gdpTotal: 73250, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -55.78, + latitude: -32.51, + gdpPerPerson: 21800, + rank: 135, + unemployment: 9, + oilProduction: 27830, + birthRate: 14, + medianAge: 33, + electricity: 9200, + televisions: 782000, + publicDebt: 65, + internet: 968000 + }), + new WorldStatsItem( + { + code: `PRI`, + name: `Puerto Rico`, + continent: `North America`, + population: 3351827, + gdpTotal: 131000, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -66.61, + latitude: 18.235, + gdpPerPerson: 39083, + rank: 136, + unemployment: 5, + oilProduction: 3, + birthRate: 11, + medianAge: 32, + electricity: 19677, + televisions: 1917997, + publicDebt: 25, + internet: 608062 + }), + new WorldStatsItem( + { + code: `MNG`, + name: `Mongolia`, + continent: `Asia`, + population: 3068243, + gdpTotal: 37000, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 103.82, + latitude: 46.856, + gdpPerPerson: 12059, + rank: 137, + unemployment: 4, + oilProduction: 1, + birthRate: 7, + medianAge: 35, + electricity: 3875, + televisions: 1726758, + publicDebt: 17, + internet: 562546 + }), + new WorldStatsItem( + { + code: `ALB`, + name: `Albania`, + continent: `Europe`, + population: 3047987, + gdpTotal: 33900, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 19.964, + latitude: 40.759, + gdpPerPerson: 11122, + rank: 138, + unemployment: 13, + oilProduction: 7006, + birthRate: 15, + medianAge: 30, + electricity: 5385, + televisions: 700000, + publicDebt: 51, + internet: 471200 + }), + new WorldStatsItem( + { + code: `ARM`, + name: `Armenia`, + continent: `Asia`, + population: 3045191, + gdpTotal: 26300, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 44.646, + latitude: 40.618, + gdpPerPerson: 8637, + rank: 139, + unemployment: 4, + oilProduction: 4, + birthRate: 14, + medianAge: 39, + electricity: 71042, + televisions: 2390201, + publicDebt: 9, + internet: 488333 + }), + new WorldStatsItem( + { + code: `JAM`, + name: `Jamaica`, + continent: `North America`, + population: 2990561, + gdpTotal: 25390, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -77.27, + latitude: 18.119, + gdpPerPerson: 8490, + rank: 140, + unemployment: 10, + oilProduction: 0, + birthRate: 20, + medianAge: 23, + electricity: 6985, + televisions: 460000, + publicDebt: 127, + internet: 1500000 + }), + new WorldStatsItem( + { + code: `KWT`, + name: `Kuwait`, + continent: `Asia`, + population: 2875422, + gdpTotal: 301100, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 47.487, + latitude: 29.315, + gdpPerPerson: 104715, + rank: 141, + unemployment: 2, + oilProduction: 2440000, + birthRate: 22, + medianAge: 26, + electricity: 41110, + televisions: 875000, + publicDebt: 10, + internet: 900000 + }), + new WorldStatsItem( + { + code: `LTU`, + name: `Lithuania`, + continent: `Europe`, + population: 2823859, + gdpTotal: 85620, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 23.838, + latitude: 55.152, + gdpPerPerson: 30320, + rank: 142, + unemployment: 4, + oilProduction: 13160, + birthRate: 9, + medianAge: 39, + electricity: 13480, + televisions: 1700000, + publicDebt: 17, + internet: 1330000 + }), + new WorldStatsItem( + { + code: `NAM`, + name: `Namibia`, + continent: `Africa`, + population: 2484780, + gdpTotal: 25990, + economy: `Developing`, + region: `Southern Africa`, + status: `Country`, + longitude: 16.944, + latitude: -20.52, + gdpPerPerson: 10460, + rank: 143, + unemployment: 5, + oilProduction: 0, + birthRate: 23, + medianAge: 21, + electricity: 1688, + televisions: 60000, + publicDebt: 22, + internet: 101000 + }), + new WorldStatsItem( + { + code: `QAT`, + name: `Qatar`, + continent: `Asia`, + population: 2314307, + gdpTotal: 334500, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 51.182, + latitude: 25.359, + gdpPerPerson: 144536, + rank: 144, + unemployment: 1, + oilProduction: 797500, + birthRate: 16, + medianAge: 31, + electricity: 13540, + televisions: 230000, + publicDebt: 11, + internet: 351000 + }), + new WorldStatsItem( + { + code: `BWA`, + name: `Botswana`, + continent: `Africa`, + population: 2214858, + gdpTotal: 35900, + economy: `Developing`, + region: `Southern Africa`, + status: `Country`, + longitude: 24.671, + latitude: -22.32, + gdpPerPerson: 16209, + rank: 145, + unemployment: 8, + oilProduction: 0, + birthRate: 23, + medianAge: 21, + electricity: 912, + televisions: 31000, + publicDebt: 5, + internet: 80000 + }), + new WorldStatsItem( + { + code: `MKD`, + name: `North Macedonia`, + continent: `Europe`, + population: 2103721, + gdpTotal: 29520, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 21.727, + latitude: 41.604, + gdpPerPerson: 14032, + rank: 146, + unemployment: 35, + oilProduction: 0, + birthRate: 12, + medianAge: 35, + electricity: 6051, + televisions: 510000, + publicDebt: 31, + internet: 685000 + }), + new WorldStatsItem( + { + code: `GMB`, + name: `Gambia`, + continent: `Africa`, + population: 2051363, + gdpTotal: 3387, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -15.32, + latitude: 13.438, + gdpPerPerson: 1651, + rank: 147, + unemployment: 7, + oilProduction: 1, + birthRate: 11, + medianAge: 37, + electricity: 9769, + televisions: 1486289, + publicDebt: 30, + internet: 187890 + }), + new WorldStatsItem( + { + code: `SVN`, + name: `Slovenia`, + continent: `Europe`, + population: 1972126, + gdpTotal: 68350, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 14.947, + latitude: 46.146, + gdpPerPerson: 34658, + rank: 148, + unemployment: 8, + oilProduction: 5, + birthRate: 9, + medianAge: 41, + electricity: 14900, + televisions: 710000, + publicDebt: 24, + internet: 1300000 + }), + new WorldStatsItem( + { + code: `LSO`, + name: `Lesotho`, + continent: `Africa`, + population: 1958042, + gdpTotal: 6019, + economy: `Least developed`, + region: `Southern Africa`, + status: `Country`, + longitude: 28.221, + latitude: -29.61, + gdpPerPerson: 3074, + rank: 149, + unemployment: 12, + oilProduction: 2, + birthRate: 8, + medianAge: 32, + electricity: 20229, + televisions: 1457517, + publicDebt: 14, + internet: 1375222 + }), + new WorldStatsItem( + { + code: `LVA`, + name: `Latvia`, + continent: `Europe`, + population: 1944643, + gdpTotal: 50650, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 26.505, + latitude: 56.755, + gdpPerPerson: 26046, + rank: 150, + unemployment: 6, + oilProduction: 0, + birthRate: 10, + medianAge: 40, + electricity: 4778, + televisions: 1220000, + publicDebt: 7, + internet: 1770000 + }), + new WorldStatsItem( + { + code: `RKS`, + name: `Kosovo`, + continent: `Europe`, + population: 1895250, + gdpTotal: 18490, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 20.891, + latitude: 42.557, + gdpPerPerson: 9756, + rank: 151, + unemployment: 12, + oilProduction: 0, + birthRate: 8, + medianAge: 55, + electricity: 14878, + televisions: 1287863, + publicDebt: 20, + internet: 1422193 + }), + new WorldStatsItem( + { + code: `GNB`, + name: `Guinea-Bissau`, + continent: `Africa`, + population: 1792338, + gdpTotal: 2851, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -14.59, + latitude: 11.942, + gdpPerPerson: 1591, + rank: 152, + unemployment: 5, + oilProduction: 5, + birthRate: 5, + medianAge: 55, + electricity: 74684, + televisions: 1427462, + publicDebt: 8, + internet: 365000 + }), + new WorldStatsItem( + { + code: `GAB`, + name: `Gabon`, + continent: `Africa`, + population: 1772255, + gdpTotal: 35980, + economy: `Developing`, + region: `Middle Africa`, + status: `Country`, + longitude: 11.592, + latitude: -0.807, + gdpPerPerson: 20302, + rank: 153, + unemployment: 21, + oilProduction: 240000, + birthRate: 36, + medianAge: 19, + electricity: 1520, + televisions: 63000, + publicDebt: 53, + internet: 145000 + }), + new WorldStatsItem( + { + code: `SWZ`, + name: `Eswatini`, + continent: `Africa`, + population: 1467152, + gdpTotal: 11060, + economy: `Developing`, + region: `Southern Africa`, + status: `Country`, + longitude: 31.45, + latitude: -26.52, + gdpPerPerson: 7538, + rank: 154, + unemployment: 6, + oilProduction: 3, + birthRate: 17, + medianAge: 39, + electricity: 72804, + televisions: 229393, + publicDebt: 5, + internet: 427760 + }), + new WorldStatsItem( + { + code: `BHR`, + name: `Bahrain`, + continent: `Asia`, + population: 1410942, + gdpTotal: 66370, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 50.535, + latitude: 26.027, + gdpPerPerson: 47039, + rank: 155, + unemployment: 15, + oilProduction: 184300, + birthRate: 17, + medianAge: 30, + electricity: 8187, + televisions: 275000, + publicDebt: 31, + internet: 250000 + }), + new WorldStatsItem( + { + code: `MUS`, + name: `Mauritius`, + continent: `Africa`, + population: 1356388, + gdpTotal: 25850, + economy: `Developing`, + region: `Eastern Africa`, + status: `Country`, + longitude: 57.555, + latitude: -20.25, + gdpPerPerson: 19058, + rank: 156, + unemployment: 9, + oilProduction: 0, + birthRate: 15, + medianAge: 32, + electricity: 2350, + televisions: 258000, + publicDebt: 63, + internet: 340000 + }), + new WorldStatsItem( + { + code: `TLS`, + name: `Timor-Leste`, + continent: `Asia`, + population: 1291358, + gdpTotal: 4975, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 125.66, + latitude: -8.826, + gdpPerPerson: 3853, + rank: 157, + unemployment: 8, + oilProduction: 5, + birthRate: 18, + medianAge: 48, + electricity: 84061, + televisions: 416260, + publicDebt: 25, + internet: 267437 + }), + new WorldStatsItem( + { + code: `EST`, + name: `Estonia`, + continent: `Europe`, + population: 1251581, + gdpTotal: 38700, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 25.441, + latitude: 58.845, + gdpPerPerson: 30921, + rank: 158, + unemployment: 5, + oilProduction: 6930, + birthRate: 10, + medianAge: 40, + electricity: 9599, + televisions: 605000, + publicDebt: 3, + internet: 780000 + }), + new WorldStatsItem( + { + code: `CYP`, + name: `Cyprus`, + continent: `Asia`, + population: 1221549, + gdpTotal: 29260, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 33.176, + latitude: 34.876, + gdpPerPerson: 23953, + rank: 159, + unemployment: 4, + oilProduction: 0, + birthRate: 13, + medianAge: 35, + electricity: 4618, + televisions: 0, + publicDebt: 60, + internet: 380000 + }), + new WorldStatsItem( + { + code: `TTO`, + name: `Trinidad and Tobago`, + continent: `North America`, + population: 1218208, + gdpTotal: 43570, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.21, + latitude: 10.352, + gdpPerPerson: 35766, + rank: 160, + unemployment: 4, + oilProduction: 5, + birthRate: 15, + medianAge: 47, + electricity: 58959, + televisions: 359389, + publicDebt: 29, + internet: 152416 + }), + new WorldStatsItem( + { + code: `FJI`, + name: `Fiji`, + continent: `Oceania`, + population: 920938, + gdpTotal: 8374, + economy: `Developing`, + region: `Melanesia`, + status: `Country`, + longitude: 177.85, + latitude: -17.75, + gdpPerPerson: 9093, + rank: 161, + unemployment: 11, + oilProduction: 5, + birthRate: 5, + medianAge: 41, + electricity: 88931, + televisions: 517580, + publicDebt: 17, + internet: 539400 + }), + new WorldStatsItem( + { + code: `DJI`, + name: `Djibouti`, + continent: `Africa`, + population: 865267, + gdpTotal: 3345, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 42.587, + latitude: 11.825, + gdpPerPerson: 3866, + rank: 162, + unemployment: 5, + oilProduction: 3, + birthRate: 17, + medianAge: 44, + electricity: 91593, + televisions: 209004, + publicDebt: 43, + internet: 476114 + }), + new WorldStatsItem( + { + code: `COM`, + name: `Comoros`, + continent: `Africa`, + population: 808080, + gdpTotal: 1259, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 43.877, + latitude: -11.86, + gdpPerPerson: 1558, + rank: 163, + unemployment: 11, + oilProduction: 3, + birthRate: 14, + medianAge: 46, + electricity: 6146, + televisions: 495921, + publicDebt: 10, + internet: 459977 + }), + new WorldStatsItem( + { + code: `GNQ`, + name: `Equatorial Guinea`, + continent: `Africa`, + population: 778358, + gdpTotal: 31770, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 10.521, + latitude: 1.763, + gdpPerPerson: 40817, + rank: 164, + unemployment: 30, + oilProduction: 385500, + birthRate: 37, + medianAge: 19, + electricity: 28, + televisions: 4000, + publicDebt: 2, + internet: 8000 + }), + new WorldStatsItem( + { + code: `BTN`, + name: `Bhutan`, + continent: `Asia`, + population: 758288, + gdpTotal: 6432, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 90.411, + latitude: 27.506, + gdpPerPerson: 8482, + rank: 165, + unemployment: 3, + oilProduction: 0, + birthRate: 21, + medianAge: 24, + electricity: 2000, + televisions: 11000, + publicDebt: 81, + internet: 40000 + }), + new WorldStatsItem( + { + code: `GUY`, + name: `Guyana`, + continent: `South America`, + population: 737718, + gdpTotal: 6093, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -58.96, + latitude: 5.607, + gdpPerPerson: 8259, + rank: 166, + unemployment: 2, + oilProduction: 3, + birthRate: 9, + medianAge: 37, + electricity: 84988, + televisions: 149848, + publicDebt: 12, + internet: 134377 + }), + new WorldStatsItem( + { + code: `SLB`, + name: `Solomon Islands`, + continent: `Oceania`, + population: 647581, + gdpTotal: 1198, + economy: `Least developed`, + region: `Melanesia`, + status: `Country`, + longitude: 161.3, + latitude: -9.221, + gdpPerPerson: 1850, + rank: 167, + unemployment: 4, + oilProduction: 3, + birthRate: 18, + medianAge: 30, + electricity: 3432, + televisions: 177555, + publicDebt: 43, + internet: 478635 + }), + new WorldStatsItem( + { + code: `MNE`, + name: `Montenegro`, + continent: `Europe`, + population: 642550, + gdpTotal: 10610, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 19.191, + latitude: 42.814, + gdpPerPerson: 16512, + rank: 168, + unemployment: 10, + oilProduction: 2, + birthRate: 24, + medianAge: 46, + electricity: 24709, + televisions: 126756, + publicDebt: 29, + internet: 336628 + }), + new WorldStatsItem( + { + code: `ESH`, + name: `Western Sahara`, + continent: `Africa`, + population: 603253, + gdpTotal: 907, + economy: `Least developed`, + region: `Northern Africa`, + status: `Dependency`, + longitude: -12.89, + latitude: 24.231, + gdpPerPerson: 1504, + rank: 169, + unemployment: 6, + oilProduction: 1, + birthRate: 23, + medianAge: 30, + electricity: 11081, + televisions: 237857, + publicDebt: 30, + internet: 306624 + }), + new WorldStatsItem( + { + code: `MAC`, + name: `Macao`, + continent: `Asia`, + population: 601969, + gdpTotal: 63220, + economy: `Developing`, + region: `Eastern Asia`, + status: `Dependency`, + longitude: 113.51, + latitude: 22.221, + gdpPerPerson: 105022, + rank: 170, + unemployment: 10, + oilProduction: 2, + birthRate: 10, + medianAge: 47, + electricity: 77896, + televisions: 163859, + publicDebt: 18, + internet: 62728 + }), + new WorldStatsItem( + { + code: `LUX`, + name: `Luxembourg`, + continent: `Europe`, + population: 594130, + gdpTotal: 58740, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 6.109, + latitude: 49.806, + gdpPerPerson: 98867, + rank: 171, + unemployment: 4, + oilProduction: 0, + birthRate: 12, + medianAge: 39, + electricity: 3156, + televisions: 285000, + publicDebt: 6, + internet: 345000 + }), + new WorldStatsItem( + { + code: `SUR`, + name: `Suriname`, + continent: `South America`, + population: 591919, + gdpTotal: 8547, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -56.02, + latitude: 4.506, + gdpPerPerson: 14439, + rank: 172, + unemployment: 5, + oilProduction: 1, + birthRate: 16, + medianAge: 44, + electricity: 82658, + televisions: 69068, + publicDebt: 31, + internet: 367104 + }), + new WorldStatsItem( + { + code: `CPV`, + name: `Cabo Verde`, + continent: `Africa`, + population: 560899, + gdpTotal: 3583, + economy: `Developing`, + region: `Western Africa`, + status: `Country`, + longitude: -25.16, + latitude: 17.102, + gdpPerPerson: 6388, + rank: 173, + unemployment: 12, + oilProduction: 1, + birthRate: 12, + medianAge: 54, + electricity: 60647, + televisions: 101289, + publicDebt: 34, + internet: 40105 + }), + new WorldStatsItem( + { + code: `BRN`, + name: `Brunei`, + continent: `Asia`, + population: 443593, + gdpTotal: 33730, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 114.69, + latitude: 4.523, + gdpPerPerson: 76038, + rank: 174, + unemployment: 4, + oilProduction: 0, + birthRate: 17, + medianAge: 32, + electricity: 50701, + televisions: 235042, + publicDebt: 16, + internet: 188751 + }), + new WorldStatsItem( + { + code: `MLT`, + name: `Malta`, + continent: `Europe`, + population: 416338, + gdpTotal: 16320, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 14.373, + latitude: 35.948, + gdpPerPerson: 39199, + rank: 175, + unemployment: 7, + oilProduction: 4, + birthRate: 6, + medianAge: 52, + electricity: 77444, + televisions: 282390, + publicDebt: 41, + internet: 317612 + }), + new WorldStatsItem( + { + code: `MDV`, + name: `Maldives`, + continent: `Asia`, + population: 392709, + gdpTotal: 5407, + economy: `Developing`, + region: `Southern Asia`, + status: `Country`, + longitude: 73.455, + latitude: 3.739, + gdpPerPerson: 13768, + rank: 176, + unemployment: 13, + oilProduction: 4, + birthRate: 10, + medianAge: 43, + electricity: 26004, + televisions: 156412, + publicDebt: 28, + internet: 45331 + }), + new WorldStatsItem( + { + code: `BLZ`, + name: `Belize`, + continent: `North America`, + population: 360346, + gdpTotal: 3088, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -88.51, + latitude: 17.185, + gdpPerPerson: 8570, + rank: 177, + unemployment: 4, + oilProduction: 2, + birthRate: 7, + medianAge: 36, + electricity: 57433, + televisions: 127478, + publicDebt: 36, + internet: 223855 + }), + new WorldStatsItem( + { + code: `ISL`, + name: `Iceland`, + continent: `Europe`, + population: 339747, + gdpTotal: 16150, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: -19.01, + latitude: 64.966, + gdpPerPerson: 47535, + rank: 178, + unemployment: 1, + oilProduction: 0, + birthRate: 14, + medianAge: 35, + electricity: 8533, + televisions: 98000, + publicDebt: 28, + internet: 202300 + }), + new WorldStatsItem( + { + code: `BHS`, + name: `Bahamas`, + continent: `North America`, + population: 329988, + gdpTotal: 9066, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -78.01, + latitude: 24.761, + gdpPerPerson: 27474, + rank: 179, + unemployment: 5, + oilProduction: 2, + birthRate: 17, + medianAge: 47, + electricity: 38395, + televisions: 203588, + publicDebt: 6, + internet: 91807 + }), + new WorldStatsItem( + { + code: `FRG`, + name: `French Guiana`, + continent: `South America`, + population: 296161, + gdpTotal: 1299000, + economy: `Developed`, + region: `South America`, + status: `Dependency`, + longitude: -53.13, + latitude: 3.893, + gdpPerPerson: 4386, + rank: 180, + unemployment: 3, + oilProduction: 0, + birthRate: 15, + medianAge: 55, + electricity: 73845, + televisions: 147489, + publicDebt: 35, + internet: 209593 + }), + new WorldStatsItem( + { + code: `BRB`, + name: `Barbados`, + continent: `North America`, + population: 292336, + gdpTotal: 4804, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -59.53, + latitude: 13.19, + gdpPerPerson: 16433, + rank: 181, + unemployment: 8, + oilProduction: 3, + birthRate: 21, + medianAge: 51, + electricity: 28728, + televisions: 173392, + publicDebt: 12, + internet: 73593 + }), + new WorldStatsItem( + { + code: `PYF`, + name: `Fr. Polynesia`, + continent: `Oceania`, + population: 287881, + gdpTotal: 5490, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -143.9, + latitude: -14.82, + gdpPerPerson: 19070, + rank: 182, + unemployment: 1, + oilProduction: 4, + birthRate: 6, + medianAge: 45, + electricity: 46206, + televisions: 43757, + publicDebt: 12, + internet: 172560 + }), + new WorldStatsItem( + { + code: `VUT`, + name: `Vanuatu`, + continent: `Oceania`, + population: 282814, + gdpTotal: 723, + economy: `Least developed`, + region: `Melanesia`, + status: `Country`, + longitude: 168.21, + latitude: -16.97, + gdpPerPerson: 2556, + rank: 183, + unemployment: 11, + oilProduction: 4, + birthRate: 17, + medianAge: 39, + electricity: 50581, + televisions: 187584, + publicDebt: 42, + internet: 223352 + }), + new WorldStatsItem( + { + code: `NCL`, + name: `New Caledonia`, + continent: `Oceania`, + population: 279070, + gdpTotal: 10770, + economy: `Developing`, + region: `Melanesia`, + status: `Dependency`, + longitude: 165.26, + latitude: -21.09, + gdpPerPerson: 38592, + rank: 184, + unemployment: 10, + oilProduction: 3, + birthRate: 6, + medianAge: 49, + electricity: 18361, + televisions: 79923, + publicDebt: 45, + internet: 149003 + }), + new WorldStatsItem( + { + code: `NCP`, + name: `Northern Cyprus`, + continent: `Asia`, + population: 265100, + gdpTotal: 3600, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 33.714, + latitude: 35.257, + gdpPerPerson: 13580, + rank: 185, + unemployment: 4, + oilProduction: 5, + birthRate: 25, + medianAge: 51, + electricity: 84000, + televisions: 135551, + publicDebt: 30, + internet: 167480 + }), + new WorldStatsItem( + { + code: `STP`, + name: `Sao Tome and Principe`, + continent: `Africa`, + population: 201025, + gdpTotal: 694, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 6.598, + latitude: 0.248, + gdpPerPerson: 3452, + rank: 186, + unemployment: 1, + oilProduction: 3, + birthRate: 24, + medianAge: 30, + electricity: 6691, + televisions: 65480, + publicDebt: 12, + internet: 121162 + }), + new WorldStatsItem( + { + code: `WSM`, + name: `Samoa`, + continent: `Oceania`, + population: 200108, + gdpTotal: 1046, + economy: `Least developed`, + region: `Polynesia`, + status: `Country`, + longitude: -172.1, + latitude: -13.75, + gdpPerPerson: 5227, + rank: 187, + unemployment: 3, + oilProduction: 2, + birthRate: 7, + medianAge: 46, + electricity: 50118, + televisions: 54930, + publicDebt: 42, + internet: 84739 + }), + new WorldStatsItem( + { + code: `GUM`, + name: `Guam`, + continent: `Oceania`, + population: 167358, + gdpTotal: 4882, + economy: `Developing`, + region: `Micronesia`, + status: `Dependency`, + longitude: 144.79, + latitude: 13.44, + gdpPerPerson: 29171, + rank: 188, + unemployment: 15, + oilProduction: 2, + birthRate: 24, + medianAge: 42, + electricity: 64229, + televisions: 43567, + publicDebt: 37, + internet: 121131 + }), + new WorldStatsItem( + { + code: `LCA`, + name: `Saint Lucia`, + continent: `North America`, + population: 164994, + gdpTotal: 2083, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -60.98, + latitude: 13.905, + gdpPerPerson: 12625, + rank: 189, + unemployment: 3, + oilProduction: 2, + birthRate: 14, + medianAge: 32, + electricity: 75473, + televisions: 87743, + publicDebt: 7, + internet: 64498 + }), + new WorldStatsItem( + { + code: `CUW`, + name: `Curacao`, + continent: `North America`, + population: 149648, + gdpTotal: 3128, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -68.95, + latitude: 12.213, + gdpPerPerson: 20902, + rank: 190, + unemployment: 6, + oilProduction: 1, + birthRate: 7, + medianAge: 35, + electricity: 74665, + televisions: 89830, + publicDebt: 36, + internet: 55905 + }), + new WorldStatsItem( + { + code: `ABW`, + name: `Aruba`, + continent: `North America`, + population: 115120, + gdpTotal: 2516, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -69.98, + latitude: 12.519, + gdpPerPerson: 21855, + rank: 191, + unemployment: 7, + oilProduction: 2356, + birthRate: 13, + medianAge: 38, + electricity: 770, + televisions: 20000, + publicDebt: 46, + internet: 24000 + }), + new WorldStatsItem( + { + code: `GRD`, + name: `Grenada`, + continent: `North America`, + population: 111724, + gdpTotal: 1511, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.69, + latitude: 12.123, + gdpPerPerson: 13524, + rank: 192, + unemployment: 10, + oilProduction: 0, + birthRate: 10, + medianAge: 50, + electricity: 4992, + televisions: 58674, + publicDebt: 42, + internet: 33132 + }), + new WorldStatsItem( + { + code: `KIR`, + name: `Kiribati`, + continent: `Oceania`, + population: 108145, + gdpTotal: 211, + economy: `Least developed`, + region: `Micronesia`, + status: `Country`, + longitude: -157.333, + latitude: 1.884, + gdpPerPerson: 1951, + rank: 193, + unemployment: 13, + oilProduction: 4, + birthRate: 9, + medianAge: 52, + electricity: 37081, + televisions: 52395, + publicDebt: 40, + internet: 36620 + }), + new WorldStatsItem( + { + code: `VIR`, + name: `U.S. Virgin Island`, + continent: `North America`, + population: 107268, + gdpTotal: 3792, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -64.77, + latitude: 17.77, + gdpPerPerson: 35351, + rank: 194, + unemployment: 11, + oilProduction: 2, + birthRate: 12, + medianAge: 38, + electricity: 13387, + televisions: 77187, + publicDebt: 43, + internet: 40836 + }), + new WorldStatsItem( + { + code: `TON`, + name: `Tonga`, + continent: `Oceania`, + population: 106479, + gdpTotal: 557, + economy: `Developing`, + region: `Polynesia`, + status: `Country`, + longitude: -173.9, + latitude: -18.62, + gdpPerPerson: 5231, + rank: 195, + unemployment: 4, + oilProduction: 4, + birthRate: 5, + medianAge: 33, + electricity: 88735, + televisions: 30257, + publicDebt: 25, + internet: 71756 + }), + new WorldStatsItem( + { + code: `FSM`, + name: `Micronesia`, + continent: `Oceania`, + population: 104196, + gdpTotal: 314, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 150.52, + latitude: 7.435, + gdpPerPerson: 3014, + rank: 196, + unemployment: 9, + oilProduction: 5, + birthRate: 5, + medianAge: 38, + electricity: 39068, + televisions: 45396, + publicDebt: 40, + internet: 29169 + }), + new WorldStatsItem( + { + code: `VCT`, + name: `St. Vin. and Gren.`, + continent: `North America`, + population: 102089, + gdpTotal: 1241, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.17, + latitude: 13.239, + gdpPerPerson: 12156, + rank: 197, + unemployment: 10, + oilProduction: 5, + birthRate: 7, + medianAge: 30, + electricity: 39467, + televisions: 42804, + publicDebt: 9, + internet: 66754 + }), + new WorldStatsItem( + { + code: `JEY`, + name: `Jersey`, + continent: `Europe`, + population: 98840, + gdpTotal: 5080, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: -2.123, + latitude: 49.218, + gdpPerPerson: 51396, + rank: 198, + unemployment: 4, + oilProduction: 1, + birthRate: 18, + medianAge: 30, + electricity: 64261, + televisions: 52453, + publicDebt: 34, + internet: 3026 + }), + new WorldStatsItem( + { + code: `ATG`, + name: `Antigua and Barbuda`, + continent: `North America`, + population: 94731, + gdpTotal: 2171, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.79, + latitude: 17.096, + gdpPerPerson: 22918, + rank: 199, + unemployment: 3, + oilProduction: 1, + birthRate: 5, + medianAge: 36, + electricity: 35849, + televisions: 75384, + publicDebt: 32, + internet: 6170 + }), + new WorldStatsItem( + { + code: `SYC`, + name: `Seychelles`, + continent: `Africa`, + population: 93920, + gdpTotal: 2608, + economy: `Developing`, + region: `Eastern Africa`, + status: `Country`, + longitude: 55.463, + latitude: -4.672, + gdpPerPerson: 27768, + rank: 200, + unemployment: 2, + oilProduction: 0, + birthRate: 16, + medianAge: 29, + electricity: 252, + televisions: 11000, + publicDebt: 92, + internet: 32000 + }), + new WorldStatsItem( + { + code: `IMN`, + name: `Isle of Man`, + continent: `Europe`, + population: 88815, + gdpTotal: 7428, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: -4.562, + latitude: 54.233, + gdpPerPerson: 83635, + rank: 201, + unemployment: 4, + oilProduction: 4, + birthRate: 14, + medianAge: 36, + electricity: 15745, + televisions: 25734, + publicDebt: 13, + internet: 2650 + }), + new WorldStatsItem( + { + code: `AND`, + name: `Andorra`, + continent: `Europe`, + population: 85702, + gdpTotal: 3327, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 1.578, + latitude: 42.539, + gdpPerPerson: 38821, + rank: 202, + unemployment: 11, + oilProduction: 3, + birthRate: 20, + medianAge: 50, + electricity: 56209, + televisions: 42797, + publicDebt: 33, + internet: 42006 + }), + new WorldStatsItem( + { + code: `MHL`, + name: `Marshall Islands`, + continent: `Oceania`, + population: 74539, + gdpTotal: 180, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 169.3, + latitude: 8.484, + gdpPerPerson: 2415, + rank: 203, + unemployment: 3, + oilProduction: 3, + birthRate: 23, + medianAge: 42, + electricity: 78832, + televisions: 15193, + publicDebt: 44, + internet: 8536 + }), + new WorldStatsItem( + { + code: `DMA`, + name: `Dominica`, + continent: `North America`, + population: 73897, + gdpTotal: 812, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.36, + latitude: 15.43, + gdpPerPerson: 10988, + rank: 204, + unemployment: 6, + oilProduction: 1, + birthRate: 13, + medianAge: 35, + electricity: 49809, + televisions: 17676, + publicDebt: 37, + internet: 2616 + }), + new WorldStatsItem( + { + code: `BMU`, + name: `Bermuda`, + continent: `North America`, + population: 70864, + gdpTotal: 5198, + economy: `Developed`, + region: `Northern America`, + status: `Dependency`, + longitude: -64.76, + latitude: 32.323, + gdpPerPerson: 73352, + rank: 205, + unemployment: 15, + oilProduction: 1, + birthRate: 21, + medianAge: 43, + electricity: 54728, + televisions: 16336, + publicDebt: 27, + internet: 41606 + }), + new WorldStatsItem( + { + code: `GGY`, + name: `Guernsey`, + continent: `Europe`, + population: 66502, + gdpTotal: 3465, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: -2.579, + latitude: 49.468, + gdpPerPerson: 52104, + rank: 206, + unemployment: 2, + oilProduction: 1, + birthRate: 25, + medianAge: 33, + electricity: 9806, + televisions: 24638, + publicDebt: 34, + internet: 29222 + }), + new WorldStatsItem( + { + code: `CYM`, + name: `Cayman Island`, + continent: `North America`, + population: 58441, + gdpTotal: 2507, + economy: `Emerging`, + region: `Central America`, + status: `Dependency`, + longitude: -81.25, + latitude: 19.343, + gdpPerPerson: 42898, + rank: 207, + unemployment: 12, + oilProduction: 3, + birthRate: 7, + medianAge: 35, + electricity: 70206, + televisions: 28885, + publicDebt: 21, + internet: 9332 + }), + new WorldStatsItem( + { + code: `GRL`, + name: `Greenland`, + continent: `North America`, + population: 57713, + gdpTotal: 2173, + economy: `Developed`, + region: `Northern America`, + status: `Dependency`, + longitude: -42.12, + latitude: 69.547, + gdpPerPerson: 37652, + rank: 208, + unemployment: 7, + oilProduction: 5, + birthRate: 19, + medianAge: 42, + electricity: 86090, + televisions: 43741, + publicDebt: 42, + internet: 11423 + }), + new WorldStatsItem( + { + code: `KNA`, + name: `St. Kitts and Nevis`, + continent: `North America`, + population: 52715, + gdpTotal: 1427, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -62.77, + latitude: 17.351, + gdpPerPerson: 27070, + rank: 209, + unemployment: 5, + oilProduction: 2, + birthRate: 18, + medianAge: 40, + electricity: 65438, + televisions: 17719, + publicDebt: 11, + internet: 8543 + }), + new WorldStatsItem( + { + code: `TCA`, + name: `Turks and Caicos Is.`, + continent: `North America`, + population: 52570, + gdpTotal: 632, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -71.96, + latitude: 21.913, + gdpPerPerson: 12022, + rank: 210, + unemployment: 6, + oilProduction: 0, + birthRate: 13, + medianAge: 42, + electricity: 51325, + televisions: 13109, + publicDebt: 13, + internet: 24564 + }), + new WorldStatsItem( + { + code: `MNP`, + name: `N. Mariana Island`, + continent: `Oceania`, + population: 52263, + gdpTotal: 682, + economy: `Developing`, + region: `Micronesia`, + status: `Dependency`, + longitude: 145.49, + latitude: 16.459, + gdpPerPerson: 13049, + rank: 211, + unemployment: 10, + oilProduction: 1, + birthRate: 9, + medianAge: 46, + electricity: 87386, + televisions: 13049, + publicDebt: 20, + internet: 5484 + }), + new WorldStatsItem( + { + code: `ASM`, + name: `American Samoa`, + continent: `Oceania`, + population: 51504, + gdpTotal: 711, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -170.6, + latitude: -14.3, + gdpPerPerson: 13805, + rank: 212, + unemployment: 3, + oilProduction: 4, + birthRate: 13, + medianAge: 42, + electricity: 65918, + televisions: 18802, + publicDebt: 23, + internet: 14691 + }), + new WorldStatsItem( + { + code: `FRO`, + name: `Faeroe Island`, + continent: `Europe`, + population: 50730, + gdpTotal: 2001, + economy: `Developed`, + region: `Northern Europe`, + status: `Dependency`, + longitude: -6.857, + latitude: 62.178, + gdpPerPerson: 39444, + rank: 213, + unemployment: 15, + oilProduction: 2, + birthRate: 11, + medianAge: 46, + electricity: 55029, + televisions: 11762, + publicDebt: 13, + internet: 2412 + }), + new WorldStatsItem( + { + code: `SXM`, + name: `Sint Maarten`, + continent: `North America`, + population: 42083, + gdpTotal: 366, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -63.06, + latitude: 18.044, + gdpPerPerson: 8697, + rank: 214, + unemployment: 14, + oilProduction: 4, + birthRate: 19, + medianAge: 50, + electricity: 17166, + televisions: 8474, + publicDebt: 33, + internet: 14309 + }), + new WorldStatsItem( + { + code: `LIE`, + name: `Liechtenstein`, + continent: `Europe`, + population: 38244, + gdpTotal: 4978, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 9.545, + latitude: 47.164, + gdpPerPerson: 130164, + rank: 215, + unemployment: 11, + oilProduction: 3, + birthRate: 10, + medianAge: 55, + electricity: 80781, + televisions: 23104, + publicDebt: 21, + internet: 8159 + }), + new WorldStatsItem( + { + code: `VGB`, + name: `British Virgin Island`, + continent: `North America`, + population: 35015, + gdpTotal: 500, + economy: `Developed`, + region: `Central America`, + status: `Dependency`, + longitude: -64.6, + latitude: 18.44, + gdpPerPerson: 14280, + rank: 216, + unemployment: 13, + oilProduction: 2, + birthRate: 6, + medianAge: 51, + electricity: 47732, + televisions: 17777, + publicDebt: 7, + internet: 6238 + }), + new WorldStatsItem( + { + code: `SMR`, + name: `San Marino`, + continent: `Europe`, + population: 33537, + gdpTotal: 2023, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 12.456, + latitude: 43.942, + gdpPerPerson: 60321, + rank: 217, + unemployment: 10, + oilProduction: 0, + birthRate: 15, + medianAge: 48, + electricity: 21943, + televisions: 22355, + publicDebt: 34, + internet: 23505 + }), + new WorldStatsItem( + { + code: `MAF`, + name: `St. Martin`, + continent: `North America`, + population: 32125, + gdpTotal: 562, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -63.06, + latitude: 18.092, + gdpPerPerson: 17494, + rank: 218, + unemployment: 15, + oilProduction: 5, + birthRate: 10, + medianAge: 34, + electricity: 76791, + televisions: 17592, + publicDebt: 43, + internet: 25032 + }), + new WorldStatsItem( + { + code: `MCO`, + name: `Monaco`, + continent: `Europe`, + population: 30645, + gdpTotal: 7672, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 7.408, + latitude: 43.751, + gdpPerPerson: 250351, + rank: 219, + unemployment: 15, + oilProduction: 5, + birthRate: 18, + medianAge: 31, + electricity: 73517, + televisions: 10057, + publicDebt: 10, + internet: 18394 + }), + new WorldStatsItem( + { + code: `ALA`, + name: `Aland Islands`, + continent: `Europe`, + population: 27153, + gdpTotal: 1563, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: 20.065, + latitude: 60.209, + gdpPerPerson: 57563, + rank: 220, + unemployment: 14, + oilProduction: 3, + birthRate: 15, + medianAge: 54, + electricity: 69394, + televisions: 14696, + publicDebt: 19, + internet: 2736 + }), + new WorldStatsItem( + { + code: `PLW`, + name: `Palau`, + continent: `Oceania`, + population: 21431, + gdpTotal: 276, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 134.63, + latitude: 7.532, + gdpPerPerson: 12879, + rank: 221, + unemployment: 8, + oilProduction: 1, + birthRate: 7, + medianAge: 39, + electricity: 88599, + televisions: 3019, + publicDebt: 8, + internet: 17075 + }), + new WorldStatsItem( + { + code: `AIA`, + name: `Anguilla`, + continent: `North America`, + population: 17087, + gdpTotal: 175, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -63.07, + latitude: 18.221, + gdpPerPerson: 10242, + rank: 222, + unemployment: 9, + oilProduction: 1, + birthRate: 10, + medianAge: 49, + electricity: 68590, + televisions: 10632, + publicDebt: 40, + internet: 8703 + }), + new WorldStatsItem( + { + code: `WLF`, + name: `Wallis Island`, + continent: `Oceania`, + population: 15714, + gdpTotal: 60, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -177.1, + latitude: -13.77, + gdpPerPerson: 3818, + rank: 223, + unemployment: 15, + oilProduction: 0, + birthRate: 0, + medianAge: 0, + electricity: 0, + televisions: 0, + publicDebt: 6, + internet: 900 + }), + new WorldStatsItem( + { + code: `NRU`, + name: `Nauru`, + continent: `Oceania`, + population: 9642, + gdpTotal: 151, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 166.93, + latitude: -0.52, + gdpPerPerson: 15661, + rank: 224, + unemployment: 5, + oilProduction: 3, + birthRate: 17, + medianAge: 32, + electricity: 84092, + televisions: 1777, + publicDebt: 34, + internet: 4585 + }), + new WorldStatsItem( + { + code: `COK`, + name: `Cook Island`, + continent: `Oceania`, + population: 9290, + gdpTotal: 244, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -159.7, + latitude: -21.21, + gdpPerPerson: 26265, + rank: 225, + unemployment: 15, + oilProduction: 1, + birthRate: 6, + medianAge: 45, + electricity: 41320, + televisions: 3712, + publicDebt: 24, + internet: 3555 + }), + new WorldStatsItem( + { + code: `SHN`, + name: `Saint Helena`, + continent: `Africa`, + population: 7828, + gdpTotal: 31, + economy: `Developing`, + region: `Western Africa`, + status: `Dependency`, + longitude: -10.03, + latitude: -11.94, + gdpPerPerson: 3960, + rank: 226, + unemployment: 13, + oilProduction: 1, + birthRate: 17, + medianAge: 48, + electricity: 84435, + televisions: 3812, + publicDebt: 15, + internet: 5530 + }), + new WorldStatsItem( + { + code: `BLM`, + name: `St. Barthalemy`, + continent: `North America`, + population: 7184, + gdpTotal: 255, + economy: `Developed`, + region: `Central America`, + status: `Dependency`, + longitude: -62.83, + latitude: 17.899, + gdpPerPerson: 35496, + rank: 227, + unemployment: 14, + oilProduction: 0, + birthRate: 23, + medianAge: 46, + electricity: 36112, + televisions: 4072, + publicDebt: 27, + internet: 5097 + }), + new WorldStatsItem( + { + code: `KAS`, + name: `Siachen Glacier`, + continent: `Asia`, + population: 6000, + gdpTotal: 15, + economy: `Developing`, + region: `Southern Asia`, + status: `Territory`, + longitude: 77.283, + latitude: 35.386, + gdpPerPerson: 2500, + rank: 228, + unemployment: 7, + oilProduction: 0, + birthRate: 9, + medianAge: 55, + electricity: 62932, + televisions: 936, + publicDebt: 14, + internet: 1303 + }), + new WorldStatsItem( + { + code: `SPM`, + name: `St. Pierre and Miquelon`, + continent: `North America`, + population: 5533, + gdpTotal: 215, + economy: `Developed`, + region: `Northern America`, + status: `Territory`, + longitude: -56.26, + latitude: 46.926, + gdpPerPerson: 38858, + rank: 229, + unemployment: 13, + oilProduction: 0, + birthRate: 13, + medianAge: 42, + electricity: 61277, + televisions: 2067, + publicDebt: 18, + internet: 2924 + }), + new WorldStatsItem( + { + code: `MSR`, + name: `Montserrat`, + continent: `North America`, + population: 5292, + gdpTotal: 44, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -62.18, + latitude: 16.745, + gdpPerPerson: 8314, + rank: 230, + unemployment: 13, + oilProduction: 1, + birthRate: 12, + medianAge: 50, + electricity: 19088, + televisions: 1964, + publicDebt: 44, + internet: 4009 + }), + new WorldStatsItem( + { + code: `IOT`, + name: `British Indian Territory`, + continent: `Asia`, + population: 4000, + gdpTotal: 160, + economy: `Developed`, + region: `Southern Asia`, + status: `Dependency`, + longitude: 72.424, + latitude: -7.328, + gdpPerPerson: 40000, + rank: 232, + unemployment: 13, + oilProduction: 0, + birthRate: 6, + medianAge: 47, + electricity: 91829, + televisions: 1510, + publicDebt: 14, + internet: 1656 + }), + new WorldStatsItem( + { + code: `FLK`, + name: `Falkland Island`, + continent: `South America`, + population: 2931, + gdpTotal: 282, + economy: `Developed`, + region: `South America`, + status: `Dependency`, + longitude: -59.46, + latitude: -51.78, + gdpPerPerson: 96213, + rank: 233, + unemployment: 3, + oilProduction: 5, + birthRate: 9, + medianAge: 36, + electricity: 68007, + televisions: 1489, + publicDebt: 22, + internet: 1335 + }), + new WorldStatsItem( + { + code: `NFK`, + name: `Norfolk Island`, + continent: `Oceania`, + population: 2210, + gdpTotal: 33, + economy: `Developing`, + region: `Australia`, + status: `Dependency`, + longitude: 167.94, + latitude: -29.05, + gdpPerPerson: 14932, + rank: 234, + unemployment: 1, + oilProduction: 0, + birthRate: 15, + medianAge: 46, + electricity: 91943, + televisions: 583, + publicDebt: 41, + internet: 1183 + }), + new WorldStatsItem( + { + code: `NIU`, + name: `Niue`, + continent: `Oceania`, + population: 1626, + gdpTotal: 10, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -169.8, + latitude: -19.05, + gdpPerPerson: 6150, + rank: 235, + unemployment: 15, + oilProduction: 4, + birthRate: 17, + medianAge: 51, + electricity: 16785, + televisions: 585, + publicDebt: 31, + internet: 1247 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/index.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/index.ts index 3985fa6fab..c99ac85760 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/index.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/index.ts @@ -1,7 +1,6 @@ import { IgcLegendModule, IgcNumberAbbreviatorModule, IgcDataChartCoreModule, IgcDataChartScatterModule, IgcDataChartScatterCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; -import { IgcLegendComponent, IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcBubbleSeriesComponent, IgcSizeScaleComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; -import { CountryStatsAfricaItem, CountryStatsAfrica } from './CountryStatsAfrica'; -import { CountryStatsEuropeItem, CountryStatsEurope } from './CountryStatsEurope'; +import { IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcBubbleSeriesComponent, IgcSizeScaleComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; +import { WorldStatsItem, WorldStats } from './WorldStats'; import { ModuleManager } from 'igniteui-webcomponents-core'; @@ -19,7 +18,6 @@ ModuleManager.register( export class Sample { - private legend: IgcLegendComponent private chart: IgcDataChartComponent private xAxis: IgcNumericXAxisComponent private yAxis: IgcNumericYAxisComponent @@ -31,69 +29,39 @@ export class Sample { var sizeScale1 = new IgcSizeScaleComponent(); sizeScale1.isLogarithmic = false; sizeScale1.minimumValue = 10; - sizeScale1.maximumValue = 50; + sizeScale1.maximumValue = 80; this._sizeScale1 = sizeScale1; } return this._sizeScale1; } - private bubbleSeries2: IgcBubbleSeriesComponent - private _sizeScale2: IgcSizeScaleComponent | null = null; - public get sizeScale2(): IgcSizeScaleComponent { - if (this._sizeScale2 == null) - { - var sizeScale2 = new IgcSizeScaleComponent(); - sizeScale2.isLogarithmic = false; - sizeScale2.minimumValue = 10; - sizeScale2.maximumValue = 50; - - this._sizeScale2 = sizeScale2; - } - return this._sizeScale2; - } private dataToolTipLayer: IgcDataToolTipLayerComponent private _bind: () => void; constructor() { - var legend = this.legend = document.getElementById('legend') as IgcLegendComponent; var chart = this.chart = document.getElementById('chart') as IgcDataChartComponent; var xAxis = this.xAxis = document.getElementById('xAxis') as IgcNumericXAxisComponent; var yAxis = this.yAxis = document.getElementById('yAxis') as IgcNumericYAxisComponent; var bubbleSeries1 = this.bubbleSeries1 = document.getElementById('bubbleSeries1') as IgcBubbleSeriesComponent; - var bubbleSeries2 = this.bubbleSeries2 = document.getElementById('bubbleSeries2') as IgcBubbleSeriesComponent; var dataToolTipLayer = this.dataToolTipLayer = document.getElementById('dataToolTipLayer') as IgcDataToolTipLayerComponent; this._bind = () => { - chart.legend = this.legend; bubbleSeries1.xAxis = this.xAxis; bubbleSeries1.yAxis = this.yAxis; - bubbleSeries1.dataSource = this.countryStatsAfrica; + bubbleSeries1.dataSource = this.worldStats; bubbleSeries1.radiusScale = this.sizeScale1; - bubbleSeries2.xAxis = this.xAxis; - bubbleSeries2.yAxis = this.yAxis; - bubbleSeries2.dataSource = this.countryStatsEurope; - bubbleSeries2.radiusScale = this.sizeScale2; } this._bind(); } - private _countryStatsAfrica: CountryStatsAfrica = null; - public get countryStatsAfrica(): CountryStatsAfrica { - if (this._countryStatsAfrica == null) - { - this._countryStatsAfrica = new CountryStatsAfrica(); - } - return this._countryStatsAfrica; - } - - private _countryStatsEurope: CountryStatsEurope = null; - public get countryStatsEurope(): CountryStatsEurope { - if (this._countryStatsEurope == null) + private _worldStats: WorldStats = null; + public get worldStats(): WorldStats { + if (this._worldStats == null) { - this._countryStatsEurope = new CountryStatsEurope(); + this._worldStats = new WorldStats(); } - return this._countryStatsEurope; + return this._worldStats; } } diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/tsconfig.json b/samples/charts/data-chart/scatter-bubble-chart-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-line-chart/tsconfig.json b/samples/charts/data-chart/scatter-line-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/scatter-line-chart/tsconfig.json +++ b/samples/charts/data-chart/scatter-line-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-point-chart/tsconfig.json b/samples/charts/data-chart/scatter-point-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/scatter-point-chart/tsconfig.json +++ b/samples/charts/data-chart/scatter-point-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-spline-chart/tsconfig.json b/samples/charts/data-chart/scatter-spline-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/scatter-spline-chart/tsconfig.json +++ b/samples/charts/data-chart/scatter-spline-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 20fe9acd3e..fa7865e335 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 d75cfb9590..1e2bd6f80d 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 b93c50cbae..55b595de8a 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 5e55c6ceca..2b2217b4e5 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 5563c17835..79909f8247 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 b7d3033d2b..2eceab157d 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 4be2d8ec68..d366da4720 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 43ceb6862e..e50df131e8 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 61a403d111..ddd82ac5e9 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-100-area-chart/tsconfig.json b/samples/charts/data-chart/stacked-100-area-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-area-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-100-bar-chart/tsconfig.json b/samples/charts/data-chart/stacked-100-bar-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-100-column-chart/tsconfig.json b/samples/charts/data-chart/stacked-100-column-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-column-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-100-line-chart/tsconfig.json b/samples/charts/data-chart/stacked-100-line-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-line-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 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 @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/tsconfig.json b/samples/charts/data-chart/stacked-100-spline-area-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-100-spline-chart/tsconfig.json b/samples/charts/data-chart/stacked-100-spline-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-area-chart/tsconfig.json b/samples/charts/data-chart/stacked-area-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/stacked-area-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-area-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-bar-chart/tsconfig.json b/samples/charts/data-chart/stacked-bar-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/stacked-bar-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-bar-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 3fe1d05925..d86e0902c3 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-column-chart/tsconfig.json b/samples/charts/data-chart/stacked-column-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/stacked-column-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-column-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-line-chart/tsconfig.json b/samples/charts/data-chart/stacked-line-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/stacked-line-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-line-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-spline-area-chart/tsconfig.json b/samples/charts/data-chart/stacked-spline-area-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-spline-chart/tsconfig.json b/samples/charts/data-chart/stacked-spline-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/stacked-spline-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-spline-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 61134315cc..da2e9185de 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/transition-event/tsconfig.json b/samples/charts/data-chart/transition-event/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/transition-event/tsconfig.json +++ b/samples/charts/data-chart/transition-event/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 3953da9ead..27aaead2b0 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 3f311683b1..b49ec46132 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 034f31b57a..e5cff71405 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 0f45508e9b..e0d7ae9218 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 95678a5906..81a34cfcaa 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 43564b6228..534b6482c0 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 be5706caea..da932e4a68 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 ded806da83..98fff7b434 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 8e885549ba..4ea08fa7fc 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 dbb118a53f..06278b1c50 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 a8e534923d..2fe6e4c5ac 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 c8e4b51222..cae4491752 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 071000e0a1..ad6f5ee50d 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 3f3cb1a822..fb85d80d5a 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 f4982ad971..1b30b1efa0 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 023348173f..185b1c2096 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-scatter-series/src/index.ts b/samples/charts/data-chart/type-scatter-series/src/index.ts index 27d1b71d84..9979e4691e 100644 --- a/samples/charts/data-chart/type-scatter-series/src/index.ts +++ b/samples/charts/data-chart/type-scatter-series/src/index.ts @@ -69,7 +69,7 @@ export class DataChartTypeScatterSeries { series1.xMemberPath = "Population"; series1.yMemberPath = "GdpTotal"; series1.dataSource = SampleScatterStats.getCountriesWithHighIncome(); - + const series2 = new IgcScatterSeriesComponent(); series2.markerType = MarkerType.Circle; series2.showDefaultTooltip = true; @@ -79,7 +79,7 @@ export class DataChartTypeScatterSeries { series2.xMemberPath = "Population"; series2.yMemberPath = "GdpTotal"; series2.dataSource = SampleScatterStats.getCountriesWithLowIncome(); - + this.chart.series.clear(); this.chart.series.add(series1); this.chart.series.add(series2); @@ -103,7 +103,7 @@ export class DataChartTypeScatterSeries { series2.xMemberPath = "Population"; series2.yMemberPath = "GdpTotal"; series2.dataSource = SampleScatterStats.getCountriesWithLowIncome(); - + this.chart.series.clear(); this.chart.series.add(series1); this.chart.series.add(series2); @@ -117,7 +117,7 @@ export class DataChartTypeScatterSeries { series1.xMemberPath = "Population"; series1.yMemberPath = "GdpTotal"; series1.dataSource = SampleScatterStats.getCountriesWithHighIncome(); - + const series2 = new IgcScatterSplineSeriesComponent(); series2.markerType = MarkerType.Circle; series2.showDefaultTooltip = true; @@ -127,7 +127,7 @@ export class DataChartTypeScatterSeries { series2.xMemberPath = "Population"; series2.yMemberPath = "GdpTotal"; series2.dataSource = SampleScatterStats.getCountriesWithLowIncome(); - + this.chart.series.clear(); this.chart.series.add(series1); this.chart.series.add(series2); diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 7f0034d8db..7c55db2341 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/waterfall-chart/tsconfig.json b/samples/charts/data-chart/waterfall-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-chart/waterfall-chart/tsconfig.json +++ b/samples/charts/data-chart/waterfall-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/animation/tsconfig.json b/samples/charts/data-pie-chart/animation/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-pie-chart/animation/tsconfig.json +++ b/samples/charts/data-pie-chart/animation/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/highlight-filter/tsconfig.json b/samples/charts/data-pie-chart/highlight-filter/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-pie-chart/highlight-filter/tsconfig.json +++ b/samples/charts/data-pie-chart/highlight-filter/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/highlighting/tsconfig.json b/samples/charts/data-pie-chart/highlighting/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-pie-chart/highlighting/tsconfig.json +++ b/samples/charts/data-pie-chart/highlighting/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index 53d7b12959..d90f53a72c 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/legend/tsconfig.json b/samples/charts/data-pie-chart/legend/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-pie-chart/legend/tsconfig.json +++ b/samples/charts/data-pie-chart/legend/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/others/tsconfig.json b/samples/charts/data-pie-chart/others/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-pie-chart/others/tsconfig.json +++ b/samples/charts/data-pie-chart/others/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/overview/tsconfig.json b/samples/charts/data-pie-chart/overview/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-pie-chart/overview/tsconfig.json +++ b/samples/charts/data-pie-chart/overview/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/selection/tsconfig.json b/samples/charts/data-pie-chart/selection/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/data-pie-chart/selection/tsconfig.json +++ b/samples/charts/data-pie-chart/selection/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 15be6f2453..5d8e2fbb96 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 de630dd826..9ecc0ffe66 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/legend/tsconfig.json b/samples/charts/doughnut-chart/legend/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/doughnut-chart/legend/tsconfig.json +++ b/samples/charts/doughnut-chart/legend/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/overview/tsconfig.json b/samples/charts/doughnut-chart/overview/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/doughnut-chart/overview/tsconfig.json +++ b/samples/charts/doughnut-chart/overview/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/rings/tsconfig.json b/samples/charts/doughnut-chart/rings/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/doughnut-chart/rings/tsconfig.json +++ b/samples/charts/doughnut-chart/rings/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 52b8a35939..0aa6f0d828 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 ff4ff27c20..3543405a43 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 db97378c75..37b353ee53 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/tsconfig.json b/samples/charts/financial-chart/data-legend-formatting-currency/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/tsconfig.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-legend-styling-props/tsconfig.json b/samples/charts/financial-chart/data-legend-styling-props/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/tsconfig.json +++ b/samples/charts/financial-chart/data-legend-styling-props/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-legend/tsconfig.json b/samples/charts/financial-chart/data-legend/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/financial-chart/data-legend/tsconfig.json +++ b/samples/charts/financial-chart/data-legend/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/tsconfig.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/tsconfig.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/tsconfig.json b/samples/charts/financial-chart/data-tooltip-styling-props/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/tsconfig.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-tooltip/tsconfig.json b/samples/charts/financial-chart/data-tooltip/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/financial-chart/data-tooltip/tsconfig.json +++ b/samples/charts/financial-chart/data-tooltip/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/format-specifiers/tsconfig.json b/samples/charts/financial-chart/format-specifiers/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/financial-chart/format-specifiers/tsconfig.json +++ b/samples/charts/financial-chart/format-specifiers/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 0eaf7fa536..57c6a1f3a5 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 b65d79a6c7..3804d4877d 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 252110bd49..22a99ece54 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 7a492096a4..97a485c17b 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 95c10777f6..892a759220 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 f09ce308c5..0c0842fe0c 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 363d3e8994..5fe56ab317 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/panes/src/index.ts b/samples/charts/financial-chart/panes/src/index.ts index c47149d6dd..4746db8b7e 100644 --- a/samples/charts/financial-chart/panes/src/index.ts +++ b/samples/charts/financial-chart/panes/src/index.ts @@ -4,7 +4,6 @@ import { FinancialChartVolumeType } from "igniteui-webcomponents-charts"; import { FinancialChartType } from "igniteui-webcomponents-charts"; import { FinancialChartZoomSliderType } from "igniteui-webcomponents-charts"; import { FinancialIndicatorType } from "igniteui-webcomponents-charts"; - import { ModuleManager } from "igniteui-webcomponents-core"; import { StocksUtility } from "./StocksUtility"; diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index c63ad2b06e..c7ee4a0d23 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/scrollbars/tsconfig.json b/samples/charts/financial-chart/scrollbars/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/financial-chart/scrollbars/tsconfig.json +++ b/samples/charts/financial-chart/scrollbars/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 41e4d10623..56a81938d3 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 c81f29d85b..f71d05f20d 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 91113c48da..99256203e2 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/titles/src/index.ts b/samples/charts/financial-chart/titles/src/index.ts index 847bc0fd19..43fab37d2f 100644 --- a/samples/charts/financial-chart/titles/src/index.ts +++ b/samples/charts/financial-chart/titles/src/index.ts @@ -12,7 +12,7 @@ export class FinancialChartTitles { constructor() { this.chart = document.getElementById('chart') as IgcFinancialChartComponent; - + StocksHistory.getAmazonStock().then((stocks: any[]) => { this.chart.dataSource = stocks; }); diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index aed3033f14..8b8e0c2cd3 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/tooltip-types/src/index.ts b/samples/charts/financial-chart/tooltip-types/src/index.ts index 3225a2f999..6d6147908f 100644 --- a/samples/charts/financial-chart/tooltip-types/src/index.ts +++ b/samples/charts/financial-chart/tooltip-types/src/index.ts @@ -16,7 +16,7 @@ export class FinancialChartTooltipTypes { this.chart = document.getElementById('chart') as IgcFinancialChartComponent; this.chart.yAxisMode = FinancialChartYAxisMode.PercentChange; this.chart.toolTipType = this.toolTipType; - + let toolTipSelect = document.getElementById('toolTipSelect'); toolTipSelect!.addEventListener('change', this.onToolTipTypeChanged); toolTipSelect!.value = "Item"; diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 5e1d68587e..c00fc141ef 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 2094244bbb..7128a1a403 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 659ae76a1e..bc33df8fd9 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 4438e1c932..fcba3a3d65 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/legend/tsconfig.json b/samples/charts/pie-chart/legend/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/pie-chart/legend/tsconfig.json +++ b/samples/charts/pie-chart/legend/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/others/tsconfig.json b/samples/charts/pie-chart/others/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/pie-chart/others/tsconfig.json +++ b/samples/charts/pie-chart/others/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/overview/tsconfig.json b/samples/charts/pie-chart/overview/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/pie-chart/overview/tsconfig.json +++ b/samples/charts/pie-chart/overview/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index fe770cdbce..f6e4beb1ce 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/styling/tsconfig.json b/samples/charts/pie-chart/styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/pie-chart/styling/tsconfig.json +++ b/samples/charts/pie-chart/styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-area/tsconfig.json b/samples/charts/sparkline/display-area/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/sparkline/display-area/tsconfig.json +++ b/samples/charts/sparkline/display-area/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-column/tsconfig.json b/samples/charts/sparkline/display-column/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/sparkline/display-column/tsconfig.json +++ b/samples/charts/sparkline/display-column/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 53d7b12959..d90f53a72c 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-lines/tsconfig.json b/samples/charts/sparkline/display-lines/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/sparkline/display-lines/tsconfig.json +++ b/samples/charts/sparkline/display-lines/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index dba387c55d..125b27f21f 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 18acf18b3f..49f1c56754 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-winloss/tsconfig.json b/samples/charts/sparkline/display-winloss/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/sparkline/display-winloss/tsconfig.json +++ b/samples/charts/sparkline/display-winloss/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 2f71c58d09..6e466a3179 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/grid/src/index.ts b/samples/charts/sparkline/grid/src/index.ts index e9792fd65e..09270ef9d2 100644 --- a/samples/charts/sparkline/grid/src/index.ts +++ b/samples/charts/sparkline/grid/src/index.ts @@ -24,7 +24,7 @@ export class SparklineGrid { this.data = Products.getData(); this.onUpdatingHistoryColumn = this.onUpdatingHistoryColumn.bind(this); - + this.grid = document.getElementById('grid') as IgcDataGridComponent; this.grid.dataSource = this.data; @@ -45,7 +45,7 @@ export class SparklineGrid { chart.labelMemberPath = 'Week'; chart.displayType = SparklineDisplayType.Line; chart.brush = 'rgb(21, 190, 6)'; - + let container = document.createElement("div") as HTMLDivElement; container.style.width = "100%"; container.style.height = "70px"; diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/markers/tsconfig.json b/samples/charts/sparkline/markers/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/sparkline/markers/tsconfig.json +++ b/samples/charts/sparkline/markers/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/normal-range/tsconfig.json b/samples/charts/sparkline/normal-range/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/sparkline/normal-range/tsconfig.json +++ b/samples/charts/sparkline/normal-range/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/trendlines/tsconfig.json b/samples/charts/sparkline/trendlines/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/sparkline/trendlines/tsconfig.json +++ b/samples/charts/sparkline/trendlines/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/unknown-values/tsconfig.json b/samples/charts/sparkline/unknown-values/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/sparkline/unknown-values/tsconfig.json +++ b/samples/charts/sparkline/unknown-values/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 53d7b12959..d90f53a72c 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.json b/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 53d7b12959..d90f53a72c 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.json b/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/toolbar/color-editor-support/.prettierrc b/samples/charts/toolbar/color-editor-support/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/.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/color-editor-support/ReadMe.md b/samples/charts/toolbar/color-editor-support/ReadMe.md new file mode 100644 index 0000000000..543d1ab73b --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of Web Components application with example of Color Editor Support feature using [Toolbar](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-wc-examples.git +git checkout master +cd ./igniteui-wc-examples +cd ./samples/charts/toolbar/color-editor-support +``` + +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/charts/toolbar/color-editor-support/index.html b/samples/charts/toolbar/color-editor-support/index.html new file mode 100644 index 0000000000..48c3c6603f --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/index.html @@ -0,0 +1,72 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+
+ + + + +
+
+ + +
+
+ +
+ + + + + + + + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json new file mode 100644 index 0000000000..d90f53a72c --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -0,0 +1,59 @@ +{ + "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": { + "babel-runtime": "^6.26.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", + "lit-html": "^3.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.96.1", + "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/color-editor-support/sandbox.config.json b/samples/charts/toolbar/color-editor-support/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/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/color-editor-support/src/CountryRenewableElectricity.ts b/samples/charts/toolbar/color-editor-support/src/CountryRenewableElectricity.ts new file mode 100644 index 0000000000..b32970c46a --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/src/CountryRenewableElectricity.ts @@ -0,0 +1,106 @@ +export class CountryRenewableElectricityItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public year: string; + public europe: number; + public china: number; + public america: number; + +} +export class CountryRenewableElectricity extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/toolbar/color-editor-support/src/index.css b/samples/charts/toolbar/color-editor-support/src/index.css new file mode 100644 index 0000000000..d2c1cccd43 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/src/index.css @@ -0,0 +1,21 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + +.aboveContentSplit { + display: flex; + flex-direction: row; +} +.aboveContentLeftContainer { + margin-left: 1.25rem; + display: flex; + flex-grow: 1; + justify-content: flex-start; + align-items: flex-end; +} +.aboveContentRightContainer { + margin-right: 1.25rem; + display: flex; + flex-grow: 1; + justify-content: flex-end; + align-items: flex-end; +} diff --git a/samples/charts/toolbar/color-editor-support/src/index.ts b/samples/charts/toolbar/color-editor-support/src/index.ts new file mode 100644 index 0000000000..058b44b073 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/src/index.ts @@ -0,0 +1,85 @@ +import { IgcToolbarModule, IgcToolActionComboModule, IgcToolActionColorEditorModule } from 'igniteui-webcomponents-layouts'; +import { IgcDataChartToolbarModule, IgcDataLegendModule, IgcNumberAbbreviatorModule, IgcDataChartCategoryModule, IgcDataChartCoreModule, IgcDataChartAnnotationModule, IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; +import { IgcToolbarComponent, IgcToolActionColorEditorComponent } from 'igniteui-webcomponents-layouts'; +import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcLineSeriesComponent } from 'igniteui-webcomponents-charts'; +import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; +import { IgcToolCommandEventArgs } from 'igniteui-webcomponents-layouts'; +import { IgcSeriesComponent } from 'igniteui-webcomponents-charts'; + +import { ModuleManager } from 'igniteui-webcomponents-core'; + +import "./index.css"; + +ModuleManager.register( + IgcToolbarModule, + IgcToolActionComboModule, + IgcToolActionColorEditorModule, + IgcDataChartToolbarModule, + IgcDataLegendModule, + IgcNumberAbbreviatorModule, + IgcDataChartCategoryModule, + IgcDataChartCoreModule, + IgcDataChartCategoryModule, + IgcDataChartAnnotationModule, + IgcDataChartInteractivityModule, + IgcDataChartAnnotationModule +); + +export class Sample { + + private toolbar: IgcToolbarComponent + private colorEditorTool: IgcToolActionColorEditorComponent + private chart: IgcDataChartComponent + private xAxis: IgcCategoryXAxisComponent + private yAxis: IgcNumericYAxisComponent + private lineSeries1: IgcLineSeriesComponent + private _bind: () => void; + + constructor() { + var toolbar = this.toolbar = document.getElementById('toolbar') as IgcToolbarComponent; + this.colorEditorToggleSeriesBrush = this.colorEditorToggleSeriesBrush.bind(this); + var colorEditorTool = this.colorEditorTool = document.getElementById('colorEditorTool') as IgcToolActionColorEditorComponent; + var chart = this.chart = document.getElementById('chart') as IgcDataChartComponent; + var xAxis = this.xAxis = document.getElementById('xAxis') as IgcCategoryXAxisComponent; + var yAxis = this.yAxis = document.getElementById('yAxis') as IgcNumericYAxisComponent; + var lineSeries1 = this.lineSeries1 = document.getElementById('lineSeries1') as IgcLineSeriesComponent; + + this._bind = () => { + toolbar.target = this.chart; + toolbar.onCommand = this.colorEditorToggleSeriesBrush; + xAxis.dataSource = this.countryRenewableElectricity; + lineSeries1.xAxis = this.xAxis; + lineSeries1.yAxis = this.yAxis; + lineSeries1.dataSource = this.countryRenewableElectricity; + } + this._bind(); + + } + + private _countryRenewableElectricity: CountryRenewableElectricity = null; + public get countryRenewableElectricity(): CountryRenewableElectricity { + if (this._countryRenewableElectricity == null) + { + this._countryRenewableElectricity = new CountryRenewableElectricity(); + } + return this._countryRenewableElectricity; + } + + + public colorEditorToggleSeriesBrush(sender: any, args: IgcToolCommandEventArgs): void { + var target = this.chart; + var color = args.command.argumentsList[0].value; + + switch (args.command.commandId) + { + case "ToggleSeriesBrush": + let series = target.contentSeries[0] as IgcSeriesComponent; + series.brush = color as any; + break; + } + + } + +} + +new Sample(); diff --git a/samples/charts/toolbar/color-editor-support/tsconfig.json b/samples/charts/toolbar/color-editor-support/tsconfig.json new file mode 100644 index 0000000000..e7c370def4 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/tsconfig.json @@ -0,0 +1,41 @@ +{ + "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" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/charts/toolbar/color-editor-support/tslint.json b/samples/charts/toolbar/color-editor-support/tslint.json new file mode 100644 index 0000000000..e3b56e93a1 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/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/color-editor-support/webpack.config.js b/samples/charts/toolbar/color-editor-support/webpack.config.js new file mode 100644 index 0000000000..1de7f08279 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/webpack.config.js @@ -0,0 +1,103 @@ +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, '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/charts/toolbar/custom-tool/index.html b/samples/charts/toolbar/custom-tool/index.html index c4a75877cc..6b1523b0b4 100644 --- a/samples/charts/toolbar/custom-tool/index.html +++ b/samples/charts/toolbar/custom-tool/index.html @@ -31,7 +31,9 @@ + icon-collection-name="CustomCollection" + name="CustomIconName" + id="CustomIconName">
diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 53d7b12959..d90f53a72c 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/custom-tool/src/index.ts b/samples/charts/toolbar/custom-tool/src/index.ts index 89ac6d283c..5781777e27 100644 --- a/samples/charts/toolbar/custom-tool/src/index.ts +++ b/samples/charts/toolbar/custom-tool/src/index.ts @@ -1,9 +1,9 @@ import { IgcLegendModule, IgcCategoryChartModule, IgcCategoryChartToolbarModule } from 'igniteui-webcomponents-charts'; import { IgcToolbarModule } from 'igniteui-webcomponents-layouts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; -import { IgcToolbarComponent } from 'igniteui-webcomponents-layouts'; +import { IgcToolbarComponent, IgcToolActionLabelComponent } from 'igniteui-webcomponents-layouts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; -import { IgcToolActionLabelComponent, IgcToolActionComponent, IgcToolCommandEventArgs } from 'igniteui-webcomponents-layouts'; +import { IgcToolActionComponent, IgcToolCommandEventArgs } from 'igniteui-webcomponents-layouts'; import { ModuleManager } from 'igniteui-webcomponents-core'; @@ -20,12 +20,14 @@ export class Sample { private legend: IgcLegendComponent private toolbar: IgcToolbarComponent + private customIconName: IgcToolActionLabelComponent private chart: IgcCategoryChartComponent private _bind: () => void; constructor() { var legend = this.legend = document.getElementById('legend') as IgcLegendComponent; var toolbar = this.toolbar = document.getElementById('toolbar') as IgcToolbarComponent; + var customIconName = this.customIconName = document.getElementById('CustomIconName') as IgcToolActionLabelComponent; var chart = this.chart = document.getElementById('chart') as IgcCategoryChartComponent; this._bind = () => { diff --git a/samples/charts/toolbar/custom-tool/tsconfig.json b/samples/charts/toolbar/custom-tool/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/toolbar/custom-tool/tsconfig.json +++ b/samples/charts/toolbar/custom-tool/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 53d7b12959..d90f53a72c 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.json b/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 53d7b12959..d90f53a72c 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json b/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/theming/tsconfig.json b/samples/charts/toolbar/theming/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/toolbar/theming/tsconfig.json +++ b/samples/charts/toolbar/theming/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index e5487fe274..d4df6f8e1a 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/events/src/index.ts b/samples/charts/tree-map/events/src/index.ts index 603e2cfe6a..0109c4b04e 100644 --- a/samples/charts/tree-map/events/src/index.ts +++ b/samples/charts/tree-map/events/src/index.ts @@ -49,11 +49,13 @@ export class TreeMapEvents { this.hoveredNodeValue.innerText = population; } } + private onNodePointerLeave(sender: IgcTreemapComponent, args: IgcTreemapNodePointerEventArgs) { this.hoveredNodeParent.innerText = "None"; this.hoveredNodeName.innerText = "None"; this.hoveredNodeValue.innerText = "None"; } + private onNodePointerPressed(sender: IgcTreemapComponent, args: IgcTreemapNodePointerEventArgs) { if (!args.item) { return; diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/highlighting-percent-based/tsconfig.json b/samples/charts/tree-map/highlighting-percent-based/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/tree-map/highlighting-percent-based/tsconfig.json +++ b/samples/charts/tree-map/highlighting-percent-based/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/highlighting/tsconfig.json b/samples/charts/tree-map/highlighting/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/tree-map/highlighting/tsconfig.json +++ b/samples/charts/tree-map/highlighting/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index cfe663c26f..68b8bb7df1 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/layout/tsconfig.json b/samples/charts/tree-map/layout/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/tree-map/layout/tsconfig.json +++ b/samples/charts/tree-map/layout/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/overview/tsconfig.json b/samples/charts/tree-map/overview/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/tree-map/overview/tsconfig.json +++ b/samples/charts/tree-map/overview/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 18acf18b3f..49f1c56754 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/styling/tsconfig.json b/samples/charts/tree-map/styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/charts/tree-map/styling/tsconfig.json +++ b/samples/charts/tree-map/styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 8b8cddee8a..1e77849399 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.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 7011138e6d..6f3fdd3e02 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/x-date-picker/date-limits/ReadMe.md b/samples/editors/x-date-picker/date-limits/ReadMe.md index e1fa2f066e..feea6f3eec 100644 --- a/samples/editors/x-date-picker/date-limits/ReadMe.md +++ b/samples/editors/x-date-picker/date-limits/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Date Limits feature using [Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of XDate Picker Date Limits feature using [X Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/editors/date-picker/date-limits +cd ./samples/editors/x-date-picker/date-limits ``` open above folder in VS Code or type: diff --git a/samples/editors/x-date-picker/date-limits/package.json b/samples/editors/x-date-picker/date-limits/package.json index 20254fff6f..33ad82edbd 100644 --- a/samples/editors/x-date-picker/date-limits/package.json +++ b/samples/editors/x-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": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/x-date-picker/editing/ReadMe.md b/samples/editors/x-date-picker/editing/ReadMe.md index d10eefb2a2..5a29a05eb3 100644 --- a/samples/editors/x-date-picker/editing/ReadMe.md +++ b/samples/editors/x-date-picker/editing/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Editing feature using [Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of XDate Picker Editing feature using [X Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/editors/date-picker/editing +cd ./samples/editors/x-date-picker/editing ``` open above folder in VS Code or type: diff --git a/samples/editors/x-date-picker/editing/package.json b/samples/editors/x-date-picker/editing/package.json index e5e4bb504c..01dab6be7e 100644 --- a/samples/editors/x-date-picker/editing/package.json +++ b/samples/editors/x-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": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/x-date-picker/format/ReadMe.md b/samples/editors/x-date-picker/format/ReadMe.md index f3fe789892..d9b0221ae6 100644 --- a/samples/editors/x-date-picker/format/ReadMe.md +++ b/samples/editors/x-date-picker/format/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Format feature using [Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of XDate Picker Format feature using [X Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/editors/date-picker/format +cd ./samples/editors/x-date-picker/format ``` open above folder in VS Code or type: diff --git a/samples/editors/x-date-picker/format/package.json b/samples/editors/x-date-picker/format/package.json index 29e325bbb9..0932838e53 100644 --- a/samples/editors/x-date-picker/format/package.json +++ b/samples/editors/x-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": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/x-date-picker/overview/ReadMe.md b/samples/editors/x-date-picker/overview/ReadMe.md index 67f85cf870..8b584b39f4 100644 --- a/samples/editors/x-date-picker/overview/ReadMe.md +++ b/samples/editors/x-date-picker/overview/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Overview feature using [Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of XDate Picker Overview feature using [X Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/editors/date-picker/overview +cd ./samples/editors/x-date-picker/overview ``` open above folder in VS Code or type: diff --git a/samples/editors/x-date-picker/overview/package.json b/samples/editors/x-date-picker/overview/package.json index f8e5117f7e..5fa196620a 100644 --- a/samples/editors/x-date-picker/overview/package.json +++ b/samples/editors/x-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": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/x-date-picker/range/ReadMe.md b/samples/editors/x-date-picker/range/ReadMe.md index 1096a83963..8d3c4fb812 100644 --- a/samples/editors/x-date-picker/range/ReadMe.md +++ b/samples/editors/x-date-picker/range/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Range feature using [Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of XDate Picker Range feature using [X Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/editors/date-picker/range +cd ./samples/editors/x-date-picker/range ``` open above folder in VS Code or type: diff --git a/samples/editors/x-date-picker/range/package.json b/samples/editors/x-date-picker/range/package.json index bd9f342e06..57d60eed29 100644 --- a/samples/editors/x-date-picker/range/package.json +++ b/samples/editors/x-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": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 84ee93e2b8..31ac76f3c0 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": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 a4dada8d17..74bdc3f562 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": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", "lit-html": "^3.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 74e8a6f8ab..9e7098a4f6 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": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", "lit-html": "^3.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 65aaed724c..9439a1a978 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": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", "lit-html": "^3.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 ffa9f2f094..a46f54e9cd 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 3a1774b0b7..2a2a8acaa9 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/working-with-sparklines/src/index.ts b/samples/excel/excel-library/working-with-sparklines/src/index.ts index 8275f0df27..4f44cdbe99 100644 --- a/samples/excel/excel-library/working-with-sparklines/src/index.ts +++ b/samples/excel/excel-library/working-with-sparklines/src/index.ts @@ -12,10 +12,10 @@ import { IgcSparklineModule } from 'igniteui-webcomponents-charts'; import { SparklineDisplayType } from 'igniteui-webcomponents-charts'; import { ModuleManager } from 'igniteui-webcomponents-core'; -ModuleManager.register( +ModuleManager.register( IgcExcelModule, IgcDataGridModule, - IgcSparklineModule + IgcSparklineModule ); export class ExcelLibrarySparklines { @@ -38,7 +38,7 @@ export class ExcelLibrarySparklines { public onOrdersCellUpdating(s: IgcTemplateColumnComponent, e: IgcTemplateCellUpdatingEventArgs) { const content = e.content as HTMLDivElement; - const info = e.cellInfo as IgcTemplateCellInfo; + const info = e.cellInfo as IgcTemplateCellInfo; let sparkline: IgcSparklineComponent | null = null; if (content.childElementCount === 0) { @@ -51,13 +51,12 @@ export class ExcelLibrarySparklines { sparkline.valueMemberPath = "Freight"; content.appendChild(sparkline); - } - else { + else { sparkline = content.children[0] as IgcSparklineComponent; } - if (sparkline) { + if (sparkline) { sparkline.dataSource = info.rowItem.Orders; } } diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 8d7f5e041b..ebdeb41d94 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": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", - "igniteui-webcomponents-spreadsheet": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.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 6b90a4e037..be8446a3d1 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", - "igniteui-webcomponents-spreadsheet": "5.1.0", - "igniteui-webcomponents-spreadsheet-chart-adapter": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", + "igniteui-webcomponents-spreadsheet-chart-adapter": "5.1.1", "lit-html": "^3.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 345bb7bb66..af0d531520 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", - "igniteui-webcomponents-spreadsheet": "5.1.0", - "igniteui-webcomponents-spreadsheet-chart-adapter": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", + "igniteui-webcomponents-spreadsheet-chart-adapter": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index 4159d03db2..5f188ec2dd 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": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", - "igniteui-webcomponents-spreadsheet": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 157dc9d11f..bbd2b8642b 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": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", - "igniteui-webcomponents-spreadsheet": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.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 92661bdfec..f7daeb2f98 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": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", - "igniteui-webcomponents-spreadsheet": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.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 1f77b4c0c3..64bd82c2e3 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": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", - "igniteui-webcomponents-spreadsheet": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.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 b2f214dd3d..bab85f9960 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": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", - "igniteui-webcomponents-spreadsheet": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.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 18ffcb6902..a34523a43c 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": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", - "igniteui-webcomponents-spreadsheet": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.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 73b6816096..8cfe1c12d3 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": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", - "igniteui-webcomponents-spreadsheet": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 538f926b6d..1116b85ebc 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": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", - "igniteui-webcomponents-spreadsheet": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index da5d219803..01bfc29b48 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": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", - "igniteui-webcomponents-spreadsheet": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.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 76f9bc922b..0d1923fa20 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": "5.1.0", - "igniteui-webcomponents-excel": "5.1.0", - "igniteui-webcomponents-spreadsheet": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.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 858df87b20..f98cc18de4 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/animation/src/index.ts b/samples/gauges/bullet-graph/animation/src/index.ts index 88b5309d78..b4d1d68d6d 100644 --- a/samples/gauges/bullet-graph/animation/src/index.ts +++ b/samples/gauges/bullet-graph/animation/src/index.ts @@ -7,7 +7,7 @@ ModuleManager.register(IgcBulletGraphModule); export class BulletGraphAnimation { - private gauge: IgcBulletGraphComponent; + private gauge: IgcBulletGraphComponent; constructor() { diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 6c584a3aae..68c6b7bb12 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index d1f99699b8..c4f19c1214 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 820ae1973c..5fd603e2a6 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 6ca291dd64..ae0dd7f197 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 82394c7178..e62c2dd748 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 2405357906..d2991e0a60 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 ac7a5818a4..7fd2de5c6c 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 b286d26d6b..8f0bf1f133 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 a2bb3e8dbd..61edd2b9b2 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 cb11858dcd..1155720808 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 7078b10714..6e10869ca3 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 7fd4c66f20..f622b0bde5 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 36dac014bd..9b43736cf7 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 6d1c2040ac..fdff05487a 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index e36768fa9d..236aa9a8fc 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 e31af6df17..5b6388f4a3 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 0dd41ae3b5..c5b1a941b0 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 098d6cf9ea..8d66546c78 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 e8969ce86c..eaa7e5e455 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 4e75f1196f..362fc57124 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 89e70aed6c..69ff9db75c 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 4a8716fb75..3d1eaaee40 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 13c1aea9c9..29a4545f53 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 a1330e0f97..645a34c0ad 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 af58f3474d..7a057f40f5 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 dc1e8af5be..ab58819c81 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 86bd12761c..df18b49ad6 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 4120850959..99071d3601 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/animation/src/index.ts b/samples/gauges/radial-gauge/animation/src/index.ts index 01dd379dfc..c1d9c63bba 100644 --- a/samples/gauges/radial-gauge/animation/src/index.ts +++ b/samples/gauges/radial-gauge/animation/src/index.ts @@ -39,7 +39,7 @@ export class RadialGaugeAnimation { if(this.shouldAnimate){ this.gauge.transitionDuration = 1000; - } + } this.gauge.minimumValue = 0; this.gauge.maximumValue = 50; @@ -115,7 +115,7 @@ export class RadialGaugeAnimation { range.outerStartExtent = 0.57; range.outerEndExtent = 0.57; } - + this.shouldAnimate = true; } @@ -124,7 +124,7 @@ export class RadialGaugeAnimation { if(this.shouldAnimate){ this.gauge.transitionDuration = 1000; - } + } this.gauge.minimumValue = 0; this.gauge.maximumValue = 80; @@ -183,7 +183,7 @@ export class RadialGaugeAnimation { if(this.shouldAnimate){ this.gauge.transitionDuration = 1000; - } + } this.gauge.minimumValue = 100; this.gauge.maximumValue = 200; @@ -248,7 +248,7 @@ export class RadialGaugeAnimation { if(this.shouldAnimate){ this.gauge.transitionDuration = 1000; - } + } this.gauge.minimumValue = 0; this.gauge.maximumValue = 10; diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 5759cf877f..16d9f715d8 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index 27a96ec568..57d9d459f9 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 f20b661da7..12202cc105 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 97a12a6770..7054ea1248 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index f20b661da7..12202cc105 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 95c4e32de4..0b2c63de34 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 dc006bc153..a9a5944c3a 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 d21b696bd5..a660c0f172 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 729fb7a2b2..f32584c4be 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 792bbb59ce..2da73cd913 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 56c4a07166..e5fa17c69b 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 34eca3a4a0..1d4fcf1ec2 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 ed3b6a8ad3..8eb082d8d8 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 852c17543c..6915a1f897 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 d79a853957..3d72020456 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 3effef16a7..ffeab8e4fb 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 80c55091f1..4c40eb5e5a 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": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.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 c8124f4f21..7dd9b28643 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 ddd1bb7941..fa79aed0a4 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 3cf6485a80..cffcbcb979 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/binding-live-data/src/index.ts b/samples/grids/data-grid/binding-live-data/src/index.ts index 4672596a9f..91ead470b3 100644 --- a/samples/grids/data-grid/binding-live-data/src/index.ts +++ b/samples/grids/data-grid/binding-live-data/src/index.ts @@ -1,6 +1,5 @@ import '@webcomponents/custom-elements/custom-elements.min'; import '@webcomponents/custom-elements/src/native-shim.js'; - import { LiveFinancialData } from './LiveFinancialData'; import { ListSortDirection } from 'igniteui-webcomponents-core'; import { DataGridCellLayoutPanel } from 'igniteui-webcomponents-grids'; diff --git a/samples/grids/data-grid/binding-local-data/package.json b/samples/grids/data-grid/binding-local-data/package.json index fae066fd9f..287545a318 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 7600dd7000..648a322538 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": "5.1.0", - "igniteui-webcomponents-datasources": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-datasources": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 e5937d6f88..b1ea3003cd 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/cell-activation/src/index.ts b/samples/grids/data-grid/cell-activation/src/index.ts index 80727db45b..c7ead2f230 100644 --- a/samples/grids/data-grid/cell-activation/src/index.ts +++ b/samples/grids/data-grid/cell-activation/src/index.ts @@ -33,7 +33,6 @@ export class DataGridCellActivation { if (this.enterKeyAfterEditButton !== null){ this.enterKeyAfterEditButton.onchange = this.enterAfterChanged; } - } public enterModeChanged = (event: any) => { @@ -42,7 +41,6 @@ export class DataGridCellActivation { if (this.grid.enterBehavior === EnterKeyBehaviors.Edit) { this.enterKeyAfterEditButton.disabled = false; this.grid.editMode = EditModeType.Cell; - } else { this.enterKeyAfterEditButton.disabled = true; diff --git a/samples/grids/data-grid/cell-editing/package.json b/samples/grids/data-grid/cell-editing/package.json index 2c421476be..b74a727718 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/cell-editing/src/index.ts b/samples/grids/data-grid/cell-editing/src/index.ts index 25c7fe1af5..eaa53fa46e 100644 --- a/samples/grids/data-grid/cell-editing/src/index.ts +++ b/samples/grids/data-grid/cell-editing/src/index.ts @@ -116,7 +116,6 @@ export class DataGridCellEditing { public editModeClickActionChanged = (event: any) => { this.grid.editModeClickAction = event.target.value; - } public onDeleteRowClick = (e: MouseEvent) => { diff --git a/samples/grids/data-grid/cell-merging/package.json b/samples/grids/data-grid/cell-merging/package.json index 47179056e3..d113ea58ef 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": "5.1.0", - "igniteui-webcomponents-datasources": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-datasources": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/cell-merging/src/index.ts b/samples/grids/data-grid/cell-merging/src/index.ts index 2a98df6e86..b82fd78df3 100644 --- a/samples/grids/data-grid/cell-merging/src/index.ts +++ b/samples/grids/data-grid/cell-merging/src/index.ts @@ -23,7 +23,6 @@ export class DataGridCellMerging { this.grid = document.getElementById('grid') as IgcDataGridComponent; this.dropDownValueChanged = this.dropDownValueChanged.bind(this); - const vds = new ODataVirtualDataSource(); vds.baseUri = 'https://services.odata.org/V4/Northwind/Northwind.svc'; vds.entitySet = 'Orders'; @@ -61,7 +60,6 @@ export class DataGridCellMerging { break; } } - } } diff --git a/samples/grids/data-grid/cell-selection/package.json b/samples/grids/data-grid/cell-selection/package.json index e02f40ac29..6999a7682d 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 eeb8db728b..c11683daf0 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 9e61ca7273..5a26eee62e 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 29c7bcd9d7..d6f3fa47b0 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 4fad5d388d..acf26c3a12 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 c06ea38777..23c27c455a 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 5a8716df2a..2c243d6f3c 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 9e79e8dffc..cd80d887a7 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 5362101555..e696d3cfee 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 3a3f901959..6505479764 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 8d04d8555c..e8c4040047 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 7421209cbe..9b39f72e31 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 b66ad8a4ce..856199baa1 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 358eed1b45..4c4b7460fb 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 13767a52d2..c85814d84b 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 c7e6116a1d..d24c77bb08 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 33f9d3093b..86efa0616c 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/load-save-layout/src/index.ts b/samples/grids/data-grid/load-save-layout/src/index.ts index e5f002bcb5..1da0f607d8 100644 --- a/samples/grids/data-grid/load-save-layout/src/index.ts +++ b/samples/grids/data-grid/load-save-layout/src/index.ts @@ -86,14 +86,13 @@ export class DataGridLoadSaveLayout { this.loadButton.disabled = true; } } - + this.saveButton = document.getElementById('saveClick') as HTMLButtonElement; if (this.saveButton !== null){ this.saveButton.onclick = this.onSaveClick; } } - } new DataGridLoadSaveLayout(); diff --git a/samples/grids/data-grid/localization/package.json b/samples/grids/data-grid/localization/package.json index 6fdef739c0..d38b54c189 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/localization/src/index.ts b/samples/grids/data-grid/localization/src/index.ts index 10b5e6aec4..f4e8279229 100644 --- a/samples/grids/data-grid/localization/src/index.ts +++ b/samples/grids/data-grid/localization/src/index.ts @@ -30,7 +30,7 @@ export class DataGridLocalization { // If your browser language is JA then you should use "ja" after eg."DataGrid-ja" etc. The grid will automatically look for the correct // suffix based on what the browser language is. This means you could force the grid to use the Japanese resources for whatever // the browser culture is by registering it for each language. - + //Localization.register("DataGrid-ja", new CustomDataGridLocaleJa()); //Register custom strings for column options in the DataGrid diff --git a/samples/grids/data-grid/overview/package.json b/samples/grids/data-grid/overview/package.json index 4d750e838b..aab1521e9d 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 44a8d6e052..a3fde802c1 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 11c573c5ef..cb74636d78 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/performance/src/index.ts b/samples/grids/data-grid/performance/src/index.ts index 9cdd03e1db..32058b8ac4 100644 --- a/samples/grids/data-grid/performance/src/index.ts +++ b/samples/grids/data-grid/performance/src/index.ts @@ -595,6 +595,6 @@ export class SalesPerson { PercentChange!: number; YearToDateSales!: number; DateValue!: Date; -} +} new DataGridPerformance(); diff --git a/samples/grids/data-grid/row-group-descriptions/package.json b/samples/grids/data-grid/row-group-descriptions/package.json index 345a9d64dc..240c041ece 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 345a9d64dc..240c041ece 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 56a6abd31d..4a21d6b6da 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 9bb24b277c..3fae34e6d6 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 82792bf945..632b62beff 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 e02f40ac29..6999a7682d 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 98b18f3c88..56ff0cbdaa 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": "5.1.0", - "igniteui-webcomponents-datasources": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-datasources": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 b6f7774f7a..71a30487cc 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 b6913ebcda..4a0d45678b 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 695db7f222..a6755ec366 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 f4fb8ecf79..21f8fa2172 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 54c25cb9c2..00e2a31722 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.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 bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/action-strip/package.json +++ b/samples/grids/grid/action-strip/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/action-strip/tsconfig.json b/samples/grids/grid/action-strip/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/action-strip/tsconfig.json +++ b/samples/grids/grid/action-strip/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/advanced-filtering-options/package.json b/samples/grids/grid/advanced-filtering-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/advanced-filtering-options/package.json +++ b/samples/grids/grid/advanced-filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/advanced-filtering-options/tsconfig.json b/samples/grids/grid/advanced-filtering-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/advanced-filtering-options/tsconfig.json +++ b/samples/grids/grid/advanced-filtering-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/advanced-filtering-style/package.json b/samples/grids/grid/advanced-filtering-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/advanced-filtering-style/package.json +++ b/samples/grids/grid/advanced-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/advanced-filtering-style/tsconfig.json b/samples/grids/grid/advanced-filtering-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/advanced-filtering-style/tsconfig.json +++ b/samples/grids/grid/advanced-filtering-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/binding-composite-data/package.json b/samples/grids/grid/binding-composite-data/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/binding-composite-data/package.json +++ b/samples/grids/grid/binding-composite-data/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/binding-composite-data/tsconfig.json b/samples/grids/grid/binding-composite-data/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/binding-composite-data/tsconfig.json +++ b/samples/grids/grid/binding-composite-data/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/binding-crud-data/package.json b/samples/grids/grid/binding-crud-data/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/binding-crud-data/package.json +++ b/samples/grids/grid/binding-crud-data/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/binding-crud-data/tsconfig.json b/samples/grids/grid/binding-crud-data/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/binding-crud-data/tsconfig.json +++ b/samples/grids/grid/binding-crud-data/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/binding-nested-data-1/package.json b/samples/grids/grid/binding-nested-data-1/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/binding-nested-data-1/package.json +++ b/samples/grids/grid/binding-nested-data-1/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/binding-nested-data-1/tsconfig.json b/samples/grids/grid/binding-nested-data-1/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/binding-nested-data-1/tsconfig.json +++ b/samples/grids/grid/binding-nested-data-1/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/cascading-combo/package.json b/samples/grids/grid/cascading-combo/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/cascading-combo/package.json +++ b/samples/grids/grid/cascading-combo/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cascading-combo/tsconfig.json b/samples/grids/grid/cascading-combo/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/cascading-combo/tsconfig.json +++ b/samples/grids/grid/cascading-combo/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/cell-editing-sample/package.json b/samples/grids/grid/cell-editing-sample/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/cell-editing-sample/package.json +++ b/samples/grids/grid/cell-editing-sample/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cell-editing-sample/tsconfig.json b/samples/grids/grid/cell-editing-sample/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/cell-editing-sample/tsconfig.json +++ b/samples/grids/grid/cell-editing-sample/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/cell-editing-styling/package.json b/samples/grids/grid/cell-editing-styling/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/cell-editing-styling/package.json +++ b/samples/grids/grid/cell-editing-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cell-editing-styling/tsconfig.json b/samples/grids/grid/cell-editing-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/cell-editing-styling/tsconfig.json +++ b/samples/grids/grid/cell-editing-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/cell-selection-mode/package.json b/samples/grids/grid/cell-selection-mode/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/cell-selection-mode/package.json +++ b/samples/grids/grid/cell-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cell-selection-mode/tsconfig.json b/samples/grids/grid/cell-selection-mode/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/cell-selection-mode/tsconfig.json +++ b/samples/grids/grid/cell-selection-mode/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/cell-selection-style/package.json b/samples/grids/grid/cell-selection-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/cell-selection-style/package.json +++ b/samples/grids/grid/cell-selection-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cell-selection-style/tsconfig.json b/samples/grids/grid/cell-selection-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/cell-selection-style/tsconfig.json +++ b/samples/grids/grid/cell-selection-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/change-icons-custom/package.json b/samples/grids/grid/change-icons-custom/package.json index d3b1f66218..bad35e1865 100644 --- a/samples/grids/grid/change-icons-custom/package.json +++ b/samples/grids/grid/change-icons-custom/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/change-icons-custom/sandbox.config.json b/samples/grids/grid/change-icons-custom/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/grid/change-icons-custom/sandbox.config.json +++ b/samples/grids/grid/change-icons-custom/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/grid/change-icons-custom/src/index.css b/samples/grids/grid/change-icons-custom/src/index.css index 8b42ec3ed2..0fe9368715 100644 --- a/samples/grids/grid/change-icons-custom/src/index.css +++ b/samples/grids/grid/change-icons-custom/src/index.css @@ -1,3 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/grid/change-icons-custom/tsconfig.json b/samples/grids/grid/change-icons-custom/tsconfig.json index a15284fdc2..de23257dd8 100644 --- a/samples/grids/grid/change-icons-custom/tsconfig.json +++ b/samples/grids/grid/change-icons-custom/tsconfig.json @@ -1,34 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/clipboard-operations/package.json b/samples/grids/grid/clipboard-operations/package.json index d3b1f66218..bad35e1865 100644 --- a/samples/grids/grid/clipboard-operations/package.json +++ b/samples/grids/grid/clipboard-operations/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/clipboard-operations/sandbox.config.json b/samples/grids/grid/clipboard-operations/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/grid/clipboard-operations/sandbox.config.json +++ b/samples/grids/grid/clipboard-operations/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/grid/clipboard-operations/src/index.css b/samples/grids/grid/clipboard-operations/src/index.css index 8b42ec3ed2..0fe9368715 100644 --- a/samples/grids/grid/clipboard-operations/src/index.css +++ b/samples/grids/grid/clipboard-operations/src/index.css @@ -1,3 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/grid/clipboard-operations/src/index.ts b/samples/grids/grid/clipboard-operations/src/index.ts index c7c9ec2ce8..d64a221b65 100644 --- a/samples/grids/grid/clipboard-operations/src/index.ts +++ b/samples/grids/grid/clipboard-operations/src/index.ts @@ -52,7 +52,6 @@ export class Sample { }); } this._bind(); - } private _nwindData: NwindData = null; diff --git a/samples/grids/grid/clipboard-operations/tsconfig.json b/samples/grids/grid/clipboard-operations/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/grid/clipboard-operations/tsconfig.json +++ b/samples/grids/grid/clipboard-operations/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-auto-sizing/package.json b/samples/grids/grid/column-auto-sizing/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/column-auto-sizing/package.json +++ b/samples/grids/grid/column-auto-sizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-auto-sizing/tsconfig.json b/samples/grids/grid/column-auto-sizing/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-auto-sizing/tsconfig.json +++ b/samples/grids/grid/column-auto-sizing/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-collapsible-groups/package.json b/samples/grids/grid/column-collapsible-groups/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/column-collapsible-groups/package.json +++ b/samples/grids/grid/column-collapsible-groups/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-collapsible-groups/tsconfig.json b/samples/grids/grid/column-collapsible-groups/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-collapsible-groups/tsconfig.json +++ b/samples/grids/grid/column-collapsible-groups/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-data-types/package.json b/samples/grids/grid/column-data-types/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/column-data-types/package.json +++ b/samples/grids/grid/column-data-types/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-data-types/tsconfig.json b/samples/grids/grid/column-data-types/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-data-types/tsconfig.json +++ b/samples/grids/grid/column-data-types/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-hiding-options/package.json b/samples/grids/grid/column-hiding-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/column-hiding-options/package.json +++ b/samples/grids/grid/column-hiding-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-hiding-options/tsconfig.json b/samples/grids/grid/column-hiding-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-hiding-options/tsconfig.json +++ b/samples/grids/grid/column-hiding-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-hiding-toolbar-style/package.json b/samples/grids/grid/column-hiding-toolbar-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/grid/column-hiding-toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-hiding-toolbar-style/tsconfig.json b/samples/grids/grid/column-hiding-toolbar-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/tsconfig.json +++ b/samples/grids/grid/column-hiding-toolbar-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-hiding-toolbar/package.json b/samples/grids/grid/column-hiding-toolbar/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/column-hiding-toolbar/package.json +++ b/samples/grids/grid/column-hiding-toolbar/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-hiding-toolbar/tsconfig.json b/samples/grids/grid/column-hiding-toolbar/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-hiding-toolbar/tsconfig.json +++ b/samples/grids/grid/column-hiding-toolbar/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-moving-options/package.json b/samples/grids/grid/column-moving-options/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/column-moving-options/package.json +++ b/samples/grids/grid/column-moving-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-moving-options/tsconfig.json b/samples/grids/grid/column-moving-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-moving-options/tsconfig.json +++ b/samples/grids/grid/column-moving-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-moving-styles/package.json b/samples/grids/grid/column-moving-styles/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/column-moving-styles/package.json +++ b/samples/grids/grid/column-moving-styles/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-moving-styles/tsconfig.json b/samples/grids/grid/column-moving-styles/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-moving-styles/tsconfig.json +++ b/samples/grids/grid/column-moving-styles/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-pinning-options/package.json b/samples/grids/grid/column-pinning-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/column-pinning-options/package.json +++ b/samples/grids/grid/column-pinning-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-pinning-options/tsconfig.json b/samples/grids/grid/column-pinning-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-pinning-options/tsconfig.json +++ b/samples/grids/grid/column-pinning-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-pinning-right-side/package.json b/samples/grids/grid/column-pinning-right-side/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/column-pinning-right-side/package.json +++ b/samples/grids/grid/column-pinning-right-side/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-pinning-right-side/tsconfig.json b/samples/grids/grid/column-pinning-right-side/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-pinning-right-side/tsconfig.json +++ b/samples/grids/grid/column-pinning-right-side/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-pinning-styles/package.json b/samples/grids/grid/column-pinning-styles/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/column-pinning-styles/package.json +++ b/samples/grids/grid/column-pinning-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-pinning-styles/tsconfig.json b/samples/grids/grid/column-pinning-styles/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-pinning-styles/tsconfig.json +++ b/samples/grids/grid/column-pinning-styles/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-pinning/package.json b/samples/grids/grid/column-pinning/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/column-pinning/package.json +++ b/samples/grids/grid/column-pinning/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-pinning/tsconfig.json b/samples/grids/grid/column-pinning/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-pinning/tsconfig.json +++ b/samples/grids/grid/column-pinning/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-resize-styling/package.json b/samples/grids/grid/column-resize-styling/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/column-resize-styling/package.json +++ b/samples/grids/grid/column-resize-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-resize-styling/tsconfig.json b/samples/grids/grid/column-resize-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-resize-styling/tsconfig.json +++ b/samples/grids/grid/column-resize-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-resizing/package.json b/samples/grids/grid/column-resizing/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/column-resizing/package.json +++ b/samples/grids/grid/column-resizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-resizing/tsconfig.json b/samples/grids/grid/column-resizing/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-resizing/tsconfig.json +++ b/samples/grids/grid/column-resizing/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-selection-group/package.json b/samples/grids/grid/column-selection-group/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/column-selection-group/package.json +++ b/samples/grids/grid/column-selection-group/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-selection-group/tsconfig.json b/samples/grids/grid/column-selection-group/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-selection-group/tsconfig.json +++ b/samples/grids/grid/column-selection-group/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-selection-mode/package.json b/samples/grids/grid/column-selection-mode/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/column-selection-mode/package.json +++ b/samples/grids/grid/column-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-selection-mode/tsconfig.json b/samples/grids/grid/column-selection-mode/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-selection-mode/tsconfig.json +++ b/samples/grids/grid/column-selection-mode/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-selection-styles/package.json b/samples/grids/grid/column-selection-styles/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/column-selection-styles/package.json +++ b/samples/grids/grid/column-selection-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-selection-styles/tsconfig.json b/samples/grids/grid/column-selection-styles/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-selection-styles/tsconfig.json +++ b/samples/grids/grid/column-selection-styles/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-sorting-indicators/package.json b/samples/grids/grid/column-sorting-indicators/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/column-sorting-indicators/package.json +++ b/samples/grids/grid/column-sorting-indicators/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-sorting-indicators/tsconfig.json b/samples/grids/grid/column-sorting-indicators/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-sorting-indicators/tsconfig.json +++ b/samples/grids/grid/column-sorting-indicators/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-sorting-options/package.json b/samples/grids/grid/column-sorting-options/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/column-sorting-options/package.json +++ b/samples/grids/grid/column-sorting-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-sorting-options/tsconfig.json b/samples/grids/grid/column-sorting-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-sorting-options/tsconfig.json +++ b/samples/grids/grid/column-sorting-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/column-sorting-style/package.json b/samples/grids/grid/column-sorting-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/column-sorting-style/package.json +++ b/samples/grids/grid/column-sorting-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-sorting-style/tsconfig.json b/samples/grids/grid/column-sorting-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/column-sorting-style/tsconfig.json +++ b/samples/grids/grid/column-sorting-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/conditional-cell-style-1/package.json b/samples/grids/grid/conditional-cell-style-1/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/conditional-cell-style-1/package.json +++ b/samples/grids/grid/conditional-cell-style-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/conditional-cell-style-1/tsconfig.json b/samples/grids/grid/conditional-cell-style-1/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/conditional-cell-style-1/tsconfig.json +++ b/samples/grids/grid/conditional-cell-style-1/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/conditional-cell-style-2/package.json b/samples/grids/grid/conditional-cell-style-2/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/conditional-cell-style-2/package.json +++ b/samples/grids/grid/conditional-cell-style-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/conditional-cell-style-2/tsconfig.json b/samples/grids/grid/conditional-cell-style-2/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/conditional-cell-style-2/tsconfig.json +++ b/samples/grids/grid/conditional-cell-style-2/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/conditional-row-selectors/package.json b/samples/grids/grid/conditional-row-selectors/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/conditional-row-selectors/package.json +++ b/samples/grids/grid/conditional-row-selectors/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/conditional-row-selectors/tsconfig.json b/samples/grids/grid/conditional-row-selectors/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/conditional-row-selectors/tsconfig.json +++ b/samples/grids/grid/conditional-row-selectors/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/custom-context-menu/package.json b/samples/grids/grid/custom-context-menu/package.json index d3b1f66218..bad35e1865 100644 --- a/samples/grids/grid/custom-context-menu/package.json +++ b/samples/grids/grid/custom-context-menu/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/custom-context-menu/sandbox.config.json b/samples/grids/grid/custom-context-menu/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/grid/custom-context-menu/sandbox.config.json +++ b/samples/grids/grid/custom-context-menu/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/grid/custom-context-menu/src/index.css b/samples/grids/grid/custom-context-menu/src/index.css index c92585ee6a..0fe9368715 100644 --- a/samples/grids/grid/custom-context-menu/src/index.css +++ b/samples/grids/grid/custom-context-menu/src/index.css @@ -1,43 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -.contextmenu { - position: absolute; - width: 180px; - background: white; - display: flex; - cursor: context-menu; - flex-direction: column; - box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12); - z-index: 9999; - font-size: 0.75rem; - font-weight: 650; -} - -.item { - padding: 10px; - display: flex; -} - -.item:hover { - background:rgb(204, 203, 203); -} - -.icon { - vertical-align: middle; - margin-bottom: 5px; - margin-right: 5px; -} - -.selected-data-area{ - overflow-y: auto; - width: 50%; - box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12); - margin-left: 10px; -} - -.wrapper{ - margin: 10px; - display: flex; - justify-content: space-evenly; -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/grid/custom-context-menu/src/index.ts b/samples/grids/grid/custom-context-menu/src/index.ts index 37bf6d6893..a29cb5f53f 100644 --- a/samples/grids/grid/custom-context-menu/src/index.ts +++ b/samples/grids/grid/custom-context-menu/src/index.ts @@ -4,11 +4,11 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescrip import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData'; - import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents, registerIconFromText } from 'igniteui-webcomponents'; import "./index.css"; + defineAllComponents(); export class Sample { @@ -19,6 +19,7 @@ export class Sample { public clickedCell: any = null; public copiedData: any; public multiCellSelection: { data: any[] } = { data: [] }; + public multiCellArgs: any; constructor() { @@ -100,7 +101,6 @@ export class Sample { this.toggleContextMenu(); } - public copySelectedData() { const selectedData = this.grid.getSelectedData(); this.copyData(selectedData); diff --git a/samples/grids/grid/custom-context-menu/tsconfig.json b/samples/grids/grid/custom-context-menu/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/grid/custom-context-menu/tsconfig.json +++ b/samples/grids/grid/custom-context-menu/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/custom-filtering/package.json b/samples/grids/grid/custom-filtering/package.json index b68931a64a..7b8e158ca4 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/custom-filtering/sandbox.config.json b/samples/grids/grid/custom-filtering/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/grid/custom-filtering/sandbox.config.json +++ b/samples/grids/grid/custom-filtering/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/grid/custom-filtering/src/index.ts b/samples/grids/grid/custom-filtering/src/index.ts index bcace7274e..c2acdc52a6 100644 --- a/samples/grids/grid/custom-filtering/src/index.ts +++ b/samples/grids/grid/custom-filtering/src/index.ts @@ -2,11 +2,9 @@ import { IgcPropertyEditorPanelModule } from 'igniteui-webcomponents-layouts'; import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent, IgcColumnComponent, IgcStringFilteringOperand, IgcFilteringOperand, IgcFilteringOperation, IgcBooleanFilteringOperand } from 'igniteui-webcomponents-grids/grids'; import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData'; - import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; - export class Sample { private grid: IgcGridComponent @@ -33,7 +31,6 @@ export class Sample { discontinued.filters = this.booleanFilteringOperand; } this._bind(); - } private _nwindData: NwindData = null; diff --git a/samples/grids/grid/custom-filtering/tsconfig.json b/samples/grids/grid/custom-filtering/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/grid/custom-filtering/tsconfig.json +++ b/samples/grids/grid/custom-filtering/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/data-batch-editing-actions/package.json b/samples/grids/grid/data-batch-editing-actions/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/data-batch-editing-actions/package.json +++ b/samples/grids/grid/data-batch-editing-actions/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-batch-editing-actions/tsconfig.json b/samples/grids/grid/data-batch-editing-actions/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/data-batch-editing-actions/tsconfig.json +++ b/samples/grids/grid/data-batch-editing-actions/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/data-exporting-indicator/package.json b/samples/grids/grid/data-exporting-indicator/package.json index b68931a64a..7b8e158ca4 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-exporting-indicator/sandbox.config.json b/samples/grids/grid/data-exporting-indicator/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/grid/data-exporting-indicator/sandbox.config.json +++ b/samples/grids/grid/data-exporting-indicator/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/grid/data-exporting-indicator/tsconfig.json b/samples/grids/grid/data-exporting-indicator/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/grid/data-exporting-indicator/tsconfig.json +++ b/samples/grids/grid/data-exporting-indicator/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/data-paste-options/package.json b/samples/grids/grid/data-paste-options/package.json index d3b1f66218..bad35e1865 100644 --- a/samples/grids/grid/data-paste-options/package.json +++ b/samples/grids/grid/data-paste-options/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-paste-options/sandbox.config.json b/samples/grids/grid/data-paste-options/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/grid/data-paste-options/sandbox.config.json +++ b/samples/grids/grid/data-paste-options/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/grid/data-paste-options/src/index.ts b/samples/grids/grid/data-paste-options/src/index.ts index 7ba6783e18..dfabc5543b 100644 --- a/samples/grids/grid/data-paste-options/src/index.ts +++ b/samples/grids/grid/data-paste-options/src/index.ts @@ -5,11 +5,11 @@ import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionCo import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import { CustomersDataItem, CustomersData } from './CustomersData'; import { IgcPropertyEditorPropertyDescriptionButtonClickEventArgs } from 'igniteui-webcomponents-layouts'; - import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; + defineAllComponents(); ModuleManager.register( @@ -48,7 +48,6 @@ export class Sample { grid1.data = this.customersData } this._bind(); - } private _customersData: CustomersData = null; @@ -59,7 +58,6 @@ export class Sample { } return this._customersData; } - private _componentRenderer: ComponentRenderer = null; public get renderer(): ComponentRenderer { @@ -72,28 +70,26 @@ export class Sample { return this._componentRenderer; } - public webGridPasteOptions(sender: any, args: IgcPropertyEditorPropertyDescriptionButtonClickEventArgs): void { //TODO - + //var grid = this.grid1; // grid.transactions.commit(grid.data); //dialog.close(); - + console.log("test"); } - - + public webGridExcelDownload(sender: any, args: IgcPropertyEditorPropertyDescriptionButtonClickEventArgs): void { //TODO - + //var grid = this.grid1; // grid.transactions.commit(grid.data); //dialog.close(); - + console.log("test"); } - + } new Sample(); diff --git a/samples/grids/grid/data-paste-options/tsconfig.json b/samples/grids/grid/data-paste-options/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/grid/data-paste-options/tsconfig.json +++ b/samples/grids/grid/data-paste-options/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/data-performance-virtualization/package.json b/samples/grids/grid/data-performance-virtualization/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/data-performance-virtualization/package.json +++ b/samples/grids/grid/data-performance-virtualization/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-performance-virtualization/tsconfig.json b/samples/grids/grid/data-performance-virtualization/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/data-performance-virtualization/tsconfig.json +++ b/samples/grids/grid/data-performance-virtualization/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/data-searching/package.json b/samples/grids/grid/data-searching/package.json index d3b1f66218..bad35e1865 100644 --- a/samples/grids/grid/data-searching/package.json +++ b/samples/grids/grid/data-searching/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-searching/sandbox.config.json b/samples/grids/grid/data-searching/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/grid/data-searching/sandbox.config.json +++ b/samples/grids/grid/data-searching/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/grid/data-searching/src/index.css b/samples/grids/grid/data-searching/src/index.css index 08c65b2d5c..0fe9368715 100644 --- a/samples/grids/grid/data-searching/src/index.css +++ b/samples/grids/grid/data-searching/src/index.css @@ -1,6 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -.gridSize { - --ig-size: var(--ig-size-small); -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/grid/data-searching/src/index.ts b/samples/grids/grid/data-searching/src/index.ts index cdb6ce9a6c..b0d79a1730 100644 --- a/samples/grids/grid/data-searching/src/index.ts +++ b/samples/grids/grid/data-searching/src/index.ts @@ -1,18 +1,17 @@ import 'igniteui-webcomponents-grids/grids/combined'; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; - import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { defineComponents, IgcInputComponent, IgcChipComponent, IgcIconComponent, IgcIconButtonComponent, registerIconFromText } from 'igniteui-webcomponents'; import { MarketData } from './MarketData'; - import "./index.css"; + defineComponents(IgcInputComponent, IgcChipComponent, IgcIconComponent, IgcIconButtonComponent); export class Sample { - private grid: IgcGridComponent; + private grid: IgcGridComponent; private searchBox: IgcInputComponent; private searchIcon: IgcIconComponent; private clearIcon: IgcIconComponent; @@ -24,13 +23,12 @@ export class Sample { private _bind: () => void; constructor() { - var grid = this.grid = document.getElementById('grid') as IgcGridComponent; - + var grid = this.grid = document.getElementById('grid') as IgcGridComponent; + this.nextSearch = this.nextSearch.bind(this); this.prevSearch = this.prevSearch.bind(this); - this.clearSearch = this.clearSearch.bind(this); - - + this.clearSearch = this.clearSearch.bind(this); + const prevIconText = ""; const nextIconText = ""; const clearIconText = ""; @@ -42,7 +40,6 @@ export class Sample { registerIconFromText("search", searchIconText, "material"); var searchIcon = this.searchIcon = document.getElementById('searchIcon') as IgcIconComponent; - var nextIconButton = this.nextIconButton = document.getElementById('nextIconBtn') as IgcIconButtonComponent; var prevIconButton = this.prevIconButton = document.getElementById('prevIconBtn') as IgcIconButtonComponent; @@ -55,8 +52,7 @@ export class Sample { this.data = new MarketData(); this._bind = () => { - grid.data = this.data; - + grid.data = this.data; searchBox.addEventListener("keydown", (evt) => { this.onSearchKeydown(evt); }); this.searchBox.addEventListener("igcInput", (evt) => { this.searchIcon.name = evt.detail ? 'clear' : 'search'; @@ -69,7 +65,7 @@ export class Sample { this._bind(); } - public onSearchKeydown(evt: KeyboardEvent) { + public onSearchKeydown(evt: KeyboardEvent) { if (evt.key === 'Enter' || evt.key === 'ArrowDown') { evt.preventDefault(); this.grid.findNext(this.searchBox.value, this.caseSensitiveChip.selected, this.exactMatchChip.selected); @@ -89,8 +85,8 @@ export class Sample { public clearSearch() { this.searchBox.value = ""; - this.grid.clearSearch(); - this.searchIcon.name = 'search'; + this.grid.clearSearch(); + this.searchIcon.name = 'search'; } } diff --git a/samples/grids/grid/data-searching/tsconfig.json b/samples/grids/grid/data-searching/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/grid/data-searching/tsconfig.json +++ b/samples/grids/grid/data-searching/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/data-summaries-custom/package.json b/samples/grids/grid/data-summaries-custom/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/grid/data-summaries-custom/package.json +++ b/samples/grids/grid/data-summaries-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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-summaries-custom/sandbox.config.json b/samples/grids/grid/data-summaries-custom/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/grid/data-summaries-custom/sandbox.config.json +++ b/samples/grids/grid/data-summaries-custom/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ 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 index 98f8d00346..6305483128 100644 --- a/samples/grids/grid/data-summaries-custom/src/index.ts +++ b/samples/grids/grid/data-summaries-custom/src/index.ts @@ -3,9 +3,9 @@ import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcompone 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]); @@ -56,7 +56,6 @@ export class Sample { grid.addEventListener("columnInit", this.webGridCustomSummary); } this._bind(); - } private _nwindData: NwindData = null; diff --git a/samples/grids/grid/data-summaries-custom/tsconfig.json b/samples/grids/grid/data-summaries-custom/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/grid/data-summaries-custom/tsconfig.json +++ b/samples/grids/grid/data-summaries-custom/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/data-summary-formatter/package.json b/samples/grids/grid/data-summary-formatter/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/data-summary-formatter/package.json +++ b/samples/grids/grid/data-summary-formatter/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-summary-formatter/tsconfig.json b/samples/grids/grid/data-summary-formatter/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/data-summary-formatter/tsconfig.json +++ b/samples/grids/grid/data-summary-formatter/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/data-summary-options/package.json b/samples/grids/grid/data-summary-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/data-summary-options/package.json +++ b/samples/grids/grid/data-summary-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-summary-options/tsconfig.json b/samples/grids/grid/data-summary-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/data-summary-options/tsconfig.json +++ b/samples/grids/grid/data-summary-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/data-summary-template/package.json b/samples/grids/grid/data-summary-template/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/data-summary-template/package.json +++ b/samples/grids/grid/data-summary-template/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-summary-template/tsconfig.json b/samples/grids/grid/data-summary-template/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/data-summary-template/tsconfig.json +++ b/samples/grids/grid/data-summary-template/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/data-validation-style/package.json b/samples/grids/grid/data-validation-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/data-validation-style/package.json +++ b/samples/grids/grid/data-validation-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-validation-style/tsconfig.json b/samples/grids/grid/data-validation-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/data-validation-style/tsconfig.json +++ b/samples/grids/grid/data-validation-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/data-validator-service-cross-field/package.json +++ b/samples/grids/grid/data-validator-service-cross-field/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-validator-service-cross-field/tsconfig.json b/samples/grids/grid/data-validator-service-cross-field/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/data-validator-service-cross-field/tsconfig.json +++ b/samples/grids/grid/data-validator-service-cross-field/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/data-validator-service-extended/package.json b/samples/grids/grid/data-validator-service-extended/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/data-validator-service-extended/package.json +++ b/samples/grids/grid/data-validator-service-extended/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-validator-service-extended/tsconfig.json b/samples/grids/grid/data-validator-service-extended/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/data-validator-service-extended/tsconfig.json +++ b/samples/grids/grid/data-validator-service-extended/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/data-validator-service/package.json b/samples/grids/grid/data-validator-service/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/data-validator-service/package.json +++ b/samples/grids/grid/data-validator-service/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-validator-service/tsconfig.json b/samples/grids/grid/data-validator-service/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/data-validator-service/tsconfig.json +++ b/samples/grids/grid/data-validator-service/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/editing-columns/package.json b/samples/grids/grid/editing-columns/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/editing-columns/package.json +++ b/samples/grids/grid/editing-columns/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-columns/tsconfig.json b/samples/grids/grid/editing-columns/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/editing-columns/tsconfig.json +++ b/samples/grids/grid/editing-columns/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/editing-events/package.json b/samples/grids/grid/editing-events/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/editing-events/package.json +++ b/samples/grids/grid/editing-events/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-events/tsconfig.json b/samples/grids/grid/editing-events/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/editing-events/tsconfig.json +++ b/samples/grids/grid/editing-events/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/editing-excel-style-custom/ReadMe.md b/samples/grids/grid/editing-excel-style-custom/ReadMe.md index a2dee166a6..0d5b31235e 100644 --- a/samples/grids/grid/editing-excel-style-custom/ReadMe.md +++ b/samples/grids/grid/editing-excel-style-custom/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Editing Excel Style feature using [Grid](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of Editing Excel Style Custom feature using [Grid](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/grids/grid/editing-excel-style +cd ./samples/grids/grid/editing-excel-style-custom ``` open above folder in VS Code or type: diff --git a/samples/grids/grid/editing-excel-style-custom/package.json b/samples/grids/grid/editing-excel-style-custom/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/grid/editing-excel-style-custom/package.json +++ b/samples/grids/grid/editing-excel-style-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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-excel-style-custom/sandbox.config.json b/samples/grids/grid/editing-excel-style-custom/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/grid/editing-excel-style-custom/sandbox.config.json +++ b/samples/grids/grid/editing-excel-style-custom/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/grid/editing-excel-style-custom/src/index.css b/samples/grids/grid/editing-excel-style-custom/src/index.css index 8b42ec3ed2..0fe9368715 100644 --- a/samples/grids/grid/editing-excel-style-custom/src/index.css +++ b/samples/grids/grid/editing-excel-style-custom/src/index.css @@ -1,3 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/grid/editing-excel-style-custom/src/index.ts b/samples/grids/grid/editing-excel-style-custom/src/index.ts index 2c14643d13..9ab87422bd 100644 --- a/samples/grids/grid/editing-excel-style-custom/src/index.ts +++ b/samples/grids/grid/editing-excel-style-custom/src/index.ts @@ -2,11 +2,11 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcCellType, IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { NwindData } from './NwindData'; - import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; - import "./index.css"; + + export class Sample { private grid1: IgcGridComponent @@ -15,31 +15,30 @@ export class Sample { constructor() { var grid1 = this.grid1 = document.getElementById('grid1') as IgcGridComponent; - + this._bind = () => { grid1.data = this.nwindData; grid1.addEventListener('activeNodeChange', (event: any) => { grid1.endEdit(); (grid1.getElementsByClassName("igx-grid__tbody-content")[0] as any).focus(); - }); grid1.addEventListener('keydown', (event: KeyboardEvent) => { var code = event.code; var activeElem = grid1.selectedCells[0]; - if ((event.code >= 'Digit0' && event.code <= 'Digit9') || + if ((event.code >= 'Digit0' && event.code <= 'Digit9') || (event.code >= 'KeyA' && event.code <= 'KeyZ') || - (event.code >= 'Numpad0' && event.code <= 'Numpad9') && + (event.code >= 'Numpad0' && event.code <= 'Numpad9') && event.code !== 'Enter' && event.code !== 'NumpadEnter') { - + if (activeElem && activeElem.editMode === false) { activeElem.editMode = true; activeElem.editValue = event.key; this.shouldAppendValue = true; grid1.markForCheck(); } else - + if (activeElem && activeElem.editMode && this.shouldAppendValue) { event.preventDefault(); activeElem.editValue = activeElem.editValue + event.key; @@ -52,28 +51,26 @@ export class Sample { return; } const rowIndex = activeElem.row.index; - const columnKey = activeElem.column.field; - + const columnKey = activeElem.column.field; + grid1.data[rowIndex][columnKey] = ''; grid1.markForCheck(); - } - + if (code === 'Enter') { - + if(activeElem == null) { return; } const thisRow = activeElem.row.index; const dataView = this.grid1.dataView; - const nextRowIndex = this.getNextEditableRowIndex(thisRow, dataView, event.shiftKey); + const nextRowIndex = this.getNextEditableRowIndex(thisRow, dataView, event.shiftKey); grid1.navigateTo(nextRowIndex, activeElem.column.visibleIndex, (obj: any) => { - grid1.clearCellSelection(); - obj.target.activate(); + grid1.clearCellSelection(); + obj.target.activate(); }); - } }); } @@ -113,7 +110,6 @@ export class Sample { } return dataView.findIndex((rec, index) => index > currentRowIndex && this.isEditableDataRecordAtIndex(index, dataView)); } - private isEditableDataRecordAtIndex(rowIndex: number, dataView: any[]): boolean { const rec = dataView[rowIndex]; diff --git a/samples/grids/grid/editing-excel-style-custom/tsconfig.json b/samples/grids/grid/editing-excel-style-custom/tsconfig.json index a15284fdc2..de23257dd8 100644 --- a/samples/grids/grid/editing-excel-style-custom/tsconfig.json +++ b/samples/grids/grid/editing-excel-style-custom/tsconfig.json @@ -1,34 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/editing-excel-style/package.json b/samples/grids/grid/editing-excel-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/editing-excel-style/package.json +++ b/samples/grids/grid/editing-excel-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-excel-style/tsconfig.json b/samples/grids/grid/editing-excel-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/editing-excel-style/tsconfig.json +++ b/samples/grids/grid/editing-excel-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/editing-lifecycle/package.json b/samples/grids/grid/editing-lifecycle/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/editing-lifecycle/package.json +++ b/samples/grids/grid/editing-lifecycle/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-lifecycle/tsconfig.json b/samples/grids/grid/editing-lifecycle/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/editing-lifecycle/tsconfig.json +++ b/samples/grids/grid/editing-lifecycle/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/excel-exporting/package.json b/samples/grids/grid/excel-exporting/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/excel-exporting/package.json +++ b/samples/grids/grid/excel-exporting/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-exporting/tsconfig.json b/samples/grids/grid/excel-exporting/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/excel-exporting/tsconfig.json +++ b/samples/grids/grid/excel-exporting/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-1/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-style-filtering-sample-1/tsconfig.json b/samples/grids/grid/excel-style-filtering-sample-1/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/tsconfig.json +++ b/samples/grids/grid/excel-style-filtering-sample-1/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-style-filtering-sample-2/tsconfig.json b/samples/grids/grid/excel-style-filtering-sample-2/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/tsconfig.json +++ b/samples/grids/grid/excel-style-filtering-sample-2/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-style-filtering-sample-3/tsconfig.json b/samples/grids/grid/excel-style-filtering-sample-3/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/tsconfig.json +++ b/samples/grids/grid/excel-style-filtering-sample-3/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/excel-style-filtering-style/package.json b/samples/grids/grid/excel-style-filtering-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/excel-style-filtering-style/package.json +++ b/samples/grids/grid/excel-style-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-style-filtering-style/tsconfig.json b/samples/grids/grid/excel-style-filtering-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/excel-style-filtering-style/tsconfig.json +++ b/samples/grids/grid/excel-style-filtering-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/external-advanced-filtering/package.json b/samples/grids/grid/external-advanced-filtering/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/external-advanced-filtering/package.json +++ b/samples/grids/grid/external-advanced-filtering/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/external-advanced-filtering/tsconfig.json b/samples/grids/grid/external-advanced-filtering/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/external-advanced-filtering/tsconfig.json +++ b/samples/grids/grid/external-advanced-filtering/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/filtering-options/package.json b/samples/grids/grid/filtering-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/filtering-options/package.json +++ b/samples/grids/grid/filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/filtering-options/tsconfig.json b/samples/grids/grid/filtering-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/filtering-options/tsconfig.json +++ b/samples/grids/grid/filtering-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/filtering-strategy/package.json b/samples/grids/grid/filtering-strategy/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/filtering-strategy/package.json +++ b/samples/grids/grid/filtering-strategy/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/filtering-strategy/tsconfig.json b/samples/grids/grid/filtering-strategy/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/filtering-strategy/tsconfig.json +++ b/samples/grids/grid/filtering-strategy/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/filtering-style/package.json b/samples/grids/grid/filtering-style/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/filtering-style/package.json +++ b/samples/grids/grid/filtering-style/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/filtering-style/tsconfig.json b/samples/grids/grid/filtering-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/filtering-style/tsconfig.json +++ b/samples/grids/grid/filtering-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/finjs/package.json b/samples/grids/grid/finjs/package.json index 93b946e25b..1dcd5ac7d4 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/finjs/sandbox.config.json b/samples/grids/grid/finjs/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/grid/finjs/sandbox.config.json +++ b/samples/grids/grid/finjs/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/grid/finjs/src/index.css b/samples/grids/grid/finjs/src/index.css index b2ddbc6a23..0fe9368715 100644 --- a/samples/grids/grid/finjs/src/index.css +++ b/samples/grids/grid/finjs/src/index.css @@ -1,122 +1,2 @@ /* 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; -} - -.gridSize { - --ig-size: var(--ig-size-medium); -} - -.size-small { - --ig-size: var(--ig-size-small); -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/grid/finjs/src/index.ts b/samples/grids/grid/finjs/src/index.ts index c592d791a4..f1d5ba80e2 100644 --- a/samples/grids/grid/finjs/src/index.ts +++ b/samples/grids/grid/finjs/src/index.ts @@ -16,7 +16,6 @@ ModuleManager.register( export class Sample { - private grid1: IgcGridComponent; private chart: IgcCategoryChartComponent; private _timer: ReturnType; @@ -70,7 +69,6 @@ export class Sample { 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; @@ -80,7 +78,6 @@ export class Sample { this.grid1.data = this.data; }); - const sliderFreqValueSpan = document.getElementById('slider-freq-value') as HTMLElement; const freqSlider = document.getElementById('frequency') as IgcSliderComponent; freqSlider.value = 500; @@ -88,7 +85,6 @@ export class Sample { sliderFreqValueSpan.innerHTML = ev.detail; }); - const groupingSwitch = document.getElementById('groupSwitch') as IgcSwitchComponent; groupingSwitch.addEventListener('igcChange', (ev: CustomEvent) => { if (ev.detail.checked) { @@ -181,7 +177,6 @@ export class Sample { 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 && @@ -196,7 +191,6 @@ export class Sample { chartDialog.show(); } - public priceTemplate = (ctx: IgcCellTemplateContext) => { const cell = ctx.cell; const rowData = this.grid1.getRowData(cell.id.rowID); diff --git a/samples/grids/grid/finjs/tsconfig.json b/samples/grids/grid/finjs/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/grid/finjs/tsconfig.json +++ b/samples/grids/grid/finjs/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/groupby-custom/package.json b/samples/grids/grid/groupby-custom/package.json index b68931a64a..7b8e158ca4 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-custom/sandbox.config.json b/samples/grids/grid/groupby-custom/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/grid/groupby-custom/sandbox.config.json +++ b/samples/grids/grid/groupby-custom/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/grid/groupby-custom/src/index.css b/samples/grids/grid/groupby-custom/src/index.css index 8b42ec3ed2..0fe9368715 100644 --- a/samples/grids/grid/groupby-custom/src/index.css +++ b/samples/grids/grid/groupby-custom/src/index.css @@ -1,3 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/grid/groupby-custom/src/index.ts b/samples/grids/grid/groupby-custom/src/index.ts index 312010cd2b..c3431761bf 100644 --- a/samples/grids/grid/groupby-custom/src/index.ts +++ b/samples/grids/grid/groupby-custom/src/index.ts @@ -23,6 +23,7 @@ export class Sample { year: date.getFullYear(), }; } + public getWeekOfDate(date:any) { const onejan = new Date(date.getFullYear(), 0, 1); const week = Math.ceil((((date.getTime() - onejan.getTime()) / 86400000) + onejan.getDay() + 1) / 7); diff --git a/samples/grids/grid/groupby-custom/tsconfig.json b/samples/grids/grid/groupby-custom/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/grid/groupby-custom/tsconfig.json +++ b/samples/grids/grid/groupby-custom/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/groupby-expressions/package.json b/samples/grids/grid/groupby-expressions/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/groupby-expressions/package.json +++ b/samples/grids/grid/groupby-expressions/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-expressions/tsconfig.json b/samples/grids/grid/groupby-expressions/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/groupby-expressions/tsconfig.json +++ b/samples/grids/grid/groupby-expressions/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/groupby-paging/package.json b/samples/grids/grid/groupby-paging/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/groupby-paging/package.json +++ b/samples/grids/grid/groupby-paging/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-paging/tsconfig.json b/samples/grids/grid/groupby-paging/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/groupby-paging/tsconfig.json +++ b/samples/grids/grid/groupby-paging/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/groupby-styling/package.json b/samples/grids/grid/groupby-styling/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/groupby-styling/package.json +++ b/samples/grids/grid/groupby-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-styling/tsconfig.json b/samples/grids/grid/groupby-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/groupby-styling/tsconfig.json +++ b/samples/grids/grid/groupby-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/groupby-summary-options/package.json b/samples/grids/grid/groupby-summary-options/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/groupby-summary-options/package.json +++ b/samples/grids/grid/groupby-summary-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-summary-options/tsconfig.json b/samples/grids/grid/groupby-summary-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/groupby-summary-options/tsconfig.json +++ b/samples/grids/grid/groupby-summary-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/groupby-summary-styling/package.json b/samples/grids/grid/groupby-summary-styling/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/groupby-summary-styling/package.json +++ b/samples/grids/grid/groupby-summary-styling/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-summary-styling/tsconfig.json b/samples/grids/grid/groupby-summary-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/groupby-summary-styling/tsconfig.json +++ b/samples/grids/grid/groupby-summary-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/infinite-scroll/package.json b/samples/grids/grid/infinite-scroll/package.json index adb19e0cf0..d61b1e0097 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "rxjs": "7.8.1", "tslib": "^2.0.0" diff --git a/samples/grids/grid/infinite-scroll/sandbox.config.json b/samples/grids/grid/infinite-scroll/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/grid/infinite-scroll/sandbox.config.json +++ b/samples/grids/grid/infinite-scroll/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/grid/infinite-scroll/src/index.ts b/samples/grids/grid/infinite-scroll/src/index.ts index 3c854e94a6..ad117e4317 100644 --- a/samples/grids/grid/infinite-scroll/src/index.ts +++ b/samples/grids/grid/infinite-scroll/src/index.ts @@ -3,11 +3,11 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent, IgcColumnComponent, IgcForOfState } from 'igniteui-webcomponents-grids/grids'; import { NwindDataItem, NwindDataItem_LocationsItem, NwindData } from './NwindData'; - import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; import { RemoteNwindService } from './NwindService'; + ModuleManager.register( IgcPropertyEditorPanelModule ); diff --git a/samples/grids/grid/infinite-scroll/tsconfig.json b/samples/grids/grid/infinite-scroll/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/grid/infinite-scroll/tsconfig.json +++ b/samples/grids/grid/infinite-scroll/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/keyboard-custom-navigation/package.json b/samples/grids/grid/keyboard-custom-navigation/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/keyboard-custom-navigation/package.json +++ b/samples/grids/grid/keyboard-custom-navigation/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/keyboard-custom-navigation/tsconfig.json b/samples/grids/grid/keyboard-custom-navigation/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/keyboard-custom-navigation/tsconfig.json +++ b/samples/grids/grid/keyboard-custom-navigation/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/keyboard-mrl-navigation/package.json b/samples/grids/grid/keyboard-mrl-navigation/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/package.json +++ b/samples/grids/grid/keyboard-mrl-navigation/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/keyboard-mrl-navigation/tsconfig.json b/samples/grids/grid/keyboard-mrl-navigation/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/tsconfig.json +++ b/samples/grids/grid/keyboard-mrl-navigation/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/keyboard-navigation-guide/package.json b/samples/grids/grid/keyboard-navigation-guide/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/grid/keyboard-navigation-guide/package.json +++ b/samples/grids/grid/keyboard-navigation-guide/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/keyboard-navigation-guide/sandbox.config.json b/samples/grids/grid/keyboard-navigation-guide/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/grid/keyboard-navigation-guide/sandbox.config.json +++ b/samples/grids/grid/keyboard-navigation-guide/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/grid/keyboard-navigation-guide/src/index.css b/samples/grids/grid/keyboard-navigation-guide/src/index.css index 04aaff09bf..0fe9368715 100644 --- a/samples/grids/grid/keyboard-navigation-guide/src/index.css +++ b/samples/grids/grid/keyboard-navigation-guide/src/index.css @@ -1,33 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -.gridSize { - --ig-size: var(--ig-size-small); -} - -.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 +/* https://static.infragistics.com/xplatform/css/samples */ \ 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 index 8d9d0b0ef1..bcd204963f 100644 --- a/samples/grids/grid/keyboard-navigation-guide/src/index.ts +++ b/samples/grids/grid/keyboard-navigation-guide/src/index.ts @@ -34,7 +34,6 @@ const summaryCombinations: Item[] = [ new Item('End', 'navigates to the last summary cell', false, ItemAction.Always) ]; - export class Sample { private grid: IgcGridComponent @@ -64,7 +63,6 @@ export class Sample { grid.addEventListener("keydown", this.keydown); } this._bind(); - } public masterDetailTemplate = (ctx: IgcGridMasterDetailContext) => { @@ -265,7 +263,6 @@ export class Sample { this.keydown(evt); } - public listTemplate = () => { let htmlContent = ""; (window as any).onChangeHandler = (i: number) => { diff --git a/samples/grids/grid/keyboard-navigation-guide/tsconfig.json b/samples/grids/grid/keyboard-navigation-guide/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/grid/keyboard-navigation-guide/tsconfig.json +++ b/samples/grids/grid/keyboard-navigation-guide/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/layout-display-density/package.json b/samples/grids/grid/layout-display-density/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/layout-display-density/package.json +++ b/samples/grids/grid/layout-display-density/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/layout-display-density/tsconfig.json b/samples/grids/grid/layout-display-density/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/layout-display-density/tsconfig.json +++ b/samples/grids/grid/layout-display-density/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/master-detail/package.json b/samples/grids/grid/master-detail/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/master-detail/package.json +++ b/samples/grids/grid/master-detail/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/master-detail/tsconfig.json b/samples/grids/grid/master-detail/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/master-detail/tsconfig.json +++ b/samples/grids/grid/master-detail/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/multi-cell-selection-mode/package.json b/samples/grids/grid/multi-cell-selection-mode/package.json index b68931a64a..7b8e158ca4 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-cell-selection-mode/src/index.ts b/samples/grids/grid/multi-cell-selection-mode/src/index.ts index c568349d5f..88c0207c86 100644 --- a/samples/grids/grid/multi-cell-selection-mode/src/index.ts +++ b/samples/grids/grid/multi-cell-selection-mode/src/index.ts @@ -1,9 +1,9 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteui-webcomponents-grids/grids'; import { InvoicesData } from './InvoicesData'; - import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; + export class Sample { private leftGrid: IgcGridComponent; @@ -14,22 +14,22 @@ export class Sample { private _bind: () => void; constructor() { - var leftGrid = this.leftGrid = document.getElementById('leftGrid') as IgcGridComponent; - var rightGrid = this.rightGrid = document.getElementById('rightGrid') as IgcGridComponent; - + var leftGrid = this.leftGrid = document.getElementById('leftGrid') as IgcGridComponent; + var rightGrid = this.rightGrid = document.getElementById('rightGrid') as IgcGridComponent; + this.onGridRangeSelected = this.onGridRangeSelected.bind(this); this.leftGridData = new InvoicesData(); this._bind = () => { - leftGrid.data = this.leftGridData; + leftGrid.data = this.leftGridData; leftGrid.addEventListener("rangeSelected", this.onGridRangeSelected); } this._bind(); } - public onGridRangeSelected(): void { - this.rightGrid.data = this.leftGrid.getSelectedData(); + public onGridRangeSelected(): void { + this.rightGrid.data = this.leftGrid.getSelectedData(); } } diff --git a/samples/grids/grid/multi-cell-selection-mode/tsconfig.json b/samples/grids/grid/multi-cell-selection-mode/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/grid/multi-cell-selection-mode/tsconfig.json +++ b/samples/grids/grid/multi-cell-selection-mode/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/multi-column-headers-export/package.json b/samples/grids/grid/multi-column-headers-export/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/multi-column-headers-export/package.json +++ b/samples/grids/grid/multi-column-headers-export/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-column-headers-export/tsconfig.json b/samples/grids/grid/multi-column-headers-export/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/multi-column-headers-export/tsconfig.json +++ b/samples/grids/grid/multi-column-headers-export/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/multi-column-headers-overview/package.json b/samples/grids/grid/multi-column-headers-overview/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/multi-column-headers-overview/package.json +++ b/samples/grids/grid/multi-column-headers-overview/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-column-headers-overview/tsconfig.json b/samples/grids/grid/multi-column-headers-overview/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/multi-column-headers-overview/tsconfig.json +++ b/samples/grids/grid/multi-column-headers-overview/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/multi-column-headers-styling/package.json b/samples/grids/grid/multi-column-headers-styling/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/multi-column-headers-styling/package.json +++ b/samples/grids/grid/multi-column-headers-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-column-headers-styling/tsconfig.json b/samples/grids/grid/multi-column-headers-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/multi-column-headers-styling/tsconfig.json +++ b/samples/grids/grid/multi-column-headers-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/multi-column-headers-template/package.json b/samples/grids/grid/multi-column-headers-template/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/multi-column-headers-template/package.json +++ b/samples/grids/grid/multi-column-headers-template/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-column-headers-template/tsconfig.json b/samples/grids/grid/multi-column-headers-template/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/multi-column-headers-template/tsconfig.json +++ b/samples/grids/grid/multi-column-headers-template/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/multi-row-layout-options/package.json b/samples/grids/grid/multi-row-layout-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/multi-row-layout-options/package.json +++ b/samples/grids/grid/multi-row-layout-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-row-layout-options/tsconfig.json b/samples/grids/grid/multi-row-layout-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/multi-row-layout-options/tsconfig.json +++ b/samples/grids/grid/multi-row-layout-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/multi-row-layout-style/package.json b/samples/grids/grid/multi-row-layout-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/multi-row-layout-style/package.json +++ b/samples/grids/grid/multi-row-layout-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-row-layout-style/tsconfig.json b/samples/grids/grid/multi-row-layout-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/multi-row-layout-style/tsconfig.json +++ b/samples/grids/grid/multi-row-layout-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/overview/package.json b/samples/grids/grid/overview/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/overview/package.json +++ b/samples/grids/grid/overview/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/overview/tsconfig.json b/samples/grids/grid/overview/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/overview/tsconfig.json +++ b/samples/grids/grid/overview/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/paste/package.json b/samples/grids/grid/paste/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/paste/package.json +++ b/samples/grids/grid/paste/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/paste/tsconfig.json b/samples/grids/grid/paste/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/paste/tsconfig.json +++ b/samples/grids/grid/paste/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/remote-paging-data/package.json b/samples/grids/grid/remote-paging-data/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/remote-paging-data/package.json +++ b/samples/grids/grid/remote-paging-data/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/remote-paging-data/tsconfig.json b/samples/grids/grid/remote-paging-data/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/remote-paging-data/tsconfig.json +++ b/samples/grids/grid/remote-paging-data/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/remote-paging-grid/ReadMe.md b/samples/grids/grid/remote-paging-grid/ReadMe.md index 97f329c8d6..4b1180ecea 100644 --- a/samples/grids/grid/remote-paging-grid/ReadMe.md +++ b/samples/grids/grid/remote-paging-grid/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Remote Paging Data feature using [Grid](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of Remote Paging Grid feature using [Grid](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/grids/grid/remote-paging-data +cd ./samples/grids/grid/remote-paging-grid ``` open above folder in VS Code or type: diff --git a/samples/grids/grid/remote-paging-grid/package.json b/samples/grids/grid/remote-paging-grid/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/grid/remote-paging-grid/package.json +++ b/samples/grids/grid/remote-paging-grid/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/remote-paging-grid/sandbox.config.json b/samples/grids/grid/remote-paging-grid/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/grid/remote-paging-grid/sandbox.config.json +++ b/samples/grids/grid/remote-paging-grid/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/grid/remote-paging-grid/src/index.css b/samples/grids/grid/remote-paging-grid/src/index.css index 8b42ec3ed2..0fe9368715 100644 --- a/samples/grids/grid/remote-paging-grid/src/index.css +++ b/samples/grids/grid/remote-paging-grid/src/index.css @@ -1,3 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/grid/remote-paging-grid/src/index.ts b/samples/grids/grid/remote-paging-grid/src/index.ts index 476ad72872..148ed763e3 100644 --- a/samples/grids/grid/remote-paging-grid/src/index.ts +++ b/samples/grids/grid/remote-paging-grid/src/index.ts @@ -4,7 +4,6 @@ import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import "./index.css"; import { RemotePagingService } from './RemotePagingService'; - export class Sample { public data: any[] = []; @@ -30,11 +29,11 @@ export class Sample { this._totalRecordsCount = value; this.grid.totalRecords = value; } - + constructor() { this.pager = document.getElementById('paginator') as IgcPaginatorComponent; this.grid = document.getElementById('grid') as IgcGridComponent; - + this._bind = () => { this.remotePagingService.getDataLength().then((length) => { this.totalRecordsCount = length; @@ -57,7 +56,7 @@ export class Sample { this.page = page; const skip = this.page * this.perPage; const top = this.perPage; - + this.remotePagingService.getData(skip, top).then((data)=> { this.data = data; // Assign received data to this.data this.grid.isLoading = false; @@ -75,8 +74,7 @@ export class Sample { this.grid.data = this.data; } } - + } new Sample(); - \ No newline at end of file diff --git a/samples/grids/grid/remote-paging-grid/tsconfig.json b/samples/grids/grid/remote-paging-grid/tsconfig.json index a15284fdc2..de23257dd8 100644 --- a/samples/grids/grid/remote-paging-grid/tsconfig.json +++ b/samples/grids/grid/remote-paging-grid/tsconfig.json @@ -1,34 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/row-adding/package.json b/samples/grids/grid/row-adding/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/row-adding/package.json +++ b/samples/grids/grid/row-adding/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-adding/tsconfig.json b/samples/grids/grid/row-adding/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/row-adding/tsconfig.json +++ b/samples/grids/grid/row-adding/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/row-classes/package.json b/samples/grids/grid/row-classes/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/row-classes/package.json +++ b/samples/grids/grid/row-classes/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-classes/tsconfig.json b/samples/grids/grid/row-classes/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/row-classes/tsconfig.json +++ b/samples/grids/grid/row-classes/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/row-drag-base/package.json b/samples/grids/grid/row-drag-base/package.json index b68931a64a..7b8e158ca4 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-drag-base/src/index.ts b/samples/grids/grid/row-drag-base/src/index.ts index f1808323fd..dae3df54cb 100644 --- a/samples/grids/grid/row-drag-base/src/index.ts +++ b/samples/grids/grid/row-drag-base/src/index.ts @@ -1,28 +1,28 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { CustomersData } from './CustomersData'; - import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; + export class Sample { private leftGrid: IgcGridComponent; private rightGrid: IgcGridComponent; - private leftGridData: CustomersData; + private leftGridData: CustomersData; private _bind: () => void; constructor() { - var leftGrid = this.leftGrid = document.getElementById('leftGrid') as IgcGridComponent; - var rightGrid = this.rightGrid = document.getElementById('rightGrid') as IgcGridComponent; - + var leftGrid = this.leftGrid = document.getElementById('leftGrid') as IgcGridComponent; + var rightGrid = this.rightGrid = document.getElementById('rightGrid') as IgcGridComponent; + this.onGridRowDragEnd = this.onGridRowDragEnd.bind(this); - this.leftGridData = new CustomersData(); + this.leftGridData = new CustomersData(); this._bind = () => { - leftGrid.data = this.leftGridData; + leftGrid.data = this.leftGridData; rightGrid.data = []; leftGrid.addEventListener("rowDragEnd", this.onGridRowDragEnd); } diff --git a/samples/grids/grid/row-drag-base/tsconfig.json b/samples/grids/grid/row-drag-base/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/grid/row-drag-base/tsconfig.json +++ b/samples/grids/grid/row-drag-base/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/row-editing-options/package.json b/samples/grids/grid/row-editing-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/row-editing-options/package.json +++ b/samples/grids/grid/row-editing-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-editing-options/tsconfig.json b/samples/grids/grid/row-editing-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/row-editing-options/tsconfig.json +++ b/samples/grids/grid/row-editing-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/row-editing-style/package.json b/samples/grids/grid/row-editing-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/row-editing-style/package.json +++ b/samples/grids/grid/row-editing-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-editing-style/tsconfig.json b/samples/grids/grid/row-editing-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/row-editing-style/tsconfig.json +++ b/samples/grids/grid/row-editing-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/row-paging-basic/package.json b/samples/grids/grid/row-paging-basic/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/row-paging-basic/package.json +++ b/samples/grids/grid/row-paging-basic/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-paging-basic/tsconfig.json b/samples/grids/grid/row-paging-basic/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/row-paging-basic/tsconfig.json +++ b/samples/grids/grid/row-paging-basic/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/row-paging-options/package.json b/samples/grids/grid/row-paging-options/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/row-paging-options/package.json +++ b/samples/grids/grid/row-paging-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-paging-options/tsconfig.json b/samples/grids/grid/row-paging-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/row-paging-options/tsconfig.json +++ b/samples/grids/grid/row-paging-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/row-pinning-drag/package.json b/samples/grids/grid/row-pinning-drag/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/row-pinning-drag/package.json +++ b/samples/grids/grid/row-pinning-drag/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-pinning-drag/tsconfig.json b/samples/grids/grid/row-pinning-drag/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/row-pinning-drag/tsconfig.json +++ b/samples/grids/grid/row-pinning-drag/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/row-pinning-extra-column/package.json b/samples/grids/grid/row-pinning-extra-column/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/row-pinning-extra-column/package.json +++ b/samples/grids/grid/row-pinning-extra-column/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-pinning-extra-column/tsconfig.json b/samples/grids/grid/row-pinning-extra-column/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/row-pinning-extra-column/tsconfig.json +++ b/samples/grids/grid/row-pinning-extra-column/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/row-pinning-options/package.json b/samples/grids/grid/row-pinning-options/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/row-pinning-options/package.json +++ b/samples/grids/grid/row-pinning-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-pinning-options/tsconfig.json b/samples/grids/grid/row-pinning-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/row-pinning-options/tsconfig.json +++ b/samples/grids/grid/row-pinning-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/row-pinning-style/package.json b/samples/grids/grid/row-pinning-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/row-pinning-style/package.json +++ b/samples/grids/grid/row-pinning-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-pinning-style/tsconfig.json b/samples/grids/grid/row-pinning-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/row-pinning-style/tsconfig.json +++ b/samples/grids/grid/row-pinning-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/row-reorder/package.json b/samples/grids/grid/row-reorder/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/row-reorder/package.json +++ b/samples/grids/grid/row-reorder/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-reorder/tsconfig.json b/samples/grids/grid/row-reorder/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/row-reorder/tsconfig.json +++ b/samples/grids/grid/row-reorder/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/row-selection-mode/package.json b/samples/grids/grid/row-selection-mode/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/row-selection-mode/package.json +++ b/samples/grids/grid/row-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-selection-mode/tsconfig.json b/samples/grids/grid/row-selection-mode/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/row-selection-mode/tsconfig.json +++ b/samples/grids/grid/row-selection-mode/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/row-selection-template-excel/package.json b/samples/grids/grid/row-selection-template-excel/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/row-selection-template-excel/package.json +++ b/samples/grids/grid/row-selection-template-excel/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-selection-template-excel/tsconfig.json b/samples/grids/grid/row-selection-template-excel/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/row-selection-template-excel/tsconfig.json +++ b/samples/grids/grid/row-selection-template-excel/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/row-selection-template-numbers/package.json b/samples/grids/grid/row-selection-template-numbers/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/row-selection-template-numbers/package.json +++ b/samples/grids/grid/row-selection-template-numbers/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-selection-template-numbers/tsconfig.json b/samples/grids/grid/row-selection-template-numbers/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/row-selection-template-numbers/tsconfig.json +++ b/samples/grids/grid/row-selection-template-numbers/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/row-styles/package.json b/samples/grids/grid/row-styles/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/grid/row-styles/package.json +++ b/samples/grids/grid/row-styles/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-styles/tsconfig.json b/samples/grids/grid/row-styles/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/row-styles/tsconfig.json +++ b/samples/grids/grid/row-styles/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/state-persistence-about/package.json b/samples/grids/grid/state-persistence-about/package.json index d3b1f66218..bad35e1865 100644 --- a/samples/grids/grid/state-persistence-about/package.json +++ b/samples/grids/grid/state-persistence-about/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/state-persistence-about/src/index.ts b/samples/grids/grid/state-persistence-about/src/index.ts index 5bdb652214..28d8d133d7 100644 --- a/samples/grids/grid/state-persistence-about/src/index.ts +++ b/samples/grids/grid/state-persistence-about/src/index.ts @@ -8,7 +8,7 @@ export class Sample { constructor() { var backBtn = document.getElementById("backBtn") as IgcButtonComponent; - + this._bind = () => { backBtn.addEventListener("click", () => { window.location.replace("./grids/grid/state-persistence-main");}); } diff --git a/samples/grids/grid/state-persistence-about/tsconfig.json b/samples/grids/grid/state-persistence-about/tsconfig.json index 2c74e00627..de23257dd8 100644 --- a/samples/grids/grid/state-persistence-about/tsconfig.json +++ b/samples/grids/grid/state-persistence-about/tsconfig.json @@ -1,34 +1,14 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "resolveJsonModule": 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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/state-persistence-about/webpack.config.js b/samples/grids/grid/state-persistence-about/webpack.config.js index 4f82e885b8..9d11a6155c 100644 --- a/samples/grids/grid/state-persistence-about/webpack.config.js +++ b/samples/grids/grid/state-persistence-about/webpack.config.js @@ -35,7 +35,7 @@ module.exports = env => { ] : path.resolve(__dirname, 'src'), devtool: isProd ? false : 'source-map', output: { - filename: '[name].[fullhash].bundle.js', + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', globalObject: 'this', path: path.resolve(__dirname, 'dist'), }, @@ -96,8 +96,8 @@ module.exports = env => { 'process.env.NODE_ENV': JSON.stringify(nodeEnv) }), new HtmlWebpackPlugin({ - title: 'index-cs', - template: 'index.html', + title: 'for-cs', + template: 'index.html' }), new ForkTsCheckerWebpackPlugin() ] diff --git a/samples/grids/grid/state-persistence-main/package.json b/samples/grids/grid/state-persistence-main/package.json index d3b1f66218..bad35e1865 100644 --- a/samples/grids/grid/state-persistence-main/package.json +++ b/samples/grids/grid/state-persistence-main/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/state-persistence-main/src/index.css b/samples/grids/grid/state-persistence-main/src/index.css index 9e0f296aa9..0fe9368715 100644 --- a/samples/grids/grid/state-persistence-main/src/index.css +++ b/samples/grids/grid/state-persistence-main/src/index.css @@ -1,11 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -.horizontal { - gap: 10px; - flex-basis: fit-content; - flex-wrap: wrap; -} -.sampleContainer { - padding: 0.5rem -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/grid/state-persistence-main/src/index.ts b/samples/grids/grid/state-persistence-main/src/index.ts index f37ae6f5bc..2c6aab0088 100644 --- a/samples/grids/grid/state-persistence-main/src/index.ts +++ b/samples/grids/grid/state-persistence-main/src/index.ts @@ -62,7 +62,6 @@ export class Sample { grid.filterMode = 'excelStyleFilter'; grid.columnSelection = 'multiple'; grid.rowSelection = 'multiple'; - grid.addEventListener("columnInit", (ev: any) => { this.onColumnInit(ev); }); saveStateBtn.addEventListener('click', (ev: any) => { this.saveGridState(); }); restoreStateBtn.addEventListener('click', (ev: any) => { this.restoreGridState(); }); @@ -76,9 +75,9 @@ export class Sample { cb.addEventListener("igcChange", (ev: CustomEvent) => { this.onChange(ev, cb.id); }); }); - window.addEventListener("load", async () => { + window.addEventListener("load", async () => { await this.columnsLoaded; - this.restoreGridState(); + this.restoreGridState(); }); window.addEventListener("beforeunload", () => { this.saveGridState(); }); } @@ -135,7 +134,7 @@ export class Sample { window.location.reload(); } - private onColumnInit(event: any) { + private onColumnInit(event: any) { if(event.detail.index === this.grid.columns.length - 1) { this.columnsLoaded = new Promise((resolve) => resolve()); } diff --git a/samples/grids/grid/state-persistence-main/tsconfig.json b/samples/grids/grid/state-persistence-main/tsconfig.json index 2c74e00627..de23257dd8 100644 --- a/samples/grids/grid/state-persistence-main/tsconfig.json +++ b/samples/grids/grid/state-persistence-main/tsconfig.json @@ -1,34 +1,14 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "resolveJsonModule": 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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/state-persistence-main/webpack.config.js b/samples/grids/grid/state-persistence-main/webpack.config.js index 4f82e885b8..9d11a6155c 100644 --- a/samples/grids/grid/state-persistence-main/webpack.config.js +++ b/samples/grids/grid/state-persistence-main/webpack.config.js @@ -35,7 +35,7 @@ module.exports = env => { ] : path.resolve(__dirname, 'src'), devtool: isProd ? false : 'source-map', output: { - filename: '[name].[fullhash].bundle.js', + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', globalObject: 'this', path: path.resolve(__dirname, 'dist'), }, @@ -96,8 +96,8 @@ module.exports = env => { 'process.env.NODE_ENV': JSON.stringify(nodeEnv) }), new HtmlWebpackPlugin({ - title: 'index-cs', - template: 'index.html', + title: 'for-cs', + template: 'index.html' }), new ForkTsCheckerWebpackPlugin() ] diff --git a/samples/grids/grid/styling-custom-CSS/package.json b/samples/grids/grid/styling-custom-CSS/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/styling-custom-CSS/package.json +++ b/samples/grids/grid/styling-custom-CSS/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/styling-custom-CSS/tsconfig.json b/samples/grids/grid/styling-custom-CSS/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/styling-custom-CSS/tsconfig.json +++ b/samples/grids/grid/styling-custom-CSS/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/toolbar-sample-1/package.json b/samples/grids/grid/toolbar-sample-1/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/toolbar-sample-1/package.json +++ b/samples/grids/grid/toolbar-sample-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-sample-1/tsconfig.json b/samples/grids/grid/toolbar-sample-1/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/toolbar-sample-1/tsconfig.json +++ b/samples/grids/grid/toolbar-sample-1/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/toolbar-sample-2/package.json b/samples/grids/grid/toolbar-sample-2/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/toolbar-sample-2/package.json +++ b/samples/grids/grid/toolbar-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-sample-2/tsconfig.json b/samples/grids/grid/toolbar-sample-2/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/toolbar-sample-2/tsconfig.json +++ b/samples/grids/grid/toolbar-sample-2/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/toolbar-sample-3/package.json b/samples/grids/grid/toolbar-sample-3/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/toolbar-sample-3/package.json +++ b/samples/grids/grid/toolbar-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-sample-3/tsconfig.json b/samples/grids/grid/toolbar-sample-3/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/toolbar-sample-3/tsconfig.json +++ b/samples/grids/grid/toolbar-sample-3/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/grid/toolbar-sample-4/package.json b/samples/grids/grid/toolbar-sample-4/package.json index b68931a64a..7b8e158ca4 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-sample-4/sandbox.config.json b/samples/grids/grid/toolbar-sample-4/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/grid/toolbar-sample-4/sandbox.config.json +++ b/samples/grids/grid/toolbar-sample-4/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/grid/toolbar-sample-4/src/index.css b/samples/grids/grid/toolbar-sample-4/src/index.css index 8b42ec3ed2..0fe9368715 100644 --- a/samples/grids/grid/toolbar-sample-4/src/index.css +++ b/samples/grids/grid/toolbar-sample-4/src/index.css @@ -1,3 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/grid/toolbar-sample-4/src/index.ts b/samples/grids/grid/toolbar-sample-4/src/index.ts index 0df5373763..e137cb8988 100644 --- a/samples/grids/grid/toolbar-sample-4/src/index.ts +++ b/samples/grids/grid/toolbar-sample-4/src/index.ts @@ -4,9 +4,9 @@ import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { AthletesDataItem, AthletesData } from './AthletesData'; import { defineComponents, IgcButtonComponent, IgcIconComponent, registerIconFromText } from "igniteui-webcomponents"; import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; - import "./index.css"; + defineComponents(IgcButtonComponent, IgcIconComponent); export class Sample { diff --git a/samples/grids/grid/toolbar-sample-4/tsconfig.json b/samples/grids/grid/toolbar-sample-4/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/grid/toolbar-sample-4/tsconfig.json +++ b/samples/grids/grid/toolbar-sample-4/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/grid/toolbar-style/package.json b/samples/grids/grid/toolbar-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/grid/toolbar-style/package.json +++ b/samples/grids/grid/toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-style/tsconfig.json b/samples/grids/grid/toolbar-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/grid/toolbar-style/tsconfig.json +++ b/samples/grids/grid/toolbar-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/action-strip/package.json b/samples/grids/hierarchical-grid/action-strip/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/action-strip/package.json +++ b/samples/grids/hierarchical-grid/action-strip/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/action-strip/tsconfig.json b/samples/grids/hierarchical-grid/action-strip/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/action-strip/tsconfig.json +++ b/samples/grids/hierarchical-grid/action-strip/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/advanced-filtering-options/tsconfig.json b/samples/grids/hierarchical-grid/advanced-filtering-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/tsconfig.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/tsconfig.json b/samples/grids/hierarchical-grid/advanced-filtering-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/package.json b/samples/grids/hierarchical-grid/cell-editing-sample/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-sample/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/tsconfig.json b/samples/grids/hierarchical-grid/cell-editing-sample/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/tsconfig.json +++ b/samples/grids/hierarchical-grid/cell-editing-sample/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/package.json b/samples/grids/hierarchical-grid/cell-editing-styling/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/tsconfig.json b/samples/grids/hierarchical-grid/cell-editing-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/tsconfig.json +++ b/samples/grids/hierarchical-grid/cell-editing-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/package.json b/samples/grids/hierarchical-grid/cell-selection-mode/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/tsconfig.json b/samples/grids/hierarchical-grid/cell-selection-mode/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/tsconfig.json +++ b/samples/grids/hierarchical-grid/cell-selection-mode/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/package.json b/samples/grids/hierarchical-grid/cell-selection-overview/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-overview/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/tsconfig.json b/samples/grids/hierarchical-grid/cell-selection-overview/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/tsconfig.json +++ b/samples/grids/hierarchical-grid/cell-selection-overview/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/cell-selection-style/package.json b/samples/grids/hierarchical-grid/cell-selection-style/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-style/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/cell-selection-style/tsconfig.json b/samples/grids/hierarchical-grid/cell-selection-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/cell-selection-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/cell-selection-styling/package.json b/samples/grids/hierarchical-grid/cell-selection-styling/package.json index d3b1f66218..bad35e1865 100644 --- a/samples/grids/hierarchical-grid/cell-selection-styling/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-styling/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/cell-selection-styling/sandbox.config.json b/samples/grids/hierarchical-grid/cell-selection-styling/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/hierarchical-grid/cell-selection-styling/sandbox.config.json +++ b/samples/grids/hierarchical-grid/cell-selection-styling/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/cell-selection-styling/src/index.css b/samples/grids/hierarchical-grid/cell-selection-styling/src/index.css index ca219500af..0fe9368715 100644 --- a/samples/grids/hierarchical-grid/cell-selection-styling/src/index.css +++ b/samples/grids/hierarchical-grid/cell-selection-styling/src/index.css @@ -1,9 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -#hGrid { - --ig-grid--cell-selected-text-color: #FFFFFF; - --ig-grid--cell-active-border-color: #0578c4; - --ig-grid--cell-selected-background: #0578c4; -} - +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/cell-selection-styling/src/index.ts b/samples/grids/hierarchical-grid/cell-selection-styling/src/index.ts index aba0611ffe..766786e5f3 100644 --- a/samples/grids/hierarchical-grid/cell-selection-styling/src/index.ts +++ b/samples/grids/hierarchical-grid/cell-selection-styling/src/index.ts @@ -4,11 +4,11 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebHierarchica import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; - import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; + defineAllComponents(); import "./index.css"; @@ -35,7 +35,6 @@ export class Sample { hGrid.data = this.singersData; } this._bind(); - } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/cell-selection-styling/tsconfig.json b/samples/grids/hierarchical-grid/cell-selection-styling/tsconfig.json index a15284fdc2..de23257dd8 100644 --- a/samples/grids/hierarchical-grid/cell-selection-styling/tsconfig.json +++ b/samples/grids/hierarchical-grid/cell-selection-styling/tsconfig.json @@ -1,34 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-auto-sizing/package.json b/samples/grids/hierarchical-grid/column-auto-sizing/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/hierarchical-grid/column-auto-sizing/package.json +++ b/samples/grids/hierarchical-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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-auto-sizing/sandbox.config.json b/samples/grids/hierarchical-grid/column-auto-sizing/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/hierarchical-grid/column-auto-sizing/sandbox.config.json +++ b/samples/grids/hierarchical-grid/column-auto-sizing/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/column-auto-sizing/src/index.css b/samples/grids/hierarchical-grid/column-auto-sizing/src/index.css index 8b42ec3ed2..0fe9368715 100644 --- a/samples/grids/hierarchical-grid/column-auto-sizing/src/index.css +++ b/samples/grids/hierarchical-grid/column-auto-sizing/src/index.css @@ -1,3 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/column-auto-sizing/src/index.ts b/samples/grids/hierarchical-grid/column-auto-sizing/src/index.ts index cc4eebf926..4339d194e4 100644 --- a/samples/grids/hierarchical-grid/column-auto-sizing/src/index.ts +++ b/samples/grids/hierarchical-grid/column-auto-sizing/src/index.ts @@ -1,11 +1,11 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import HierarchicalCustomers from './HierarchicalCustomers.json'; - import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; - import "./index.css"; + + export class Sample { private hierarchicalGrid1: IgcHierarchicalGridComponent @@ -18,7 +18,6 @@ export class Sample { hierarchicalGrid1.data = this.hierarchicalCustomers; } this._bind(); - } private _hierarchicalCustomers: any[] = HierarchicalCustomers; diff --git a/samples/grids/hierarchical-grid/column-auto-sizing/tsconfig.json b/samples/grids/hierarchical-grid/column-auto-sizing/tsconfig.json index a15284fdc2..de23257dd8 100644 --- a/samples/grids/hierarchical-grid/column-auto-sizing/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-auto-sizing/tsconfig.json @@ -1,34 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/tsconfig.json b/samples/grids/hierarchical-grid/column-collapsible-groups/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/tsconfig.json b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar/tsconfig.json b/samples/grids/hierarchical-grid/column-hiding-toolbar/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/column-moving-options/package.json b/samples/grids/hierarchical-grid/column-moving-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/package.json +++ b/samples/grids/hierarchical-grid/column-moving-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-moving-options/tsconfig.json b/samples/grids/hierarchical-grid/column-moving-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-moving-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/column-moving-styles/package.json b/samples/grids/hierarchical-grid/column-moving-styles/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/package.json +++ b/samples/grids/hierarchical-grid/column-moving-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-moving-styles/tsconfig.json b/samples/grids/hierarchical-grid/column-moving-styles/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-moving-styles/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/column-pinning-options/package.json b/samples/grids/hierarchical-grid/column-pinning-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-pinning-options/tsconfig.json b/samples/grids/hierarchical-grid/column-pinning-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-pinning-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-pinning-right-side/tsconfig.json b/samples/grids/hierarchical-grid/column-pinning-right-side/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/package.json b/samples/grids/hierarchical-grid/column-pinning-styles/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/tsconfig.json b/samples/grids/hierarchical-grid/column-pinning-styles/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-pinning-styles/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/column-pinning/package.json b/samples/grids/hierarchical-grid/column-pinning/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-pinning/package.json +++ b/samples/grids/hierarchical-grid/column-pinning/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-pinning/tsconfig.json b/samples/grids/hierarchical-grid/column-pinning/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/column-pinning/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-pinning/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/column-resize-styling/package.json b/samples/grids/hierarchical-grid/column-resize-styling/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/package.json +++ b/samples/grids/hierarchical-grid/column-resize-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-resize-styling/tsconfig.json b/samples/grids/hierarchical-grid/column-resize-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-resize-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/column-resizing/package.json b/samples/grids/hierarchical-grid/column-resizing/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-resizing/package.json +++ b/samples/grids/hierarchical-grid/column-resizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-resizing/tsconfig.json b/samples/grids/hierarchical-grid/column-resizing/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/column-resizing/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-resizing/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/column-selection-group/package.json b/samples/grids/hierarchical-grid/column-selection-group/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/package.json +++ b/samples/grids/hierarchical-grid/column-selection-group/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-selection-group/tsconfig.json b/samples/grids/hierarchical-grid/column-selection-group/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-selection-group/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/column-selection-mode/package.json b/samples/grids/hierarchical-grid/column-selection-mode/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/column-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-selection-mode/tsconfig.json b/samples/grids/hierarchical-grid/column-selection-mode/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-selection-mode/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/column-selection-styles/package.json b/samples/grids/hierarchical-grid/column-selection-styles/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/package.json +++ b/samples/grids/hierarchical-grid/column-selection-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-selection-styles/tsconfig.json b/samples/grids/hierarchical-grid/column-selection-styles/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-selection-styles/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-sorting-indicators/tsconfig.json b/samples/grids/hierarchical-grid/column-sorting-indicators/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/column-sorting-options/package.json b/samples/grids/hierarchical-grid/column-sorting-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-sorting-options/tsconfig.json b/samples/grids/hierarchical-grid/column-sorting-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-sorting-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/column-sorting-style/package.json b/samples/grids/hierarchical-grid/column-sorting-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-sorting-style/tsconfig.json b/samples/grids/hierarchical-grid/column-sorting-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-sorting-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-1/tsconfig.json b/samples/grids/hierarchical-grid/conditional-cell-style-1/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/tsconfig.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-2/tsconfig.json b/samples/grids/hierarchical-grid/conditional-cell-style-2/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/tsconfig.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/conditional-row-selectors/tsconfig.json b/samples/grids/hierarchical-grid/conditional-row-selectors/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/tsconfig.json +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/custom-filtering/package.json b/samples/grids/hierarchical-grid/custom-filtering/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/package.json +++ b/samples/grids/hierarchical-grid/custom-filtering/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/custom-filtering/tsconfig.json b/samples/grids/hierarchical-grid/custom-filtering/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/tsconfig.json +++ b/samples/grids/hierarchical-grid/custom-filtering/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json +++ b/samples/grids/hierarchical-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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/data-exporting-indicator/sandbox.config.json b/samples/grids/hierarchical-grid/data-exporting-indicator/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/hierarchical-grid/data-exporting-indicator/sandbox.config.json +++ b/samples/grids/hierarchical-grid/data-exporting-indicator/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/data-exporting-indicator/src/index.ts b/samples/grids/hierarchical-grid/data-exporting-indicator/src/index.ts index e9752c05e4..26789de728 100644 --- a/samples/grids/hierarchical-grid/data-exporting-indicator/src/index.ts +++ b/samples/grids/hierarchical-grid/data-exporting-indicator/src/index.ts @@ -1,10 +1,10 @@ import { IgcGridToolbarComponent, IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import { defineComponents, IgcButtonComponent } from 'igniteui-webcomponents'; import { SingersData } from './SingersData'; - import 'igniteui-webcomponents-grids/grids/combined'; import 'igniteui-webcomponents-grids/grids/themes/light/bootstrap.css'; + defineComponents(IgcButtonComponent); export class Sample { diff --git a/samples/grids/hierarchical-grid/data-exporting-indicator/tsconfig.json b/samples/grids/hierarchical-grid/data-exporting-indicator/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/hierarchical-grid/data-exporting-indicator/tsconfig.json +++ b/samples/grids/hierarchical-grid/data-exporting-indicator/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json +++ b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/data-performance-virtualization/sandbox.config.json b/samples/grids/hierarchical-grid/data-performance-virtualization/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/hierarchical-grid/data-performance-virtualization/sandbox.config.json +++ b/samples/grids/hierarchical-grid/data-performance-virtualization/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/data-performance-virtualization/src/index.ts b/samples/grids/hierarchical-grid/data-performance-virtualization/src/index.ts index 91e4199369..21f54dda90 100644 --- a/samples/grids/hierarchical-grid/data-performance-virtualization/src/index.ts +++ b/samples/grids/hierarchical-grid/data-performance-virtualization/src/index.ts @@ -1,9 +1,9 @@ import { IgcGridCreatedEventArgs, IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import { getData } from './RemoteService'; - import 'igniteui-webcomponents-grids/grids/combined'; import 'igniteui-webcomponents-grids/grids/themes/light/bootstrap.css'; + export class Sample { constructor() { const hierarchicalGrid = document.getElementById("hGrid") as IgcHierarchicalGridComponent; @@ -19,7 +19,6 @@ export class Sample { }); hierarchicalGrid.isLoading = true; - getData({ parentID: null, rootLevel: true, key: "Customers" }).then((data: any) => { hierarchicalGrid.isLoading = false; hierarchicalGrid.data = data; @@ -37,7 +36,7 @@ export class Sample { }; context.grid.isLoading = true; - + getData(dataState).then((data: any[]) => { context.grid.isLoading = false; context.grid.data = data; diff --git a/samples/grids/hierarchical-grid/data-performance-virtualization/tsconfig.json b/samples/grids/hierarchical-grid/data-performance-virtualization/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/hierarchical-grid/data-performance-virtualization/tsconfig.json +++ b/samples/grids/hierarchical-grid/data-performance-virtualization/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/data-summary-formatter/package.json b/samples/grids/hierarchical-grid/data-summary-formatter/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/package.json +++ b/samples/grids/hierarchical-grid/data-summary-formatter/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/data-summary-formatter/tsconfig.json b/samples/grids/hierarchical-grid/data-summary-formatter/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/tsconfig.json +++ b/samples/grids/hierarchical-grid/data-summary-formatter/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/data-summary-options-styling/tsconfig.json b/samples/grids/hierarchical-grid/data-summary-options-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/tsconfig.json +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/data-summary-options/package.json b/samples/grids/hierarchical-grid/data-summary-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/data-summary-options/tsconfig.json b/samples/grids/hierarchical-grid/data-summary-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/tsconfig.json +++ b/samples/grids/hierarchical-grid/data-summary-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/data-summary-template/package.json b/samples/grids/hierarchical-grid/data-summary-template/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/package.json +++ b/samples/grids/hierarchical-grid/data-summary-template/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/data-summary-template/tsconfig.json b/samples/grids/hierarchical-grid/data-summary-template/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/tsconfig.json +++ b/samples/grids/hierarchical-grid/data-summary-template/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/editing-columns/package.json b/samples/grids/hierarchical-grid/editing-columns/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/editing-columns/package.json +++ b/samples/grids/hierarchical-grid/editing-columns/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/editing-columns/tsconfig.json b/samples/grids/hierarchical-grid/editing-columns/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/editing-columns/tsconfig.json +++ b/samples/grids/hierarchical-grid/editing-columns/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/editing-events/package.json b/samples/grids/hierarchical-grid/editing-events/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/editing-events/package.json +++ b/samples/grids/hierarchical-grid/editing-events/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/editing-events/tsconfig.json b/samples/grids/hierarchical-grid/editing-events/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/editing-events/tsconfig.json +++ b/samples/grids/hierarchical-grid/editing-events/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/package.json b/samples/grids/hierarchical-grid/editing-lifecycle/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/package.json +++ b/samples/grids/hierarchical-grid/editing-lifecycle/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/tsconfig.json b/samples/grids/hierarchical-grid/editing-lifecycle/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/tsconfig.json +++ b/samples/grids/hierarchical-grid/editing-lifecycle/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/excel-exporting/package.json b/samples/grids/hierarchical-grid/excel-exporting/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/package.json +++ b/samples/grids/hierarchical-grid/excel-exporting/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/excel-exporting/tsconfig.json b/samples/grids/hierarchical-grid/excel-exporting/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/tsconfig.json +++ b/samples/grids/hierarchical-grid/excel-exporting/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/tsconfig.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/tsconfig.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/tsconfig.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/tsconfig.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/tsconfig.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/tsconfig.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-style/tsconfig.json b/samples/grids/hierarchical-grid/excel-style-filtering-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/filtering-options/package.json b/samples/grids/hierarchical-grid/filtering-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/filtering-options/package.json +++ b/samples/grids/hierarchical-grid/filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/filtering-options/tsconfig.json b/samples/grids/hierarchical-grid/filtering-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/filtering-options/tsconfig.json +++ b/samples/grids/hierarchical-grid/filtering-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/filtering-style/package.json b/samples/grids/hierarchical-grid/filtering-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/filtering-style/package.json +++ b/samples/grids/hierarchical-grid/filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/filtering-style/tsconfig.json b/samples/grids/hierarchical-grid/filtering-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/filtering-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/filtering-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-options/tsconfig.json b/samples/grids/hierarchical-grid/hierarchical-grid-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/tsconfig.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/tsconfig.json b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-styling/tsconfig.json b/samples/grids/hierarchical-grid/hierarchical-grid-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/tsconfig.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/layout-display-density/package.json b/samples/grids/hierarchical-grid/layout-display-density/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/package.json +++ b/samples/grids/hierarchical-grid/layout-display-density/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/layout-display-density/tsconfig.json b/samples/grids/hierarchical-grid/layout-display-density/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/tsconfig.json +++ b/samples/grids/hierarchical-grid/layout-display-density/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/multi-column-headers-export/tsconfig.json b/samples/grids/hierarchical-grid/multi-column-headers-export/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/tsconfig.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/tsconfig.json b/samples/grids/hierarchical-grid/multi-column-headers-overview/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/tsconfig.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/multi-column-headers-styling/tsconfig.json b/samples/grids/hierarchical-grid/multi-column-headers-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/tsconfig.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/multi-column-headers-template/tsconfig.json b/samples/grids/hierarchical-grid/multi-column-headers-template/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/tsconfig.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/overview/package.json b/samples/grids/hierarchical-grid/overview/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/overview/package.json +++ b/samples/grids/hierarchical-grid/overview/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/overview/tsconfig.json b/samples/grids/hierarchical-grid/overview/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/overview/tsconfig.json +++ b/samples/grids/hierarchical-grid/overview/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/remote-paging-sample/ReadMe.md b/samples/grids/hierarchical-grid/remote-paging-sample/ReadMe.md index e8a01b31fb..80852db77b 100644 --- a/samples/grids/hierarchical-grid/remote-paging-sample/ReadMe.md +++ b/samples/grids/hierarchical-grid/remote-paging-sample/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Data Performance Virtualization feature using [Hierarchical Grid](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of Remote Paging Sample feature using [Hierarchical Grid](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/grids/hierarchical-grid/data-performance-virtualization +cd ./samples/grids/hierarchical-grid/remote-paging-sample ``` open above folder in VS Code or type: diff --git a/samples/grids/hierarchical-grid/remote-paging-sample/package.json b/samples/grids/hierarchical-grid/remote-paging-sample/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/hierarchical-grid/remote-paging-sample/package.json +++ b/samples/grids/hierarchical-grid/remote-paging-sample/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/remote-paging-sample/sandbox.config.json b/samples/grids/hierarchical-grid/remote-paging-sample/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/hierarchical-grid/remote-paging-sample/sandbox.config.json +++ b/samples/grids/hierarchical-grid/remote-paging-sample/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/remote-paging-sample/src/index.ts b/samples/grids/hierarchical-grid/remote-paging-sample/src/index.ts index 3ddae7ad61..ab99da0fb7 100644 --- a/samples/grids/hierarchical-grid/remote-paging-sample/src/index.ts +++ b/samples/grids/hierarchical-grid/remote-paging-sample/src/index.ts @@ -1,10 +1,10 @@ import { IgcGridCreatedEventArgs, IgcHierarchicalGridComponent, IgcPaginatorComponent, IgcRowIslandComponent } from 'igniteui-webcomponents-grids/grids'; - import 'igniteui-webcomponents-grids/grids/combined'; import 'igniteui-webcomponents-grids/grids/themes/light/bootstrap.css'; import { html } from 'lit-html'; import { RemotePagingService } from './RemoteService'; + export class Sample { public data: any[] = []; @@ -13,10 +13,11 @@ export class Sample { public pager: IgcPaginatorComponent; public hierarchicalGrid: IgcHierarchicalGridComponent; private remoteService: RemotePagingService = new RemotePagingService(); - + public get perPage(): number { return this.pager?.perPage || 10; } + public set perPage(val: number) { this._perPage = val; this.paginate(val); @@ -48,7 +49,6 @@ export class Sample { }); this.pager.addEventListener("pageChange", ((args: CustomEvent) => { this.paginate(args.detail);}) as EventListener); - ordersRowIsland.addEventListener("gridCreated", (event: any) => { this.gridCreated(event, "Customers"); @@ -94,7 +94,7 @@ export class Sample { if(length !== undefined) { this.pager.totalRecords = length; } - + this.remoteService.getData(dataState, this.page, this.perPage).then((data: any[]) => { context.grid.isLoading = false; context.grid.data = data; @@ -106,7 +106,6 @@ export class Sample { this.page = page; const skip = this.page * this.perPage; const top = this.perPage; - this.remoteService.getData({ parentID: null, rootLevel: true, key: 'Customers' }, skip, top).then((data:any)=> { this.data = data; // Assign received data to this.data this.hierarchicalGrid.isLoading = false; diff --git a/samples/grids/hierarchical-grid/remote-paging-sample/tsconfig.json b/samples/grids/hierarchical-grid/remote-paging-sample/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/hierarchical-grid/remote-paging-sample/tsconfig.json +++ b/samples/grids/hierarchical-grid/remote-paging-sample/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/row-adding/package.json b/samples/grids/hierarchical-grid/row-adding/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/row-adding/package.json +++ b/samples/grids/hierarchical-grid/row-adding/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-adding/tsconfig.json b/samples/grids/hierarchical-grid/row-adding/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/row-adding/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-adding/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/row-classes/package.json b/samples/grids/hierarchical-grid/row-classes/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/row-classes/package.json +++ b/samples/grids/hierarchical-grid/row-classes/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-classes/tsconfig.json b/samples/grids/hierarchical-grid/row-classes/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/row-classes/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-classes/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/row-drag-base/package.json b/samples/grids/hierarchical-grid/row-drag-base/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/package.json +++ b/samples/grids/hierarchical-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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-drag-base/sandbox.config.json b/samples/grids/hierarchical-grid/row-drag-base/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/sandbox.config.json +++ b/samples/grids/hierarchical-grid/row-drag-base/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/row-drag-base/src/index.css b/samples/grids/hierarchical-grid/row-drag-base/src/index.css index 8b42ec3ed2..0fe9368715 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/src/index.css +++ b/samples/grids/hierarchical-grid/row-drag-base/src/index.css @@ -1,3 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/row-drag-base/src/index.ts b/samples/grids/hierarchical-grid/row-drag-base/src/index.ts index d95962b8ee..1b04f944a9 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/src/index.ts +++ b/samples/grids/hierarchical-grid/row-drag-base/src/index.ts @@ -1,11 +1,11 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import { SingersDataItem, SingersDataItem_ToursItem, SingersDataItem_AlbumsItem, SingersDataItem_AlbumsItem_SongsItem, SingersData } from './SingersData'; - import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; - import "./index.css"; + + export class Sample { private hierarchicalGrid1: IgcHierarchicalGridComponent @@ -19,8 +19,8 @@ export class Sample { this._bind = () => { hierarchicalGrid1.data = this.singersData; this.hierarchicalGrid2.data = []; - this.hierarchicalGrid2.emptyGridMessage = "Drag and Drop a row from the left grid to this grid"; - hierarchicalGrid1.addEventListener("rowDragEnd", this.onGridRowDragEnd.bind(this)); + this.hierarchicalGrid2.emptyGridMessage = "Drag and Drop a row from the left grid to this grid"; + hierarchicalGrid1.addEventListener("rowDragEnd", this.onGridRowDragEnd.bind(this)); } this._bind(); } @@ -30,12 +30,12 @@ export class Sample { if (ghostElement != null) { - const dragElementPos = ghostElement.getBoundingClientRect(); + const dragElementPos = ghostElement.getBoundingClientRect(); - const gridPosition = this.hierarchicalGrid2.getBoundingClientRect(); + const gridPosition = this.hierarchicalGrid2.getBoundingClientRect(); const withinXBounds = dragElementPos.x >= gridPosition.x && dragElementPos.x <= gridPosition.x + gridPosition.width; const withinYBounds = dragElementPos.y >= gridPosition.y && dragElementPos.y <= gridPosition.y + gridPosition.height; - if (withinXBounds && withinYBounds) { + if (withinXBounds && withinYBounds) { this.hierarchicalGrid2.addRow(args.detail.dragData.data); } } diff --git a/samples/grids/hierarchical-grid/row-drag-base/tsconfig.json b/samples/grids/hierarchical-grid/row-drag-base/tsconfig.json index a15284fdc2..de23257dd8 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-drag-base/tsconfig.json @@ -1,34 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/row-editing-options/package.json b/samples/grids/hierarchical-grid/row-editing-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/package.json +++ b/samples/grids/hierarchical-grid/row-editing-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-editing-options/tsconfig.json b/samples/grids/hierarchical-grid/row-editing-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-editing-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/row-editing-style/package.json b/samples/grids/hierarchical-grid/row-editing-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/package.json +++ b/samples/grids/hierarchical-grid/row-editing-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-editing-style/tsconfig.json b/samples/grids/hierarchical-grid/row-editing-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-editing-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-pinning-extra-column/tsconfig.json b/samples/grids/hierarchical-grid/row-pinning-extra-column/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/row-pinning-options/package.json b/samples/grids/hierarchical-grid/row-pinning-options/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-pinning-options/tsconfig.json b/samples/grids/hierarchical-grid/row-pinning-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-pinning-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/row-pinning-style/package.json b/samples/grids/hierarchical-grid/row-pinning-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-pinning-style/tsconfig.json b/samples/grids/hierarchical-grid/row-pinning-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-pinning-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/row-reorder/package.json b/samples/grids/hierarchical-grid/row-reorder/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/row-reorder/package.json +++ b/samples/grids/hierarchical-grid/row-reorder/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-reorder/tsconfig.json b/samples/grids/hierarchical-grid/row-reorder/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/row-reorder/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-reorder/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/row-selection-mode/package.json b/samples/grids/hierarchical-grid/row-selection-mode/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/row-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-selection-mode/tsconfig.json b/samples/grids/hierarchical-grid/row-selection-mode/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-selection-mode/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-selection-template-numbers/tsconfig.json b/samples/grids/hierarchical-grid/row-selection-template-numbers/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/row-styles/package.json b/samples/grids/hierarchical-grid/row-styles/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/row-styles/package.json +++ b/samples/grids/hierarchical-grid/row-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-styles/tsconfig.json b/samples/grids/hierarchical-grid/row-styles/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/row-styles/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-styles/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/state-persistence-about/package.json b/samples/grids/hierarchical-grid/state-persistence-about/package.json index d3b1f66218..bad35e1865 100644 --- a/samples/grids/hierarchical-grid/state-persistence-about/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-about/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/state-persistence-about/src/index.ts b/samples/grids/hierarchical-grid/state-persistence-about/src/index.ts index f1f9527c25..3ab139af30 100644 --- a/samples/grids/hierarchical-grid/state-persistence-about/src/index.ts +++ b/samples/grids/hierarchical-grid/state-persistence-about/src/index.ts @@ -8,7 +8,7 @@ export class Sample { constructor() { var backBtn = document.getElementById("backBtn") as IgcButtonComponent; - + this._bind = () => { backBtn.addEventListener("click", () => { window.location.replace("./grids/hierarchical-grid/state-persistence-main");}); } diff --git a/samples/grids/hierarchical-grid/state-persistence-about/tsconfig.json b/samples/grids/hierarchical-grid/state-persistence-about/tsconfig.json index 2c74e00627..de23257dd8 100644 --- a/samples/grids/hierarchical-grid/state-persistence-about/tsconfig.json +++ b/samples/grids/hierarchical-grid/state-persistence-about/tsconfig.json @@ -1,34 +1,14 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "resolveJsonModule": 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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/state-persistence-about/webpack.config.js b/samples/grids/hierarchical-grid/state-persistence-about/webpack.config.js index 4f82e885b8..9d11a6155c 100644 --- a/samples/grids/hierarchical-grid/state-persistence-about/webpack.config.js +++ b/samples/grids/hierarchical-grid/state-persistence-about/webpack.config.js @@ -35,7 +35,7 @@ module.exports = env => { ] : path.resolve(__dirname, 'src'), devtool: isProd ? false : 'source-map', output: { - filename: '[name].[fullhash].bundle.js', + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', globalObject: 'this', path: path.resolve(__dirname, 'dist'), }, @@ -96,8 +96,8 @@ module.exports = env => { 'process.env.NODE_ENV': JSON.stringify(nodeEnv) }), new HtmlWebpackPlugin({ - title: 'index-cs', - template: 'index.html', + title: 'for-cs', + template: 'index.html' }), new ForkTsCheckerWebpackPlugin() ] diff --git a/samples/grids/hierarchical-grid/state-persistence-main/package.json b/samples/grids/hierarchical-grid/state-persistence-main/package.json index d3b1f66218..bad35e1865 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-main/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/state-persistence-main/src/index.css b/samples/grids/hierarchical-grid/state-persistence-main/src/index.css index 9e0f296aa9..0fe9368715 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/src/index.css +++ b/samples/grids/hierarchical-grid/state-persistence-main/src/index.css @@ -1,11 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -.horizontal { - gap: 10px; - flex-basis: fit-content; - flex-wrap: wrap; -} -.sampleContainer { - padding: 0.5rem -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/state-persistence-main/src/index.ts b/samples/grids/hierarchical-grid/state-persistence-main/src/index.ts index c55dc52365..199ccb3459 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/src/index.ts +++ b/samples/grids/hierarchical-grid/state-persistence-main/src/index.ts @@ -77,7 +77,6 @@ export class Sample { toursRowIsland.columnSelection = 'multiple'; toursRowIsland.rowSelection = 'multiple'; toursRowIsland.cellSelection = 'multiple'; - grid.addEventListener("columnInit", (ev: any) => { this.onColumnInit(ev); }); saveStateBtn.addEventListener('click', (ev: any) => { this.saveGridState(); }); restoreStateBtn.addEventListener('click', (ev: any) => { this.restoreGridState(); }); @@ -91,11 +90,10 @@ export class Sample { cb.addEventListener("igcChange", (ev: CustomEvent) => { this.onChange(ev, cb.id); }); }); - window.addEventListener("load", async () => { + window.addEventListener("load", async () => { await this.columnsLoaded; - this.restoreGridState(); + this.restoreGridState(); }); - window.addEventListener("beforeunload", () => { this.saveGridState(); }); } @@ -150,7 +148,7 @@ export class Sample { window.location.reload(); } - private onColumnInit(event: any) { + private onColumnInit(event: any) { if(event.detail.index === this.grid.columns.length - 1) { this.columnsLoaded = new Promise((resolve) => resolve()); } diff --git a/samples/grids/hierarchical-grid/state-persistence-main/tsconfig.json b/samples/grids/hierarchical-grid/state-persistence-main/tsconfig.json index 2c74e00627..de23257dd8 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/tsconfig.json +++ b/samples/grids/hierarchical-grid/state-persistence-main/tsconfig.json @@ -1,34 +1,14 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "resolveJsonModule": 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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/state-persistence-main/webpack.config.js b/samples/grids/hierarchical-grid/state-persistence-main/webpack.config.js index 4f82e885b8..9d11a6155c 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/webpack.config.js +++ b/samples/grids/hierarchical-grid/state-persistence-main/webpack.config.js @@ -35,7 +35,7 @@ module.exports = env => { ] : path.resolve(__dirname, 'src'), devtool: isProd ? false : 'source-map', output: { - filename: '[name].[fullhash].bundle.js', + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', globalObject: 'this', path: path.resolve(__dirname, 'dist'), }, @@ -96,8 +96,8 @@ module.exports = env => { 'process.env.NODE_ENV': JSON.stringify(nodeEnv) }), new HtmlWebpackPlugin({ - title: 'index-cs', - template: 'index.html', + title: 'for-cs', + template: 'index.html' }), new ForkTsCheckerWebpackPlugin() ] diff --git a/samples/grids/hierarchical-grid/toolbar-sample-1/package.json b/samples/grids/hierarchical-grid/toolbar-sample-1/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-1/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/toolbar-sample-1/tsconfig.json b/samples/grids/hierarchical-grid/toolbar-sample-1/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-1/tsconfig.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-1/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/toolbar-sample-2/package.json b/samples/grids/hierarchical-grid/toolbar-sample-2/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-2/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/toolbar-sample-2/tsconfig.json b/samples/grids/hierarchical-grid/toolbar-sample-2/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-2/tsconfig.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-2/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/toolbar-sample-3/tsconfig.json b/samples/grids/hierarchical-grid/toolbar-sample-3/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/tsconfig.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json +++ b/samples/grids/hierarchical-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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/toolbar-sample-4/sandbox.config.json b/samples/grids/hierarchical-grid/toolbar-sample-4/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-4/sandbox.config.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-4/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/toolbar-sample-4/src/index.ts b/samples/grids/hierarchical-grid/toolbar-sample-4/src/index.ts index c64fc7260e..9d3dcef324 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-4/src/index.ts +++ b/samples/grids/hierarchical-grid/toolbar-sample-4/src/index.ts @@ -2,10 +2,10 @@ import { IgcGridToolbarTemplateContext, IgcHierarchicalGridComponent, IgcRowIsla import { defineComponents, IgcButtonComponent, IgcIconComponent, registerIconFromText } from 'igniteui-webcomponents'; import { SingersData } from './SingersData'; import { html } from 'lit-html'; - import 'igniteui-webcomponents-grids/grids/combined'; import 'igniteui-webcomponents-grids/grids/themes/light/bootstrap.css'; + defineComponents(IgcButtonComponent, IgcIconComponent); const icon = ``; @@ -18,7 +18,7 @@ export class Sample { var hGrid1 = this.hGrid1 = document.getElementById('hGrid1') as IgcHierarchicalGridComponent; hGrid1.data = this.singersData; - + var rowIsland1 = document.getElementById('rowIsland1') as IgcRowIslandComponent; rowIsland1.toolbarTemplate = this.rowIslandToolbarTemplate; diff --git a/samples/grids/hierarchical-grid/toolbar-sample-4/tsconfig.json b/samples/grids/hierarchical-grid/toolbar-sample-4/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-4/tsconfig.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-4/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/toolbar-style/package.json b/samples/grids/hierarchical-grid/toolbar-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/toolbar-style/tsconfig.json b/samples/grids/hierarchical-grid/toolbar-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/toolbar-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/list/add-list-items/package.json b/samples/grids/list/add-list-items/package.json index c5e1ee3049..81f992a93b 100644 --- a/samples/grids/list/add-list-items/package.json +++ b/samples/grids/list/add-list-items/package.json @@ -24,7 +24,7 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.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 bffd17003a..4edf508b16 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/package.json +++ b/samples/grids/pivot-grid/aggregate-max-sales/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, 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 b4f51a3736..29196f5db4 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/src/PivotSalesData.ts +++ b/samples/grids/pivot-grid/aggregate-max-sales/src/PivotSalesData.ts @@ -36,7 +36,7 @@ export class PivotSalesData extends Array { Sales: 26440, COGS: 16185, Profit: 11255, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -52,7 +52,7 @@ export class PivotSalesData extends Array { Sales: 27440, COGS: 16185, Profit: 11255, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -68,7 +68,7 @@ export class PivotSalesData extends Array { Sales: 55240, COGS: 13210, Profit: 42030, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -84,7 +84,7 @@ export class PivotSalesData extends Array { Sales: 21960, COGS: 21780, Profit: 180, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -100,7 +100,7 @@ export class PivotSalesData extends Array { Sales: 10785, COGS: 8880, Profit: 1905, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -116,7 +116,7 @@ export class PivotSalesData extends Array { Sales: 53640, COGS: 24700, Profit: 28940, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -132,7 +132,7 @@ export class PivotSalesData extends Array { Sales: 1547700, COGS: 393380, Profit: 1154320, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -148,7 +148,7 @@ export class PivotSalesData extends Array { Sales: 54735, COGS: 9210, Profit: 45525, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -164,7 +164,7 @@ export class PivotSalesData extends Array { Sales: 50064, COGS: 7554, Profit: 42510, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -180,7 +180,7 @@ export class PivotSalesData extends Array { Sales: 76820, COGS: 18990, Profit: 57830, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -196,7 +196,7 @@ export class PivotSalesData extends Array { Sales: 44712, COGS: 4635, Profit: 40077, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -212,7 +212,7 @@ export class PivotSalesData extends Array { Sales: 39375, COGS: 24700, Profit: 14675, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -228,7 +228,7 @@ export class PivotSalesData extends Array { Sales: 244750, COGS: 319860, Profit: 75110, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -244,7 +244,7 @@ export class PivotSalesData extends Array { Sales: 981300, COGS: 239500, Profit: 741800, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -260,7 +260,7 @@ export class PivotSalesData extends Array { Sales: 14637, COGS: 10730, Profit: 3907, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -276,7 +276,7 @@ export class PivotSalesData extends Array { Sales: 42375, COGS: 6150, Profit: 36225, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -292,7 +292,7 @@ export class PivotSalesData extends Array { Sales: 50260, COGS: 2920, Profit: 47340, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -308,7 +308,7 @@ export class PivotSalesData extends Array { Sales: 13245, COGS: 9740, Profit: 3505, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -324,7 +324,7 @@ export class PivotSalesData extends Array { Sales: 25044, COGS: 7554, Profit: 17490, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -340,7 +340,7 @@ export class PivotSalesData extends Array { Sales: 897050, COGS: 261560, Profit: 635490, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -356,7 +356,7 @@ export class PivotSalesData extends Array { Sales: 34152, COGS: 1101, Profit: 33051, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -372,7 +372,7 @@ export class PivotSalesData extends Array { Sales: 6979, COGS: 4415, Profit: 2564, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -388,7 +388,7 @@ export class PivotSalesData extends Array { Sales: 34350, COGS: 24720, Profit: 9630, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -404,7 +404,7 @@ export class PivotSalesData extends Array { Sales: 14931, COGS: 5715, Profit: 9216, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -420,7 +420,7 @@ export class PivotSalesData extends Array { Sales: 72340, COGS: 18170, Profit: 54170, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -436,7 +436,7 @@ export class PivotSalesData extends Array { Sales: 443100, COGS: 393380, Profit: 49720, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -452,7 +452,7 @@ export class PivotSalesData extends Array { Sales: 6258, COGS: 7465, Profit: 1207, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -468,7 +468,7 @@ export class PivotSalesData extends Array { Sales: 340625, COGS: 216480, Profit: 124145, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -484,7 +484,7 @@ export class PivotSalesData extends Array { Sales: 36732, COGS: 6483, Profit: 30249, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -500,7 +500,7 @@ export class PivotSalesData extends Array { Sales: 1385300, COGS: 261560, Profit: 1123740, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -516,7 +516,7 @@ export class PivotSalesData extends Array { Sales: 47040, COGS: 4635, Profit: 42405, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -532,7 +532,7 @@ export class PivotSalesData extends Array { Sales: 422625, COGS: 338520, Profit: 84105, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -548,7 +548,7 @@ export class PivotSalesData extends Array { Sales: 1292100, COGS: 500250, Profit: 791850, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -564,7 +564,7 @@ export class PivotSalesData extends Array { Sales: 10536, COGS: 8514, Profit: 2022, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -580,7 +580,7 @@ export class PivotSalesData extends Array { Sales: 7440, COGS: 21780, Profit: 14340, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -596,7 +596,7 @@ export class PivotSalesData extends Array { Sales: 50505, COGS: 8880, Profit: 41625, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -612,7 +612,7 @@ export class PivotSalesData extends Array { Sales: 616500, COGS: 537750, Profit: 78750, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -628,7 +628,7 @@ export class PivotSalesData extends Array { Sales: 80820, COGS: 18170, Profit: 62650, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -644,7 +644,7 @@ export class PivotSalesData extends Array { Sales: 1132950, COGS: 715000, Profit: 417950, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -660,7 +660,7 @@ export class PivotSalesData extends Array { Sales: 7560, COGS: 5859, Profit: 1701, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -676,7 +676,7 @@ export class PivotSalesData extends Array { Sales: 526250, COGS: 506340, Profit: 19910, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -692,7 +692,7 @@ export class PivotSalesData extends Array { Sales: 22540, COGS: 18990, Profit: 3550, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -708,7 +708,7 @@ export class PivotSalesData extends Array { Sales: 24066, COGS: 8430, Profit: 15636, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -724,7 +724,7 @@ export class PivotSalesData extends Array { Sales: 24180, COGS: 6423, Profit: 17757, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -740,7 +740,7 @@ export class PivotSalesData extends Array { Sales: 17738, COGS: 5715, Profit: 12023, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -756,7 +756,7 @@ export class PivotSalesData extends Array { Sales: 20760, COGS: 6150, Profit: 14610, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -772,7 +772,7 @@ export class PivotSalesData extends Array { Sales: 24650.85, COGS: 19725, Profit: 4925.85, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -788,7 +788,7 @@ export class PivotSalesData extends Array { Sales: 27000.6, COGS: 22960, Profit: 4040.6, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -804,7 +804,7 @@ export class PivotSalesData extends Array { Sales: 19492.9, COGS: 5150, Profit: 14342.9, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -820,7 +820,7 @@ export class PivotSalesData extends Array { Sales: 3154.27, COGS: 3195, Profit: 40.73, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -836,7 +836,7 @@ export class PivotSalesData extends Array { Sales: 26402.18, COGS: 6630, Profit: 19772.18, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -852,7 +852,7 @@ export class PivotSalesData extends Array { Sales: 8753.04, COGS: 5574, Profit: 3179.04, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -868,7 +868,7 @@ export class PivotSalesData extends Array { Sales: 353115, COGS: 314600, Profit: 38515, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -884,7 +884,7 @@ export class PivotSalesData extends Array { Sales: 14354.97, COGS: 12645, Profit: 1709.97, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -900,7 +900,7 @@ export class PivotSalesData extends Array { Sales: 51618.6, COGS: 4335, Profit: 47283.6, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -916,7 +916,7 @@ export class PivotSalesData extends Array { Sales: 49767.48, COGS: 8013, Profit: 41754.48, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -932,7 +932,7 @@ export class PivotSalesData extends Array { Sales: 1302710.5, COGS: 363220, Profit: 939490.5, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -948,7 +948,7 @@ export class PivotSalesData extends Array { Sales: 662357.5, COGS: 560300, Profit: 102057.5, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -964,7 +964,7 @@ export class PivotSalesData extends Array { Sales: 40797.9, COGS: 22140, Profit: 18657.9, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -980,7 +980,7 @@ export class PivotSalesData extends Array { Sales: 442797, COGS: 575250, Profit: 132453, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -996,7 +996,7 @@ export class PivotSalesData extends Array { Sales: 75164.9, COGS: 13755, Profit: 61409.9, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -1012,7 +1012,7 @@ export class PivotSalesData extends Array { Sales: 7655.9, COGS: 9150, Profit: 1494.1, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -1028,7 +1028,7 @@ export class PivotSalesData extends Array { Sales: 35292.9, COGS: 15140, Profit: 20152.9, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -1044,7 +1044,7 @@ export class PivotSalesData extends Array { Sales: 10787.52, COGS: 22462.5, Profit: 11674.98, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -1060,7 +1060,7 @@ export class PivotSalesData extends Array { Sales: 422341.25, COGS: 87240, Profit: 335101.25, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1076,7 +1076,7 @@ export class PivotSalesData extends Array { Sales: 105516.25, COGS: 94440, Profit: 11076.25, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1092,7 +1092,7 @@ export class PivotSalesData extends Array { Sales: 345596.25, COGS: 218760, Profit: 126836.25, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -1108,7 +1108,7 @@ export class PivotSalesData extends Array { Sales: 40147.95, COGS: 7470, Profit: 32677.95, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -1124,7 +1124,7 @@ export class PivotSalesData extends Array { Sales: 1216185, COGS: 726250, Profit: 489935, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -1140,7 +1140,7 @@ export class PivotSalesData extends Array { Sales: 978057.5, COGS: 560300, Profit: 417757.5, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1156,7 +1156,7 @@ export class PivotSalesData extends Array { Sales: 85107.2, COGS: 38640, Profit: 46467.2, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -1172,7 +1172,7 @@ export class PivotSalesData extends Array { Sales: 19966.66, COGS: 1810, Profit: 18156.66, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -1188,7 +1188,7 @@ export class PivotSalesData extends Array { Sales: 174721.25, COGS: 110760, Profit: 63961.25, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -1204,7 +1204,7 @@ export class PivotSalesData extends Array { Sales: 8836.59, COGS: 1315, Profit: 7521.59, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -1220,7 +1220,7 @@ export class PivotSalesData extends Array { Sales: 1358897.75, COGS: 245310, Profit: 1113587.75, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -1236,7 +1236,7 @@ export class PivotSalesData extends Array { Sales: 382591.25, COGS: 87240, Profit: 295351.25, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1252,7 +1252,7 @@ export class PivotSalesData extends Array { Sales: 271641.25, COGS: 94440, Profit: 177201.25, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1268,7 +1268,7 @@ export class PivotSalesData extends Array { Sales: 403842, COGS: 246500, Profit: 177201.25, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1284,7 +1284,7 @@ export class PivotSalesData extends Array { Sales: 630010.5, COGS: 363220, Profit: 266790.5, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -1300,7 +1300,7 @@ export class PivotSalesData extends Array { Sales: 184695, COGS: 209280, Profit: 24585, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -1316,7 +1316,7 @@ export class PivotSalesData extends Array { Sales: 181018.75, COGS: 89100, Profit: 91918.75, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -1332,7 +1332,7 @@ export class PivotSalesData extends Array { Sales: 2269.2, COGS: 3885, Profit: 1615.8, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -1348,7 +1348,7 @@ export class PivotSalesData extends Array { Sales: 178136, COGS: 741520, Profit: 563384, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1364,7 +1364,7 @@ export class PivotSalesData extends Array { Sales: 38785.92, COGS: 3426, Profit: 35359.92, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1380,7 +1380,7 @@ export class PivotSalesData extends Array { Sales: 14813.6, COGS: 15660, Profit: 846.4, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -1396,7 +1396,7 @@ export class PivotSalesData extends Array { Sales: 13454.4, COGS: 2070, Profit: 11384.4, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -1412,7 +1412,7 @@ export class PivotSalesData extends Array { Sales: 17186.1, COGS: 23630, Profit: 6443.9, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -1428,7 +1428,7 @@ export class PivotSalesData extends Array { Sales: 753492, COGS: 229500, Profit: 523992, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -1444,7 +1444,7 @@ export class PivotSalesData extends Array { Sales: 1024932, COGS: 432000, Profit: 592932, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -1460,7 +1460,7 @@ export class PivotSalesData extends Array { Sales: 36433.92, COGS: 3426, Profit: 33007.92, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1476,7 +1476,7 @@ export class PivotSalesData extends Array { Sales: 492970, COGS: 79440, Profit: 413530, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1492,7 +1492,7 @@ export class PivotSalesData extends Array { Sales: 41017.2, COGS: 3885, Profit: 37132.2, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -1508,7 +1508,7 @@ export class PivotSalesData extends Array { Sales: 934704, COGS: 479000, Profit: 455704, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1524,7 +1524,7 @@ export class PivotSalesData extends Array { Sales: 1417836, COGS: 741520, Profit: 676316, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1540,7 +1540,7 @@ export class PivotSalesData extends Array { Sales: 463177.5, COGS: 327480, Profit: 135697.5, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1556,7 +1556,7 @@ export class PivotSalesData extends Array { Sales: 27754.8, COGS: 3165, Profit: 24589.8, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1572,7 +1572,7 @@ export class PivotSalesData extends Array { Sales: 6699.84, COGS: 3252, Profit: 3447.84, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1588,7 +1588,7 @@ export class PivotSalesData extends Array { Sales: 51573.6, COGS: 15660, Profit: 35913.6, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -1604,7 +1604,7 @@ export class PivotSalesData extends Array { Sales: 490511, COGS: 748020, Profit: 257509, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -1620,7 +1620,7 @@ export class PivotSalesData extends Array { Sales: 45034.8, COGS: 3165, Profit: 41869.8, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1636,7 +1636,7 @@ export class PivotSalesData extends Array { Sales: 30603.84, COGS: 3252, Profit: 27351.84, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1652,7 +1652,7 @@ export class PivotSalesData extends Array { Sales: 38345, COGS: 79440, Profit: 41095, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1668,7 +1668,7 @@ export class PivotSalesData extends Array { Sales: 1126111, COGS: 748020, Profit: 378091, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -1684,7 +1684,7 @@ export class PivotSalesData extends Array { Sales: 440927.5, COGS: 327480, Profit: 113447.5, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1700,7 +1700,7 @@ export class PivotSalesData extends Array { Sales: 1215246, COGS: 64750, Profit: 1150496, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -1716,7 +1716,7 @@ export class PivotSalesData extends Array { Sales: 636594, COGS: 275250, Profit: 361344, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -1732,7 +1732,7 @@ export class PivotSalesData extends Array { Sales: 432060, COGS: 273120, Profit: 158940, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -1748,7 +1748,7 @@ export class PivotSalesData extends Array { Sales: 13085.6, COGS: 12360, Profit: 725.6, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -1764,7 +1764,7 @@ export class PivotSalesData extends Array { Sales: 46643.6, COGS: 9410, Profit: 37233.6, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -1780,7 +1780,7 @@ export class PivotSalesData extends Array { Sales: 601404, COGS: 479000, Profit: 122404, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1796,7 +1796,7 @@ export class PivotSalesData extends Array { Sales: 429711.88, COGS: 509220, Profit: 79508.13, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -1812,7 +1812,7 @@ export class PivotSalesData extends Array { Sales: 26472, COGS: 25800, Profit: 672, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -1828,7 +1828,7 @@ export class PivotSalesData extends Array { Sales: 616899, COGS: 172250, Profit: 444649, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1844,7 +1844,7 @@ export class PivotSalesData extends Array { Sales: 43015.08, COGS: 5841, Profit: 37174.08, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -1860,7 +1860,7 @@ export class PivotSalesData extends Array { Sales: 20308.82, COGS: 9790, Profit: 10518.82, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -1876,7 +1876,7 @@ export class PivotSalesData extends Array { Sales: 13727.64, COGS: 5703, Profit: 8024.64, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1892,7 +1892,7 @@ export class PivotSalesData extends Array { Sales: 16132.76, COGS: 2720, Profit: 13412.76, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -1908,7 +1908,7 @@ export class PivotSalesData extends Array { Sales: 491673.75, COGS: 154440, Profit: 337233.75, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1924,7 +1924,7 @@ export class PivotSalesData extends Array { Sales: 478352.5, COGS: 204720, Profit: 273632.5, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1940,7 +1940,7 @@ export class PivotSalesData extends Array { Sales: 661489.5, COGS: 608625, Profit: 52864.5, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -1956,7 +1956,7 @@ export class PivotSalesData extends Array { Sales: 127722.5, COGS: 212880, Profit: 85157.5, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -1972,7 +1972,7 @@ export class PivotSalesData extends Array { Sales: 47915.64, COGS: 5703, Profit: 42212.64, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1988,7 +1988,7 @@ export class PivotSalesData extends Array { Sales: 904299, COGS: 172250, Profit: 732049, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -2004,7 +2004,7 @@ export class PivotSalesData extends Array { Sales: 448612.5, COGS: 188400, Profit: 260212.5, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -2020,7 +2020,7 @@ export class PivotSalesData extends Array { Sales: 16054.98, COGS: 4108.5, Profit: 11946.48, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -2036,7 +2036,7 @@ export class PivotSalesData extends Array { Sales: 553966.25, COGS: 241080, Profit: 312886.25, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2052,7 +2052,7 @@ export class PivotSalesData extends Array { Sales: 213173.75, COGS: 154440, Profit: 58733.75, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2068,7 +2068,7 @@ export class PivotSalesData extends Array { Sales: 286227.5, COGS: 204720, Profit: 81507.5, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2084,7 +2084,7 @@ export class PivotSalesData extends Array { Sales: 471841.25, COGS: 241080, Profit: 230761.25, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2100,7 +2100,7 @@ export class PivotSalesData extends Array { Sales: 322704, COGS: 711000, Profit: 388296, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -2116,7 +2116,7 @@ export class PivotSalesData extends Array { Sales: 9822.24, COGS: 5748, Profit: 4074.24, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -2132,7 +2132,7 @@ export class PivotSalesData extends Array { Sales: 207237.5, COGS: 188400, Profit: 18837.5, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -2148,7 +2148,7 @@ export class PivotSalesData extends Array { Sales: 524634, COGS: 468500, Profit: 56134, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -2164,7 +2164,7 @@ export class PivotSalesData extends Array { Sales: 118909, COGS: 426920, Profit: 308011, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -2180,7 +2180,7 @@ export class PivotSalesData extends Array { Sales: 28681.4, COGS: 8310, Profit: 20371.4, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -2196,7 +2196,7 @@ export class PivotSalesData extends Array { Sales: 82409.7, COGS: 38505, Profit: 43904.7, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -2212,7 +2212,7 @@ export class PivotSalesData extends Array { Sales: 42631.56, COGS: 7437, Profit: 35194.56, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -2228,7 +2228,7 @@ export class PivotSalesData extends Array { Sales: 25121.4, COGS: 20310, Profit: 4811.4, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2244,7 +2244,7 @@ export class PivotSalesData extends Array { Sales: 3386.4, COGS: 20310, Profit: 16923.6, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2260,7 +2260,7 @@ export class PivotSalesData extends Array { Sales: 342348, COGS: 505250, Profit: 162902, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2276,7 +2276,7 @@ export class PivotSalesData extends Array { Sales: 167314, COGS: 71240, Profit: 96074, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2292,7 +2292,7 @@ export class PivotSalesData extends Array { Sales: 60814.8, COGS: 19670, Profit: 41144.8, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -2308,7 +2308,7 @@ export class PivotSalesData extends Array { Sales: 800592, COGS: 464750, Profit: 335842, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -2324,7 +2324,7 @@ export class PivotSalesData extends Array { Sales: 1313748, COGS: 505250, Profit: 808498, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2340,7 +2340,7 @@ export class PivotSalesData extends Array { Sales: 148310, COGS: 136560, Profit: 11750, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2356,7 +2356,7 @@ export class PivotSalesData extends Array { Sales: 16911.72, COGS: 21255, Profit: 4343.28, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -2372,7 +2372,7 @@ export class PivotSalesData extends Array { Sales: 162525, COGS: 95400, Profit: 67125, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -2388,7 +2388,7 @@ export class PivotSalesData extends Array { Sales: 1329126, COGS: 353625, Profit: 975501, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -2404,7 +2404,7 @@ export class PivotSalesData extends Array { Sales: 1123584, COGS: 729500, Profit: 394084, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -2420,7 +2420,7 @@ export class PivotSalesData extends Array { Sales: 569450, COGS: 897000, Profit: 327550, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -2436,7 +2436,7 @@ export class PivotSalesData extends Array { Sales: 426685, COGS: 358560, Profit: 68125, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -2452,7 +2452,7 @@ export class PivotSalesData extends Array { Sales: 30109.2, COGS: 2180, Profit: 27929.2, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -2468,7 +2468,7 @@ export class PivotSalesData extends Array { Sales: 57100.8, COGS: 20740, Profit: 36360.8, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -2484,7 +2484,7 @@ export class PivotSalesData extends Array { Sales: 66195.2, COGS: 10560, Profit: 55635.2, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -2500,7 +2500,7 @@ export class PivotSalesData extends Array { Sales: 846664, COGS: 71240, Profit: 775424, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2516,7 +2516,7 @@ export class PivotSalesData extends Array { Sales: 61185, COGS: 136560, Profit: 75375, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2532,7 +2532,7 @@ export class PivotSalesData extends Array { Sales: 17572.8, COGS: 4395, Profit: 13177.8, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -2548,7 +2548,7 @@ export class PivotSalesData extends Array { Sales: 593222, COGS: 566020, Profit: 27202, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2564,7 +2564,7 @@ export class PivotSalesData extends Array { Sales: 3748.32, COGS: 2598, Profit: 1150.32, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -2580,7 +2580,7 @@ export class PivotSalesData extends Array { Sales: 1197672, COGS: 566020, Profit: 631652, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2596,7 +2596,7 @@ export class PivotSalesData extends Array { Sales: 1003940, COGS: 484900, Profit: 519040, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -2612,7 +2612,7 @@ export class PivotSalesData extends Array { Sales: 499255, COGS: 128880, Profit: 370375, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -2628,7 +2628,7 @@ export class PivotSalesData extends Array { Sales: 1424402, COGS: 495820, Profit: 928582, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -2644,7 +2644,7 @@ export class PivotSalesData extends Array { Sales: 4594.8, COGS: 6860, Profit: 2265.2, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -2660,7 +2660,7 @@ export class PivotSalesData extends Array { Sales: 15333.85, COGS: 13445, Profit: 1888.85, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2676,7 +2676,7 @@ export class PivotSalesData extends Array { Sales: 6641.4, COGS: 7293, Profit: 651.6, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2692,7 +2692,7 @@ export class PivotSalesData extends Array { Sales: 34421.4, COGS: 7293, Profit: 27128.4, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2708,7 +2708,7 @@ export class PivotSalesData extends Array { Sales: 6562.85, COGS: 13445, Profit: 6882.15, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2724,7 +2724,7 @@ export class PivotSalesData extends Array { Sales: 6746.95, COGS: 8415, Profit: 1668.05, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -2740,7 +2740,7 @@ export class PivotSalesData extends Array { Sales: 4954.2, COGS: 3369, Profit: 1585.2, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -2756,7 +2756,7 @@ export class PivotSalesData extends Array { Sales: 49761, COGS: 5595, Profit: 44166, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -2772,7 +2772,7 @@ export class PivotSalesData extends Array { Sales: 23042.4, COGS: 3348, Profit: 19694.4, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -2788,7 +2788,7 @@ export class PivotSalesData extends Array { Sales: 38117, COGS: 15630, Profit: 22487, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -2804,7 +2804,7 @@ export class PivotSalesData extends Array { Sales: 129135, COGS: 247750, Profit: 118615, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -2820,7 +2820,7 @@ export class PivotSalesData extends Array { Sales: 15981.75, COGS: 27910, Profit: 11928.25, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -2836,7 +2836,7 @@ export class PivotSalesData extends Array { Sales: 17160.5, COGS: 2850, Profit: 14310.5, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2852,7 +2852,7 @@ export class PivotSalesData extends Array { Sales: 19611.55, COGS: 12435, Profit: 7176.55, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2868,7 +2868,7 @@ export class PivotSalesData extends Array { Sales: 1099271.25, COGS: 359970, Profit: 739301.25, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -2884,7 +2884,7 @@ export class PivotSalesData extends Array { Sales: 379956.25, COGS: 435240, Profit: 55283.75, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -2900,7 +2900,7 @@ export class PivotSalesData extends Array { Sales: 12118.8, COGS: 7026, Profit: 5092.8, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -2916,7 +2916,7 @@ export class PivotSalesData extends Array { Sales: 30897, COGS: 13030, Profit: 17867, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -2932,7 +2932,7 @@ export class PivotSalesData extends Array { Sales: 493800, COGS: 359040, Profit: 134760, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -2948,7 +2948,7 @@ export class PivotSalesData extends Array { Sales: 111593.75, COGS: 286200, Profit: 174606.25, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -2964,7 +2964,7 @@ export class PivotSalesData extends Array { Sales: 976995, COGS: 401750, Profit: 575245, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -2980,7 +2980,7 @@ export class PivotSalesData extends Array { Sales: 26870.55, COGS: 11635, Profit: 15235.55, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -2996,7 +2996,7 @@ export class PivotSalesData extends Array { Sales: 1289235, COGS: 247750, Profit: 1041485, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3012,7 +3012,7 @@ export class PivotSalesData extends Array { Sales: 531265, COGS: 156520, Profit: 374745, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3028,7 +3028,7 @@ export class PivotSalesData extends Array { Sales: 30330, COGS: 26200, Profit: 4130, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -3044,7 +3044,7 @@ export class PivotSalesData extends Array { Sales: 510368.75, COGS: 103320, Profit: 407048.75, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -3060,7 +3060,7 @@ export class PivotSalesData extends Array { Sales: 64857, COGS: 26630, Profit: 38227, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -3076,7 +3076,7 @@ export class PivotSalesData extends Array { Sales: 33243.75, COGS: 5550, Profit: 27693.75, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -3092,7 +3092,7 @@ export class PivotSalesData extends Array { Sales: 18254.25, COGS: 28610, Profit: 10355.75, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -3108,7 +3108,7 @@ export class PivotSalesData extends Array { Sales: 29831.25, COGS: 96840, Profit: 67008.75, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -3124,7 +3124,7 @@ export class PivotSalesData extends Array { Sales: 871815, COGS: 156520, Profit: 715295, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3140,7 +3140,7 @@ export class PivotSalesData extends Array { Sales: 45828, COGS: 28320, Profit: 17508, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -3156,7 +3156,7 @@ export class PivotSalesData extends Array { Sales: 33181, COGS: 15790, Profit: 17391, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -3172,7 +3172,7 @@ export class PivotSalesData extends Array { Sales: 132868.75, COGS: 103320, Profit: 29548.75, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -3188,7 +3188,7 @@ export class PivotSalesData extends Array { Sales: 45150, COGS: 312500, Profit: 267350, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -3204,7 +3204,7 @@ export class PivotSalesData extends Array { Sales: 55917, COGS: 26630, Profit: 29287, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -3220,7 +3220,7 @@ export class PivotSalesData extends Array { Sales: 16523.5, COGS: 2850, Profit: 13673.5, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -3236,7 +3236,7 @@ export class PivotSalesData extends Array { Sales: 20731.55, COGS: 12435, Profit: 8296.55, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -3252,7 +3252,7 @@ export class PivotSalesData extends Array { Sales: 237125, COGS: 351000, Profit: 113875, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -3268,7 +3268,7 @@ export class PivotSalesData extends Array { Sales: 433440, COGS: 143520, Profit: 289920, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -3284,7 +3284,7 @@ export class PivotSalesData extends Array { Sales: 1267350, COGS: 312500, Profit: 954850, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -3300,7 +3300,7 @@ export class PivotSalesData extends Array { Sales: 44474.1, COGS: 38010, Profit: 6464.1, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -3316,7 +3316,7 @@ export class PivotSalesData extends Array { Sales: 37999, COGS: 11175, Profit: 26824, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -3332,7 +3332,7 @@ export class PivotSalesData extends Array { Sales: 6905.4, COGS: 28440, Profit: 21534.6, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3348,7 +3348,7 @@ export class PivotSalesData extends Array { Sales: 41223.36, COGS: 1686, Profit: 39537.36, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -3364,7 +3364,7 @@ export class PivotSalesData extends Array { Sales: 46398, COGS: 20300, Profit: 26098, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -3380,7 +3380,7 @@ export class PivotSalesData extends Array { Sales: 665070, COGS: 254800, Profit: 410270, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -3396,7 +3396,7 @@ export class PivotSalesData extends Array { Sales: 732690, COGS: 379600, Profit: 353090, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -3412,7 +3412,7 @@ export class PivotSalesData extends Array { Sales: 24499.44, COGS: 8169, Profit: 16330.44, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -3428,7 +3428,7 @@ export class PivotSalesData extends Array { Sales: 630084, COGS: 388960, Profit: 241124, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3444,7 +3444,7 @@ export class PivotSalesData extends Array { Sales: 294985, COGS: 114240, Profit: 180745, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -3460,7 +3460,7 @@ export class PivotSalesData extends Array { Sales: 124087.5, COGS: 330600, Profit: 206512.5, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -3476,7 +3476,7 @@ export class PivotSalesData extends Array { Sales: 10668, COGS: 15300, Profit: 4632, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -3492,7 +3492,7 @@ export class PivotSalesData extends Array { Sales: 1265334, COGS: 388960, Profit: 876374, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3508,7 +3508,7 @@ export class PivotSalesData extends Array { Sales: 3493.84, COGS: 7490, Profit: 3996.16, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3524,7 +3524,7 @@ export class PivotSalesData extends Array { Sales: 57425.4, COGS: 28440, Profit: 28985.4, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3540,7 +3540,7 @@ export class PivotSalesData extends Array { Sales: 29162.84, COGS: 7490, Profit: 21672.84, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3556,7 +3556,7 @@ export class PivotSalesData extends Array { Sales: 255093.75, COGS: 238500, Profit: 16593.75, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -3572,7 +3572,7 @@ export class PivotSalesData extends Array { Sales: 127841, COGS: 436540, Profit: 308699, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -3588,7 +3588,7 @@ export class PivotSalesData extends Array { Sales: 20191.8, COGS: 21980, Profit: 1788.2, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -3604,7 +3604,7 @@ export class PivotSalesData extends Array { Sales: 55401.3, COGS: 17430, Profit: 37971.3, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -3620,7 +3620,7 @@ export class PivotSalesData extends Array { Sales: 5667.3, COGS: 11530, Profit: 5862.7, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -3636,7 +3636,7 @@ export class PivotSalesData extends Array { Sales: 13698.8, COGS: 10010, Profit: 3688.8, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -3652,7 +3652,7 @@ export class PivotSalesData extends Array { Sales: 11564.14, COGS: 6665, Profit: 4899.14, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -3668,7 +3668,7 @@ export class PivotSalesData extends Array { Sales: 25347.3, COGS: 11530, Profit: 13817.3, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -3684,7 +3684,7 @@ export class PivotSalesData extends Array { Sales: 3445.32, COGS: 2181, Profit: 1264.32, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -3700,7 +3700,7 @@ export class PivotSalesData extends Array { Sales: 45349.44, COGS: 5652, Profit: 39697.44, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -3716,7 +3716,7 @@ export class PivotSalesData extends Array { Sales: 51710.4, COGS: 7020, Profit: 44690.4, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -3732,7 +3732,7 @@ export class PivotSalesData extends Array { Sales: 2628.72, COGS: 7026, Profit: 4397.28, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -3748,7 +3748,7 @@ export class PivotSalesData extends Array { Sales: 14604.9, COGS: 12620, Profit: 1984.9, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -3764,7 +3764,7 @@ export class PivotSalesData extends Array { Sales: 28024.85, COGS: 5675, Profit: 22349.85, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3780,7 +3780,7 @@ export class PivotSalesData extends Array { Sales: 27549.97, COGS: 2735, Profit: 24814.97, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -3796,7 +3796,7 @@ export class PivotSalesData extends Array { Sales: 25285.82, COGS: 7910, Profit: 17375.82, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -3812,7 +3812,7 @@ export class PivotSalesData extends Array { Sales: 27759.66, COGS: 5215.5, Profit: 22544.16, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -3828,7 +3828,7 @@ export class PivotSalesData extends Array { Sales: 11565.82, COGS: 7910, Profit: 3655.82, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -3844,7 +3844,7 @@ export class PivotSalesData extends Array { Sales: 30754.85, COGS: 5675, Profit: 25079.85, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3860,7 +3860,7 @@ export class PivotSalesData extends Array { Sales: 392955.5, COGS: 457860, Profit: 64904.5, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -3876,7 +3876,7 @@ export class PivotSalesData extends Array { Sales: 475092, COGS: 112000, Profit: 363092, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3892,7 +3892,7 @@ export class PivotSalesData extends Array { Sales: 178899, COGS: 545250, Profit: 366351, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -3908,7 +3908,7 @@ export class PivotSalesData extends Array { Sales: 23593.6, COGS: 19760, Profit: 3833.6, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -3924,7 +3924,7 @@ export class PivotSalesData extends Array { Sales: 818799, COGS: 545250, Profit: 273549, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -3940,7 +3940,7 @@ export class PivotSalesData extends Array { Sales: 709458, COGS: 425500, Profit: 283958, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -3956,7 +3956,7 @@ export class PivotSalesData extends Array { Sales: 941292, COGS: 112000, Profit: 829292, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3972,7 +3972,7 @@ export class PivotSalesData extends Array { Sales: 479261.25, COGS: 421560, Profit: 57701.25, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -3988,7 +3988,7 @@ export class PivotSalesData extends Array { Sales: 56938.95, COGS: 21010, Profit: 35928.95, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -4004,7 +4004,7 @@ export class PivotSalesData extends Array { Sales: 2911, COGS: 15350, Profit: 12439, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -4020,7 +4020,7 @@ export class PivotSalesData extends Array { Sales: 204861, COGS: 414750, Profit: 209889, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -4036,7 +4036,7 @@ export class PivotSalesData extends Array { Sales: 77987.4, COGS: 6090, Profit: 71897.4, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -4052,7 +4052,7 @@ export class PivotSalesData extends Array { Sales: 293988.75, COGS: 250440, Profit: 43548.75, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -4068,7 +4068,7 @@ export class PivotSalesData extends Array { Sales: 47573.6, COGS: 19760, Profit: 27813.6, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -4084,7 +4084,7 @@ export class PivotSalesData extends Array { Sales: 314688, COGS: 343000, Profit: 28312, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -4100,7 +4100,7 @@ export class PivotSalesData extends Array { Sales: 43042.62, COGS: 9733.5, Profit: 33309.12, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -4116,7 +4116,7 @@ export class PivotSalesData extends Array { Sales: 336261, COGS: 239750, Profit: 96511, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -4132,7 +4132,7 @@ export class PivotSalesData extends Array { Sales: 612213, COGS: 686750, Profit: 74537, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -4148,7 +4148,7 @@ export class PivotSalesData extends Array { Sales: 38231.25, COGS: 197400, Profit: 159168.75, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -4164,7 +4164,7 @@ export class PivotSalesData extends Array { Sales: 23688, COGS: 747760, Profit: 724072, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -4180,7 +4180,7 @@ export class PivotSalesData extends Array { Sales: 17474.8, COGS: 11180, Profit: 6294.8, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -4196,7 +4196,7 @@ export class PivotSalesData extends Array { Sales: 860388, COGS: 343000, Profit: 517388, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -4212,7 +4212,7 @@ export class PivotSalesData extends Array { Sales: 10261.72, COGS: 2440, Profit: 7821.72, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -4228,7 +4228,7 @@ export class PivotSalesData extends Array { Sales: 31508.8, COGS: 12820, Profit: 18688.8, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4244,7 +4244,7 @@ export class PivotSalesData extends Array { Sales: 29599.08, COGS: 1285, Profit: 28314.08, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -4260,7 +4260,7 @@ export class PivotSalesData extends Array { Sales: 31488.8, COGS: 12820, Profit: 18668.8, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4276,7 +4276,7 @@ export class PivotSalesData extends Array { Sales: 365975, COGS: 184800, Profit: 181175, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -4292,7 +4292,7 @@ export class PivotSalesData extends Array { Sales: 49992, COGS: 4900, Profit: 45092, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -4308,7 +4308,7 @@ export class PivotSalesData extends Array { Sales: 551964, COGS: 354120, Profit: 197844, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -4324,7 +4324,7 @@ export class PivotSalesData extends Array { Sales: 43288.8, COGS: 25010, Profit: 18278.8, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -4340,7 +4340,7 @@ export class PivotSalesData extends Array { Sales: 81867.2, COGS: 7080, Profit: 74787.2, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4356,7 +4356,7 @@ export class PivotSalesData extends Array { Sales: 59508, COGS: 6450, Profit: 53058, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -4372,7 +4372,7 @@ export class PivotSalesData extends Array { Sales: 1270212, COGS: 390500, Profit: 879712, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -4388,7 +4388,7 @@ export class PivotSalesData extends Array { Sales: 22981.8, COGS: 7110, Profit: 15871.8, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -4404,7 +4404,7 @@ export class PivotSalesData extends Array { Sales: 323735, COGS: 133680, Profit: 190055, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -4420,7 +4420,7 @@ export class PivotSalesData extends Array { Sales: 23101.96, COGS: 6295, Profit: 16806.96, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -4436,7 +4436,7 @@ export class PivotSalesData extends Array { Sales: 19091.8, COGS: 5475, Profit: 13616.8, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -4452,7 +4452,7 @@ export class PivotSalesData extends Array { Sales: 57094.4, COGS: 13660, Profit: 43434.4, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4468,7 +4468,7 @@ export class PivotSalesData extends Array { Sales: 1192860, COGS: 615000, Profit: 577860, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4484,7 +4484,7 @@ export class PivotSalesData extends Array { Sales: 7719.32, COGS: 3390, Profit: 4329.32, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -4500,7 +4500,7 @@ export class PivotSalesData extends Array { Sales: 20560.12, COGS: 7990, Profit: 12570.12, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -4516,7 +4516,7 @@ export class PivotSalesData extends Array { Sales: 78505.6, COGS: 19340, Profit: 59165.6, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -4532,7 +4532,7 @@ export class PivotSalesData extends Array { Sales: 29471.2, COGS: 29930, Profit: 458.8, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -4548,7 +4548,7 @@ export class PivotSalesData extends Array { Sales: 553714, COGS: 354120, Profit: 199594, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -4564,7 +4564,7 @@ export class PivotSalesData extends Array { Sales: 27085.92, COGS: 1794, Profit: 25291.92, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -4580,7 +4580,7 @@ export class PivotSalesData extends Array { Sales: 22179.08, COGS: 14535, Profit: 7644.08, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4596,7 +4596,7 @@ export class PivotSalesData extends Array { Sales: 14706.72, COGS: 11690, Profit: 3016.72, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4612,7 +4612,7 @@ export class PivotSalesData extends Array { Sales: 1210560, COGS: 158750, Profit: 1051810, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -4628,7 +4628,7 @@ export class PivotSalesData extends Array { Sales: 911764, COGS: 149370, Profit: 762394, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -4644,7 +4644,7 @@ export class PivotSalesData extends Array { Sales: 26487.72, COGS: 11690, Profit: 14797.72, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4660,7 +4660,7 @@ export class PivotSalesData extends Array { Sales: 868532, COGS: 99060, Profit: 769472, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -4676,7 +4676,7 @@ export class PivotSalesData extends Array { Sales: 948934, COGS: 109720, Profit: 839214, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -4692,7 +4692,7 @@ export class PivotSalesData extends Array { Sales: 519684, COGS: 533500, Profit: 13816, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -4708,7 +4708,7 @@ export class PivotSalesData extends Array { Sales: 57147.2, COGS: 7080, Profit: 50067.2, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4724,7 +4724,7 @@ export class PivotSalesData extends Array { Sales: 11595.08, COGS: 14535, Profit: 2939.92, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4740,7 +4740,7 @@ export class PivotSalesData extends Array { Sales: 27134.4, COGS: 13660, Profit: 13474.4, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4756,7 +4756,7 @@ export class PivotSalesData extends Array { Sales: 207060, COGS: 615000, Profit: 407940, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4772,7 +4772,7 @@ export class PivotSalesData extends Array { Sales: 5468, COGS: 15200, Profit: 9732, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -4788,7 +4788,7 @@ export class PivotSalesData extends Array { Sales: 24541.8, COGS: 7110, Profit: 17431.8, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -4804,7 +4804,7 @@ export class PivotSalesData extends Array { Sales: 779460, COGS: 158750, Profit: 620710, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -4820,7 +4820,7 @@ export class PivotSalesData extends Array { Sales: 71461.6, COGS: 4365, Profit: 67096.6, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -4836,7 +4836,7 @@ export class PivotSalesData extends Array { Sales: 292362, COGS: 273500, Profit: 18862, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4852,7 +4852,7 @@ export class PivotSalesData extends Array { Sales: 547432.5, COGS: 950625, Profit: 403192.5, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -4868,7 +4868,7 @@ export class PivotSalesData extends Array { Sales: 409171, COGS: 433160, Profit: 23989, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -4884,7 +4884,7 @@ export class PivotSalesData extends Array { Sales: 12517.32, COGS: 6963, Profit: 5554.32, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -4900,7 +4900,7 @@ export class PivotSalesData extends Array { Sales: 113033.75, COGS: 335640, Profit: 222606.25, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -4916,7 +4916,7 @@ export class PivotSalesData extends Array { Sales: 276645, COGS: 641250, Profit: 364605, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -4932,7 +4932,7 @@ export class PivotSalesData extends Array { Sales: 875864.5, COGS: 628420, Profit: 247444.5, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -4948,7 +4948,7 @@ export class PivotSalesData extends Array { Sales: 49908.75, COGS: 36750, Profit: 13158.75, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -4964,7 +4964,7 @@ export class PivotSalesData extends Array { Sales: 855462, COGS: 273500, Profit: 581962, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4980,7 +4980,7 @@ export class PivotSalesData extends Array { Sales: 25658.55, COGS: 12270, Profit: 13388.55, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -4996,7 +4996,7 @@ export class PivotSalesData extends Array { Sales: 302352, COGS: 331000, Profit: 28648, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -5012,7 +5012,7 @@ export class PivotSalesData extends Array { Sales: 76283.75, COGS: 335640, Profit: 259356.25, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -5028,7 +5028,7 @@ export class PivotSalesData extends Array { Sales: 56744.25, COGS: 2450, Profit: 54294.25, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -5044,7 +5044,7 @@ export class PivotSalesData extends Array { Sales: 322075.5, COGS: 948375, Profit: 626299.5, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -5060,7 +5060,7 @@ export class PivotSalesData extends Array { Sales: 739679.5, COGS: 339820, Profit: 399859.5, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -5076,7 +5076,7 @@ export class PivotSalesData extends Array { Sales: 449746.25, COGS: 68040, Profit: 381706.25, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -5092,7 +5092,7 @@ export class PivotSalesData extends Array { Sales: 344762.5, COGS: 253200, Profit: 91562.5, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -5108,7 +5108,7 @@ export class PivotSalesData extends Array { Sales: 1148276.5, COGS: 329940, Profit: 818336.5, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -5124,7 +5124,7 @@ export class PivotSalesData extends Array { Sales: 29687.52, COGS: 5868, Profit: 23819.52, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -5140,7 +5140,7 @@ export class PivotSalesData extends Array { Sales: 103707, COGS: 664750, Profit: 561043, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -5156,7 +5156,7 @@ export class PivotSalesData extends Array { Sales: 418027.75, COGS: 351390, Profit: 66637.75, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -5172,7 +5172,7 @@ export class PivotSalesData extends Array { Sales: 52557.6, COGS: 2640, Profit: 49917.6, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -5188,7 +5188,7 @@ export class PivotSalesData extends Array { Sales: 762891, COGS: 466750, Profit: 296141, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -5204,7 +5204,7 @@ export class PivotSalesData extends Array { Sales: 52538.55, COGS: 12270, Profit: 40268.55, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -5220,7 +5220,7 @@ export class PivotSalesData extends Array { Sales: 221008.75, COGS: 105240, Profit: 115768.75, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -5236,7 +5236,7 @@ export class PivotSalesData extends Array { Sales: 983363.5, COGS: 538460, Profit: 444903.5, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -5252,7 +5252,7 @@ export class PivotSalesData extends Array { Sales: 953326.5, COGS: 329940, Profit: 623386.5, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -5268,7 +5268,7 @@ export class PivotSalesData extends Array { Sales: 27670.8, COGS: 16940, Profit: 10730.8, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -5284,7 +5284,7 @@ export class PivotSalesData extends Array { Sales: 24626.6, COGS: 6630, Profit: 17996.6, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -5300,7 +5300,7 @@ export class PivotSalesData extends Array { Sales: 7975.03, COGS: 4095, Profit: 3880.03, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -5316,7 +5316,7 @@ export class PivotSalesData extends Array { Sales: 26733.6, COGS: 4740, Profit: 21993.6, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -5332,7 +5332,7 @@ export class PivotSalesData extends Array { Sales: 13524.77, COGS: 2605, Profit: 10919.77, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -5348,7 +5348,7 @@ export class PivotSalesData extends Array { Sales: 55828.6, COGS: 9730, Profit: 46098.6, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -5364,7 +5364,7 @@ export class PivotSalesData extends Array { Sales: 32271.6, COGS: 10380, Profit: 21891.6, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -5380,7 +5380,7 @@ export class PivotSalesData extends Array { Sales: 20304.2, COGS: 1800, Profit: 18504.2, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -5396,7 +5396,7 @@ export class PivotSalesData extends Array { Sales: 10043.64, COGS: 5901, Profit: 4142.64, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -5412,7 +5412,7 @@ export class PivotSalesData extends Array { Sales: 6847.2, COGS: 26280, Profit: 19432.8, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -5428,7 +5428,7 @@ export class PivotSalesData extends Array { Sales: 25960.2, COGS: 1800, Profit: 24160.2, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -5444,7 +5444,7 @@ export class PivotSalesData extends Array { Sales: 27636.77, COGS: 2605, Profit: 25031.77, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -5460,7 +5460,7 @@ export class PivotSalesData extends Array { Sales: 17191.6, COGS: 10380, Profit: 6811.6, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -5476,7 +5476,7 @@ export class PivotSalesData extends Array { Sales: 35748.82, COGS: 16305, Profit: 19443.82, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -5492,7 +5492,7 @@ export class PivotSalesData extends Array { Sales: 27440, COGS: 16185, Profit: 11255, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -5508,7 +5508,7 @@ export class PivotSalesData extends Array { Sales: 55240, COGS: 13210, Profit: 42030, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -5524,7 +5524,7 @@ export class PivotSalesData extends Array { Sales: 21960, COGS: 21780, Profit: 180, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -5540,7 +5540,7 @@ export class PivotSalesData extends Array { Sales: 10785, COGS: 8880, Profit: 1905, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -5556,7 +5556,7 @@ export class PivotSalesData extends Array { Sales: 53640, COGS: 24700, Profit: 28940, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -5572,7 +5572,7 @@ export class PivotSalesData extends Array { Sales: 1547700, COGS: 393380, Profit: 1154320, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -5588,7 +5588,7 @@ export class PivotSalesData extends Array { Sales: 54735, COGS: 9210, Profit: 45525, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -5604,7 +5604,7 @@ export class PivotSalesData extends Array { Sales: 50064, COGS: 7554, Profit: 42510, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -5620,7 +5620,7 @@ export class PivotSalesData extends Array { Sales: 76820, COGS: 18990, Profit: 57830, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -5636,7 +5636,7 @@ export class PivotSalesData extends Array { Sales: 44712, COGS: 4635, Profit: 40077, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -5652,7 +5652,7 @@ export class PivotSalesData extends Array { Sales: 39375, COGS: 24700, Profit: 14675, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -5668,7 +5668,7 @@ export class PivotSalesData extends Array { Sales: 244750, COGS: 319860, Profit: 75110, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -5684,7 +5684,7 @@ export class PivotSalesData extends Array { Sales: 981300, COGS: 239500, Profit: 741800, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -5700,7 +5700,7 @@ export class PivotSalesData extends Array { Sales: 14637, COGS: 10730, Profit: 3907, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -5716,7 +5716,7 @@ export class PivotSalesData extends Array { Sales: 316250, COGS: 41400, Profit: 274850, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -5732,7 +5732,7 @@ export class PivotSalesData extends Array { Sales: 42375, COGS: 6150, Profit: 36225, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -5748,7 +5748,7 @@ export class PivotSalesData extends Array { Sales: 50260, COGS: 2920, Profit: 47340, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -5764,7 +5764,7 @@ export class PivotSalesData extends Array { Sales: 13245, COGS: 9740, Profit: 3505, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -5780,7 +5780,7 @@ export class PivotSalesData extends Array { Sales: 25044, COGS: 7554, Profit: 17490, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -5796,7 +5796,7 @@ export class PivotSalesData extends Array { Sales: 897050, COGS: 261560, Profit: 635490, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -5812,7 +5812,7 @@ export class PivotSalesData extends Array { Sales: 34152, COGS: 1101, Profit: 33051, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -5828,7 +5828,7 @@ export class PivotSalesData extends Array { Sales: 6979, COGS: 4415, Profit: 2564, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -5844,7 +5844,7 @@ export class PivotSalesData extends Array { Sales: 51315, COGS: 5490, Profit: 45825, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -5860,7 +5860,7 @@ export class PivotSalesData extends Array { Sales: 1050000, COGS: 5490, Profit: 1044510, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -5876,7 +5876,7 @@ export class PivotSalesData extends Array { Sales: 687300, COGS: 197000, Profit: 490300, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -5892,7 +5892,7 @@ export class PivotSalesData extends Array { Sales: 34350, COGS: 24720, Profit: 9630, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -5908,7 +5908,7 @@ export class PivotSalesData extends Array { Sales: 14931, COGS: 5715, Profit: 9216, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -5924,7 +5924,7 @@ export class PivotSalesData extends Array { Sales: 1216250, COGS: 448500, Profit: 767750, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -5940,7 +5940,7 @@ export class PivotSalesData extends Array { Sales: 44232, COGS: 2736, Profit: 41496, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -5956,7 +5956,7 @@ export class PivotSalesData extends Array { Sales: 49785, COGS: 21520, Profit: 28265, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -5972,7 +5972,7 @@ export class PivotSalesData extends Array { Sales: 72340, COGS: 18170, Profit: 54170, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -5988,7 +5988,7 @@ export class PivotSalesData extends Array { Sales: 443100, COGS: 393380, Profit: 49720, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -6004,7 +6004,7 @@ export class PivotSalesData extends Array { Sales: 6258, COGS: 7465, Profit: 1207, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -6020,7 +6020,7 @@ export class PivotSalesData extends Array { Sales: 340625, COGS: 216480, Profit: 124145, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -6036,7 +6036,7 @@ export class PivotSalesData extends Array { Sales: 36732, COGS: 6483, Profit: 30249, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -6052,7 +6052,7 @@ export class PivotSalesData extends Array { Sales: 1385300, COGS: 261560, Profit: 1123740, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -6068,7 +6068,7 @@ export class PivotSalesData extends Array { Sales: 47040, COGS: 4635, Profit: 42405, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -6084,7 +6084,7 @@ export class PivotSalesData extends Array { Sales: 422625, COGS: 338520, Profit: 84105, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -6100,7 +6100,7 @@ export class PivotSalesData extends Array { Sales: 136750, COGS: 41400, Profit: 95350, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -6116,7 +6116,7 @@ export class PivotSalesData extends Array { Sales: 1292100, COGS: 500250, Profit: 791850, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -6132,7 +6132,7 @@ export class PivotSalesData extends Array { Sales: 10536, COGS: 8514, Profit: 2022, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -6148,7 +6148,7 @@ export class PivotSalesData extends Array { Sales: 7440, COGS: 21780, Profit: 14340, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -6164,7 +6164,7 @@ export class PivotSalesData extends Array { Sales: 50505, COGS: 8880, Profit: 41625, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -6180,7 +6180,7 @@ export class PivotSalesData extends Array { Sales: 1358000, COGS: 397020, Profit: 960980, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -6196,7 +6196,7 @@ export class PivotSalesData extends Array { Sales: 616500, COGS: 537750, Profit: 78750, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -6212,7 +6212,7 @@ export class PivotSalesData extends Array { Sales: 80820, COGS: 18170, Profit: 62650, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -6228,7 +6228,7 @@ export class PivotSalesData extends Array { Sales: 1132950, COGS: 715000, Profit: 417950, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -6244,7 +6244,7 @@ export class PivotSalesData extends Array { Sales: 7560, COGS: 5859, Profit: 1701, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -6260,7 +6260,7 @@ export class PivotSalesData extends Array { Sales: 526250, COGS: 506340, Profit: 19910, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -6276,7 +6276,7 @@ export class PivotSalesData extends Array { Sales: 22540, COGS: 18990, Profit: 3550, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -6292,7 +6292,7 @@ export class PivotSalesData extends Array { Sales: 24066, COGS: 8430, Profit: 15636, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -6308,7 +6308,7 @@ export class PivotSalesData extends Array { Sales: 24180, COGS: 6423, Profit: 17757, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -6324,7 +6324,7 @@ export class PivotSalesData extends Array { Sales: 17738, COGS: 5715, Profit: 12023, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -6340,7 +6340,7 @@ export class PivotSalesData extends Array { Sales: 20760, COGS: 6150, Profit: 14610, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -6356,7 +6356,7 @@ export class PivotSalesData extends Array { Sales: 24650.85, COGS: 19725, Profit: 4925.85, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -6372,7 +6372,7 @@ export class PivotSalesData extends Array { Sales: 27000.6, COGS: 22960, Profit: 4040.6, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -6388,7 +6388,7 @@ export class PivotSalesData extends Array { Sales: 19492.9, COGS: 5150, Profit: 14342.9, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -6404,7 +6404,7 @@ export class PivotSalesData extends Array { Sales: 3154.27, COGS: 3195, Profit: 40.73, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -6420,7 +6420,7 @@ export class PivotSalesData extends Array { Sales: 26402.18, COGS: 6630, Profit: 19772.18, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -6436,7 +6436,7 @@ export class PivotSalesData extends Array { Sales: 8753.04, COGS: 5574, Profit: 3179.04, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -6452,7 +6452,7 @@ export class PivotSalesData extends Array { Sales: 353115, COGS: 314600, Profit: 38515, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -6468,7 +6468,7 @@ export class PivotSalesData extends Array { Sales: 14354.97, COGS: 12645, Profit: 1709.97, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -6484,7 +6484,7 @@ export class PivotSalesData extends Array { Sales: 51618.6, COGS: 4335, Profit: 47283.6, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -6500,7 +6500,7 @@ export class PivotSalesData extends Array { Sales: 331337.5, COGS: 39600, Profit: 291737.5, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -6516,7 +6516,7 @@ export class PivotSalesData extends Array { Sales: 49767.48, COGS: 8013, Profit: 41754.48, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -6532,7 +6532,7 @@ export class PivotSalesData extends Array { Sales: 20008.08, COGS: 2298, Profit: 17710.08, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -6548,7 +6548,7 @@ export class PivotSalesData extends Array { Sales: 470118, COGS: 123500, Profit: 346618, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -6564,7 +6564,7 @@ export class PivotSalesData extends Array { Sales: 1302710.5, COGS: 363220, Profit: 939490.5, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -6580,7 +6580,7 @@ export class PivotSalesData extends Array { Sales: 662357.5, COGS: 560300, Profit: 102057.5, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -6596,7 +6596,7 @@ export class PivotSalesData extends Array { Sales: 40797.9, COGS: 22140, Profit: 18657.9, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -6612,7 +6612,7 @@ export class PivotSalesData extends Array { Sales: 442797, COGS: 575250, Profit: 132453, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -6628,7 +6628,7 @@ export class PivotSalesData extends Array { Sales: 75164.9, COGS: 13755, Profit: 61409.9, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -6644,7 +6644,7 @@ export class PivotSalesData extends Array { Sales: 7655.9, COGS: 9150, Profit: 1494.1, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -6660,7 +6660,7 @@ export class PivotSalesData extends Array { Sales: 509406, COGS: 624500, Profit: 115094, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -6676,7 +6676,7 @@ export class PivotSalesData extends Array { Sales: 52046.25, COGS: 79560, Profit: 27513.75, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -6692,7 +6692,7 @@ export class PivotSalesData extends Array { Sales: 35292.9, COGS: 15140, Profit: 20152.9, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -6708,7 +6708,7 @@ export class PivotSalesData extends Array { Sales: 10787.52, COGS: 22462.5, Profit: 11674.98, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -6724,7 +6724,7 @@ export class PivotSalesData extends Array { Sales: 422341.25, COGS: 87240, Profit: 335101.25, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -6740,7 +6740,7 @@ export class PivotSalesData extends Array { Sales: 105516.25, COGS: 94440, Profit: 11076.25, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -6756,7 +6756,7 @@ export class PivotSalesData extends Array { Sales: 345596.25, COGS: 218760, Profit: 126836.25, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -6772,7 +6772,7 @@ export class PivotSalesData extends Array { Sales: 40147.95, COGS: 7470, Profit: 32677.95, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -6788,7 +6788,7 @@ export class PivotSalesData extends Array { Sales: 52624.08, COGS: 2298, Profit: 50326.08, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -6804,7 +6804,7 @@ export class PivotSalesData extends Array { Sales: 1216185, COGS: 726250, Profit: 489935, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -6820,7 +6820,7 @@ export class PivotSalesData extends Array { Sales: 978057.5, COGS: 560300, Profit: 417757.5, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -6836,7 +6836,7 @@ export class PivotSalesData extends Array { Sales: 85107.2, COGS: 38640, Profit: 46467.2, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -6852,7 +6852,7 @@ export class PivotSalesData extends Array { Sales: 19966.66, COGS: 1810, Profit: 18156.66, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -6868,7 +6868,7 @@ export class PivotSalesData extends Array { Sales: 174721.25, COGS: 110760, Profit: 63961.25, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -6884,7 +6884,7 @@ export class PivotSalesData extends Array { Sales: 480421.25, COGS: 79560, Profit: 400861.25, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -6900,7 +6900,7 @@ export class PivotSalesData extends Array { Sales: 19845.56, COGS: 10460, Profit: 9385.56, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -6916,7 +6916,7 @@ export class PivotSalesData extends Array { Sales: 8836.59, COGS: 1315, Profit: 7521.59, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -6932,7 +6932,7 @@ export class PivotSalesData extends Array { Sales: 1358897.75, COGS: 245310, Profit: 1113587.75, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -6948,7 +6948,7 @@ export class PivotSalesData extends Array { Sales: 382591.25, COGS: 87240, Profit: 295351.25, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -6964,7 +6964,7 @@ export class PivotSalesData extends Array { Sales: 271641.25, COGS: 94440, Profit: 177201.25, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -6980,7 +6980,7 @@ export class PivotSalesData extends Array { Sales: 403842, COGS: 246500, Profit: 157342, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -6996,7 +6996,7 @@ export class PivotSalesData extends Array { Sales: 762018, COGS: 123500, Profit: 638518, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -7012,7 +7012,7 @@ export class PivotSalesData extends Array { Sales: 630010.5, COGS: 363220, Profit: 266790.5, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -7028,7 +7028,7 @@ export class PivotSalesData extends Array { Sales: 184695, COGS: 209280, Profit: 24585, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -7044,7 +7044,7 @@ export class PivotSalesData extends Array { Sales: 13609.32, COGS: 5967, Profit: 7642.32, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -7060,7 +7060,7 @@ export class PivotSalesData extends Array { Sales: 62651.85, COGS: 3210, Profit: 59441.85, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -7076,7 +7076,7 @@ export class PivotSalesData extends Array { Sales: 181018.75, COGS: 89100, Profit: 91918.75, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -7092,7 +7092,7 @@ export class PivotSalesData extends Array { Sales: 2269.2, COGS: 3885, Profit: 1615.8, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -7108,7 +7108,7 @@ export class PivotSalesData extends Array { Sales: 1228416, COGS: 53500, Profit: 1174916, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -7124,7 +7124,7 @@ export class PivotSalesData extends Array { Sales: 18319.7, COGS: 10725, Profit: 7594.7, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -7140,7 +7140,7 @@ export class PivotSalesData extends Array { Sales: 178136, COGS: 741520, Profit: 563384, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7156,7 +7156,7 @@ export class PivotSalesData extends Array { Sales: 38785.92, COGS: 3426, Profit: 35359.92, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -7172,7 +7172,7 @@ export class PivotSalesData extends Array { Sales: 14813.6, COGS: 15660, Profit: 846.4, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -7188,7 +7188,7 @@ export class PivotSalesData extends Array { Sales: 13454.4, COGS: 2070, Profit: 11384.4, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -7204,7 +7204,7 @@ export class PivotSalesData extends Array { Sales: 474100, COGS: 199200, Profit: 274900, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -7220,7 +7220,7 @@ export class PivotSalesData extends Array { Sales: 17186.1, COGS: 23630, Profit: 6443.9, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -7236,7 +7236,7 @@ export class PivotSalesData extends Array { Sales: 753492, COGS: 229500, Profit: 523992, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -7252,7 +7252,7 @@ export class PivotSalesData extends Array { Sales: 1024932, COGS: 432000, Profit: 592932, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -7268,7 +7268,7 @@ export class PivotSalesData extends Array { Sales: 36433.92, COGS: 3426, Profit: 33007.92, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -7284,7 +7284,7 @@ export class PivotSalesData extends Array { Sales: 492970, COGS: 79440, Profit: 413530, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -7300,7 +7300,7 @@ export class PivotSalesData extends Array { Sales: 41017.2, COGS: 3885, Profit: 37132.2, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -7316,7 +7316,7 @@ export class PivotSalesData extends Array { Sales: 546477.5, COGS: 97080, Profit: 449397.5, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -7332,7 +7332,7 @@ export class PivotSalesData extends Array { Sales: 257887.5, COGS: 257400, Profit: 487.5, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -7348,7 +7348,7 @@ export class PivotSalesData extends Array { Sales: 9159.6, COGS: 5355, Profit: 3804.6, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -7364,7 +7364,7 @@ export class PivotSalesData extends Array { Sales: 934704, COGS: 479000, Profit: 455704, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7380,7 +7380,7 @@ export class PivotSalesData extends Array { Sales: 1417836, COGS: 741520, Profit: 676316, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7396,7 +7396,7 @@ export class PivotSalesData extends Array { Sales: 463177.5, COGS: 327480, Profit: 135697.5, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7412,7 +7412,7 @@ export class PivotSalesData extends Array { Sales: 5077.5, COGS: 19250, Profit: 14172.5, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -7428,7 +7428,7 @@ export class PivotSalesData extends Array { Sales: 14488.18, COGS: 10065, Profit: 4423.18, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -7444,7 +7444,7 @@ export class PivotSalesData extends Array { Sales: 27754.8, COGS: 3165, Profit: 24589.8, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7460,7 +7460,7 @@ export class PivotSalesData extends Array { Sales: 6699.84, COGS: 3252, Profit: 3447.84, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7476,7 +7476,7 @@ export class PivotSalesData extends Array { Sales: 51573.6, COGS: 15660, Profit: 35913.6, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -7492,7 +7492,7 @@ export class PivotSalesData extends Array { Sales: 538538, COGS: 771160, Profit: 232622, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -7508,7 +7508,7 @@ export class PivotSalesData extends Array { Sales: 490511, COGS: 748020, Profit: 257509, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -7524,7 +7524,7 @@ export class PivotSalesData extends Array { Sales: 408477.5, COGS: 97080, Profit: 311397.5, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -7540,7 +7540,7 @@ export class PivotSalesData extends Array { Sales: 144262.5, COGS: 257400, Profit: 113137.5, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -7556,7 +7556,7 @@ export class PivotSalesData extends Array { Sales: 45034.8, COGS: 3165, Profit: 41869.8, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7572,7 +7572,7 @@ export class PivotSalesData extends Array { Sales: 45842.4, COGS: 5440, Profit: 40402.4, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -7588,7 +7588,7 @@ export class PivotSalesData extends Array { Sales: 30603.84, COGS: 3252, Profit: 27351.84, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7604,7 +7604,7 @@ export class PivotSalesData extends Array { Sales: 38345, COGS: 79440, Profit: 41095, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -7620,7 +7620,7 @@ export class PivotSalesData extends Array { Sales: 636516, COGS: 53500, Profit: 583016, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -7636,7 +7636,7 @@ export class PivotSalesData extends Array { Sales: 1126111, COGS: 748020, Profit: 378091, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -7652,7 +7652,7 @@ export class PivotSalesData extends Array { Sales: 440927.5, COGS: 327480, Profit: 113447.5, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7668,7 +7668,7 @@ export class PivotSalesData extends Array { Sales: 272188, COGS: 69160, Profit: 203028, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -7684,7 +7684,7 @@ export class PivotSalesData extends Array { Sales: 407120, COGS: 504400, Profit: 97280, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -7700,7 +7700,7 @@ export class PivotSalesData extends Array { Sales: 1215246, COGS: 64750, Profit: 1150496, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -7716,7 +7716,7 @@ export class PivotSalesData extends Array { Sales: 636594, COGS: 275250, Profit: 361344, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -7732,7 +7732,7 @@ export class PivotSalesData extends Array { Sales: 432060, COGS: 273120, Profit: 158940, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -7748,7 +7748,7 @@ export class PivotSalesData extends Array { Sales: 468188, COGS: 771160, Profit: 302972, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -7764,7 +7764,7 @@ export class PivotSalesData extends Array { Sales: 13085.6, COGS: 12360, Profit: 725.6, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -7780,7 +7780,7 @@ export class PivotSalesData extends Array { Sales: 46643.6, COGS: 9410, Profit: 37233.6, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -7796,7 +7796,7 @@ export class PivotSalesData extends Array { Sales: 601404, COGS: 479000, Profit: 122404, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7812,7 +7812,7 @@ export class PivotSalesData extends Array { Sales: 429711.88, COGS: 509220, Profit: 79508.13, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -7828,7 +7828,7 @@ export class PivotSalesData extends Array { Sales: 26472, COGS: 25800, Profit: 672, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -7844,7 +7844,7 @@ export class PivotSalesData extends Array { Sales: 616899, COGS: 172250, Profit: 444649, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -7860,7 +7860,7 @@ export class PivotSalesData extends Array { Sales: 43015.08, COGS: 5841, Profit: 37174.08, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -7876,7 +7876,7 @@ export class PivotSalesData extends Array { Sales: 12933.12, COGS: 2724, Profit: 10209.12, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -7892,7 +7892,7 @@ export class PivotSalesData extends Array { Sales: 20308.82, COGS: 9790, Profit: 10518.82, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -7908,7 +7908,7 @@ export class PivotSalesData extends Array { Sales: 13727.64, COGS: 5703, Profit: 8024.64, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -7924,7 +7924,7 @@ export class PivotSalesData extends Array { Sales: 16132.76, COGS: 2720, Profit: 13412.76, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -7940,7 +7940,7 @@ export class PivotSalesData extends Array { Sales: 1255131.5, COGS: 467220, Profit: 787911.5, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -7956,7 +7956,7 @@ export class PivotSalesData extends Array { Sales: 491673.75, COGS: 154440, Profit: 337233.75, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7972,7 +7972,7 @@ export class PivotSalesData extends Array { Sales: 478352.5, COGS: 204720, Profit: 273632.5, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7988,7 +7988,7 @@ export class PivotSalesData extends Array { Sales: 661489.5, COGS: 608625, Profit: 52864.5, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -8004,7 +8004,7 @@ export class PivotSalesData extends Array { Sales: 127722.5, COGS: 212880, Profit: 85157.5, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -8020,7 +8020,7 @@ export class PivotSalesData extends Array { Sales: 47915.64, COGS: 5703, Profit: 42212.64, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -8036,7 +8036,7 @@ export class PivotSalesData extends Array { Sales: 904299, COGS: 172250, Profit: 732049, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -8052,7 +8052,7 @@ export class PivotSalesData extends Array { Sales: 448612.5, COGS: 188400, Profit: 260212.5, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -8068,7 +8068,7 @@ export class PivotSalesData extends Array { Sales: 16054.98, COGS: 4108.5, Profit: 11946.48, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -8084,7 +8084,7 @@ export class PivotSalesData extends Array { Sales: 553966.25, COGS: 241080, Profit: 312886.25, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -8100,7 +8100,7 @@ export class PivotSalesData extends Array { Sales: 10584.75, COGS: 19450, Profit: 8865.25, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -8116,7 +8116,7 @@ export class PivotSalesData extends Array { Sales: 213173.75, COGS: 154440, Profit: 58733.75, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -8132,7 +8132,7 @@ export class PivotSalesData extends Array { Sales: 286227.5, COGS: 204720, Profit: 81507.5, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -8148,7 +8148,7 @@ export class PivotSalesData extends Array { Sales: 471841.25, COGS: 241080, Profit: 230761.25, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -8164,7 +8164,7 @@ export class PivotSalesData extends Array { Sales: 322704, COGS: 711000, Profit: 388296, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -8180,7 +8180,7 @@ export class PivotSalesData extends Array { Sales: 9822.24, COGS: 5748, Profit: 4074.24, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -8196,7 +8196,7 @@ export class PivotSalesData extends Array { Sales: 207237.5, COGS: 188400, Profit: 18837.5, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -8212,7 +8212,7 @@ export class PivotSalesData extends Array { Sales: 524634, COGS: 468500, Profit: 56134, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -8228,7 +8228,7 @@ export class PivotSalesData extends Array { Sales: 118909, COGS: 426920, Profit: 308011, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -8244,7 +8244,7 @@ export class PivotSalesData extends Array { Sales: 40299.75, COGS: 19450, Profit: 20849.75, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -8260,7 +8260,7 @@ export class PivotSalesData extends Array { Sales: 28681.4, COGS: 8310, Profit: 20371.4, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -8276,7 +8276,7 @@ export class PivotSalesData extends Array { Sales: 27196.4, COGS: 8800, Profit: 18396.4, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -8292,7 +8292,7 @@ export class PivotSalesData extends Array { Sales: 82409.7, COGS: 38505, Profit: 43904.7, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -8308,7 +8308,7 @@ export class PivotSalesData extends Array { Sales: 42631.56, COGS: 7437, Profit: 35194.56, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -8324,7 +8324,7 @@ export class PivotSalesData extends Array { Sales: 25121.4, COGS: 20310, Profit: 4811.4, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -8340,7 +8340,7 @@ export class PivotSalesData extends Array { Sales: 3386.4, COGS: 20310, Profit: 16923.6, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -8356,7 +8356,7 @@ export class PivotSalesData extends Array { Sales: 65978.4, COGS: 22610, Profit: 43368.4, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -8372,7 +8372,7 @@ export class PivotSalesData extends Array { Sales: 42751.2, COGS: 7360, Profit: 35391.2, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -8388,7 +8388,7 @@ export class PivotSalesData extends Array { Sales: 7160.72, COGS: 14255, Profit: 7094.28, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -8404,7 +8404,7 @@ export class PivotSalesData extends Array { Sales: 342348, COGS: 505250, Profit: 162902, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -8420,7 +8420,7 @@ export class PivotSalesData extends Array { Sales: 167314, COGS: 71240, Profit: 96074, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -8436,7 +8436,7 @@ export class PivotSalesData extends Array { Sales: 60814.8, COGS: 19670, Profit: 41144.8, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -8452,7 +8452,7 @@ export class PivotSalesData extends Array { Sales: 800592, COGS: 464750, Profit: 335842, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -8468,7 +8468,7 @@ export class PivotSalesData extends Array { Sales: 25094.72, COGS: 14255, Profit: 10839.72, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -8484,7 +8484,7 @@ export class PivotSalesData extends Array { Sales: 1313748, COGS: 505250, Profit: 808498, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -8500,7 +8500,7 @@ export class PivotSalesData extends Array { Sales: 148310, COGS: 136560, Profit: 11750, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -8516,7 +8516,7 @@ export class PivotSalesData extends Array { Sales: 16911.72, COGS: 21255, Profit: 4343.28, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -8532,7 +8532,7 @@ export class PivotSalesData extends Array { Sales: 162525, COGS: 95400, Profit: 67125, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -8548,7 +8548,7 @@ export class PivotSalesData extends Array { Sales: 1329126, COGS: 353625, Profit: 975501, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -8564,7 +8564,7 @@ export class PivotSalesData extends Array { Sales: 1123584, COGS: 729500, Profit: 394084, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -8580,7 +8580,7 @@ export class PivotSalesData extends Array { Sales: 569450, COGS: 897000, Profit: 327550, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -8596,7 +8596,7 @@ export class PivotSalesData extends Array { Sales: 426685, COGS: 358560, Profit: 68125, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -8612,7 +8612,7 @@ export class PivotSalesData extends Array { Sales: 30109.2, COGS: 2180, Profit: 27929.2, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -8628,7 +8628,7 @@ export class PivotSalesData extends Array { Sales: 57100.8, COGS: 20740, Profit: 36360.8, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -8644,7 +8644,7 @@ export class PivotSalesData extends Array { Sales: 66195.2, COGS: 10560, Profit: 55635.2, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -8660,7 +8660,7 @@ export class PivotSalesData extends Array { Sales: 65732.4, COGS: 6710, Profit: 59022.4, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -8676,7 +8676,7 @@ export class PivotSalesData extends Array { Sales: 48936.6, COGS: 15140, Profit: 33796.6, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -8692,7 +8692,7 @@ export class PivotSalesData extends Array { Sales: 846664, COGS: 71240, Profit: 775424, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -8708,7 +8708,7 @@ export class PivotSalesData extends Array { Sales: 61185, COGS: 136560, Profit: 75375, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -8724,7 +8724,7 @@ export class PivotSalesData extends Array { Sales: 17572.8, COGS: 4395, Profit: 13177.8, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -8740,7 +8740,7 @@ export class PivotSalesData extends Array { Sales: 70503.2, COGS: 26460, Profit: 44043.2, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -8756,7 +8756,7 @@ export class PivotSalesData extends Array { Sales: 593222, COGS: 566020, Profit: 27202, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -8772,7 +8772,7 @@ export class PivotSalesData extends Array { Sales: 3748.32, COGS: 2598, Profit: 1150.32, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -8788,7 +8788,7 @@ export class PivotSalesData extends Array { Sales: 1446564, COGS: 90740, Profit: 1355824, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -8804,7 +8804,7 @@ export class PivotSalesData extends Array { Sales: 1197672, COGS: 566020, Profit: 631652, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -8820,7 +8820,7 @@ export class PivotSalesData extends Array { Sales: 40701.6, COGS: 15140, Profit: 25561.6, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -8836,7 +8836,7 @@ export class PivotSalesData extends Array { Sales: 1003940, COGS: 484900, Profit: 519040, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -8852,7 +8852,7 @@ export class PivotSalesData extends Array { Sales: 499255, COGS: 128880, Profit: 370375, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -8868,7 +8868,7 @@ export class PivotSalesData extends Array { Sales: 1424402, COGS: 495820, Profit: 928582, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -8884,7 +8884,7 @@ export class PivotSalesData extends Array { Sales: 61442.4, COGS: 6710, Profit: 54732.4, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -8900,7 +8900,7 @@ export class PivotSalesData extends Array { Sales: 443058, COGS: 462280, Profit: 19222, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -8916,7 +8916,7 @@ export class PivotSalesData extends Array { Sales: 3787.35, COGS: 5795, Profit: 2007.65, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -8932,7 +8932,7 @@ export class PivotSalesData extends Array { Sales: 4594.8, COGS: 6860, Profit: 2265.2, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -8948,7 +8948,7 @@ export class PivotSalesData extends Array { Sales: 2516.85, COGS: 11745, Profit: 9228.15, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -8964,7 +8964,7 @@ export class PivotSalesData extends Array { Sales: 15333.85, COGS: 13445, Profit: 1888.85, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -8980,7 +8980,7 @@ export class PivotSalesData extends Array { Sales: 6641.4, COGS: 7293, Profit: 651.6, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -8996,7 +8996,7 @@ export class PivotSalesData extends Array { Sales: 34421.4, COGS: 7293, Profit: 27128.4, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -9012,7 +9012,7 @@ export class PivotSalesData extends Array { Sales: 6562.85, COGS: 13445, Profit: 6882.15, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -9028,7 +9028,7 @@ export class PivotSalesData extends Array { Sales: 6746.95, COGS: 8415, Profit: 1668.05, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -9044,7 +9044,7 @@ export class PivotSalesData extends Array { Sales: 4954.2, COGS: 3369, Profit: 1585.2, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -9060,7 +9060,7 @@ export class PivotSalesData extends Array { Sales: 5222.35, COGS: 5795, Profit: 572.65, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -9076,7 +9076,7 @@ export class PivotSalesData extends Array { Sales: 49761, COGS: 5595, Profit: 44166, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -9092,7 +9092,7 @@ export class PivotSalesData extends Array { Sales: 23042.4, COGS: 3348, Profit: 19694.4, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -9108,7 +9108,7 @@ export class PivotSalesData extends Array { Sales: 38117, COGS: 15630, Profit: 22487, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -9124,7 +9124,7 @@ export class PivotSalesData extends Array { Sales: 129135, COGS: 247750, Profit: 118615, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -9140,7 +9140,7 @@ export class PivotSalesData extends Array { Sales: 24501.4, COGS: 5080, Profit: 19421.4, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -9156,7 +9156,7 @@ export class PivotSalesData extends Array { Sales: 15981.75, COGS: 27910, Profit: 11928.25, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -9172,7 +9172,7 @@ export class PivotSalesData extends Array { Sales: 17160.5, COGS: 2850, Profit: 14310.5, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -9188,7 +9188,7 @@ export class PivotSalesData extends Array { Sales: 19611.55, COGS: 12435, Profit: 7176.55, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -9204,7 +9204,7 @@ export class PivotSalesData extends Array { Sales: 1099271.25, COGS: 359970, Profit: 739301.25, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -9220,7 +9220,7 @@ export class PivotSalesData extends Array { Sales: 379956.25, COGS: 435240, Profit: 55283.75, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -9236,7 +9236,7 @@ export class PivotSalesData extends Array { Sales: 823550, COGS: 187200, Profit: 636350, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -9252,7 +9252,7 @@ export class PivotSalesData extends Array { Sales: 12118.8, COGS: 7026, Profit: 5092.8, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -9268,7 +9268,7 @@ export class PivotSalesData extends Array { Sales: 79200, COGS: 275000, Profit: 195800, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -9284,7 +9284,7 @@ export class PivotSalesData extends Array { Sales: 30897, COGS: 13030, Profit: 17867, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -9300,7 +9300,7 @@ export class PivotSalesData extends Array { Sales: 493800, COGS: 359040, Profit: 134760, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -9316,7 +9316,7 @@ export class PivotSalesData extends Array { Sales: 111593.75, COGS: 286200, Profit: 174606.25, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -9332,7 +9332,7 @@ export class PivotSalesData extends Array { Sales: 976995, COGS: 401750, Profit: 575245, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -9348,7 +9348,7 @@ export class PivotSalesData extends Array { Sales: 26870.55, COGS: 11635, Profit: 15235.55, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -9364,7 +9364,7 @@ export class PivotSalesData extends Array { Sales: 1289235, COGS: 247750, Profit: 1041485, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -9380,7 +9380,7 @@ export class PivotSalesData extends Array { Sales: 531265, COGS: 156520, Profit: 374745, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -9396,7 +9396,7 @@ export class PivotSalesData extends Array { Sales: 30330, COGS: 26200, Profit: 4130, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -9412,7 +9412,7 @@ export class PivotSalesData extends Array { Sales: 1304660, COGS: 319280, Profit: 985380, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -9428,7 +9428,7 @@ export class PivotSalesData extends Array { Sales: 85891, COGS: 13890, Profit: 72001, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -9444,7 +9444,7 @@ export class PivotSalesData extends Array { Sales: 510368.75, COGS: 103320, Profit: 407048.75, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -9460,7 +9460,7 @@ export class PivotSalesData extends Array { Sales: 163475, COGS: 84480, Profit: 78995, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -9476,7 +9476,7 @@ export class PivotSalesData extends Array { Sales: 3098, COGS: 18020, Profit: 14922, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -9492,7 +9492,7 @@ export class PivotSalesData extends Array { Sales: 64857, COGS: 26630, Profit: 38227, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -9508,7 +9508,7 @@ export class PivotSalesData extends Array { Sales: 9059.4, COGS: 10680, Profit: 1620.6, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -9524,7 +9524,7 @@ export class PivotSalesData extends Array { Sales: 50658, COGS: 21160, Profit: 29498, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -9540,7 +9540,7 @@ export class PivotSalesData extends Array { Sales: 33243.75, COGS: 5550, Profit: 27693.75, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -9556,7 +9556,7 @@ export class PivotSalesData extends Array { Sales: 18254.25, COGS: 28610, Profit: 10355.75, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -9572,7 +9572,7 @@ export class PivotSalesData extends Array { Sales: 29831.25, COGS: 96840, Profit: 67008.75, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -9588,7 +9588,7 @@ export class PivotSalesData extends Array { Sales: 871815, COGS: 156520, Profit: 715295, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -9604,7 +9604,7 @@ export class PivotSalesData extends Array { Sales: 45828, COGS: 28320, Profit: 17508, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -9620,7 +9620,7 @@ export class PivotSalesData extends Array { Sales: 33181, COGS: 15790, Profit: 17391, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -9636,7 +9636,7 @@ export class PivotSalesData extends Array { Sales: 132868.75, COGS: 103320, Profit: 29548.75, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -9652,7 +9652,7 @@ export class PivotSalesData extends Array { Sales: 417975, COGS: 84480, Profit: 333495, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -9668,7 +9668,7 @@ export class PivotSalesData extends Array { Sales: 23387, COGS: 10330, Profit: 13057, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -9684,7 +9684,7 @@ export class PivotSalesData extends Array { Sales: 45150, COGS: 312500, Profit: 267350, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -9700,7 +9700,7 @@ export class PivotSalesData extends Array { Sales: 65311, COGS: 13890, Profit: 51421, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -9716,7 +9716,7 @@ export class PivotSalesData extends Array { Sales: 23935, COGS: 12650, Profit: 11285, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -9732,7 +9732,7 @@ export class PivotSalesData extends Array { Sales: 58383, COGS: 22970, Profit: 35413, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -9748,7 +9748,7 @@ export class PivotSalesData extends Array { Sales: 55917, COGS: 26630, Profit: 29287, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -9764,7 +9764,7 @@ export class PivotSalesData extends Array { Sales: 16523.5, COGS: 2850, Profit: 13673.5, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -9780,7 +9780,7 @@ export class PivotSalesData extends Array { Sales: 20731.55, COGS: 12435, Profit: 8296.55, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -9796,7 +9796,7 @@ export class PivotSalesData extends Array { Sales: 237125, COGS: 351000, Profit: 113875, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -9812,7 +9812,7 @@ export class PivotSalesData extends Array { Sales: 433440, COGS: 143520, Profit: 289920, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -9828,7 +9828,7 @@ export class PivotSalesData extends Array { Sales: 1305010, COGS: 319280, Profit: 985730, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -9844,7 +9844,7 @@ export class PivotSalesData extends Array { Sales: 1267350, COGS: 312500, Profit: 954850, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -9860,7 +9860,7 @@ export class PivotSalesData extends Array { Sales: 44474.1, COGS: 38010, Profit: 6464.1, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -9876,7 +9876,7 @@ export class PivotSalesData extends Array { Sales: 37999, COGS: 11175, Profit: 26824, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -9892,7 +9892,7 @@ export class PivotSalesData extends Array { Sales: 6905.4, COGS: 28440, Profit: 21534.6, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -9908,7 +9908,7 @@ export class PivotSalesData extends Array { Sales: 41223.36, COGS: 1686, Profit: 39537.36, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -9924,7 +9924,7 @@ export class PivotSalesData extends Array { Sales: 5184.72, COGS: 6897, Profit: 1712.28, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -9940,7 +9940,7 @@ export class PivotSalesData extends Array { Sales: 46398, COGS: 20300, Profit: 26098, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -9956,7 +9956,7 @@ export class PivotSalesData extends Array { Sales: 26167.54, COGS: 1315, Profit: 24852.54, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -9972,7 +9972,7 @@ export class PivotSalesData extends Array { Sales: 266722.5, COGS: 106440, Profit: 160282.5, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -9988,7 +9988,7 @@ export class PivotSalesData extends Array { Sales: 665070, COGS: 254800, Profit: 410270, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -10004,7 +10004,7 @@ export class PivotSalesData extends Array { Sales: 732690, COGS: 379600, Profit: 353090, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -10020,7 +10020,7 @@ export class PivotSalesData extends Array { Sales: 24323.74, COGS: 7015, Profit: 17308.74, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10036,7 +10036,7 @@ export class PivotSalesData extends Array { Sales: 24499.44, COGS: 8169, Profit: 16330.44, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -10052,7 +10052,7 @@ export class PivotSalesData extends Array { Sales: 630084, COGS: 388960, Profit: 241124, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -10068,7 +10068,7 @@ export class PivotSalesData extends Array { Sales: 13896.72, COGS: 6897, Profit: 6999.72, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10084,7 +10084,7 @@ export class PivotSalesData extends Array { Sales: 255983, COGS: 189020, Profit: 66963, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10100,7 +10100,7 @@ export class PivotSalesData extends Array { Sales: 294985, COGS: 114240, Profit: 180745, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -10116,7 +10116,7 @@ export class PivotSalesData extends Array { Sales: 124087.5, COGS: 330600, Profit: 206512.5, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -10132,7 +10132,7 @@ export class PivotSalesData extends Array { Sales: 10668, COGS: 15300, Profit: 4632, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -10148,7 +10148,7 @@ export class PivotSalesData extends Array { Sales: 1265334, COGS: 388960, Profit: 876374, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -10164,7 +10164,7 @@ export class PivotSalesData extends Array { Sales: 3493.84, COGS: 7490, Profit: 3996.16, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -10180,7 +10180,7 @@ export class PivotSalesData extends Array { Sales: 1117122, COGS: 305250, Profit: 811872, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10196,7 +10196,7 @@ export class PivotSalesData extends Array { Sales: 418754, COGS: 539760, Profit: 121006, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10212,7 +10212,7 @@ export class PivotSalesData extends Array { Sales: 57425.4, COGS: 28440, Profit: 28985.4, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -10228,7 +10228,7 @@ export class PivotSalesData extends Array { Sales: 29162.84, COGS: 7490, Profit: 21672.84, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -10244,7 +10244,7 @@ export class PivotSalesData extends Array { Sales: 470922, COGS: 305250, Profit: 165672, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10260,7 +10260,7 @@ export class PivotSalesData extends Array { Sales: 36892.4, COGS: 11230, Profit: 25662.4, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -10276,7 +10276,7 @@ export class PivotSalesData extends Array { Sales: 439152, COGS: 609000, Profit: 169848, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -10292,7 +10292,7 @@ export class PivotSalesData extends Array { Sales: 255093.75, COGS: 238500, Profit: 16593.75, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -10308,7 +10308,7 @@ export class PivotSalesData extends Array { Sales: 127841, COGS: 436540, Profit: 308699, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -10324,7 +10324,7 @@ export class PivotSalesData extends Array { Sales: 99533, COGS: 189020, Profit: 89487, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10340,7 +10340,7 @@ export class PivotSalesData extends Array { Sales: 28103.74, COGS: 7015, Profit: 21088.74, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10356,7 +10356,7 @@ export class PivotSalesData extends Array { Sales: 302904, COGS: 539760, Profit: 236856, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10372,7 +10372,7 @@ export class PivotSalesData extends Array { Sales: 26551.6, COGS: 17570, Profit: 8981.6, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10388,7 +10388,7 @@ export class PivotSalesData extends Array { Sales: 20191.8, COGS: 21980, Profit: 1788.2, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -10404,7 +10404,7 @@ export class PivotSalesData extends Array { Sales: 55401.3, COGS: 17430, Profit: 37971.3, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -10420,7 +10420,7 @@ export class PivotSalesData extends Array { Sales: 5667.3, COGS: 11530, Profit: 5862.7, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -10436,7 +10436,7 @@ export class PivotSalesData extends Array { Sales: 32111.6, COGS: 17570, Profit: 14541.6, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10452,7 +10452,7 @@ export class PivotSalesData extends Array { Sales: 13698.8, COGS: 10010, Profit: 3688.8, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -10468,7 +10468,7 @@ export class PivotSalesData extends Array { Sales: 11564.14, COGS: 6665, Profit: 4899.14, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -10484,7 +10484,7 @@ export class PivotSalesData extends Array { Sales: 25347.3, COGS: 11530, Profit: 13817.3, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -10500,7 +10500,7 @@ export class PivotSalesData extends Array { Sales: 3445.32, COGS: 2181, Profit: 1264.32, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -10516,7 +10516,7 @@ export class PivotSalesData extends Array { Sales: 45349.44, COGS: 5652, Profit: 39697.44, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -10532,7 +10532,7 @@ export class PivotSalesData extends Array { Sales: 71252.4, COGS: 18340, Profit: 52912.4, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -10548,7 +10548,7 @@ export class PivotSalesData extends Array { Sales: 51710.4, COGS: 7020, Profit: 44690.4, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -10564,7 +10564,7 @@ export class PivotSalesData extends Array { Sales: 2628.72, COGS: 7026, Profit: 4397.28, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -10580,7 +10580,7 @@ export class PivotSalesData extends Array { Sales: 21229.81, COGS: 5155, Profit: 16074.81, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -10596,7 +10596,7 @@ export class PivotSalesData extends Array { Sales: 14604.9, COGS: 12620, Profit: 1984.9, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -10612,7 +10612,7 @@ export class PivotSalesData extends Array { Sales: 28024.85, COGS: 5675, Profit: 22349.85, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -10628,7 +10628,7 @@ export class PivotSalesData extends Array { Sales: 27549.97, COGS: 2735, Profit: 24814.97, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -10644,7 +10644,7 @@ export class PivotSalesData extends Array { Sales: 25285.82, COGS: 7910, Profit: 17375.82, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -10660,7 +10660,7 @@ export class PivotSalesData extends Array { Sales: 27759.66, COGS: 5215.5, Profit: 22544.16, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -10676,7 +10676,7 @@ export class PivotSalesData extends Array { Sales: 18275.4, COGS: 6645, Profit: 11630.4, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -10692,7 +10692,7 @@ export class PivotSalesData extends Array { Sales: 11565.82, COGS: 7910, Profit: 3655.82, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -10708,7 +10708,7 @@ export class PivotSalesData extends Array { Sales: 30754.85, COGS: 5675, Profit: 25079.85, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -10724,7 +10724,7 @@ export class PivotSalesData extends Array { Sales: 392955.5, COGS: 457860, Profit: 64904.5, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -10740,7 +10740,7 @@ export class PivotSalesData extends Array { Sales: 475092, COGS: 112000, Profit: 363092, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -10756,7 +10756,7 @@ export class PivotSalesData extends Array { Sales: 178899, COGS: 545250, Profit: 366351, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -10772,7 +10772,7 @@ export class PivotSalesData extends Array { Sales: 23593.6, COGS: 19760, Profit: 3833.6, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -10788,7 +10788,7 @@ export class PivotSalesData extends Array { Sales: 818799, COGS: 545250, Profit: 273549, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -10804,7 +10804,7 @@ export class PivotSalesData extends Array { Sales: 358000, COGS: 300000, Profit: 58000, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -10820,7 +10820,7 @@ export class PivotSalesData extends Array { Sales: 709458, COGS: 425500, Profit: 283958, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -10836,7 +10836,7 @@ export class PivotSalesData extends Array { Sales: 941292, COGS: 112000, Profit: 829292, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -10852,7 +10852,7 @@ export class PivotSalesData extends Array { Sales: 479261.25, COGS: 421560, Profit: 57701.25, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -10868,7 +10868,7 @@ export class PivotSalesData extends Array { Sales: 56938.95, COGS: 21010, Profit: 35928.95, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -10884,7 +10884,7 @@ export class PivotSalesData extends Array { Sales: 8682.45, COGS: 29310, Profit: 20627.55, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -10900,7 +10900,7 @@ export class PivotSalesData extends Array { Sales: 2911, COGS: 15350, Profit: 12439, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -10916,7 +10916,7 @@ export class PivotSalesData extends Array { Sales: 371217, COGS: 280750, Profit: 90467, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -10932,7 +10932,7 @@ export class PivotSalesData extends Array { Sales: 212916, COGS: 351000, Profit: 138084, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -10948,7 +10948,7 @@ export class PivotSalesData extends Array { Sales: 37219.08, COGS: 8289, Profit: 28930.08, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -10964,7 +10964,7 @@ export class PivotSalesData extends Array { Sales: 2598.75, COGS: 10625, Profit: 8026.25, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -10980,7 +10980,7 @@ export class PivotSalesData extends Array { Sales: 204861, COGS: 414750, Profit: 209889, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -10996,7 +10996,7 @@ export class PivotSalesData extends Array { Sales: 77987.4, COGS: 6090, Profit: 71897.4, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -11012,7 +11012,7 @@ export class PivotSalesData extends Array { Sales: 293988.75, COGS: 250440, Profit: 43548.75, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -11028,7 +11028,7 @@ export class PivotSalesData extends Array { Sales: 47573.6, COGS: 19760, Profit: 27813.6, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -11044,7 +11044,7 @@ export class PivotSalesData extends Array { Sales: 61650.6, COGS: 14210, Profit: 47440.6, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -11060,7 +11060,7 @@ export class PivotSalesData extends Array { Sales: 314688, COGS: 343000, Profit: 28312, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -11076,7 +11076,7 @@ export class PivotSalesData extends Array { Sales: 17076.8, COGS: 5880, Profit: 11196.8, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -11092,7 +11092,7 @@ export class PivotSalesData extends Array { Sales: 43042.62, COGS: 9733.5, Profit: 33309.12, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -11108,7 +11108,7 @@ export class PivotSalesData extends Array { Sales: 336261, COGS: 239750, Profit: 96511, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -11124,7 +11124,7 @@ export class PivotSalesData extends Array { Sales: 612213, COGS: 686750, Profit: 74537, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -11140,7 +11140,7 @@ export class PivotSalesData extends Array { Sales: 38231.25, COGS: 197400, Profit: 159168.75, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -11156,7 +11156,7 @@ export class PivotSalesData extends Array { Sales: 23688, COGS: 747760, Profit: 724072, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -11172,7 +11172,7 @@ export class PivotSalesData extends Array { Sales: 462052.5, COGS: 119280, Profit: 342772.5, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -11188,7 +11188,7 @@ export class PivotSalesData extends Array { Sales: 17474.8, COGS: 11180, Profit: 6294.8, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -11204,7 +11204,7 @@ export class PivotSalesData extends Array { Sales: 860388, COGS: 343000, Profit: 517388, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -11220,7 +11220,7 @@ export class PivotSalesData extends Array { Sales: 10261.72, COGS: 2440, Profit: 7821.72, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -11236,7 +11236,7 @@ export class PivotSalesData extends Array { Sales: 31508.8, COGS: 12820, Profit: 18688.8, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11252,7 +11252,7 @@ export class PivotSalesData extends Array { Sales: 29599.08, COGS: 1285, Profit: 28314.08, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -11268,7 +11268,7 @@ export class PivotSalesData extends Array { Sales: 31488.8, COGS: 12820, Profit: 18668.8, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11284,7 +11284,7 @@ export class PivotSalesData extends Array { Sales: 365975, COGS: 184800, Profit: 181175, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -11300,7 +11300,7 @@ export class PivotSalesData extends Array { Sales: 49992, COGS: 4900, Profit: 45092, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -11316,7 +11316,7 @@ export class PivotSalesData extends Array { Sales: 551964, COGS: 354120, Profit: 197844, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -11332,7 +11332,7 @@ export class PivotSalesData extends Array { Sales: 43288.8, COGS: 25010, Profit: 18278.8, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -11348,7 +11348,7 @@ export class PivotSalesData extends Array { Sales: 81867.2, COGS: 7080, Profit: 74787.2, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11364,7 +11364,7 @@ export class PivotSalesData extends Array { Sales: 59508, COGS: 6450, Profit: 53058, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -11380,7 +11380,7 @@ export class PivotSalesData extends Array { Sales: 1270212, COGS: 390500, Profit: 879712, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -11396,7 +11396,7 @@ export class PivotSalesData extends Array { Sales: 1057608, COGS: 320750, Profit: 736858, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -11412,7 +11412,7 @@ export class PivotSalesData extends Array { Sales: 22981.8, COGS: 7110, Profit: 15871.8, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -11428,7 +11428,7 @@ export class PivotSalesData extends Array { Sales: 323735, COGS: 133680, Profit: 190055, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -11444,7 +11444,7 @@ export class PivotSalesData extends Array { Sales: 23101.96, COGS: 6295, Profit: 16806.96, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -11460,7 +11460,7 @@ export class PivotSalesData extends Array { Sales: 19091.8, COGS: 5475, Profit: 13616.8, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -11476,7 +11476,7 @@ export class PivotSalesData extends Array { Sales: 57094.4, COGS: 13660, Profit: 43434.4, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11492,7 +11492,7 @@ export class PivotSalesData extends Array { Sales: 1192860, COGS: 615000, Profit: 577860, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11508,7 +11508,7 @@ export class PivotSalesData extends Array { Sales: 7719.32, COGS: 3390, Profit: 4329.32, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -11524,7 +11524,7 @@ export class PivotSalesData extends Array { Sales: 20560.12, COGS: 7990, Profit: 12570.12, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -11540,7 +11540,7 @@ export class PivotSalesData extends Array { Sales: 12384.96, COGS: 12045, Profit: 339.96, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -11556,7 +11556,7 @@ export class PivotSalesData extends Array { Sales: 78505.6, COGS: 19340, Profit: 59165.6, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -11572,7 +11572,7 @@ export class PivotSalesData extends Array { Sales: 29471.2, COGS: 29930, Profit: 458.8, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -11588,7 +11588,7 @@ export class PivotSalesData extends Array { Sales: 918162, COGS: 557960, Profit: 360202, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -11604,7 +11604,7 @@ export class PivotSalesData extends Array { Sales: 27484.24, COGS: 9730, Profit: 17754.24, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -11620,7 +11620,7 @@ export class PivotSalesData extends Array { Sales: 553714, COGS: 354120, Profit: 199594, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -11636,7 +11636,7 @@ export class PivotSalesData extends Array { Sales: 27085.92, COGS: 1794, Profit: 25291.92, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -11652,7 +11652,7 @@ export class PivotSalesData extends Array { Sales: 22179.08, COGS: 14535, Profit: 7644.08, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11668,7 +11668,7 @@ export class PivotSalesData extends Array { Sales: 14706.72, COGS: 11690, Profit: 3016.72, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11684,7 +11684,7 @@ export class PivotSalesData extends Array { Sales: 710436, COGS: 96500, Profit: 613936, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -11700,7 +11700,7 @@ export class PivotSalesData extends Array { Sales: 1210560, COGS: 158750, Profit: 1051810, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -11716,7 +11716,7 @@ export class PivotSalesData extends Array { Sales: 911764, COGS: 149370, Profit: 762394, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -11732,7 +11732,7 @@ export class PivotSalesData extends Array { Sales: 26487.72, COGS: 11690, Profit: 14797.72, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11748,7 +11748,7 @@ export class PivotSalesData extends Array { Sales: 868532, COGS: 99060, Profit: 769472, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -11764,7 +11764,7 @@ export class PivotSalesData extends Array { Sales: 948934, COGS: 109720, Profit: 839214, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -11780,7 +11780,7 @@ export class PivotSalesData extends Array { Sales: 519684, COGS: 533500, Profit: 13816, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -11796,7 +11796,7 @@ export class PivotSalesData extends Array { Sales: 174708, COGS: 202000, Profit: 27292, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -11812,7 +11812,7 @@ export class PivotSalesData extends Array { Sales: 57147.2, COGS: 7080, Profit: 50067.2, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11828,7 +11828,7 @@ export class PivotSalesData extends Array { Sales: 11595.08, COGS: 14535, Profit: 2939.92, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11844,7 +11844,7 @@ export class PivotSalesData extends Array { Sales: 27134.4, COGS: 13660, Profit: 13474.4, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11860,7 +11860,7 @@ export class PivotSalesData extends Array { Sales: 207060, COGS: 615000, Profit: 407940, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11876,7 +11876,7 @@ export class PivotSalesData extends Array { Sales: 5468, COGS: 15200, Profit: 9732, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -11892,7 +11892,7 @@ export class PivotSalesData extends Array { Sales: 24541.8, COGS: 7110, Profit: 17431.8, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -11908,7 +11908,7 @@ export class PivotSalesData extends Array { Sales: 28188, COGS: 4125, Profit: 24063, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -11924,7 +11924,7 @@ export class PivotSalesData extends Array { Sales: 779460, COGS: 158750, Profit: 620710, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -11940,7 +11940,7 @@ export class PivotSalesData extends Array { Sales: 71461.6, COGS: 4365, Profit: 67096.6, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -11956,7 +11956,7 @@ export class PivotSalesData extends Array { Sales: 292362, COGS: 273500, Profit: 18862, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11972,7 +11972,7 @@ export class PivotSalesData extends Array { Sales: 20651.64, COGS: 1101, Profit: 19550.64, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -11988,7 +11988,7 @@ export class PivotSalesData extends Array { Sales: 547432.5, COGS: 950625, Profit: 403192.5, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -12004,7 +12004,7 @@ export class PivotSalesData extends Array { Sales: 409171, COGS: 433160, Profit: 23989, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -12020,7 +12020,7 @@ export class PivotSalesData extends Array { Sales: 495006, COGS: 80500, Profit: 414506, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -12036,7 +12036,7 @@ export class PivotSalesData extends Array { Sales: 12517.32, COGS: 6963, Profit: 5554.32, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -12052,7 +12052,7 @@ export class PivotSalesData extends Array { Sales: 415733.75, COGS: 222840, Profit: 192893.75, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -12068,7 +12068,7 @@ export class PivotSalesData extends Array { Sales: 10864.07, COGS: 8055, Profit: 2809.07, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -12084,7 +12084,7 @@ export class PivotSalesData extends Array { Sales: 113033.75, COGS: 335640, Profit: 222606.25, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -12100,7 +12100,7 @@ export class PivotSalesData extends Array { Sales: 208782, COGS: 83500, Profit: 125282, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -12116,7 +12116,7 @@ export class PivotSalesData extends Array { Sales: 276645, COGS: 641250, Profit: 364605, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -12132,7 +12132,7 @@ export class PivotSalesData extends Array { Sales: 875864.5, COGS: 628420, Profit: 247444.5, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -12148,7 +12148,7 @@ export class PivotSalesData extends Array { Sales: 49908.75, COGS: 36750, Profit: 13158.75, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -12164,7 +12164,7 @@ export class PivotSalesData extends Array { Sales: 855462, COGS: 273500, Profit: 581962, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -12180,7 +12180,7 @@ export class PivotSalesData extends Array { Sales: 25658.55, COGS: 12270, Profit: 13388.55, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -12196,7 +12196,7 @@ export class PivotSalesData extends Array { Sales: 49691.64, COGS: 1101, Profit: 48590.64, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -12212,7 +12212,7 @@ export class PivotSalesData extends Array { Sales: 302352, COGS: 331000, Profit: 28648, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -12228,7 +12228,7 @@ export class PivotSalesData extends Array { Sales: 24591, COGS: 5325, Profit: 19266, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -12244,7 +12244,7 @@ export class PivotSalesData extends Array { Sales: 76283.75, COGS: 335640, Profit: 259356.25, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -12260,7 +12260,7 @@ export class PivotSalesData extends Array { Sales: 56744.25, COGS: 2450, Profit: 54294.25, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -12276,7 +12276,7 @@ export class PivotSalesData extends Array { Sales: 322075.5, COGS: 948375, Profit: 626299.5, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -12292,7 +12292,7 @@ export class PivotSalesData extends Array { Sales: 739679.5, COGS: 339820, Profit: 399859.5, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -12308,7 +12308,7 @@ export class PivotSalesData extends Array { Sales: 449746.25, COGS: 68040, Profit: 381706.25, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -12324,7 +12324,7 @@ export class PivotSalesData extends Array { Sales: 344762.5, COGS: 253200, Profit: 91562.5, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -12340,7 +12340,7 @@ export class PivotSalesData extends Array { Sales: 1148276.5, COGS: 329940, Profit: 818336.5, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -12356,7 +12356,7 @@ export class PivotSalesData extends Array { Sales: 29687.52, COGS: 5868, Profit: 23819.52, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -12372,7 +12372,7 @@ export class PivotSalesData extends Array { Sales: 103707, COGS: 664750, Profit: 561043, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -12388,7 +12388,7 @@ export class PivotSalesData extends Array { Sales: 418027.75, COGS: 351390, Profit: 66637.75, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -12404,7 +12404,7 @@ export class PivotSalesData extends Array { Sales: 52557.6, COGS: 2640, Profit: 49917.6, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -12420,7 +12420,7 @@ export class PivotSalesData extends Array { Sales: 762891, COGS: 466750, Profit: 296141, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -12436,7 +12436,7 @@ export class PivotSalesData extends Array { Sales: 29039.28, COGS: 6702, Profit: 22337.28, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -12452,7 +12452,7 @@ export class PivotSalesData extends Array { Sales: 52538.55, COGS: 12270, Profit: 40268.55, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -12468,7 +12468,7 @@ export class PivotSalesData extends Array { Sales: 221008.75, COGS: 105240, Profit: 115768.75, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -12484,7 +12484,7 @@ export class PivotSalesData extends Array { Sales: 983363.5, COGS: 538460, Profit: 444903.5, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -12500,7 +12500,7 @@ export class PivotSalesData extends Array { Sales: 953326.5, COGS: 329940, Profit: 623386.5, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -12516,7 +12516,7 @@ export class PivotSalesData extends Array { Sales: 18220.5, COGS: 9700, Profit: 8520.5, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -12532,7 +12532,7 @@ export class PivotSalesData extends Array { Sales: 27670.8, COGS: 16940, Profit: 10730.8, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -12548,7 +12548,7 @@ export class PivotSalesData extends Array { Sales: 24626.6, COGS: 6630, Profit: 17996.6, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -12564,7 +12564,7 @@ export class PivotSalesData extends Array { Sales: 7975.03, COGS: 4095, Profit: 3880.03, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -12580,7 +12580,7 @@ export class PivotSalesData extends Array { Sales: 26733.6, COGS: 4740, Profit: 21993.6, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -12596,7 +12596,7 @@ export class PivotSalesData extends Array { Sales: 13524.77, COGS: 2605, Profit: 10919.77, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -12612,7 +12612,7 @@ export class PivotSalesData extends Array { Sales: 55828.6, COGS: 9730, Profit: 46098.6, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -12628,7 +12628,7 @@ export class PivotSalesData extends Array { Sales: 32271.6, COGS: 10380, Profit: 21891.6, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -12644,7 +12644,7 @@ export class PivotSalesData extends Array { Sales: 20304.2, COGS: 1800, Profit: 18504.2, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -12660,7 +12660,7 @@ export class PivotSalesData extends Array { Sales: 10043.64, COGS: 5901, Profit: 4142.64, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -12676,7 +12676,7 @@ export class PivotSalesData extends Array { Sales: 6847.2, COGS: 26280, Profit: 19432.8, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -12692,7 +12692,7 @@ export class PivotSalesData extends Array { Sales: 25960.2, COGS: 1800, Profit: 24160.2, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -12708,7 +12708,7 @@ export class PivotSalesData extends Array { Sales: 57492.4, COGS: 26820, Profit: 30672.4, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -12724,7 +12724,7 @@ export class PivotSalesData extends Array { Sales: 27636.77, COGS: 2605, Profit: 25031.77, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -12740,7 +12740,7 @@ export class PivotSalesData extends Array { Sales: 17191.6, COGS: 10380, Profit: 6811.6, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -12756,7 +12756,7 @@ export class PivotSalesData extends Array { Sales: 35748.82, COGS: 16305, Profit: 19443.82, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -12772,7 +12772,7 @@ export class PivotSalesData extends Array { Sales: 30449.52, COGS: 918, Profit: 29531.52, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -12788,7 +12788,7 @@ export class PivotSalesData extends Array { Sales: 51100.8, COGS: 1158, Profit: 49942.8, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -12804,7 +12804,7 @@ export class PivotSalesData extends Array { Sales: 18467.4, COGS: 11640, Profit: 6827.4, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -12820,7 +12820,7 @@ export class PivotSalesData extends Array { Sales: 41980.8, COGS: 1158, Profit: 40822.8, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -12836,7 +12836,7 @@ export class PivotSalesData extends Array { Sales: 156681.25, COGS: 413460, Profit: 256778.75, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -12852,7 +12852,7 @@ export class PivotSalesData extends Array { Sales: 308475, COGS: 177840, Profit: 130635, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -12868,7 +12868,7 @@ export class PivotSalesData extends Array { Sales: 911645, COGS: 601380, Profit: 310265, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -12884,7 +12884,7 @@ export class PivotSalesData extends Array { Sales: 480325, COGS: 216480, Profit: 263845, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -12900,7 +12900,7 @@ export class PivotSalesData extends Array { Sales: 56802, COGS: 20720, Profit: 36082, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -12916,7 +12916,7 @@ export class PivotSalesData extends Array { Sales: 54652, COGS: 19540, Profit: 35112, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -12932,7 +12932,7 @@ export class PivotSalesData extends Array { Sales: 855870, COGS: 147750, Profit: 708120, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -12948,7 +12948,7 @@ export class PivotSalesData extends Array { Sales: 51814.5, COGS: 21670, Profit: 30144.5, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -12964,7 +12964,7 @@ export class PivotSalesData extends Array { Sales: 55078, COGS: 2410, Profit: 52668, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -12980,7 +12980,7 @@ export class PivotSalesData extends Array { Sales: 5053.5, COGS: 6810, Profit: 1756.5, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -12996,7 +12996,7 @@ export class PivotSalesData extends Array { Sales: 29430, COGS: 5100, Profit: 24330, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -13012,7 +13012,7 @@ export class PivotSalesData extends Array { Sales: 38325, COGS: 7900, Profit: 30425, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -13028,7 +13028,7 @@ export class PivotSalesData extends Array { Sales: 1435735, COGS: 166140, Profit: 1269595, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -13044,7 +13044,7 @@ export class PivotSalesData extends Array { Sales: 24425, COGS: 191520, Profit: 167095, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -13060,7 +13060,7 @@ export class PivotSalesData extends Array { Sales: 645780, COGS: 573500, Profit: 72280, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -13076,7 +13076,7 @@ export class PivotSalesData extends Array { Sales: 82918, COGS: 2410, Profit: 80508, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -13092,7 +13092,7 @@ export class PivotSalesData extends Array { Sales: 4378.5, COGS: 13325, Profit: 8946.5, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -13108,7 +13108,7 @@ export class PivotSalesData extends Array { Sales: 251050, COGS: 229920, Profit: 21130, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -13124,7 +13124,7 @@ export class PivotSalesData extends Array { Sales: 991110, COGS: 213250, Profit: 777860, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -13140,7 +13140,7 @@ export class PivotSalesData extends Array { Sales: 369487.5, COGS: 40920, Profit: 328567.5, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -13156,7 +13156,7 @@ export class PivotSalesData extends Array { Sales: 59233.5, COGS: 6410, Profit: 52823.5, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -13172,7 +13172,7 @@ export class PivotSalesData extends Array { Sales: 160405, COGS: 729820, Profit: 569415, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -13188,7 +13188,7 @@ export class PivotSalesData extends Array { Sales: 583740, COGS: 108000, Profit: 475740, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -13204,7 +13204,7 @@ export class PivotSalesData extends Array { Sales: 828480, COGS: 573500, Profit: 254980, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -13220,7 +13220,7 @@ export class PivotSalesData extends Array { Sales: 60304.5, COGS: 21670, Profit: 38634.5, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -13236,7 +13236,7 @@ export class PivotSalesData extends Array { Sales: 148637.5, COGS: 303480, Profit: 154842.5, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -13252,7 +13252,7 @@ export class PivotSalesData extends Array { Sales: 883750, COGS: 486200, Profit: 397550, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -13268,7 +13268,7 @@ export class PivotSalesData extends Array { Sales: 181262.5, COGS: 69480, Profit: 111782.5, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -13284,7 +13284,7 @@ export class PivotSalesData extends Array { Sales: 1407350, COGS: 582400, Profit: 824950, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -13300,7 +13300,7 @@ export class PivotSalesData extends Array { Sales: 699210, COGS: 748250, Profit: 49040, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -13316,7 +13316,7 @@ export class PivotSalesData extends Array { Sales: 9959.4, COGS: 10561.5, Profit: 602.1, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -13332,7 +13332,7 @@ export class PivotSalesData extends Array { Sales: 20342, COGS: 20390, Profit: 48, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -13348,7 +13348,7 @@ export class PivotSalesData extends Array { Sales: 8467.2, COGS: 7722, Profit: 745.2, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -13364,7 +13364,7 @@ export class PivotSalesData extends Array { Sales: 1110305, COGS: 183820, Profit: 926485, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -13380,7 +13380,7 @@ export class PivotSalesData extends Array { Sales: 13692, COGS: 20720, Profit: 7028, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -13396,7 +13396,7 @@ export class PivotSalesData extends Array { Sales: 326610, COGS: 213250, Profit: 113360, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -13412,7 +13412,7 @@ export class PivotSalesData extends Array { Sales: 28910.64, COGS: 3594, Profit: 25316.64, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -13428,7 +13428,7 @@ export class PivotSalesData extends Array { Sales: 20772.36, COGS: 12660, Profit: 8112.36, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -13444,7 +13444,7 @@ export class PivotSalesData extends Array { Sales: 16790.64, COGS: 3594, Profit: 13196.64, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -13460,7 +13460,7 @@ export class PivotSalesData extends Array { Sales: 37256.4, COGS: 3840, Profit: 33416.4, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -13476,7 +13476,7 @@ export class PivotSalesData extends Array { Sales: 13008.96, COGS: 1416, Profit: 11592.96, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -13492,7 +13492,7 @@ export class PivotSalesData extends Array { Sales: 12665.17, COGS: 7895, Profit: 4770.17, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -13508,7 +13508,7 @@ export class PivotSalesData extends Array { Sales: 37781.4, COGS: 3015, Profit: 34766.4, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -13524,7 +13524,7 @@ export class PivotSalesData extends Array { Sales: 43725.82, COGS: 31995, Profit: 11730.82, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -13540,7 +13540,7 @@ export class PivotSalesData extends Array { Sales: 28824.96, COGS: 1416, Profit: 27408.96, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -13556,7 +13556,7 @@ export class PivotSalesData extends Array { Sales: 29159.16, COGS: 5811, Profit: 23348.16, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -13572,7 +13572,7 @@ export class PivotSalesData extends Array { Sales: 103558, COGS: 205920, Profit: 102362, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -13588,7 +13588,7 @@ export class PivotSalesData extends Array { Sales: 747537, COGS: 702750, Profit: 44787, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -13604,7 +13604,7 @@ export class PivotSalesData extends Array { Sales: 174811.25, COGS: 292920, Profit: 118108.75, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -13620,7 +13620,7 @@ export class PivotSalesData extends Array { Sales: 50511, COGS: 15600, Profit: 34911, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -13636,7 +13636,7 @@ export class PivotSalesData extends Array { Sales: 27498.38, COGS: 13530, Profit: 13968.38, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -13652,7 +13652,7 @@ export class PivotSalesData extends Array { Sales: 747509, COGS: 199160, Profit: 548349, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -13668,7 +13668,7 @@ export class PivotSalesData extends Array { Sales: 8937.6, COGS: 29920, Profit: 20982.4, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -13684,7 +13684,7 @@ export class PivotSalesData extends Array { Sales: 4735.95, COGS: 21570, Profit: 16834.05, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -13700,7 +13700,7 @@ export class PivotSalesData extends Array { Sales: 603291, COGS: 218250, Profit: 385041, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -13716,7 +13716,7 @@ export class PivotSalesData extends Array { Sales: 46891.6, COGS: 11220, Profit: 35671.6, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -13732,7 +13732,7 @@ export class PivotSalesData extends Array { Sales: 585726.75, COGS: 547170, Profit: 38556.75, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -13748,7 +13748,7 @@ export class PivotSalesData extends Array { Sales: 38581.68, COGS: 12078, Profit: 26503.68, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -13764,7 +13764,7 @@ export class PivotSalesData extends Array { Sales: 48410.34, COGS: 7276.5, Profit: 41133.84, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -13780,7 +13780,7 @@ export class PivotSalesData extends Array { Sales: 43653.2, COGS: 23940, Profit: 19713.2, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -13796,7 +13796,7 @@ export class PivotSalesData extends Array { Sales: 59861.4, COGS: 19840, Profit: 40021.4, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -13812,7 +13812,7 @@ export class PivotSalesData extends Array { Sales: 385561.25, COGS: 292920, Profit: 92641.25, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -13828,7 +13828,7 @@ export class PivotSalesData extends Array { Sales: 21437.6, COGS: 29920, Profit: 8482.4, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -13844,7 +13844,7 @@ export class PivotSalesData extends Array { Sales: 514422, COGS: 341500, Profit: 172922, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -13860,7 +13860,7 @@ export class PivotSalesData extends Array { Sales: 3089, COGS: 28050, Profit: 24961, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -13876,7 +13876,7 @@ export class PivotSalesData extends Array { Sales: 61574.25, COGS: 6550, Profit: 55024.25, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -13892,7 +13892,7 @@ export class PivotSalesData extends Array { Sales: 869806, COGS: 89440, Profit: 780366, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -13908,7 +13908,7 @@ export class PivotSalesData extends Array { Sales: 12117.84, COGS: 9040, Profit: 3077.84, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -13924,7 +13924,7 @@ export class PivotSalesData extends Array { Sales: 13323.12, COGS: 5202, Profit: 8121.12, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -13940,7 +13940,7 @@ export class PivotSalesData extends Array { Sales: 508007.5, COGS: 66480, Profit: 441527.5, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -13956,7 +13956,7 @@ export class PivotSalesData extends Array { Sales: 5683, COGS: 29350, Profit: 23667, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -13972,7 +13972,7 @@ export class PivotSalesData extends Array { Sales: 16231.25, COGS: 379800, Profit: 363568.75, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -13988,7 +13988,7 @@ export class PivotSalesData extends Array { Sales: 83996.2, COGS: 26290, Profit: 57706.2, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -14004,7 +14004,7 @@ export class PivotSalesData extends Array { Sales: 168296.25, COGS: 171960, Profit: 3663.75, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -14020,7 +14020,7 @@ export class PivotSalesData extends Array { Sales: 457353.75, COGS: 113640, Profit: 343713.75, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -14036,7 +14036,7 @@ export class PivotSalesData extends Array { Sales: 830956, COGS: 89440, Profit: 741516, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -14052,7 +14052,7 @@ export class PivotSalesData extends Array { Sales: 31570.95, COGS: 21570, Profit: 10000.95, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -14068,7 +14068,7 @@ export class PivotSalesData extends Array { Sales: 30864.4, COGS: 1900, Profit: 28964.4, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -14084,7 +14084,7 @@ export class PivotSalesData extends Array { Sales: 1291388, COGS: 230360, Profit: 1061028, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -14100,7 +14100,7 @@ export class PivotSalesData extends Array { Sales: 249510, COGS: 289920, Profit: 40410, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -14116,7 +14116,7 @@ export class PivotSalesData extends Array { Sales: 419410, COGS: 258720, Profit: 160690, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -14132,7 +14132,7 @@ export class PivotSalesData extends Array { Sales: 20899.8, COGS: 26890, Profit: 5990.2, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -14148,7 +14148,7 @@ export class PivotSalesData extends Array { Sales: 18296.4, COGS: 6770, Profit: 11526.4, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -14164,7 +14164,7 @@ export class PivotSalesData extends Array { Sales: 1188672, COGS: 443250, Profit: 745422, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -14180,7 +14180,7 @@ export class PivotSalesData extends Array { Sales: 4792.2, COGS: 12100, Profit: 7307.8, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -14196,7 +14196,7 @@ export class PivotSalesData extends Array { Sales: 5781.44, COGS: 13670, Profit: 7888.56, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -14212,7 +14212,7 @@ export class PivotSalesData extends Array { Sales: 33344, COGS: 17150, Profit: 16194, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -14228,7 +14228,7 @@ export class PivotSalesData extends Array { Sales: 1087104, COGS: 296500, Profit: 790604, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -14244,7 +14244,7 @@ export class PivotSalesData extends Array { Sales: 941580, COGS: 873750, Profit: 67830, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -14260,7 +14260,7 @@ export class PivotSalesData extends Array { Sales: 1067388, COGS: 230360, Profit: 837028, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -14276,7 +14276,7 @@ export class PivotSalesData extends Array { Sales: 341910, COGS: 258720, Profit: 83190, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -14292,7 +14292,7 @@ export class PivotSalesData extends Array { Sales: 39568, COGS: 9050, Profit: 30518, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -14308,7 +14308,7 @@ export class PivotSalesData extends Array { Sales: 17004, COGS: 17150, Profit: 146, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -14324,7 +14324,7 @@ export class PivotSalesData extends Array { Sales: 406602, COGS: 414440, Profit: 7838, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -14340,7 +14340,7 @@ export class PivotSalesData extends Array { Sales: 75876, COGS: 339750, Profit: 263874, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -14356,7 +14356,7 @@ export class PivotSalesData extends Array { Sales: 1086600, COGS: 537500, Profit: 549100, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -14372,7 +14372,7 @@ export class PivotSalesData extends Array { Sales: 232876, COGS: 311220, Profit: 78344, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -14388,7 +14388,7 @@ export class PivotSalesData extends Array { Sales: 27696, COGS: 3800, Profit: 23896, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -14404,7 +14404,7 @@ export class PivotSalesData extends Array { Sales: 38480.8, COGS: 12330, Profit: 26150.8, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -14420,7 +14420,7 @@ export class PivotSalesData extends Array { Sales: 1009610, COGS: 362700, Profit: 646910, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -14436,7 +14436,7 @@ export class PivotSalesData extends Array { Sales: 1050938, COGS: 256360, Profit: 794578, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -14452,7 +14452,7 @@ export class PivotSalesData extends Array { Sales: 39008, COGS: 9050, Profit: 29958, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -14468,7 +14468,7 @@ export class PivotSalesData extends Array { Sales: 48011.04, COGS: 6327, Profit: 41684.04, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -14484,7 +14484,7 @@ export class PivotSalesData extends Array { Sales: 12420.9, COGS: 38745, Profit: 26324.1, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -14500,7 +14500,7 @@ export class PivotSalesData extends Array { Sales: 426384, COGS: 161980, Profit: 264404, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -14516,7 +14516,7 @@ export class PivotSalesData extends Array { Sales: 39088, COGS: 256360, Profit: 217272, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -14532,7 +14532,7 @@ export class PivotSalesData extends Array { Sales: 179570, COGS: 286440, Profit: 106870, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -14548,7 +14548,7 @@ export class PivotSalesData extends Array { Sales: 1840.8, COGS: 12330, Profit: 10489.2, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -14564,7 +14564,7 @@ export class PivotSalesData extends Array { Sales: 888510, COGS: 70200, Profit: 818310, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -14580,7 +14580,7 @@ export class PivotSalesData extends Array { Sales: 8752.94, COGS: 17107.5, Profit: 8354.56, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -14596,7 +14596,7 @@ export class PivotSalesData extends Array { Sales: 29021.44, COGS: 13670, Profit: 15351.44, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -14612,7 +14612,7 @@ export class PivotSalesData extends Array { Sales: 7908.6, COGS: 25480, Profit: 17571.4, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -14628,7 +14628,7 @@ export class PivotSalesData extends Array { Sales: 7428.4, COGS: 25215, Profit: 17786.6, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -14644,7 +14644,7 @@ export class PivotSalesData extends Array { Sales: 5504.16, COGS: 7983, Profit: 2478.84, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -14660,7 +14660,7 @@ export class PivotSalesData extends Array { Sales: 25465.6, COGS: 15310, Profit: 10155.6, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -14676,7 +14676,7 @@ export class PivotSalesData extends Array { Sales: 20853.56, COGS: 7455, Profit: 13398.56, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -14692,7 +14692,7 @@ export class PivotSalesData extends Array { Sales: 78225.6, COGS: 15310, Profit: 62915.6, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -14708,7 +14708,7 @@ export class PivotSalesData extends Array { Sales: 34064.16, COGS: 8283, Profit: 25781.16, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -14724,7 +14724,7 @@ export class PivotSalesData extends Array { Sales: 2389.35, COGS: 25670, Profit: 23280.65, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -14740,7 +14740,7 @@ export class PivotSalesData extends Array { Sales: 44284.35, COGS: 25670, Profit: 18614.35, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -14756,7 +14756,7 @@ export class PivotSalesData extends Array { Sales: 1205053.5, COGS: 239980, Profit: 965073.5, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -14772,7 +14772,7 @@ export class PivotSalesData extends Array { Sales: 1356705, COGS: 465400, Profit: 891305, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -14788,7 +14788,7 @@ export class PivotSalesData extends Array { Sales: 71910.8, COGS: 4420, Profit: 67490.8, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -14804,7 +14804,7 @@ export class PivotSalesData extends Array { Sales: 726346.25, COGS: 255450, Profit: 470896.25, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -14820,7 +14820,7 @@ export class PivotSalesData extends Array { Sales: 19286.82, COGS: 6490, Profit: 12796.82, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -14836,7 +14836,7 @@ export class PivotSalesData extends Array { Sales: 30857.76, COGS: 1812, Profit: 29045.76, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -14852,7 +14852,7 @@ export class PivotSalesData extends Array { Sales: 18017, COGS: 22550, Profit: 4533, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -14868,7 +14868,7 @@ export class PivotSalesData extends Array { Sales: 64072.6, COGS: 12490, Profit: 51582.6, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -14884,7 +14884,7 @@ export class PivotSalesData extends Array { Sales: 7965.97, COGS: 7192.5, Profit: 773.47, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -14900,7 +14900,7 @@ export class PivotSalesData extends Array { Sales: 1241427, COGS: 201750, Profit: 1039677, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -14916,7 +14916,7 @@ export class PivotSalesData extends Array { Sales: 50873.4, COGS: 26410, Profit: 24463.4, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -14932,7 +14932,7 @@ export class PivotSalesData extends Array { Sales: 69739.2, COGS: 27080, Profit: 42659.2, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -14948,7 +14948,7 @@ export class PivotSalesData extends Array { Sales: 532294, COGS: 684320, Profit: 152026, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -14964,7 +14964,7 @@ export class PivotSalesData extends Array { Sales: 331526.25, COGS: 189960, Profit: 141566.25, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -14980,7 +14980,7 @@ export class PivotSalesData extends Array { Sales: 33525.24, COGS: 1713, Profit: 31812.24, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -14996,7 +14996,7 @@ export class PivotSalesData extends Array { Sales: 24181.64, COGS: 13480, Profit: 10701.64, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -15012,7 +15012,7 @@ export class PivotSalesData extends Array { Sales: 55658.25, COGS: 15650, Profit: 40008.25, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15028,7 +15028,7 @@ export class PivotSalesData extends Array { Sales: 7232.6, COGS: 12490, Profit: 5257.4, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15044,7 +15044,7 @@ export class PivotSalesData extends Array { Sales: 1067006.5, COGS: 92820, Profit: 974186.5, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -15060,7 +15060,7 @@ export class PivotSalesData extends Array { Sales: 27339.72, COGS: 3039, Profit: 24300.72, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -15076,7 +15076,7 @@ export class PivotSalesData extends Array { Sales: 56149.88, COGS: 39975, Profit: 16174.88, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -15092,7 +15092,7 @@ export class PivotSalesData extends Array { Sales: 663894, COGS: 684320, Profit: 20426, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -15108,7 +15108,7 @@ export class PivotSalesData extends Array { Sales: 2900.1, COGS: 5950, Profit: 3049.9, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -15124,7 +15124,7 @@ export class PivotSalesData extends Array { Sales: 45725.76, COGS: 1812, Profit: 43913.76, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -15140,7 +15140,7 @@ export class PivotSalesData extends Array { Sales: 19383, COGS: 6600, Profit: 12783, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -15156,7 +15156,7 @@ export class PivotSalesData extends Array { Sales: 26396.4, COGS: 1230, Profit: 25166.4, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15172,7 +15172,7 @@ export class PivotSalesData extends Array { Sales: 859005, COGS: 651250, Profit: 207755, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -15188,7 +15188,7 @@ export class PivotSalesData extends Array { Sales: 44439.72, COGS: 3039, Profit: 41400.72, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -15204,7 +15204,7 @@ export class PivotSalesData extends Array { Sales: 285151.25, COGS: 189960, Profit: 95191.25, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -15220,7 +15220,7 @@ export class PivotSalesData extends Array { Sales: 63368.25, COGS: 15650, Profit: 47718.25, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15236,7 +15236,7 @@ export class PivotSalesData extends Array { Sales: 123041.25, COGS: 199080, Profit: 76038.75, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -15252,7 +15252,7 @@ export class PivotSalesData extends Array { Sales: 19588.1, COGS: 5950, Profit: 13638.1, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -15268,7 +15268,7 @@ export class PivotSalesData extends Array { Sales: 16796.4, COGS: 1230, Profit: 15566.4, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15284,7 +15284,7 @@ export class PivotSalesData extends Array { Sales: 7618.8, COGS: 5310, Profit: 2308.8, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -15300,7 +15300,7 @@ export class PivotSalesData extends Array { Sales: 14218.8, COGS: 25790, Profit: 11571.2, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -15316,7 +15316,7 @@ export class PivotSalesData extends Array { Sales: 29859.6, COGS: 17430, Profit: 12429.6, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -15332,7 +15332,7 @@ export class PivotSalesData extends Array { Sales: 7808.92, COGS: 14980, Profit: 7171.08, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -15348,7 +15348,7 @@ export class PivotSalesData extends Array { Sales: 17449.6, COGS: 1400, Profit: 16049.6, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -15364,7 +15364,7 @@ export class PivotSalesData extends Array { Sales: 12067.86, COGS: 1465, Profit: 10602.86, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -15380,7 +15380,7 @@ export class PivotSalesData extends Array { Sales: 8032.92, COGS: 14980, Profit: 6947.08, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -15396,7 +15396,7 @@ export class PivotSalesData extends Array { Sales: 39016.2, COGS: 2780, Profit: 36236.2, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -15412,7 +15412,7 @@ export class PivotSalesData extends Array { Sales: 54781.6, COGS: 24280, Profit: 30501.6, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -15428,7 +15428,7 @@ export class PivotSalesData extends Array { Sales: 58239.3, COGS: 17670, Profit: 40569.3, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -15444,7 +15444,7 @@ export class PivotSalesData extends Array { Sales: 32915.76, COGS: 4179, Profit: 28736.76, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15460,7 +15460,7 @@ export class PivotSalesData extends Array { Sales: 21285.6, COGS: 1400, Profit: 19885.6, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -15476,7 +15476,7 @@ export class PivotSalesData extends Array { Sales: 16019.76, COGS: 4179, Profit: 11840.76, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15492,7 +15492,7 @@ export class PivotSalesData extends Array { Sales: 39058.8, COGS: 6045, Profit: 33013.8, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -15508,7 +15508,7 @@ export class PivotSalesData extends Array { Sales: 572658, COGS: 200250, Profit: 372408, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -15524,7 +15524,7 @@ export class PivotSalesData extends Array { Sales: 207597.5, COGS: 122760, Profit: 84837.5, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -15540,7 +15540,7 @@ export class PivotSalesData extends Array { Sales: 241368, COGS: 374000, Profit: 132632, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15556,7 +15556,7 @@ export class PivotSalesData extends Array { Sales: 831480, COGS: 252500, Profit: 578980, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15572,7 +15572,7 @@ export class PivotSalesData extends Array { Sales: 8267.7, COGS: 15130, Profit: 6862.3, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -15588,7 +15588,7 @@ export class PivotSalesData extends Array { Sales: 16545, COGS: 23000, Profit: 6455, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -15604,7 +15604,7 @@ export class PivotSalesData extends Array { Sales: 495257.5, COGS: 338520, Profit: 156737.5, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -15620,7 +15620,7 @@ export class PivotSalesData extends Array { Sales: 639152.5, COGS: 579150, Profit: 60002.5, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -15636,7 +15636,7 @@ export class PivotSalesData extends Array { Sales: 1279999, COGS: 311740, Profit: 968259, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -15652,7 +15652,7 @@ export class PivotSalesData extends Array { Sales: 1177750, COGS: 52000, Profit: 1125750, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -15668,7 +15668,7 @@ export class PivotSalesData extends Array { Sales: 15124.76, COGS: 1940, Profit: 13184.76, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -15684,7 +15684,7 @@ export class PivotSalesData extends Array { Sales: 14253.54, COGS: 8635, Profit: 5618.54, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -15700,7 +15700,7 @@ export class PivotSalesData extends Array { Sales: 1215, COGS: 23000, Profit: 21785, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -15716,7 +15716,7 @@ export class PivotSalesData extends Array { Sales: 5052, COGS: 2600, Profit: 2452, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -15732,7 +15732,7 @@ export class PivotSalesData extends Array { Sales: 6048, COGS: 24700, Profit: 18652, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -15748,7 +15748,7 @@ export class PivotSalesData extends Array { Sales: 1919.7, COGS: 17430, Profit: 15510.3, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -15764,7 +15764,7 @@ export class PivotSalesData extends Array { Sales: 40476.48, COGS: 8742, Profit: 31734.48, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15780,7 +15780,7 @@ export class PivotSalesData extends Array { Sales: 10798.62, COGS: 8655, Profit: 2143.62, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15796,7 +15796,7 @@ export class PivotSalesData extends Array { Sales: 1375850, COGS: 182000, Profit: 1193850, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -15812,7 +15812,7 @@ export class PivotSalesData extends Array { Sales: 30023.04, COGS: 6666, Profit: 23357.04, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -15828,7 +15828,7 @@ export class PivotSalesData extends Array { Sales: 694827, COGS: 306020, Profit: 388807, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -15844,7 +15844,7 @@ export class PivotSalesData extends Array { Sales: 638372, COGS: 499720, Profit: 138652, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -15860,7 +15860,7 @@ export class PivotSalesData extends Array { Sales: 521312.5, COGS: 189000, Profit: 332312.5, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -15876,7 +15876,7 @@ export class PivotSalesData extends Array { Sales: 52203.2, COGS: 6060, Profit: 46143.2, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -15892,7 +15892,7 @@ export class PivotSalesData extends Array { Sales: 297780, COGS: 615000, Profit: 317220, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -15908,7 +15908,7 @@ export class PivotSalesData extends Array { Sales: 775002, COGS: 67250, Profit: 707752, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -15924,7 +15924,7 @@ export class PivotSalesData extends Array { Sales: 1013988, COGS: 634000, Profit: 379988, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -15940,7 +15940,7 @@ export class PivotSalesData extends Array { Sales: 27395.06, COGS: 14515, Profit: 12880.06, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -15956,7 +15956,7 @@ export class PivotSalesData extends Array { Sales: 741678, COGS: 635250, Profit: 106428, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -15972,7 +15972,7 @@ export class PivotSalesData extends Array { Sales: 764502, COGS: 67250, Profit: 697252, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -15988,7 +15988,7 @@ export class PivotSalesData extends Array { Sales: 311568, COGS: 374000, Profit: 62432, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16004,7 +16004,7 @@ export class PivotSalesData extends Array { Sales: 1168080, COGS: 252500, Profit: 915580, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16020,7 +16020,7 @@ export class PivotSalesData extends Array { Sales: 62881, COGS: 333060, Profit: 270179, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -16036,7 +16036,7 @@ export class PivotSalesData extends Array { Sales: 1140504, COGS: 222000, Profit: 918504, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -16052,7 +16052,7 @@ export class PivotSalesData extends Array { Sales: 481105, COGS: 341280, Profit: 139825, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -16068,7 +16068,7 @@ export class PivotSalesData extends Array { Sales: 28182, COGS: 7425, Profit: 20757, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -16084,7 +16084,7 @@ export class PivotSalesData extends Array { Sales: 12899.7, COGS: 17430, Profit: 4530.3, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -16100,7 +16100,7 @@ export class PivotSalesData extends Array { Sales: 12492.48, COGS: 8742, Profit: 3750.48, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16116,7 +16116,7 @@ export class PivotSalesData extends Array { Sales: 6220.62, COGS: 8655, Profit: 2434.38, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16132,7 +16132,7 @@ export class PivotSalesData extends Array { Sales: 8583.54, COGS: 8635, Profit: 51.46, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -16148,7 +16148,7 @@ export class PivotSalesData extends Array { Sales: 15153, COGS: 18700, Profit: 3547, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -16164,7 +16164,7 @@ export class PivotSalesData extends Array { Sales: 153362.5, COGS: 140880, Profit: 12482.5, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -16180,7 +16180,7 @@ export class PivotSalesData extends Array { Sales: 218243.75, COGS: 332040, Profit: 113796.25, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -16196,7 +16196,7 @@ export class PivotSalesData extends Array { Sales: 221781.25, COGS: 130200, Profit: 91581.25, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16212,7 +16212,7 @@ export class PivotSalesData extends Array { Sales: 839130, COGS: 136500, Profit: 702630, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16228,7 +16228,7 @@ export class PivotSalesData extends Array { Sales: 23126, COGS: 11580, Profit: 11546, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -16244,7 +16244,7 @@ export class PivotSalesData extends Array { Sales: 32758.5, COGS: 16140, Profit: 16618.5, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -16260,7 +16260,7 @@ export class PivotSalesData extends Array { Sales: 11569.25, COGS: 12675, Profit: 1105.75, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -16276,7 +16276,7 @@ export class PivotSalesData extends Array { Sales: 560472.5, COGS: 741260, Profit: 180787.5, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -16292,7 +16292,7 @@ export class PivotSalesData extends Array { Sales: 9977.25, COGS: 25590, Profit: 15612.75, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -16308,7 +16308,7 @@ export class PivotSalesData extends Array { Sales: 20439, COGS: 2670, Profit: 17769, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -16324,7 +16324,7 @@ export class PivotSalesData extends Array { Sales: 293281.25, COGS: 130200, Profit: 163081.25, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16340,7 +16340,7 @@ export class PivotSalesData extends Array { Sales: 23501.25, COGS: 11750, Profit: 11751.25, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16356,7 +16356,7 @@ export class PivotSalesData extends Array { Sales: 1090932.5, COGS: 521820, Profit: 569112.5, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -16372,7 +16372,7 @@ export class PivotSalesData extends Array { Sales: 499922.5, COGS: 559260, Profit: 59337.5, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -16388,7 +16388,7 @@ export class PivotSalesData extends Array { Sales: 37090.8, COGS: 2742, Profit: 34348.8, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -16404,7 +16404,7 @@ export class PivotSalesData extends Array { Sales: 21221, COGS: 2930, Profit: 18291, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -16420,7 +16420,7 @@ export class PivotSalesData extends Array { Sales: 32436, COGS: 1500, Profit: 30936, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -16436,7 +16436,7 @@ export class PivotSalesData extends Array { Sales: 11236.5, COGS: 28260, Profit: 17023.5, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -16452,7 +16452,7 @@ export class PivotSalesData extends Array { Sales: 382568.75, COGS: 79560, Profit: 303008.75, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -16468,7 +16468,7 @@ export class PivotSalesData extends Array { Sales: 1180770, COGS: 643500, Profit: 537270, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -16484,7 +16484,7 @@ export class PivotSalesData extends Array { Sales: 191912.5, COGS: 292560, Profit: 100647.5, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -16500,7 +16500,7 @@ export class PivotSalesData extends Array { Sales: 34114.8, COGS: 2742, Profit: 31372.8, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -16516,7 +16516,7 @@ export class PivotSalesData extends Array { Sales: 78763.5, COGS: 8655, Profit: 70108.5, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -16532,7 +16532,7 @@ export class PivotSalesData extends Array { Sales: 30468, COGS: 4920, Profit: 25548, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -16548,7 +16548,7 @@ export class PivotSalesData extends Array { Sales: 32139, COGS: 2670, Profit: 29469, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -16564,7 +16564,7 @@ export class PivotSalesData extends Array { Sales: 881.25, COGS: 11750, Profit: 10868.75, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16580,7 +16580,7 @@ export class PivotSalesData extends Array { Sales: 396737.5, COGS: 354480, Profit: 42257.5, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -16596,7 +16596,7 @@ export class PivotSalesData extends Array { Sales: 252900, COGS: 66240, Profit: 186660, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -16612,7 +16612,7 @@ export class PivotSalesData extends Array { Sales: 46141, COGS: 2930, Profit: 43211, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -16628,7 +16628,7 @@ export class PivotSalesData extends Array { Sales: 457725, COGS: 618750, Profit: 161025, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -16644,7 +16644,7 @@ export class PivotSalesData extends Array { Sales: 169530, COGS: 136500, Profit: 33030, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16660,7 +16660,7 @@ export class PivotSalesData extends Array { Sales: 23910.6, COGS: 6840, Profit: 17070.6, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -16676,7 +16676,7 @@ export class PivotSalesData extends Array { Sales: 21787.85, COGS: 3615, Profit: 18172.85, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -16692,7 +16692,7 @@ export class PivotSalesData extends Array { Sales: 2665.2, COGS: 5418, Profit: 2752.8, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), diff --git a/samples/grids/pivot-grid/aggregate-max-sales/tsconfig.json b/samples/grids/pivot-grid/aggregate-max-sales/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/tsconfig.json +++ b/samples/grids/pivot-grid/aggregate-max-sales/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/pivot-grid/aggregate-units-sold/package.json b/samples/grids/pivot-grid/aggregate-units-sold/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/package.json +++ b/samples/grids/pivot-grid/aggregate-units-sold/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, 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 b4f51a3736..29196f5db4 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/src/PivotSalesData.ts +++ b/samples/grids/pivot-grid/aggregate-units-sold/src/PivotSalesData.ts @@ -36,7 +36,7 @@ export class PivotSalesData extends Array { Sales: 26440, COGS: 16185, Profit: 11255, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -52,7 +52,7 @@ export class PivotSalesData extends Array { Sales: 27440, COGS: 16185, Profit: 11255, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -68,7 +68,7 @@ export class PivotSalesData extends Array { Sales: 55240, COGS: 13210, Profit: 42030, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -84,7 +84,7 @@ export class PivotSalesData extends Array { Sales: 21960, COGS: 21780, Profit: 180, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -100,7 +100,7 @@ export class PivotSalesData extends Array { Sales: 10785, COGS: 8880, Profit: 1905, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -116,7 +116,7 @@ export class PivotSalesData extends Array { Sales: 53640, COGS: 24700, Profit: 28940, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -132,7 +132,7 @@ export class PivotSalesData extends Array { Sales: 1547700, COGS: 393380, Profit: 1154320, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -148,7 +148,7 @@ export class PivotSalesData extends Array { Sales: 54735, COGS: 9210, Profit: 45525, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -164,7 +164,7 @@ export class PivotSalesData extends Array { Sales: 50064, COGS: 7554, Profit: 42510, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -180,7 +180,7 @@ export class PivotSalesData extends Array { Sales: 76820, COGS: 18990, Profit: 57830, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -196,7 +196,7 @@ export class PivotSalesData extends Array { Sales: 44712, COGS: 4635, Profit: 40077, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -212,7 +212,7 @@ export class PivotSalesData extends Array { Sales: 39375, COGS: 24700, Profit: 14675, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -228,7 +228,7 @@ export class PivotSalesData extends Array { Sales: 244750, COGS: 319860, Profit: 75110, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -244,7 +244,7 @@ export class PivotSalesData extends Array { Sales: 981300, COGS: 239500, Profit: 741800, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -260,7 +260,7 @@ export class PivotSalesData extends Array { Sales: 14637, COGS: 10730, Profit: 3907, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -276,7 +276,7 @@ export class PivotSalesData extends Array { Sales: 42375, COGS: 6150, Profit: 36225, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -292,7 +292,7 @@ export class PivotSalesData extends Array { Sales: 50260, COGS: 2920, Profit: 47340, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -308,7 +308,7 @@ export class PivotSalesData extends Array { Sales: 13245, COGS: 9740, Profit: 3505, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -324,7 +324,7 @@ export class PivotSalesData extends Array { Sales: 25044, COGS: 7554, Profit: 17490, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -340,7 +340,7 @@ export class PivotSalesData extends Array { Sales: 897050, COGS: 261560, Profit: 635490, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -356,7 +356,7 @@ export class PivotSalesData extends Array { Sales: 34152, COGS: 1101, Profit: 33051, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -372,7 +372,7 @@ export class PivotSalesData extends Array { Sales: 6979, COGS: 4415, Profit: 2564, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -388,7 +388,7 @@ export class PivotSalesData extends Array { Sales: 34350, COGS: 24720, Profit: 9630, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -404,7 +404,7 @@ export class PivotSalesData extends Array { Sales: 14931, COGS: 5715, Profit: 9216, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -420,7 +420,7 @@ export class PivotSalesData extends Array { Sales: 72340, COGS: 18170, Profit: 54170, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -436,7 +436,7 @@ export class PivotSalesData extends Array { Sales: 443100, COGS: 393380, Profit: 49720, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -452,7 +452,7 @@ export class PivotSalesData extends Array { Sales: 6258, COGS: 7465, Profit: 1207, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -468,7 +468,7 @@ export class PivotSalesData extends Array { Sales: 340625, COGS: 216480, Profit: 124145, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -484,7 +484,7 @@ export class PivotSalesData extends Array { Sales: 36732, COGS: 6483, Profit: 30249, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -500,7 +500,7 @@ export class PivotSalesData extends Array { Sales: 1385300, COGS: 261560, Profit: 1123740, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -516,7 +516,7 @@ export class PivotSalesData extends Array { Sales: 47040, COGS: 4635, Profit: 42405, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -532,7 +532,7 @@ export class PivotSalesData extends Array { Sales: 422625, COGS: 338520, Profit: 84105, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -548,7 +548,7 @@ export class PivotSalesData extends Array { Sales: 1292100, COGS: 500250, Profit: 791850, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -564,7 +564,7 @@ export class PivotSalesData extends Array { Sales: 10536, COGS: 8514, Profit: 2022, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -580,7 +580,7 @@ export class PivotSalesData extends Array { Sales: 7440, COGS: 21780, Profit: 14340, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -596,7 +596,7 @@ export class PivotSalesData extends Array { Sales: 50505, COGS: 8880, Profit: 41625, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -612,7 +612,7 @@ export class PivotSalesData extends Array { Sales: 616500, COGS: 537750, Profit: 78750, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -628,7 +628,7 @@ export class PivotSalesData extends Array { Sales: 80820, COGS: 18170, Profit: 62650, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -644,7 +644,7 @@ export class PivotSalesData extends Array { Sales: 1132950, COGS: 715000, Profit: 417950, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -660,7 +660,7 @@ export class PivotSalesData extends Array { Sales: 7560, COGS: 5859, Profit: 1701, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -676,7 +676,7 @@ export class PivotSalesData extends Array { Sales: 526250, COGS: 506340, Profit: 19910, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -692,7 +692,7 @@ export class PivotSalesData extends Array { Sales: 22540, COGS: 18990, Profit: 3550, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -708,7 +708,7 @@ export class PivotSalesData extends Array { Sales: 24066, COGS: 8430, Profit: 15636, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -724,7 +724,7 @@ export class PivotSalesData extends Array { Sales: 24180, COGS: 6423, Profit: 17757, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -740,7 +740,7 @@ export class PivotSalesData extends Array { Sales: 17738, COGS: 5715, Profit: 12023, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -756,7 +756,7 @@ export class PivotSalesData extends Array { Sales: 20760, COGS: 6150, Profit: 14610, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -772,7 +772,7 @@ export class PivotSalesData extends Array { Sales: 24650.85, COGS: 19725, Profit: 4925.85, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -788,7 +788,7 @@ export class PivotSalesData extends Array { Sales: 27000.6, COGS: 22960, Profit: 4040.6, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -804,7 +804,7 @@ export class PivotSalesData extends Array { Sales: 19492.9, COGS: 5150, Profit: 14342.9, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -820,7 +820,7 @@ export class PivotSalesData extends Array { Sales: 3154.27, COGS: 3195, Profit: 40.73, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -836,7 +836,7 @@ export class PivotSalesData extends Array { Sales: 26402.18, COGS: 6630, Profit: 19772.18, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -852,7 +852,7 @@ export class PivotSalesData extends Array { Sales: 8753.04, COGS: 5574, Profit: 3179.04, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -868,7 +868,7 @@ export class PivotSalesData extends Array { Sales: 353115, COGS: 314600, Profit: 38515, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -884,7 +884,7 @@ export class PivotSalesData extends Array { Sales: 14354.97, COGS: 12645, Profit: 1709.97, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -900,7 +900,7 @@ export class PivotSalesData extends Array { Sales: 51618.6, COGS: 4335, Profit: 47283.6, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -916,7 +916,7 @@ export class PivotSalesData extends Array { Sales: 49767.48, COGS: 8013, Profit: 41754.48, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -932,7 +932,7 @@ export class PivotSalesData extends Array { Sales: 1302710.5, COGS: 363220, Profit: 939490.5, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -948,7 +948,7 @@ export class PivotSalesData extends Array { Sales: 662357.5, COGS: 560300, Profit: 102057.5, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -964,7 +964,7 @@ export class PivotSalesData extends Array { Sales: 40797.9, COGS: 22140, Profit: 18657.9, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -980,7 +980,7 @@ export class PivotSalesData extends Array { Sales: 442797, COGS: 575250, Profit: 132453, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -996,7 +996,7 @@ export class PivotSalesData extends Array { Sales: 75164.9, COGS: 13755, Profit: 61409.9, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -1012,7 +1012,7 @@ export class PivotSalesData extends Array { Sales: 7655.9, COGS: 9150, Profit: 1494.1, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -1028,7 +1028,7 @@ export class PivotSalesData extends Array { Sales: 35292.9, COGS: 15140, Profit: 20152.9, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -1044,7 +1044,7 @@ export class PivotSalesData extends Array { Sales: 10787.52, COGS: 22462.5, Profit: 11674.98, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -1060,7 +1060,7 @@ export class PivotSalesData extends Array { Sales: 422341.25, COGS: 87240, Profit: 335101.25, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1076,7 +1076,7 @@ export class PivotSalesData extends Array { Sales: 105516.25, COGS: 94440, Profit: 11076.25, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1092,7 +1092,7 @@ export class PivotSalesData extends Array { Sales: 345596.25, COGS: 218760, Profit: 126836.25, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -1108,7 +1108,7 @@ export class PivotSalesData extends Array { Sales: 40147.95, COGS: 7470, Profit: 32677.95, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -1124,7 +1124,7 @@ export class PivotSalesData extends Array { Sales: 1216185, COGS: 726250, Profit: 489935, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -1140,7 +1140,7 @@ export class PivotSalesData extends Array { Sales: 978057.5, COGS: 560300, Profit: 417757.5, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1156,7 +1156,7 @@ export class PivotSalesData extends Array { Sales: 85107.2, COGS: 38640, Profit: 46467.2, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -1172,7 +1172,7 @@ export class PivotSalesData extends Array { Sales: 19966.66, COGS: 1810, Profit: 18156.66, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -1188,7 +1188,7 @@ export class PivotSalesData extends Array { Sales: 174721.25, COGS: 110760, Profit: 63961.25, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -1204,7 +1204,7 @@ export class PivotSalesData extends Array { Sales: 8836.59, COGS: 1315, Profit: 7521.59, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -1220,7 +1220,7 @@ export class PivotSalesData extends Array { Sales: 1358897.75, COGS: 245310, Profit: 1113587.75, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -1236,7 +1236,7 @@ export class PivotSalesData extends Array { Sales: 382591.25, COGS: 87240, Profit: 295351.25, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1252,7 +1252,7 @@ export class PivotSalesData extends Array { Sales: 271641.25, COGS: 94440, Profit: 177201.25, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1268,7 +1268,7 @@ export class PivotSalesData extends Array { Sales: 403842, COGS: 246500, Profit: 177201.25, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1284,7 +1284,7 @@ export class PivotSalesData extends Array { Sales: 630010.5, COGS: 363220, Profit: 266790.5, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -1300,7 +1300,7 @@ export class PivotSalesData extends Array { Sales: 184695, COGS: 209280, Profit: 24585, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -1316,7 +1316,7 @@ export class PivotSalesData extends Array { Sales: 181018.75, COGS: 89100, Profit: 91918.75, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -1332,7 +1332,7 @@ export class PivotSalesData extends Array { Sales: 2269.2, COGS: 3885, Profit: 1615.8, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -1348,7 +1348,7 @@ export class PivotSalesData extends Array { Sales: 178136, COGS: 741520, Profit: 563384, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1364,7 +1364,7 @@ export class PivotSalesData extends Array { Sales: 38785.92, COGS: 3426, Profit: 35359.92, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1380,7 +1380,7 @@ export class PivotSalesData extends Array { Sales: 14813.6, COGS: 15660, Profit: 846.4, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -1396,7 +1396,7 @@ export class PivotSalesData extends Array { Sales: 13454.4, COGS: 2070, Profit: 11384.4, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -1412,7 +1412,7 @@ export class PivotSalesData extends Array { Sales: 17186.1, COGS: 23630, Profit: 6443.9, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -1428,7 +1428,7 @@ export class PivotSalesData extends Array { Sales: 753492, COGS: 229500, Profit: 523992, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -1444,7 +1444,7 @@ export class PivotSalesData extends Array { Sales: 1024932, COGS: 432000, Profit: 592932, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -1460,7 +1460,7 @@ export class PivotSalesData extends Array { Sales: 36433.92, COGS: 3426, Profit: 33007.92, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1476,7 +1476,7 @@ export class PivotSalesData extends Array { Sales: 492970, COGS: 79440, Profit: 413530, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1492,7 +1492,7 @@ export class PivotSalesData extends Array { Sales: 41017.2, COGS: 3885, Profit: 37132.2, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -1508,7 +1508,7 @@ export class PivotSalesData extends Array { Sales: 934704, COGS: 479000, Profit: 455704, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1524,7 +1524,7 @@ export class PivotSalesData extends Array { Sales: 1417836, COGS: 741520, Profit: 676316, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1540,7 +1540,7 @@ export class PivotSalesData extends Array { Sales: 463177.5, COGS: 327480, Profit: 135697.5, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1556,7 +1556,7 @@ export class PivotSalesData extends Array { Sales: 27754.8, COGS: 3165, Profit: 24589.8, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1572,7 +1572,7 @@ export class PivotSalesData extends Array { Sales: 6699.84, COGS: 3252, Profit: 3447.84, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1588,7 +1588,7 @@ export class PivotSalesData extends Array { Sales: 51573.6, COGS: 15660, Profit: 35913.6, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -1604,7 +1604,7 @@ export class PivotSalesData extends Array { Sales: 490511, COGS: 748020, Profit: 257509, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -1620,7 +1620,7 @@ export class PivotSalesData extends Array { Sales: 45034.8, COGS: 3165, Profit: 41869.8, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1636,7 +1636,7 @@ export class PivotSalesData extends Array { Sales: 30603.84, COGS: 3252, Profit: 27351.84, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1652,7 +1652,7 @@ export class PivotSalesData extends Array { Sales: 38345, COGS: 79440, Profit: 41095, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1668,7 +1668,7 @@ export class PivotSalesData extends Array { Sales: 1126111, COGS: 748020, Profit: 378091, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -1684,7 +1684,7 @@ export class PivotSalesData extends Array { Sales: 440927.5, COGS: 327480, Profit: 113447.5, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1700,7 +1700,7 @@ export class PivotSalesData extends Array { Sales: 1215246, COGS: 64750, Profit: 1150496, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -1716,7 +1716,7 @@ export class PivotSalesData extends Array { Sales: 636594, COGS: 275250, Profit: 361344, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -1732,7 +1732,7 @@ export class PivotSalesData extends Array { Sales: 432060, COGS: 273120, Profit: 158940, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -1748,7 +1748,7 @@ export class PivotSalesData extends Array { Sales: 13085.6, COGS: 12360, Profit: 725.6, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -1764,7 +1764,7 @@ export class PivotSalesData extends Array { Sales: 46643.6, COGS: 9410, Profit: 37233.6, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -1780,7 +1780,7 @@ export class PivotSalesData extends Array { Sales: 601404, COGS: 479000, Profit: 122404, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1796,7 +1796,7 @@ export class PivotSalesData extends Array { Sales: 429711.88, COGS: 509220, Profit: 79508.13, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -1812,7 +1812,7 @@ export class PivotSalesData extends Array { Sales: 26472, COGS: 25800, Profit: 672, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -1828,7 +1828,7 @@ export class PivotSalesData extends Array { Sales: 616899, COGS: 172250, Profit: 444649, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1844,7 +1844,7 @@ export class PivotSalesData extends Array { Sales: 43015.08, COGS: 5841, Profit: 37174.08, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -1860,7 +1860,7 @@ export class PivotSalesData extends Array { Sales: 20308.82, COGS: 9790, Profit: 10518.82, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -1876,7 +1876,7 @@ export class PivotSalesData extends Array { Sales: 13727.64, COGS: 5703, Profit: 8024.64, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1892,7 +1892,7 @@ export class PivotSalesData extends Array { Sales: 16132.76, COGS: 2720, Profit: 13412.76, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -1908,7 +1908,7 @@ export class PivotSalesData extends Array { Sales: 491673.75, COGS: 154440, Profit: 337233.75, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1924,7 +1924,7 @@ export class PivotSalesData extends Array { Sales: 478352.5, COGS: 204720, Profit: 273632.5, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -1940,7 +1940,7 @@ export class PivotSalesData extends Array { Sales: 661489.5, COGS: 608625, Profit: 52864.5, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -1956,7 +1956,7 @@ export class PivotSalesData extends Array { Sales: 127722.5, COGS: 212880, Profit: 85157.5, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -1972,7 +1972,7 @@ export class PivotSalesData extends Array { Sales: 47915.64, COGS: 5703, Profit: 42212.64, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -1988,7 +1988,7 @@ export class PivotSalesData extends Array { Sales: 904299, COGS: 172250, Profit: 732049, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -2004,7 +2004,7 @@ export class PivotSalesData extends Array { Sales: 448612.5, COGS: 188400, Profit: 260212.5, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -2020,7 +2020,7 @@ export class PivotSalesData extends Array { Sales: 16054.98, COGS: 4108.5, Profit: 11946.48, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -2036,7 +2036,7 @@ export class PivotSalesData extends Array { Sales: 553966.25, COGS: 241080, Profit: 312886.25, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2052,7 +2052,7 @@ export class PivotSalesData extends Array { Sales: 213173.75, COGS: 154440, Profit: 58733.75, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2068,7 +2068,7 @@ export class PivotSalesData extends Array { Sales: 286227.5, COGS: 204720, Profit: 81507.5, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2084,7 +2084,7 @@ export class PivotSalesData extends Array { Sales: 471841.25, COGS: 241080, Profit: 230761.25, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2100,7 +2100,7 @@ export class PivotSalesData extends Array { Sales: 322704, COGS: 711000, Profit: 388296, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -2116,7 +2116,7 @@ export class PivotSalesData extends Array { Sales: 9822.24, COGS: 5748, Profit: 4074.24, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -2132,7 +2132,7 @@ export class PivotSalesData extends Array { Sales: 207237.5, COGS: 188400, Profit: 18837.5, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -2148,7 +2148,7 @@ export class PivotSalesData extends Array { Sales: 524634, COGS: 468500, Profit: 56134, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -2164,7 +2164,7 @@ export class PivotSalesData extends Array { Sales: 118909, COGS: 426920, Profit: 308011, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -2180,7 +2180,7 @@ export class PivotSalesData extends Array { Sales: 28681.4, COGS: 8310, Profit: 20371.4, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -2196,7 +2196,7 @@ export class PivotSalesData extends Array { Sales: 82409.7, COGS: 38505, Profit: 43904.7, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -2212,7 +2212,7 @@ export class PivotSalesData extends Array { Sales: 42631.56, COGS: 7437, Profit: 35194.56, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -2228,7 +2228,7 @@ export class PivotSalesData extends Array { Sales: 25121.4, COGS: 20310, Profit: 4811.4, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2244,7 +2244,7 @@ export class PivotSalesData extends Array { Sales: 3386.4, COGS: 20310, Profit: 16923.6, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2260,7 +2260,7 @@ export class PivotSalesData extends Array { Sales: 342348, COGS: 505250, Profit: 162902, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2276,7 +2276,7 @@ export class PivotSalesData extends Array { Sales: 167314, COGS: 71240, Profit: 96074, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2292,7 +2292,7 @@ export class PivotSalesData extends Array { Sales: 60814.8, COGS: 19670, Profit: 41144.8, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -2308,7 +2308,7 @@ export class PivotSalesData extends Array { Sales: 800592, COGS: 464750, Profit: 335842, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -2324,7 +2324,7 @@ export class PivotSalesData extends Array { Sales: 1313748, COGS: 505250, Profit: 808498, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2340,7 +2340,7 @@ export class PivotSalesData extends Array { Sales: 148310, COGS: 136560, Profit: 11750, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2356,7 +2356,7 @@ export class PivotSalesData extends Array { Sales: 16911.72, COGS: 21255, Profit: 4343.28, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -2372,7 +2372,7 @@ export class PivotSalesData extends Array { Sales: 162525, COGS: 95400, Profit: 67125, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -2388,7 +2388,7 @@ export class PivotSalesData extends Array { Sales: 1329126, COGS: 353625, Profit: 975501, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -2404,7 +2404,7 @@ export class PivotSalesData extends Array { Sales: 1123584, COGS: 729500, Profit: 394084, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -2420,7 +2420,7 @@ export class PivotSalesData extends Array { Sales: 569450, COGS: 897000, Profit: 327550, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -2436,7 +2436,7 @@ export class PivotSalesData extends Array { Sales: 426685, COGS: 358560, Profit: 68125, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -2452,7 +2452,7 @@ export class PivotSalesData extends Array { Sales: 30109.2, COGS: 2180, Profit: 27929.2, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -2468,7 +2468,7 @@ export class PivotSalesData extends Array { Sales: 57100.8, COGS: 20740, Profit: 36360.8, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -2484,7 +2484,7 @@ export class PivotSalesData extends Array { Sales: 66195.2, COGS: 10560, Profit: 55635.2, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -2500,7 +2500,7 @@ export class PivotSalesData extends Array { Sales: 846664, COGS: 71240, Profit: 775424, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2516,7 +2516,7 @@ export class PivotSalesData extends Array { Sales: 61185, COGS: 136560, Profit: 75375, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2532,7 +2532,7 @@ export class PivotSalesData extends Array { Sales: 17572.8, COGS: 4395, Profit: 13177.8, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -2548,7 +2548,7 @@ export class PivotSalesData extends Array { Sales: 593222, COGS: 566020, Profit: 27202, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2564,7 +2564,7 @@ export class PivotSalesData extends Array { Sales: 3748.32, COGS: 2598, Profit: 1150.32, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -2580,7 +2580,7 @@ export class PivotSalesData extends Array { Sales: 1197672, COGS: 566020, Profit: 631652, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2596,7 +2596,7 @@ export class PivotSalesData extends Array { Sales: 1003940, COGS: 484900, Profit: 519040, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -2612,7 +2612,7 @@ export class PivotSalesData extends Array { Sales: 499255, COGS: 128880, Profit: 370375, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -2628,7 +2628,7 @@ export class PivotSalesData extends Array { Sales: 1424402, COGS: 495820, Profit: 928582, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -2644,7 +2644,7 @@ export class PivotSalesData extends Array { Sales: 4594.8, COGS: 6860, Profit: 2265.2, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -2660,7 +2660,7 @@ export class PivotSalesData extends Array { Sales: 15333.85, COGS: 13445, Profit: 1888.85, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2676,7 +2676,7 @@ export class PivotSalesData extends Array { Sales: 6641.4, COGS: 7293, Profit: 651.6, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2692,7 +2692,7 @@ export class PivotSalesData extends Array { Sales: 34421.4, COGS: 7293, Profit: 27128.4, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2708,7 +2708,7 @@ export class PivotSalesData extends Array { Sales: 6562.85, COGS: 13445, Profit: 6882.15, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -2724,7 +2724,7 @@ export class PivotSalesData extends Array { Sales: 6746.95, COGS: 8415, Profit: 1668.05, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -2740,7 +2740,7 @@ export class PivotSalesData extends Array { Sales: 4954.2, COGS: 3369, Profit: 1585.2, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -2756,7 +2756,7 @@ export class PivotSalesData extends Array { Sales: 49761, COGS: 5595, Profit: 44166, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -2772,7 +2772,7 @@ export class PivotSalesData extends Array { Sales: 23042.4, COGS: 3348, Profit: 19694.4, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -2788,7 +2788,7 @@ export class PivotSalesData extends Array { Sales: 38117, COGS: 15630, Profit: 22487, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -2804,7 +2804,7 @@ export class PivotSalesData extends Array { Sales: 129135, COGS: 247750, Profit: 118615, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -2820,7 +2820,7 @@ export class PivotSalesData extends Array { Sales: 15981.75, COGS: 27910, Profit: 11928.25, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -2836,7 +2836,7 @@ export class PivotSalesData extends Array { Sales: 17160.5, COGS: 2850, Profit: 14310.5, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2852,7 +2852,7 @@ export class PivotSalesData extends Array { Sales: 19611.55, COGS: 12435, Profit: 7176.55, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -2868,7 +2868,7 @@ export class PivotSalesData extends Array { Sales: 1099271.25, COGS: 359970, Profit: 739301.25, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -2884,7 +2884,7 @@ export class PivotSalesData extends Array { Sales: 379956.25, COGS: 435240, Profit: 55283.75, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -2900,7 +2900,7 @@ export class PivotSalesData extends Array { Sales: 12118.8, COGS: 7026, Profit: 5092.8, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -2916,7 +2916,7 @@ export class PivotSalesData extends Array { Sales: 30897, COGS: 13030, Profit: 17867, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -2932,7 +2932,7 @@ export class PivotSalesData extends Array { Sales: 493800, COGS: 359040, Profit: 134760, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -2948,7 +2948,7 @@ export class PivotSalesData extends Array { Sales: 111593.75, COGS: 286200, Profit: 174606.25, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -2964,7 +2964,7 @@ export class PivotSalesData extends Array { Sales: 976995, COGS: 401750, Profit: 575245, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -2980,7 +2980,7 @@ export class PivotSalesData extends Array { Sales: 26870.55, COGS: 11635, Profit: 15235.55, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -2996,7 +2996,7 @@ export class PivotSalesData extends Array { Sales: 1289235, COGS: 247750, Profit: 1041485, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3012,7 +3012,7 @@ export class PivotSalesData extends Array { Sales: 531265, COGS: 156520, Profit: 374745, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3028,7 +3028,7 @@ export class PivotSalesData extends Array { Sales: 30330, COGS: 26200, Profit: 4130, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -3044,7 +3044,7 @@ export class PivotSalesData extends Array { Sales: 510368.75, COGS: 103320, Profit: 407048.75, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -3060,7 +3060,7 @@ export class PivotSalesData extends Array { Sales: 64857, COGS: 26630, Profit: 38227, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -3076,7 +3076,7 @@ export class PivotSalesData extends Array { Sales: 33243.75, COGS: 5550, Profit: 27693.75, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -3092,7 +3092,7 @@ export class PivotSalesData extends Array { Sales: 18254.25, COGS: 28610, Profit: 10355.75, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -3108,7 +3108,7 @@ export class PivotSalesData extends Array { Sales: 29831.25, COGS: 96840, Profit: 67008.75, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -3124,7 +3124,7 @@ export class PivotSalesData extends Array { Sales: 871815, COGS: 156520, Profit: 715295, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3140,7 +3140,7 @@ export class PivotSalesData extends Array { Sales: 45828, COGS: 28320, Profit: 17508, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -3156,7 +3156,7 @@ export class PivotSalesData extends Array { Sales: 33181, COGS: 15790, Profit: 17391, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -3172,7 +3172,7 @@ export class PivotSalesData extends Array { Sales: 132868.75, COGS: 103320, Profit: 29548.75, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -3188,7 +3188,7 @@ export class PivotSalesData extends Array { Sales: 45150, COGS: 312500, Profit: 267350, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -3204,7 +3204,7 @@ export class PivotSalesData extends Array { Sales: 55917, COGS: 26630, Profit: 29287, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -3220,7 +3220,7 @@ export class PivotSalesData extends Array { Sales: 16523.5, COGS: 2850, Profit: 13673.5, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -3236,7 +3236,7 @@ export class PivotSalesData extends Array { Sales: 20731.55, COGS: 12435, Profit: 8296.55, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -3252,7 +3252,7 @@ export class PivotSalesData extends Array { Sales: 237125, COGS: 351000, Profit: 113875, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -3268,7 +3268,7 @@ export class PivotSalesData extends Array { Sales: 433440, COGS: 143520, Profit: 289920, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -3284,7 +3284,7 @@ export class PivotSalesData extends Array { Sales: 1267350, COGS: 312500, Profit: 954850, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -3300,7 +3300,7 @@ export class PivotSalesData extends Array { Sales: 44474.1, COGS: 38010, Profit: 6464.1, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -3316,7 +3316,7 @@ export class PivotSalesData extends Array { Sales: 37999, COGS: 11175, Profit: 26824, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -3332,7 +3332,7 @@ export class PivotSalesData extends Array { Sales: 6905.4, COGS: 28440, Profit: 21534.6, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3348,7 +3348,7 @@ export class PivotSalesData extends Array { Sales: 41223.36, COGS: 1686, Profit: 39537.36, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -3364,7 +3364,7 @@ export class PivotSalesData extends Array { Sales: 46398, COGS: 20300, Profit: 26098, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -3380,7 +3380,7 @@ export class PivotSalesData extends Array { Sales: 665070, COGS: 254800, Profit: 410270, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -3396,7 +3396,7 @@ export class PivotSalesData extends Array { Sales: 732690, COGS: 379600, Profit: 353090, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -3412,7 +3412,7 @@ export class PivotSalesData extends Array { Sales: 24499.44, COGS: 8169, Profit: 16330.44, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -3428,7 +3428,7 @@ export class PivotSalesData extends Array { Sales: 630084, COGS: 388960, Profit: 241124, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3444,7 +3444,7 @@ export class PivotSalesData extends Array { Sales: 294985, COGS: 114240, Profit: 180745, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -3460,7 +3460,7 @@ export class PivotSalesData extends Array { Sales: 124087.5, COGS: 330600, Profit: 206512.5, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -3476,7 +3476,7 @@ export class PivotSalesData extends Array { Sales: 10668, COGS: 15300, Profit: 4632, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -3492,7 +3492,7 @@ export class PivotSalesData extends Array { Sales: 1265334, COGS: 388960, Profit: 876374, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3508,7 +3508,7 @@ export class PivotSalesData extends Array { Sales: 3493.84, COGS: 7490, Profit: 3996.16, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3524,7 +3524,7 @@ export class PivotSalesData extends Array { Sales: 57425.4, COGS: 28440, Profit: 28985.4, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3540,7 +3540,7 @@ export class PivotSalesData extends Array { Sales: 29162.84, COGS: 7490, Profit: 21672.84, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3556,7 +3556,7 @@ export class PivotSalesData extends Array { Sales: 255093.75, COGS: 238500, Profit: 16593.75, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -3572,7 +3572,7 @@ export class PivotSalesData extends Array { Sales: 127841, COGS: 436540, Profit: 308699, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -3588,7 +3588,7 @@ export class PivotSalesData extends Array { Sales: 20191.8, COGS: 21980, Profit: 1788.2, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -3604,7 +3604,7 @@ export class PivotSalesData extends Array { Sales: 55401.3, COGS: 17430, Profit: 37971.3, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -3620,7 +3620,7 @@ export class PivotSalesData extends Array { Sales: 5667.3, COGS: 11530, Profit: 5862.7, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -3636,7 +3636,7 @@ export class PivotSalesData extends Array { Sales: 13698.8, COGS: 10010, Profit: 3688.8, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -3652,7 +3652,7 @@ export class PivotSalesData extends Array { Sales: 11564.14, COGS: 6665, Profit: 4899.14, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -3668,7 +3668,7 @@ export class PivotSalesData extends Array { Sales: 25347.3, COGS: 11530, Profit: 13817.3, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -3684,7 +3684,7 @@ export class PivotSalesData extends Array { Sales: 3445.32, COGS: 2181, Profit: 1264.32, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -3700,7 +3700,7 @@ export class PivotSalesData extends Array { Sales: 45349.44, COGS: 5652, Profit: 39697.44, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -3716,7 +3716,7 @@ export class PivotSalesData extends Array { Sales: 51710.4, COGS: 7020, Profit: 44690.4, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -3732,7 +3732,7 @@ export class PivotSalesData extends Array { Sales: 2628.72, COGS: 7026, Profit: 4397.28, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -3748,7 +3748,7 @@ export class PivotSalesData extends Array { Sales: 14604.9, COGS: 12620, Profit: 1984.9, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -3764,7 +3764,7 @@ export class PivotSalesData extends Array { Sales: 28024.85, COGS: 5675, Profit: 22349.85, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3780,7 +3780,7 @@ export class PivotSalesData extends Array { Sales: 27549.97, COGS: 2735, Profit: 24814.97, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -3796,7 +3796,7 @@ export class PivotSalesData extends Array { Sales: 25285.82, COGS: 7910, Profit: 17375.82, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -3812,7 +3812,7 @@ export class PivotSalesData extends Array { Sales: 27759.66, COGS: 5215.5, Profit: 22544.16, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -3828,7 +3828,7 @@ export class PivotSalesData extends Array { Sales: 11565.82, COGS: 7910, Profit: 3655.82, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -3844,7 +3844,7 @@ export class PivotSalesData extends Array { Sales: 30754.85, COGS: 5675, Profit: 25079.85, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3860,7 +3860,7 @@ export class PivotSalesData extends Array { Sales: 392955.5, COGS: 457860, Profit: 64904.5, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -3876,7 +3876,7 @@ export class PivotSalesData extends Array { Sales: 475092, COGS: 112000, Profit: 363092, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3892,7 +3892,7 @@ export class PivotSalesData extends Array { Sales: 178899, COGS: 545250, Profit: 366351, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -3908,7 +3908,7 @@ export class PivotSalesData extends Array { Sales: 23593.6, COGS: 19760, Profit: 3833.6, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -3924,7 +3924,7 @@ export class PivotSalesData extends Array { Sales: 818799, COGS: 545250, Profit: 273549, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -3940,7 +3940,7 @@ export class PivotSalesData extends Array { Sales: 709458, COGS: 425500, Profit: 283958, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -3956,7 +3956,7 @@ export class PivotSalesData extends Array { Sales: 941292, COGS: 112000, Profit: 829292, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -3972,7 +3972,7 @@ export class PivotSalesData extends Array { Sales: 479261.25, COGS: 421560, Profit: 57701.25, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -3988,7 +3988,7 @@ export class PivotSalesData extends Array { Sales: 56938.95, COGS: 21010, Profit: 35928.95, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -4004,7 +4004,7 @@ export class PivotSalesData extends Array { Sales: 2911, COGS: 15350, Profit: 12439, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -4020,7 +4020,7 @@ export class PivotSalesData extends Array { Sales: 204861, COGS: 414750, Profit: 209889, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -4036,7 +4036,7 @@ export class PivotSalesData extends Array { Sales: 77987.4, COGS: 6090, Profit: 71897.4, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -4052,7 +4052,7 @@ export class PivotSalesData extends Array { Sales: 293988.75, COGS: 250440, Profit: 43548.75, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -4068,7 +4068,7 @@ export class PivotSalesData extends Array { Sales: 47573.6, COGS: 19760, Profit: 27813.6, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -4084,7 +4084,7 @@ export class PivotSalesData extends Array { Sales: 314688, COGS: 343000, Profit: 28312, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -4100,7 +4100,7 @@ export class PivotSalesData extends Array { Sales: 43042.62, COGS: 9733.5, Profit: 33309.12, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -4116,7 +4116,7 @@ export class PivotSalesData extends Array { Sales: 336261, COGS: 239750, Profit: 96511, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -4132,7 +4132,7 @@ export class PivotSalesData extends Array { Sales: 612213, COGS: 686750, Profit: 74537, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -4148,7 +4148,7 @@ export class PivotSalesData extends Array { Sales: 38231.25, COGS: 197400, Profit: 159168.75, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -4164,7 +4164,7 @@ export class PivotSalesData extends Array { Sales: 23688, COGS: 747760, Profit: 724072, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -4180,7 +4180,7 @@ export class PivotSalesData extends Array { Sales: 17474.8, COGS: 11180, Profit: 6294.8, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -4196,7 +4196,7 @@ export class PivotSalesData extends Array { Sales: 860388, COGS: 343000, Profit: 517388, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -4212,7 +4212,7 @@ export class PivotSalesData extends Array { Sales: 10261.72, COGS: 2440, Profit: 7821.72, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -4228,7 +4228,7 @@ export class PivotSalesData extends Array { Sales: 31508.8, COGS: 12820, Profit: 18688.8, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4244,7 +4244,7 @@ export class PivotSalesData extends Array { Sales: 29599.08, COGS: 1285, Profit: 28314.08, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -4260,7 +4260,7 @@ export class PivotSalesData extends Array { Sales: 31488.8, COGS: 12820, Profit: 18668.8, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4276,7 +4276,7 @@ export class PivotSalesData extends Array { Sales: 365975, COGS: 184800, Profit: 181175, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -4292,7 +4292,7 @@ export class PivotSalesData extends Array { Sales: 49992, COGS: 4900, Profit: 45092, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -4308,7 +4308,7 @@ export class PivotSalesData extends Array { Sales: 551964, COGS: 354120, Profit: 197844, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -4324,7 +4324,7 @@ export class PivotSalesData extends Array { Sales: 43288.8, COGS: 25010, Profit: 18278.8, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -4340,7 +4340,7 @@ export class PivotSalesData extends Array { Sales: 81867.2, COGS: 7080, Profit: 74787.2, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4356,7 +4356,7 @@ export class PivotSalesData extends Array { Sales: 59508, COGS: 6450, Profit: 53058, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -4372,7 +4372,7 @@ export class PivotSalesData extends Array { Sales: 1270212, COGS: 390500, Profit: 879712, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -4388,7 +4388,7 @@ export class PivotSalesData extends Array { Sales: 22981.8, COGS: 7110, Profit: 15871.8, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -4404,7 +4404,7 @@ export class PivotSalesData extends Array { Sales: 323735, COGS: 133680, Profit: 190055, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -4420,7 +4420,7 @@ export class PivotSalesData extends Array { Sales: 23101.96, COGS: 6295, Profit: 16806.96, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -4436,7 +4436,7 @@ export class PivotSalesData extends Array { Sales: 19091.8, COGS: 5475, Profit: 13616.8, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -4452,7 +4452,7 @@ export class PivotSalesData extends Array { Sales: 57094.4, COGS: 13660, Profit: 43434.4, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4468,7 +4468,7 @@ export class PivotSalesData extends Array { Sales: 1192860, COGS: 615000, Profit: 577860, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4484,7 +4484,7 @@ export class PivotSalesData extends Array { Sales: 7719.32, COGS: 3390, Profit: 4329.32, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -4500,7 +4500,7 @@ export class PivotSalesData extends Array { Sales: 20560.12, COGS: 7990, Profit: 12570.12, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -4516,7 +4516,7 @@ export class PivotSalesData extends Array { Sales: 78505.6, COGS: 19340, Profit: 59165.6, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -4532,7 +4532,7 @@ export class PivotSalesData extends Array { Sales: 29471.2, COGS: 29930, Profit: 458.8, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -4548,7 +4548,7 @@ export class PivotSalesData extends Array { Sales: 553714, COGS: 354120, Profit: 199594, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -4564,7 +4564,7 @@ export class PivotSalesData extends Array { Sales: 27085.92, COGS: 1794, Profit: 25291.92, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -4580,7 +4580,7 @@ export class PivotSalesData extends Array { Sales: 22179.08, COGS: 14535, Profit: 7644.08, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4596,7 +4596,7 @@ export class PivotSalesData extends Array { Sales: 14706.72, COGS: 11690, Profit: 3016.72, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4612,7 +4612,7 @@ export class PivotSalesData extends Array { Sales: 1210560, COGS: 158750, Profit: 1051810, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -4628,7 +4628,7 @@ export class PivotSalesData extends Array { Sales: 911764, COGS: 149370, Profit: 762394, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -4644,7 +4644,7 @@ export class PivotSalesData extends Array { Sales: 26487.72, COGS: 11690, Profit: 14797.72, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4660,7 +4660,7 @@ export class PivotSalesData extends Array { Sales: 868532, COGS: 99060, Profit: 769472, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -4676,7 +4676,7 @@ export class PivotSalesData extends Array { Sales: 948934, COGS: 109720, Profit: 839214, - Date: `2020-08-01`, + Date: `08/01/2020`, MonthName: `August`, Year: 2020 }), @@ -4692,7 +4692,7 @@ export class PivotSalesData extends Array { Sales: 519684, COGS: 533500, Profit: 13816, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -4708,7 +4708,7 @@ export class PivotSalesData extends Array { Sales: 57147.2, COGS: 7080, Profit: 50067.2, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4724,7 +4724,7 @@ export class PivotSalesData extends Array { Sales: 11595.08, COGS: 14535, Profit: 2939.92, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4740,7 +4740,7 @@ export class PivotSalesData extends Array { Sales: 27134.4, COGS: 13660, Profit: 13474.4, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4756,7 +4756,7 @@ export class PivotSalesData extends Array { Sales: 207060, COGS: 615000, Profit: 407940, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4772,7 +4772,7 @@ export class PivotSalesData extends Array { Sales: 5468, COGS: 15200, Profit: 9732, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -4788,7 +4788,7 @@ export class PivotSalesData extends Array { Sales: 24541.8, COGS: 7110, Profit: 17431.8, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -4804,7 +4804,7 @@ export class PivotSalesData extends Array { Sales: 779460, COGS: 158750, Profit: 620710, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -4820,7 +4820,7 @@ export class PivotSalesData extends Array { Sales: 71461.6, COGS: 4365, Profit: 67096.6, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -4836,7 +4836,7 @@ export class PivotSalesData extends Array { Sales: 292362, COGS: 273500, Profit: 18862, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4852,7 +4852,7 @@ export class PivotSalesData extends Array { Sales: 547432.5, COGS: 950625, Profit: 403192.5, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -4868,7 +4868,7 @@ export class PivotSalesData extends Array { Sales: 409171, COGS: 433160, Profit: 23989, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -4884,7 +4884,7 @@ export class PivotSalesData extends Array { Sales: 12517.32, COGS: 6963, Profit: 5554.32, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -4900,7 +4900,7 @@ export class PivotSalesData extends Array { Sales: 113033.75, COGS: 335640, Profit: 222606.25, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -4916,7 +4916,7 @@ export class PivotSalesData extends Array { Sales: 276645, COGS: 641250, Profit: 364605, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -4932,7 +4932,7 @@ export class PivotSalesData extends Array { Sales: 875864.5, COGS: 628420, Profit: 247444.5, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -4948,7 +4948,7 @@ export class PivotSalesData extends Array { Sales: 49908.75, COGS: 36750, Profit: 13158.75, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -4964,7 +4964,7 @@ export class PivotSalesData extends Array { Sales: 855462, COGS: 273500, Profit: 581962, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -4980,7 +4980,7 @@ export class PivotSalesData extends Array { Sales: 25658.55, COGS: 12270, Profit: 13388.55, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -4996,7 +4996,7 @@ export class PivotSalesData extends Array { Sales: 302352, COGS: 331000, Profit: 28648, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -5012,7 +5012,7 @@ export class PivotSalesData extends Array { Sales: 76283.75, COGS: 335640, Profit: 259356.25, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -5028,7 +5028,7 @@ export class PivotSalesData extends Array { Sales: 56744.25, COGS: 2450, Profit: 54294.25, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -5044,7 +5044,7 @@ export class PivotSalesData extends Array { Sales: 322075.5, COGS: 948375, Profit: 626299.5, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -5060,7 +5060,7 @@ export class PivotSalesData extends Array { Sales: 739679.5, COGS: 339820, Profit: 399859.5, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -5076,7 +5076,7 @@ export class PivotSalesData extends Array { Sales: 449746.25, COGS: 68040, Profit: 381706.25, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -5092,7 +5092,7 @@ export class PivotSalesData extends Array { Sales: 344762.5, COGS: 253200, Profit: 91562.5, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -5108,7 +5108,7 @@ export class PivotSalesData extends Array { Sales: 1148276.5, COGS: 329940, Profit: 818336.5, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -5124,7 +5124,7 @@ export class PivotSalesData extends Array { Sales: 29687.52, COGS: 5868, Profit: 23819.52, - Date: `2020-01-01`, + Date: `01/01/2020`, MonthName: `January`, Year: 2020 }), @@ -5140,7 +5140,7 @@ export class PivotSalesData extends Array { Sales: 103707, COGS: 664750, Profit: 561043, - Date: `2020-02-01`, + Date: `02/01/2020`, MonthName: `February`, Year: 2020 }), @@ -5156,7 +5156,7 @@ export class PivotSalesData extends Array { Sales: 418027.75, COGS: 351390, Profit: 66637.75, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -5172,7 +5172,7 @@ export class PivotSalesData extends Array { Sales: 52557.6, COGS: 2640, Profit: 49917.6, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -5188,7 +5188,7 @@ export class PivotSalesData extends Array { Sales: 762891, COGS: 466750, Profit: 296141, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -5204,7 +5204,7 @@ export class PivotSalesData extends Array { Sales: 52538.55, COGS: 12270, Profit: 40268.55, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -5220,7 +5220,7 @@ export class PivotSalesData extends Array { Sales: 221008.75, COGS: 105240, Profit: 115768.75, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -5236,7 +5236,7 @@ export class PivotSalesData extends Array { Sales: 983363.5, COGS: 538460, Profit: 444903.5, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -5252,7 +5252,7 @@ export class PivotSalesData extends Array { Sales: 953326.5, COGS: 329940, Profit: 623386.5, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -5268,7 +5268,7 @@ export class PivotSalesData extends Array { Sales: 27670.8, COGS: 16940, Profit: 10730.8, - Date: `2020-11-01`, + Date: `11/01/2020`, MonthName: `November`, Year: 2020 }), @@ -5284,7 +5284,7 @@ export class PivotSalesData extends Array { Sales: 24626.6, COGS: 6630, Profit: 17996.6, - Date: `2020-05-01`, + Date: `05/01/2020`, MonthName: `May`, Year: 2020 }), @@ -5300,7 +5300,7 @@ export class PivotSalesData extends Array { Sales: 7975.03, COGS: 4095, Profit: 3880.03, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -5316,7 +5316,7 @@ export class PivotSalesData extends Array { Sales: 26733.6, COGS: 4740, Profit: 21993.6, - Date: `2020-09-01`, + Date: `09/01/2020`, MonthName: `September`, Year: 2020 }), @@ -5332,7 +5332,7 @@ export class PivotSalesData extends Array { Sales: 13524.77, COGS: 2605, Profit: 10919.77, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -5348,7 +5348,7 @@ export class PivotSalesData extends Array { Sales: 55828.6, COGS: 9730, Profit: 46098.6, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -5364,7 +5364,7 @@ export class PivotSalesData extends Array { Sales: 32271.6, COGS: 10380, Profit: 21891.6, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -5380,7 +5380,7 @@ export class PivotSalesData extends Array { Sales: 20304.2, COGS: 1800, Profit: 18504.2, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -5396,7 +5396,7 @@ export class PivotSalesData extends Array { Sales: 10043.64, COGS: 5901, Profit: 4142.64, - Date: `2020-03-01`, + Date: `03/01/2020`, MonthName: `March`, Year: 2020 }), @@ -5412,7 +5412,7 @@ export class PivotSalesData extends Array { Sales: 6847.2, COGS: 26280, Profit: 19432.8, - Date: `2020-04-01`, + Date: `04/01/2020`, MonthName: `April`, Year: 2020 }), @@ -5428,7 +5428,7 @@ export class PivotSalesData extends Array { Sales: 25960.2, COGS: 1800, Profit: 24160.2, - Date: `2020-10-01`, + Date: `10/01/2020`, MonthName: `October`, Year: 2020 }), @@ -5444,7 +5444,7 @@ export class PivotSalesData extends Array { Sales: 27636.77, COGS: 2605, Profit: 25031.77, - Date: `2020-12-01`, + Date: `12/01/2020`, MonthName: `December`, Year: 2020 }), @@ -5460,7 +5460,7 @@ export class PivotSalesData extends Array { Sales: 17191.6, COGS: 10380, Profit: 6811.6, - Date: `2020-06-01`, + Date: `06/01/2020`, MonthName: `June`, Year: 2020 }), @@ -5476,7 +5476,7 @@ export class PivotSalesData extends Array { Sales: 35748.82, COGS: 16305, Profit: 19443.82, - Date: `2020-07-01`, + Date: `07/01/2020`, MonthName: `July`, Year: 2020 }), @@ -5492,7 +5492,7 @@ export class PivotSalesData extends Array { Sales: 27440, COGS: 16185, Profit: 11255, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -5508,7 +5508,7 @@ export class PivotSalesData extends Array { Sales: 55240, COGS: 13210, Profit: 42030, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -5524,7 +5524,7 @@ export class PivotSalesData extends Array { Sales: 21960, COGS: 21780, Profit: 180, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -5540,7 +5540,7 @@ export class PivotSalesData extends Array { Sales: 10785, COGS: 8880, Profit: 1905, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -5556,7 +5556,7 @@ export class PivotSalesData extends Array { Sales: 53640, COGS: 24700, Profit: 28940, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -5572,7 +5572,7 @@ export class PivotSalesData extends Array { Sales: 1547700, COGS: 393380, Profit: 1154320, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -5588,7 +5588,7 @@ export class PivotSalesData extends Array { Sales: 54735, COGS: 9210, Profit: 45525, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -5604,7 +5604,7 @@ export class PivotSalesData extends Array { Sales: 50064, COGS: 7554, Profit: 42510, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -5620,7 +5620,7 @@ export class PivotSalesData extends Array { Sales: 76820, COGS: 18990, Profit: 57830, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -5636,7 +5636,7 @@ export class PivotSalesData extends Array { Sales: 44712, COGS: 4635, Profit: 40077, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -5652,7 +5652,7 @@ export class PivotSalesData extends Array { Sales: 39375, COGS: 24700, Profit: 14675, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -5668,7 +5668,7 @@ export class PivotSalesData extends Array { Sales: 244750, COGS: 319860, Profit: 75110, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -5684,7 +5684,7 @@ export class PivotSalesData extends Array { Sales: 981300, COGS: 239500, Profit: 741800, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -5700,7 +5700,7 @@ export class PivotSalesData extends Array { Sales: 14637, COGS: 10730, Profit: 3907, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -5716,7 +5716,7 @@ export class PivotSalesData extends Array { Sales: 316250, COGS: 41400, Profit: 274850, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -5732,7 +5732,7 @@ export class PivotSalesData extends Array { Sales: 42375, COGS: 6150, Profit: 36225, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -5748,7 +5748,7 @@ export class PivotSalesData extends Array { Sales: 50260, COGS: 2920, Profit: 47340, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -5764,7 +5764,7 @@ export class PivotSalesData extends Array { Sales: 13245, COGS: 9740, Profit: 3505, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -5780,7 +5780,7 @@ export class PivotSalesData extends Array { Sales: 25044, COGS: 7554, Profit: 17490, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -5796,7 +5796,7 @@ export class PivotSalesData extends Array { Sales: 897050, COGS: 261560, Profit: 635490, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -5812,7 +5812,7 @@ export class PivotSalesData extends Array { Sales: 34152, COGS: 1101, Profit: 33051, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -5828,7 +5828,7 @@ export class PivotSalesData extends Array { Sales: 6979, COGS: 4415, Profit: 2564, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -5844,7 +5844,7 @@ export class PivotSalesData extends Array { Sales: 51315, COGS: 5490, Profit: 45825, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -5860,7 +5860,7 @@ export class PivotSalesData extends Array { Sales: 1050000, COGS: 5490, Profit: 1044510, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -5876,7 +5876,7 @@ export class PivotSalesData extends Array { Sales: 687300, COGS: 197000, Profit: 490300, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -5892,7 +5892,7 @@ export class PivotSalesData extends Array { Sales: 34350, COGS: 24720, Profit: 9630, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -5908,7 +5908,7 @@ export class PivotSalesData extends Array { Sales: 14931, COGS: 5715, Profit: 9216, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -5924,7 +5924,7 @@ export class PivotSalesData extends Array { Sales: 1216250, COGS: 448500, Profit: 767750, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -5940,7 +5940,7 @@ export class PivotSalesData extends Array { Sales: 44232, COGS: 2736, Profit: 41496, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -5956,7 +5956,7 @@ export class PivotSalesData extends Array { Sales: 49785, COGS: 21520, Profit: 28265, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -5972,7 +5972,7 @@ export class PivotSalesData extends Array { Sales: 72340, COGS: 18170, Profit: 54170, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -5988,7 +5988,7 @@ export class PivotSalesData extends Array { Sales: 443100, COGS: 393380, Profit: 49720, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -6004,7 +6004,7 @@ export class PivotSalesData extends Array { Sales: 6258, COGS: 7465, Profit: 1207, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -6020,7 +6020,7 @@ export class PivotSalesData extends Array { Sales: 340625, COGS: 216480, Profit: 124145, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -6036,7 +6036,7 @@ export class PivotSalesData extends Array { Sales: 36732, COGS: 6483, Profit: 30249, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -6052,7 +6052,7 @@ export class PivotSalesData extends Array { Sales: 1385300, COGS: 261560, Profit: 1123740, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -6068,7 +6068,7 @@ export class PivotSalesData extends Array { Sales: 47040, COGS: 4635, Profit: 42405, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -6084,7 +6084,7 @@ export class PivotSalesData extends Array { Sales: 422625, COGS: 338520, Profit: 84105, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -6100,7 +6100,7 @@ export class PivotSalesData extends Array { Sales: 136750, COGS: 41400, Profit: 95350, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -6116,7 +6116,7 @@ export class PivotSalesData extends Array { Sales: 1292100, COGS: 500250, Profit: 791850, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -6132,7 +6132,7 @@ export class PivotSalesData extends Array { Sales: 10536, COGS: 8514, Profit: 2022, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -6148,7 +6148,7 @@ export class PivotSalesData extends Array { Sales: 7440, COGS: 21780, Profit: 14340, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -6164,7 +6164,7 @@ export class PivotSalesData extends Array { Sales: 50505, COGS: 8880, Profit: 41625, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -6180,7 +6180,7 @@ export class PivotSalesData extends Array { Sales: 1358000, COGS: 397020, Profit: 960980, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -6196,7 +6196,7 @@ export class PivotSalesData extends Array { Sales: 616500, COGS: 537750, Profit: 78750, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -6212,7 +6212,7 @@ export class PivotSalesData extends Array { Sales: 80820, COGS: 18170, Profit: 62650, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -6228,7 +6228,7 @@ export class PivotSalesData extends Array { Sales: 1132950, COGS: 715000, Profit: 417950, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -6244,7 +6244,7 @@ export class PivotSalesData extends Array { Sales: 7560, COGS: 5859, Profit: 1701, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -6260,7 +6260,7 @@ export class PivotSalesData extends Array { Sales: 526250, COGS: 506340, Profit: 19910, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -6276,7 +6276,7 @@ export class PivotSalesData extends Array { Sales: 22540, COGS: 18990, Profit: 3550, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -6292,7 +6292,7 @@ export class PivotSalesData extends Array { Sales: 24066, COGS: 8430, Profit: 15636, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -6308,7 +6308,7 @@ export class PivotSalesData extends Array { Sales: 24180, COGS: 6423, Profit: 17757, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -6324,7 +6324,7 @@ export class PivotSalesData extends Array { Sales: 17738, COGS: 5715, Profit: 12023, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -6340,7 +6340,7 @@ export class PivotSalesData extends Array { Sales: 20760, COGS: 6150, Profit: 14610, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -6356,7 +6356,7 @@ export class PivotSalesData extends Array { Sales: 24650.85, COGS: 19725, Profit: 4925.85, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -6372,7 +6372,7 @@ export class PivotSalesData extends Array { Sales: 27000.6, COGS: 22960, Profit: 4040.6, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -6388,7 +6388,7 @@ export class PivotSalesData extends Array { Sales: 19492.9, COGS: 5150, Profit: 14342.9, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -6404,7 +6404,7 @@ export class PivotSalesData extends Array { Sales: 3154.27, COGS: 3195, Profit: 40.73, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -6420,7 +6420,7 @@ export class PivotSalesData extends Array { Sales: 26402.18, COGS: 6630, Profit: 19772.18, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -6436,7 +6436,7 @@ export class PivotSalesData extends Array { Sales: 8753.04, COGS: 5574, Profit: 3179.04, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -6452,7 +6452,7 @@ export class PivotSalesData extends Array { Sales: 353115, COGS: 314600, Profit: 38515, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -6468,7 +6468,7 @@ export class PivotSalesData extends Array { Sales: 14354.97, COGS: 12645, Profit: 1709.97, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -6484,7 +6484,7 @@ export class PivotSalesData extends Array { Sales: 51618.6, COGS: 4335, Profit: 47283.6, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -6500,7 +6500,7 @@ export class PivotSalesData extends Array { Sales: 331337.5, COGS: 39600, Profit: 291737.5, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -6516,7 +6516,7 @@ export class PivotSalesData extends Array { Sales: 49767.48, COGS: 8013, Profit: 41754.48, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -6532,7 +6532,7 @@ export class PivotSalesData extends Array { Sales: 20008.08, COGS: 2298, Profit: 17710.08, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -6548,7 +6548,7 @@ export class PivotSalesData extends Array { Sales: 470118, COGS: 123500, Profit: 346618, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -6564,7 +6564,7 @@ export class PivotSalesData extends Array { Sales: 1302710.5, COGS: 363220, Profit: 939490.5, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -6580,7 +6580,7 @@ export class PivotSalesData extends Array { Sales: 662357.5, COGS: 560300, Profit: 102057.5, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -6596,7 +6596,7 @@ export class PivotSalesData extends Array { Sales: 40797.9, COGS: 22140, Profit: 18657.9, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -6612,7 +6612,7 @@ export class PivotSalesData extends Array { Sales: 442797, COGS: 575250, Profit: 132453, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -6628,7 +6628,7 @@ export class PivotSalesData extends Array { Sales: 75164.9, COGS: 13755, Profit: 61409.9, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -6644,7 +6644,7 @@ export class PivotSalesData extends Array { Sales: 7655.9, COGS: 9150, Profit: 1494.1, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -6660,7 +6660,7 @@ export class PivotSalesData extends Array { Sales: 509406, COGS: 624500, Profit: 115094, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -6676,7 +6676,7 @@ export class PivotSalesData extends Array { Sales: 52046.25, COGS: 79560, Profit: 27513.75, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -6692,7 +6692,7 @@ export class PivotSalesData extends Array { Sales: 35292.9, COGS: 15140, Profit: 20152.9, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -6708,7 +6708,7 @@ export class PivotSalesData extends Array { Sales: 10787.52, COGS: 22462.5, Profit: 11674.98, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -6724,7 +6724,7 @@ export class PivotSalesData extends Array { Sales: 422341.25, COGS: 87240, Profit: 335101.25, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -6740,7 +6740,7 @@ export class PivotSalesData extends Array { Sales: 105516.25, COGS: 94440, Profit: 11076.25, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -6756,7 +6756,7 @@ export class PivotSalesData extends Array { Sales: 345596.25, COGS: 218760, Profit: 126836.25, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -6772,7 +6772,7 @@ export class PivotSalesData extends Array { Sales: 40147.95, COGS: 7470, Profit: 32677.95, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -6788,7 +6788,7 @@ export class PivotSalesData extends Array { Sales: 52624.08, COGS: 2298, Profit: 50326.08, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -6804,7 +6804,7 @@ export class PivotSalesData extends Array { Sales: 1216185, COGS: 726250, Profit: 489935, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -6820,7 +6820,7 @@ export class PivotSalesData extends Array { Sales: 978057.5, COGS: 560300, Profit: 417757.5, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -6836,7 +6836,7 @@ export class PivotSalesData extends Array { Sales: 85107.2, COGS: 38640, Profit: 46467.2, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -6852,7 +6852,7 @@ export class PivotSalesData extends Array { Sales: 19966.66, COGS: 1810, Profit: 18156.66, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -6868,7 +6868,7 @@ export class PivotSalesData extends Array { Sales: 174721.25, COGS: 110760, Profit: 63961.25, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -6884,7 +6884,7 @@ export class PivotSalesData extends Array { Sales: 480421.25, COGS: 79560, Profit: 400861.25, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -6900,7 +6900,7 @@ export class PivotSalesData extends Array { Sales: 19845.56, COGS: 10460, Profit: 9385.56, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -6916,7 +6916,7 @@ export class PivotSalesData extends Array { Sales: 8836.59, COGS: 1315, Profit: 7521.59, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -6932,7 +6932,7 @@ export class PivotSalesData extends Array { Sales: 1358897.75, COGS: 245310, Profit: 1113587.75, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -6948,7 +6948,7 @@ export class PivotSalesData extends Array { Sales: 382591.25, COGS: 87240, Profit: 295351.25, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -6964,7 +6964,7 @@ export class PivotSalesData extends Array { Sales: 271641.25, COGS: 94440, Profit: 177201.25, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -6980,7 +6980,7 @@ export class PivotSalesData extends Array { Sales: 403842, COGS: 246500, Profit: 157342, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -6996,7 +6996,7 @@ export class PivotSalesData extends Array { Sales: 762018, COGS: 123500, Profit: 638518, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -7012,7 +7012,7 @@ export class PivotSalesData extends Array { Sales: 630010.5, COGS: 363220, Profit: 266790.5, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -7028,7 +7028,7 @@ export class PivotSalesData extends Array { Sales: 184695, COGS: 209280, Profit: 24585, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -7044,7 +7044,7 @@ export class PivotSalesData extends Array { Sales: 13609.32, COGS: 5967, Profit: 7642.32, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -7060,7 +7060,7 @@ export class PivotSalesData extends Array { Sales: 62651.85, COGS: 3210, Profit: 59441.85, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -7076,7 +7076,7 @@ export class PivotSalesData extends Array { Sales: 181018.75, COGS: 89100, Profit: 91918.75, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -7092,7 +7092,7 @@ export class PivotSalesData extends Array { Sales: 2269.2, COGS: 3885, Profit: 1615.8, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -7108,7 +7108,7 @@ export class PivotSalesData extends Array { Sales: 1228416, COGS: 53500, Profit: 1174916, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -7124,7 +7124,7 @@ export class PivotSalesData extends Array { Sales: 18319.7, COGS: 10725, Profit: 7594.7, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -7140,7 +7140,7 @@ export class PivotSalesData extends Array { Sales: 178136, COGS: 741520, Profit: 563384, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7156,7 +7156,7 @@ export class PivotSalesData extends Array { Sales: 38785.92, COGS: 3426, Profit: 35359.92, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -7172,7 +7172,7 @@ export class PivotSalesData extends Array { Sales: 14813.6, COGS: 15660, Profit: 846.4, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -7188,7 +7188,7 @@ export class PivotSalesData extends Array { Sales: 13454.4, COGS: 2070, Profit: 11384.4, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -7204,7 +7204,7 @@ export class PivotSalesData extends Array { Sales: 474100, COGS: 199200, Profit: 274900, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -7220,7 +7220,7 @@ export class PivotSalesData extends Array { Sales: 17186.1, COGS: 23630, Profit: 6443.9, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -7236,7 +7236,7 @@ export class PivotSalesData extends Array { Sales: 753492, COGS: 229500, Profit: 523992, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -7252,7 +7252,7 @@ export class PivotSalesData extends Array { Sales: 1024932, COGS: 432000, Profit: 592932, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -7268,7 +7268,7 @@ export class PivotSalesData extends Array { Sales: 36433.92, COGS: 3426, Profit: 33007.92, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -7284,7 +7284,7 @@ export class PivotSalesData extends Array { Sales: 492970, COGS: 79440, Profit: 413530, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -7300,7 +7300,7 @@ export class PivotSalesData extends Array { Sales: 41017.2, COGS: 3885, Profit: 37132.2, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -7316,7 +7316,7 @@ export class PivotSalesData extends Array { Sales: 546477.5, COGS: 97080, Profit: 449397.5, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -7332,7 +7332,7 @@ export class PivotSalesData extends Array { Sales: 257887.5, COGS: 257400, Profit: 487.5, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -7348,7 +7348,7 @@ export class PivotSalesData extends Array { Sales: 9159.6, COGS: 5355, Profit: 3804.6, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -7364,7 +7364,7 @@ export class PivotSalesData extends Array { Sales: 934704, COGS: 479000, Profit: 455704, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7380,7 +7380,7 @@ export class PivotSalesData extends Array { Sales: 1417836, COGS: 741520, Profit: 676316, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7396,7 +7396,7 @@ export class PivotSalesData extends Array { Sales: 463177.5, COGS: 327480, Profit: 135697.5, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7412,7 +7412,7 @@ export class PivotSalesData extends Array { Sales: 5077.5, COGS: 19250, Profit: 14172.5, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -7428,7 +7428,7 @@ export class PivotSalesData extends Array { Sales: 14488.18, COGS: 10065, Profit: 4423.18, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -7444,7 +7444,7 @@ export class PivotSalesData extends Array { Sales: 27754.8, COGS: 3165, Profit: 24589.8, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7460,7 +7460,7 @@ export class PivotSalesData extends Array { Sales: 6699.84, COGS: 3252, Profit: 3447.84, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7476,7 +7476,7 @@ export class PivotSalesData extends Array { Sales: 51573.6, COGS: 15660, Profit: 35913.6, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -7492,7 +7492,7 @@ export class PivotSalesData extends Array { Sales: 538538, COGS: 771160, Profit: 232622, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -7508,7 +7508,7 @@ export class PivotSalesData extends Array { Sales: 490511, COGS: 748020, Profit: 257509, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -7524,7 +7524,7 @@ export class PivotSalesData extends Array { Sales: 408477.5, COGS: 97080, Profit: 311397.5, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -7540,7 +7540,7 @@ export class PivotSalesData extends Array { Sales: 144262.5, COGS: 257400, Profit: 113137.5, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -7556,7 +7556,7 @@ export class PivotSalesData extends Array { Sales: 45034.8, COGS: 3165, Profit: 41869.8, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7572,7 +7572,7 @@ export class PivotSalesData extends Array { Sales: 45842.4, COGS: 5440, Profit: 40402.4, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -7588,7 +7588,7 @@ export class PivotSalesData extends Array { Sales: 30603.84, COGS: 3252, Profit: 27351.84, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7604,7 +7604,7 @@ export class PivotSalesData extends Array { Sales: 38345, COGS: 79440, Profit: 41095, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -7620,7 +7620,7 @@ export class PivotSalesData extends Array { Sales: 636516, COGS: 53500, Profit: 583016, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -7636,7 +7636,7 @@ export class PivotSalesData extends Array { Sales: 1126111, COGS: 748020, Profit: 378091, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -7652,7 +7652,7 @@ export class PivotSalesData extends Array { Sales: 440927.5, COGS: 327480, Profit: 113447.5, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7668,7 +7668,7 @@ export class PivotSalesData extends Array { Sales: 272188, COGS: 69160, Profit: 203028, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -7684,7 +7684,7 @@ export class PivotSalesData extends Array { Sales: 407120, COGS: 504400, Profit: 97280, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -7700,7 +7700,7 @@ export class PivotSalesData extends Array { Sales: 1215246, COGS: 64750, Profit: 1150496, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -7716,7 +7716,7 @@ export class PivotSalesData extends Array { Sales: 636594, COGS: 275250, Profit: 361344, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -7732,7 +7732,7 @@ export class PivotSalesData extends Array { Sales: 432060, COGS: 273120, Profit: 158940, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -7748,7 +7748,7 @@ export class PivotSalesData extends Array { Sales: 468188, COGS: 771160, Profit: 302972, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -7764,7 +7764,7 @@ export class PivotSalesData extends Array { Sales: 13085.6, COGS: 12360, Profit: 725.6, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -7780,7 +7780,7 @@ export class PivotSalesData extends Array { Sales: 46643.6, COGS: 9410, Profit: 37233.6, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -7796,7 +7796,7 @@ export class PivotSalesData extends Array { Sales: 601404, COGS: 479000, Profit: 122404, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7812,7 +7812,7 @@ export class PivotSalesData extends Array { Sales: 429711.88, COGS: 509220, Profit: 79508.13, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -7828,7 +7828,7 @@ export class PivotSalesData extends Array { Sales: 26472, COGS: 25800, Profit: 672, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -7844,7 +7844,7 @@ export class PivotSalesData extends Array { Sales: 616899, COGS: 172250, Profit: 444649, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -7860,7 +7860,7 @@ export class PivotSalesData extends Array { Sales: 43015.08, COGS: 5841, Profit: 37174.08, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -7876,7 +7876,7 @@ export class PivotSalesData extends Array { Sales: 12933.12, COGS: 2724, Profit: 10209.12, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -7892,7 +7892,7 @@ export class PivotSalesData extends Array { Sales: 20308.82, COGS: 9790, Profit: 10518.82, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -7908,7 +7908,7 @@ export class PivotSalesData extends Array { Sales: 13727.64, COGS: 5703, Profit: 8024.64, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -7924,7 +7924,7 @@ export class PivotSalesData extends Array { Sales: 16132.76, COGS: 2720, Profit: 13412.76, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -7940,7 +7940,7 @@ export class PivotSalesData extends Array { Sales: 1255131.5, COGS: 467220, Profit: 787911.5, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -7956,7 +7956,7 @@ export class PivotSalesData extends Array { Sales: 491673.75, COGS: 154440, Profit: 337233.75, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7972,7 +7972,7 @@ export class PivotSalesData extends Array { Sales: 478352.5, COGS: 204720, Profit: 273632.5, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -7988,7 +7988,7 @@ export class PivotSalesData extends Array { Sales: 661489.5, COGS: 608625, Profit: 52864.5, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -8004,7 +8004,7 @@ export class PivotSalesData extends Array { Sales: 127722.5, COGS: 212880, Profit: 85157.5, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -8020,7 +8020,7 @@ export class PivotSalesData extends Array { Sales: 47915.64, COGS: 5703, Profit: 42212.64, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -8036,7 +8036,7 @@ export class PivotSalesData extends Array { Sales: 904299, COGS: 172250, Profit: 732049, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -8052,7 +8052,7 @@ export class PivotSalesData extends Array { Sales: 448612.5, COGS: 188400, Profit: 260212.5, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -8068,7 +8068,7 @@ export class PivotSalesData extends Array { Sales: 16054.98, COGS: 4108.5, Profit: 11946.48, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -8084,7 +8084,7 @@ export class PivotSalesData extends Array { Sales: 553966.25, COGS: 241080, Profit: 312886.25, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -8100,7 +8100,7 @@ export class PivotSalesData extends Array { Sales: 10584.75, COGS: 19450, Profit: 8865.25, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -8116,7 +8116,7 @@ export class PivotSalesData extends Array { Sales: 213173.75, COGS: 154440, Profit: 58733.75, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -8132,7 +8132,7 @@ export class PivotSalesData extends Array { Sales: 286227.5, COGS: 204720, Profit: 81507.5, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -8148,7 +8148,7 @@ export class PivotSalesData extends Array { Sales: 471841.25, COGS: 241080, Profit: 230761.25, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -8164,7 +8164,7 @@ export class PivotSalesData extends Array { Sales: 322704, COGS: 711000, Profit: 388296, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -8180,7 +8180,7 @@ export class PivotSalesData extends Array { Sales: 9822.24, COGS: 5748, Profit: 4074.24, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -8196,7 +8196,7 @@ export class PivotSalesData extends Array { Sales: 207237.5, COGS: 188400, Profit: 18837.5, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -8212,7 +8212,7 @@ export class PivotSalesData extends Array { Sales: 524634, COGS: 468500, Profit: 56134, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -8228,7 +8228,7 @@ export class PivotSalesData extends Array { Sales: 118909, COGS: 426920, Profit: 308011, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -8244,7 +8244,7 @@ export class PivotSalesData extends Array { Sales: 40299.75, COGS: 19450, Profit: 20849.75, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -8260,7 +8260,7 @@ export class PivotSalesData extends Array { Sales: 28681.4, COGS: 8310, Profit: 20371.4, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -8276,7 +8276,7 @@ export class PivotSalesData extends Array { Sales: 27196.4, COGS: 8800, Profit: 18396.4, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -8292,7 +8292,7 @@ export class PivotSalesData extends Array { Sales: 82409.7, COGS: 38505, Profit: 43904.7, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -8308,7 +8308,7 @@ export class PivotSalesData extends Array { Sales: 42631.56, COGS: 7437, Profit: 35194.56, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -8324,7 +8324,7 @@ export class PivotSalesData extends Array { Sales: 25121.4, COGS: 20310, Profit: 4811.4, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -8340,7 +8340,7 @@ export class PivotSalesData extends Array { Sales: 3386.4, COGS: 20310, Profit: 16923.6, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -8356,7 +8356,7 @@ export class PivotSalesData extends Array { Sales: 65978.4, COGS: 22610, Profit: 43368.4, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -8372,7 +8372,7 @@ export class PivotSalesData extends Array { Sales: 42751.2, COGS: 7360, Profit: 35391.2, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -8388,7 +8388,7 @@ export class PivotSalesData extends Array { Sales: 7160.72, COGS: 14255, Profit: 7094.28, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -8404,7 +8404,7 @@ export class PivotSalesData extends Array { Sales: 342348, COGS: 505250, Profit: 162902, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -8420,7 +8420,7 @@ export class PivotSalesData extends Array { Sales: 167314, COGS: 71240, Profit: 96074, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -8436,7 +8436,7 @@ export class PivotSalesData extends Array { Sales: 60814.8, COGS: 19670, Profit: 41144.8, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -8452,7 +8452,7 @@ export class PivotSalesData extends Array { Sales: 800592, COGS: 464750, Profit: 335842, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -8468,7 +8468,7 @@ export class PivotSalesData extends Array { Sales: 25094.72, COGS: 14255, Profit: 10839.72, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -8484,7 +8484,7 @@ export class PivotSalesData extends Array { Sales: 1313748, COGS: 505250, Profit: 808498, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -8500,7 +8500,7 @@ export class PivotSalesData extends Array { Sales: 148310, COGS: 136560, Profit: 11750, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -8516,7 +8516,7 @@ export class PivotSalesData extends Array { Sales: 16911.72, COGS: 21255, Profit: 4343.28, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -8532,7 +8532,7 @@ export class PivotSalesData extends Array { Sales: 162525, COGS: 95400, Profit: 67125, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -8548,7 +8548,7 @@ export class PivotSalesData extends Array { Sales: 1329126, COGS: 353625, Profit: 975501, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -8564,7 +8564,7 @@ export class PivotSalesData extends Array { Sales: 1123584, COGS: 729500, Profit: 394084, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -8580,7 +8580,7 @@ export class PivotSalesData extends Array { Sales: 569450, COGS: 897000, Profit: 327550, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -8596,7 +8596,7 @@ export class PivotSalesData extends Array { Sales: 426685, COGS: 358560, Profit: 68125, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -8612,7 +8612,7 @@ export class PivotSalesData extends Array { Sales: 30109.2, COGS: 2180, Profit: 27929.2, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -8628,7 +8628,7 @@ export class PivotSalesData extends Array { Sales: 57100.8, COGS: 20740, Profit: 36360.8, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -8644,7 +8644,7 @@ export class PivotSalesData extends Array { Sales: 66195.2, COGS: 10560, Profit: 55635.2, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -8660,7 +8660,7 @@ export class PivotSalesData extends Array { Sales: 65732.4, COGS: 6710, Profit: 59022.4, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -8676,7 +8676,7 @@ export class PivotSalesData extends Array { Sales: 48936.6, COGS: 15140, Profit: 33796.6, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -8692,7 +8692,7 @@ export class PivotSalesData extends Array { Sales: 846664, COGS: 71240, Profit: 775424, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -8708,7 +8708,7 @@ export class PivotSalesData extends Array { Sales: 61185, COGS: 136560, Profit: 75375, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -8724,7 +8724,7 @@ export class PivotSalesData extends Array { Sales: 17572.8, COGS: 4395, Profit: 13177.8, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -8740,7 +8740,7 @@ export class PivotSalesData extends Array { Sales: 70503.2, COGS: 26460, Profit: 44043.2, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -8756,7 +8756,7 @@ export class PivotSalesData extends Array { Sales: 593222, COGS: 566020, Profit: 27202, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -8772,7 +8772,7 @@ export class PivotSalesData extends Array { Sales: 3748.32, COGS: 2598, Profit: 1150.32, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -8788,7 +8788,7 @@ export class PivotSalesData extends Array { Sales: 1446564, COGS: 90740, Profit: 1355824, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -8804,7 +8804,7 @@ export class PivotSalesData extends Array { Sales: 1197672, COGS: 566020, Profit: 631652, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -8820,7 +8820,7 @@ export class PivotSalesData extends Array { Sales: 40701.6, COGS: 15140, Profit: 25561.6, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -8836,7 +8836,7 @@ export class PivotSalesData extends Array { Sales: 1003940, COGS: 484900, Profit: 519040, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -8852,7 +8852,7 @@ export class PivotSalesData extends Array { Sales: 499255, COGS: 128880, Profit: 370375, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -8868,7 +8868,7 @@ export class PivotSalesData extends Array { Sales: 1424402, COGS: 495820, Profit: 928582, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -8884,7 +8884,7 @@ export class PivotSalesData extends Array { Sales: 61442.4, COGS: 6710, Profit: 54732.4, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -8900,7 +8900,7 @@ export class PivotSalesData extends Array { Sales: 443058, COGS: 462280, Profit: 19222, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -8916,7 +8916,7 @@ export class PivotSalesData extends Array { Sales: 3787.35, COGS: 5795, Profit: 2007.65, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -8932,7 +8932,7 @@ export class PivotSalesData extends Array { Sales: 4594.8, COGS: 6860, Profit: 2265.2, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -8948,7 +8948,7 @@ export class PivotSalesData extends Array { Sales: 2516.85, COGS: 11745, Profit: 9228.15, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -8964,7 +8964,7 @@ export class PivotSalesData extends Array { Sales: 15333.85, COGS: 13445, Profit: 1888.85, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -8980,7 +8980,7 @@ export class PivotSalesData extends Array { Sales: 6641.4, COGS: 7293, Profit: 651.6, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -8996,7 +8996,7 @@ export class PivotSalesData extends Array { Sales: 34421.4, COGS: 7293, Profit: 27128.4, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -9012,7 +9012,7 @@ export class PivotSalesData extends Array { Sales: 6562.85, COGS: 13445, Profit: 6882.15, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -9028,7 +9028,7 @@ export class PivotSalesData extends Array { Sales: 6746.95, COGS: 8415, Profit: 1668.05, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -9044,7 +9044,7 @@ export class PivotSalesData extends Array { Sales: 4954.2, COGS: 3369, Profit: 1585.2, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -9060,7 +9060,7 @@ export class PivotSalesData extends Array { Sales: 5222.35, COGS: 5795, Profit: 572.65, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -9076,7 +9076,7 @@ export class PivotSalesData extends Array { Sales: 49761, COGS: 5595, Profit: 44166, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -9092,7 +9092,7 @@ export class PivotSalesData extends Array { Sales: 23042.4, COGS: 3348, Profit: 19694.4, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -9108,7 +9108,7 @@ export class PivotSalesData extends Array { Sales: 38117, COGS: 15630, Profit: 22487, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -9124,7 +9124,7 @@ export class PivotSalesData extends Array { Sales: 129135, COGS: 247750, Profit: 118615, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -9140,7 +9140,7 @@ export class PivotSalesData extends Array { Sales: 24501.4, COGS: 5080, Profit: 19421.4, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -9156,7 +9156,7 @@ export class PivotSalesData extends Array { Sales: 15981.75, COGS: 27910, Profit: 11928.25, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -9172,7 +9172,7 @@ export class PivotSalesData extends Array { Sales: 17160.5, COGS: 2850, Profit: 14310.5, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -9188,7 +9188,7 @@ export class PivotSalesData extends Array { Sales: 19611.55, COGS: 12435, Profit: 7176.55, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -9204,7 +9204,7 @@ export class PivotSalesData extends Array { Sales: 1099271.25, COGS: 359970, Profit: 739301.25, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -9220,7 +9220,7 @@ export class PivotSalesData extends Array { Sales: 379956.25, COGS: 435240, Profit: 55283.75, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -9236,7 +9236,7 @@ export class PivotSalesData extends Array { Sales: 823550, COGS: 187200, Profit: 636350, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -9252,7 +9252,7 @@ export class PivotSalesData extends Array { Sales: 12118.8, COGS: 7026, Profit: 5092.8, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -9268,7 +9268,7 @@ export class PivotSalesData extends Array { Sales: 79200, COGS: 275000, Profit: 195800, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -9284,7 +9284,7 @@ export class PivotSalesData extends Array { Sales: 30897, COGS: 13030, Profit: 17867, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -9300,7 +9300,7 @@ export class PivotSalesData extends Array { Sales: 493800, COGS: 359040, Profit: 134760, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -9316,7 +9316,7 @@ export class PivotSalesData extends Array { Sales: 111593.75, COGS: 286200, Profit: 174606.25, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -9332,7 +9332,7 @@ export class PivotSalesData extends Array { Sales: 976995, COGS: 401750, Profit: 575245, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -9348,7 +9348,7 @@ export class PivotSalesData extends Array { Sales: 26870.55, COGS: 11635, Profit: 15235.55, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -9364,7 +9364,7 @@ export class PivotSalesData extends Array { Sales: 1289235, COGS: 247750, Profit: 1041485, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -9380,7 +9380,7 @@ export class PivotSalesData extends Array { Sales: 531265, COGS: 156520, Profit: 374745, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -9396,7 +9396,7 @@ export class PivotSalesData extends Array { Sales: 30330, COGS: 26200, Profit: 4130, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -9412,7 +9412,7 @@ export class PivotSalesData extends Array { Sales: 1304660, COGS: 319280, Profit: 985380, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -9428,7 +9428,7 @@ export class PivotSalesData extends Array { Sales: 85891, COGS: 13890, Profit: 72001, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -9444,7 +9444,7 @@ export class PivotSalesData extends Array { Sales: 510368.75, COGS: 103320, Profit: 407048.75, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -9460,7 +9460,7 @@ export class PivotSalesData extends Array { Sales: 163475, COGS: 84480, Profit: 78995, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -9476,7 +9476,7 @@ export class PivotSalesData extends Array { Sales: 3098, COGS: 18020, Profit: 14922, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -9492,7 +9492,7 @@ export class PivotSalesData extends Array { Sales: 64857, COGS: 26630, Profit: 38227, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -9508,7 +9508,7 @@ export class PivotSalesData extends Array { Sales: 9059.4, COGS: 10680, Profit: 1620.6, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -9524,7 +9524,7 @@ export class PivotSalesData extends Array { Sales: 50658, COGS: 21160, Profit: 29498, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -9540,7 +9540,7 @@ export class PivotSalesData extends Array { Sales: 33243.75, COGS: 5550, Profit: 27693.75, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -9556,7 +9556,7 @@ export class PivotSalesData extends Array { Sales: 18254.25, COGS: 28610, Profit: 10355.75, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -9572,7 +9572,7 @@ export class PivotSalesData extends Array { Sales: 29831.25, COGS: 96840, Profit: 67008.75, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -9588,7 +9588,7 @@ export class PivotSalesData extends Array { Sales: 871815, COGS: 156520, Profit: 715295, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -9604,7 +9604,7 @@ export class PivotSalesData extends Array { Sales: 45828, COGS: 28320, Profit: 17508, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -9620,7 +9620,7 @@ export class PivotSalesData extends Array { Sales: 33181, COGS: 15790, Profit: 17391, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -9636,7 +9636,7 @@ export class PivotSalesData extends Array { Sales: 132868.75, COGS: 103320, Profit: 29548.75, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -9652,7 +9652,7 @@ export class PivotSalesData extends Array { Sales: 417975, COGS: 84480, Profit: 333495, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -9668,7 +9668,7 @@ export class PivotSalesData extends Array { Sales: 23387, COGS: 10330, Profit: 13057, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -9684,7 +9684,7 @@ export class PivotSalesData extends Array { Sales: 45150, COGS: 312500, Profit: 267350, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -9700,7 +9700,7 @@ export class PivotSalesData extends Array { Sales: 65311, COGS: 13890, Profit: 51421, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -9716,7 +9716,7 @@ export class PivotSalesData extends Array { Sales: 23935, COGS: 12650, Profit: 11285, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -9732,7 +9732,7 @@ export class PivotSalesData extends Array { Sales: 58383, COGS: 22970, Profit: 35413, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -9748,7 +9748,7 @@ export class PivotSalesData extends Array { Sales: 55917, COGS: 26630, Profit: 29287, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -9764,7 +9764,7 @@ export class PivotSalesData extends Array { Sales: 16523.5, COGS: 2850, Profit: 13673.5, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -9780,7 +9780,7 @@ export class PivotSalesData extends Array { Sales: 20731.55, COGS: 12435, Profit: 8296.55, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -9796,7 +9796,7 @@ export class PivotSalesData extends Array { Sales: 237125, COGS: 351000, Profit: 113875, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -9812,7 +9812,7 @@ export class PivotSalesData extends Array { Sales: 433440, COGS: 143520, Profit: 289920, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -9828,7 +9828,7 @@ export class PivotSalesData extends Array { Sales: 1305010, COGS: 319280, Profit: 985730, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -9844,7 +9844,7 @@ export class PivotSalesData extends Array { Sales: 1267350, COGS: 312500, Profit: 954850, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -9860,7 +9860,7 @@ export class PivotSalesData extends Array { Sales: 44474.1, COGS: 38010, Profit: 6464.1, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -9876,7 +9876,7 @@ export class PivotSalesData extends Array { Sales: 37999, COGS: 11175, Profit: 26824, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -9892,7 +9892,7 @@ export class PivotSalesData extends Array { Sales: 6905.4, COGS: 28440, Profit: 21534.6, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -9908,7 +9908,7 @@ export class PivotSalesData extends Array { Sales: 41223.36, COGS: 1686, Profit: 39537.36, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -9924,7 +9924,7 @@ export class PivotSalesData extends Array { Sales: 5184.72, COGS: 6897, Profit: 1712.28, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -9940,7 +9940,7 @@ export class PivotSalesData extends Array { Sales: 46398, COGS: 20300, Profit: 26098, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -9956,7 +9956,7 @@ export class PivotSalesData extends Array { Sales: 26167.54, COGS: 1315, Profit: 24852.54, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -9972,7 +9972,7 @@ export class PivotSalesData extends Array { Sales: 266722.5, COGS: 106440, Profit: 160282.5, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -9988,7 +9988,7 @@ export class PivotSalesData extends Array { Sales: 665070, COGS: 254800, Profit: 410270, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -10004,7 +10004,7 @@ export class PivotSalesData extends Array { Sales: 732690, COGS: 379600, Profit: 353090, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -10020,7 +10020,7 @@ export class PivotSalesData extends Array { Sales: 24323.74, COGS: 7015, Profit: 17308.74, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10036,7 +10036,7 @@ export class PivotSalesData extends Array { Sales: 24499.44, COGS: 8169, Profit: 16330.44, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -10052,7 +10052,7 @@ export class PivotSalesData extends Array { Sales: 630084, COGS: 388960, Profit: 241124, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -10068,7 +10068,7 @@ export class PivotSalesData extends Array { Sales: 13896.72, COGS: 6897, Profit: 6999.72, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10084,7 +10084,7 @@ export class PivotSalesData extends Array { Sales: 255983, COGS: 189020, Profit: 66963, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10100,7 +10100,7 @@ export class PivotSalesData extends Array { Sales: 294985, COGS: 114240, Profit: 180745, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -10116,7 +10116,7 @@ export class PivotSalesData extends Array { Sales: 124087.5, COGS: 330600, Profit: 206512.5, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -10132,7 +10132,7 @@ export class PivotSalesData extends Array { Sales: 10668, COGS: 15300, Profit: 4632, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -10148,7 +10148,7 @@ export class PivotSalesData extends Array { Sales: 1265334, COGS: 388960, Profit: 876374, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -10164,7 +10164,7 @@ export class PivotSalesData extends Array { Sales: 3493.84, COGS: 7490, Profit: 3996.16, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -10180,7 +10180,7 @@ export class PivotSalesData extends Array { Sales: 1117122, COGS: 305250, Profit: 811872, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10196,7 +10196,7 @@ export class PivotSalesData extends Array { Sales: 418754, COGS: 539760, Profit: 121006, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10212,7 +10212,7 @@ export class PivotSalesData extends Array { Sales: 57425.4, COGS: 28440, Profit: 28985.4, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -10228,7 +10228,7 @@ export class PivotSalesData extends Array { Sales: 29162.84, COGS: 7490, Profit: 21672.84, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -10244,7 +10244,7 @@ export class PivotSalesData extends Array { Sales: 470922, COGS: 305250, Profit: 165672, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10260,7 +10260,7 @@ export class PivotSalesData extends Array { Sales: 36892.4, COGS: 11230, Profit: 25662.4, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -10276,7 +10276,7 @@ export class PivotSalesData extends Array { Sales: 439152, COGS: 609000, Profit: 169848, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -10292,7 +10292,7 @@ export class PivotSalesData extends Array { Sales: 255093.75, COGS: 238500, Profit: 16593.75, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -10308,7 +10308,7 @@ export class PivotSalesData extends Array { Sales: 127841, COGS: 436540, Profit: 308699, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -10324,7 +10324,7 @@ export class PivotSalesData extends Array { Sales: 99533, COGS: 189020, Profit: 89487, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10340,7 +10340,7 @@ export class PivotSalesData extends Array { Sales: 28103.74, COGS: 7015, Profit: 21088.74, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10356,7 +10356,7 @@ export class PivotSalesData extends Array { Sales: 302904, COGS: 539760, Profit: 236856, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10372,7 +10372,7 @@ export class PivotSalesData extends Array { Sales: 26551.6, COGS: 17570, Profit: 8981.6, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10388,7 +10388,7 @@ export class PivotSalesData extends Array { Sales: 20191.8, COGS: 21980, Profit: 1788.2, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -10404,7 +10404,7 @@ export class PivotSalesData extends Array { Sales: 55401.3, COGS: 17430, Profit: 37971.3, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -10420,7 +10420,7 @@ export class PivotSalesData extends Array { Sales: 5667.3, COGS: 11530, Profit: 5862.7, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -10436,7 +10436,7 @@ export class PivotSalesData extends Array { Sales: 32111.6, COGS: 17570, Profit: 14541.6, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -10452,7 +10452,7 @@ export class PivotSalesData extends Array { Sales: 13698.8, COGS: 10010, Profit: 3688.8, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -10468,7 +10468,7 @@ export class PivotSalesData extends Array { Sales: 11564.14, COGS: 6665, Profit: 4899.14, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -10484,7 +10484,7 @@ export class PivotSalesData extends Array { Sales: 25347.3, COGS: 11530, Profit: 13817.3, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -10500,7 +10500,7 @@ export class PivotSalesData extends Array { Sales: 3445.32, COGS: 2181, Profit: 1264.32, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -10516,7 +10516,7 @@ export class PivotSalesData extends Array { Sales: 45349.44, COGS: 5652, Profit: 39697.44, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -10532,7 +10532,7 @@ export class PivotSalesData extends Array { Sales: 71252.4, COGS: 18340, Profit: 52912.4, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -10548,7 +10548,7 @@ export class PivotSalesData extends Array { Sales: 51710.4, COGS: 7020, Profit: 44690.4, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -10564,7 +10564,7 @@ export class PivotSalesData extends Array { Sales: 2628.72, COGS: 7026, Profit: 4397.28, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -10580,7 +10580,7 @@ export class PivotSalesData extends Array { Sales: 21229.81, COGS: 5155, Profit: 16074.81, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -10596,7 +10596,7 @@ export class PivotSalesData extends Array { Sales: 14604.9, COGS: 12620, Profit: 1984.9, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -10612,7 +10612,7 @@ export class PivotSalesData extends Array { Sales: 28024.85, COGS: 5675, Profit: 22349.85, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -10628,7 +10628,7 @@ export class PivotSalesData extends Array { Sales: 27549.97, COGS: 2735, Profit: 24814.97, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -10644,7 +10644,7 @@ export class PivotSalesData extends Array { Sales: 25285.82, COGS: 7910, Profit: 17375.82, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -10660,7 +10660,7 @@ export class PivotSalesData extends Array { Sales: 27759.66, COGS: 5215.5, Profit: 22544.16, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -10676,7 +10676,7 @@ export class PivotSalesData extends Array { Sales: 18275.4, COGS: 6645, Profit: 11630.4, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -10692,7 +10692,7 @@ export class PivotSalesData extends Array { Sales: 11565.82, COGS: 7910, Profit: 3655.82, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -10708,7 +10708,7 @@ export class PivotSalesData extends Array { Sales: 30754.85, COGS: 5675, Profit: 25079.85, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -10724,7 +10724,7 @@ export class PivotSalesData extends Array { Sales: 392955.5, COGS: 457860, Profit: 64904.5, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -10740,7 +10740,7 @@ export class PivotSalesData extends Array { Sales: 475092, COGS: 112000, Profit: 363092, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -10756,7 +10756,7 @@ export class PivotSalesData extends Array { Sales: 178899, COGS: 545250, Profit: 366351, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -10772,7 +10772,7 @@ export class PivotSalesData extends Array { Sales: 23593.6, COGS: 19760, Profit: 3833.6, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -10788,7 +10788,7 @@ export class PivotSalesData extends Array { Sales: 818799, COGS: 545250, Profit: 273549, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -10804,7 +10804,7 @@ export class PivotSalesData extends Array { Sales: 358000, COGS: 300000, Profit: 58000, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -10820,7 +10820,7 @@ export class PivotSalesData extends Array { Sales: 709458, COGS: 425500, Profit: 283958, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -10836,7 +10836,7 @@ export class PivotSalesData extends Array { Sales: 941292, COGS: 112000, Profit: 829292, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -10852,7 +10852,7 @@ export class PivotSalesData extends Array { Sales: 479261.25, COGS: 421560, Profit: 57701.25, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -10868,7 +10868,7 @@ export class PivotSalesData extends Array { Sales: 56938.95, COGS: 21010, Profit: 35928.95, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -10884,7 +10884,7 @@ export class PivotSalesData extends Array { Sales: 8682.45, COGS: 29310, Profit: 20627.55, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -10900,7 +10900,7 @@ export class PivotSalesData extends Array { Sales: 2911, COGS: 15350, Profit: 12439, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -10916,7 +10916,7 @@ export class PivotSalesData extends Array { Sales: 371217, COGS: 280750, Profit: 90467, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -10932,7 +10932,7 @@ export class PivotSalesData extends Array { Sales: 212916, COGS: 351000, Profit: 138084, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -10948,7 +10948,7 @@ export class PivotSalesData extends Array { Sales: 37219.08, COGS: 8289, Profit: 28930.08, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -10964,7 +10964,7 @@ export class PivotSalesData extends Array { Sales: 2598.75, COGS: 10625, Profit: 8026.25, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -10980,7 +10980,7 @@ export class PivotSalesData extends Array { Sales: 204861, COGS: 414750, Profit: 209889, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -10996,7 +10996,7 @@ export class PivotSalesData extends Array { Sales: 77987.4, COGS: 6090, Profit: 71897.4, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -11012,7 +11012,7 @@ export class PivotSalesData extends Array { Sales: 293988.75, COGS: 250440, Profit: 43548.75, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -11028,7 +11028,7 @@ export class PivotSalesData extends Array { Sales: 47573.6, COGS: 19760, Profit: 27813.6, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -11044,7 +11044,7 @@ export class PivotSalesData extends Array { Sales: 61650.6, COGS: 14210, Profit: 47440.6, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -11060,7 +11060,7 @@ export class PivotSalesData extends Array { Sales: 314688, COGS: 343000, Profit: 28312, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -11076,7 +11076,7 @@ export class PivotSalesData extends Array { Sales: 17076.8, COGS: 5880, Profit: 11196.8, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -11092,7 +11092,7 @@ export class PivotSalesData extends Array { Sales: 43042.62, COGS: 9733.5, Profit: 33309.12, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -11108,7 +11108,7 @@ export class PivotSalesData extends Array { Sales: 336261, COGS: 239750, Profit: 96511, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -11124,7 +11124,7 @@ export class PivotSalesData extends Array { Sales: 612213, COGS: 686750, Profit: 74537, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -11140,7 +11140,7 @@ export class PivotSalesData extends Array { Sales: 38231.25, COGS: 197400, Profit: 159168.75, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -11156,7 +11156,7 @@ export class PivotSalesData extends Array { Sales: 23688, COGS: 747760, Profit: 724072, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -11172,7 +11172,7 @@ export class PivotSalesData extends Array { Sales: 462052.5, COGS: 119280, Profit: 342772.5, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -11188,7 +11188,7 @@ export class PivotSalesData extends Array { Sales: 17474.8, COGS: 11180, Profit: 6294.8, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -11204,7 +11204,7 @@ export class PivotSalesData extends Array { Sales: 860388, COGS: 343000, Profit: 517388, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -11220,7 +11220,7 @@ export class PivotSalesData extends Array { Sales: 10261.72, COGS: 2440, Profit: 7821.72, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -11236,7 +11236,7 @@ export class PivotSalesData extends Array { Sales: 31508.8, COGS: 12820, Profit: 18688.8, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11252,7 +11252,7 @@ export class PivotSalesData extends Array { Sales: 29599.08, COGS: 1285, Profit: 28314.08, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -11268,7 +11268,7 @@ export class PivotSalesData extends Array { Sales: 31488.8, COGS: 12820, Profit: 18668.8, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11284,7 +11284,7 @@ export class PivotSalesData extends Array { Sales: 365975, COGS: 184800, Profit: 181175, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -11300,7 +11300,7 @@ export class PivotSalesData extends Array { Sales: 49992, COGS: 4900, Profit: 45092, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -11316,7 +11316,7 @@ export class PivotSalesData extends Array { Sales: 551964, COGS: 354120, Profit: 197844, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -11332,7 +11332,7 @@ export class PivotSalesData extends Array { Sales: 43288.8, COGS: 25010, Profit: 18278.8, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -11348,7 +11348,7 @@ export class PivotSalesData extends Array { Sales: 81867.2, COGS: 7080, Profit: 74787.2, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11364,7 +11364,7 @@ export class PivotSalesData extends Array { Sales: 59508, COGS: 6450, Profit: 53058, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -11380,7 +11380,7 @@ export class PivotSalesData extends Array { Sales: 1270212, COGS: 390500, Profit: 879712, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -11396,7 +11396,7 @@ export class PivotSalesData extends Array { Sales: 1057608, COGS: 320750, Profit: 736858, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -11412,7 +11412,7 @@ export class PivotSalesData extends Array { Sales: 22981.8, COGS: 7110, Profit: 15871.8, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -11428,7 +11428,7 @@ export class PivotSalesData extends Array { Sales: 323735, COGS: 133680, Profit: 190055, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -11444,7 +11444,7 @@ export class PivotSalesData extends Array { Sales: 23101.96, COGS: 6295, Profit: 16806.96, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -11460,7 +11460,7 @@ export class PivotSalesData extends Array { Sales: 19091.8, COGS: 5475, Profit: 13616.8, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -11476,7 +11476,7 @@ export class PivotSalesData extends Array { Sales: 57094.4, COGS: 13660, Profit: 43434.4, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11492,7 +11492,7 @@ export class PivotSalesData extends Array { Sales: 1192860, COGS: 615000, Profit: 577860, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11508,7 +11508,7 @@ export class PivotSalesData extends Array { Sales: 7719.32, COGS: 3390, Profit: 4329.32, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -11524,7 +11524,7 @@ export class PivotSalesData extends Array { Sales: 20560.12, COGS: 7990, Profit: 12570.12, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -11540,7 +11540,7 @@ export class PivotSalesData extends Array { Sales: 12384.96, COGS: 12045, Profit: 339.96, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -11556,7 +11556,7 @@ export class PivotSalesData extends Array { Sales: 78505.6, COGS: 19340, Profit: 59165.6, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -11572,7 +11572,7 @@ export class PivotSalesData extends Array { Sales: 29471.2, COGS: 29930, Profit: 458.8, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -11588,7 +11588,7 @@ export class PivotSalesData extends Array { Sales: 918162, COGS: 557960, Profit: 360202, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -11604,7 +11604,7 @@ export class PivotSalesData extends Array { Sales: 27484.24, COGS: 9730, Profit: 17754.24, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -11620,7 +11620,7 @@ export class PivotSalesData extends Array { Sales: 553714, COGS: 354120, Profit: 199594, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -11636,7 +11636,7 @@ export class PivotSalesData extends Array { Sales: 27085.92, COGS: 1794, Profit: 25291.92, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -11652,7 +11652,7 @@ export class PivotSalesData extends Array { Sales: 22179.08, COGS: 14535, Profit: 7644.08, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11668,7 +11668,7 @@ export class PivotSalesData extends Array { Sales: 14706.72, COGS: 11690, Profit: 3016.72, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11684,7 +11684,7 @@ export class PivotSalesData extends Array { Sales: 710436, COGS: 96500, Profit: 613936, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -11700,7 +11700,7 @@ export class PivotSalesData extends Array { Sales: 1210560, COGS: 158750, Profit: 1051810, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -11716,7 +11716,7 @@ export class PivotSalesData extends Array { Sales: 911764, COGS: 149370, Profit: 762394, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -11732,7 +11732,7 @@ export class PivotSalesData extends Array { Sales: 26487.72, COGS: 11690, Profit: 14797.72, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11748,7 +11748,7 @@ export class PivotSalesData extends Array { Sales: 868532, COGS: 99060, Profit: 769472, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -11764,7 +11764,7 @@ export class PivotSalesData extends Array { Sales: 948934, COGS: 109720, Profit: 839214, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -11780,7 +11780,7 @@ export class PivotSalesData extends Array { Sales: 519684, COGS: 533500, Profit: 13816, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -11796,7 +11796,7 @@ export class PivotSalesData extends Array { Sales: 174708, COGS: 202000, Profit: 27292, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -11812,7 +11812,7 @@ export class PivotSalesData extends Array { Sales: 57147.2, COGS: 7080, Profit: 50067.2, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11828,7 +11828,7 @@ export class PivotSalesData extends Array { Sales: 11595.08, COGS: 14535, Profit: 2939.92, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11844,7 +11844,7 @@ export class PivotSalesData extends Array { Sales: 27134.4, COGS: 13660, Profit: 13474.4, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11860,7 +11860,7 @@ export class PivotSalesData extends Array { Sales: 207060, COGS: 615000, Profit: 407940, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11876,7 +11876,7 @@ export class PivotSalesData extends Array { Sales: 5468, COGS: 15200, Profit: 9732, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -11892,7 +11892,7 @@ export class PivotSalesData extends Array { Sales: 24541.8, COGS: 7110, Profit: 17431.8, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -11908,7 +11908,7 @@ export class PivotSalesData extends Array { Sales: 28188, COGS: 4125, Profit: 24063, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -11924,7 +11924,7 @@ export class PivotSalesData extends Array { Sales: 779460, COGS: 158750, Profit: 620710, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -11940,7 +11940,7 @@ export class PivotSalesData extends Array { Sales: 71461.6, COGS: 4365, Profit: 67096.6, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -11956,7 +11956,7 @@ export class PivotSalesData extends Array { Sales: 292362, COGS: 273500, Profit: 18862, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -11972,7 +11972,7 @@ export class PivotSalesData extends Array { Sales: 20651.64, COGS: 1101, Profit: 19550.64, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -11988,7 +11988,7 @@ export class PivotSalesData extends Array { Sales: 547432.5, COGS: 950625, Profit: 403192.5, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -12004,7 +12004,7 @@ export class PivotSalesData extends Array { Sales: 409171, COGS: 433160, Profit: 23989, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -12020,7 +12020,7 @@ export class PivotSalesData extends Array { Sales: 495006, COGS: 80500, Profit: 414506, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -12036,7 +12036,7 @@ export class PivotSalesData extends Array { Sales: 12517.32, COGS: 6963, Profit: 5554.32, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -12052,7 +12052,7 @@ export class PivotSalesData extends Array { Sales: 415733.75, COGS: 222840, Profit: 192893.75, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -12068,7 +12068,7 @@ export class PivotSalesData extends Array { Sales: 10864.07, COGS: 8055, Profit: 2809.07, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -12084,7 +12084,7 @@ export class PivotSalesData extends Array { Sales: 113033.75, COGS: 335640, Profit: 222606.25, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -12100,7 +12100,7 @@ export class PivotSalesData extends Array { Sales: 208782, COGS: 83500, Profit: 125282, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -12116,7 +12116,7 @@ export class PivotSalesData extends Array { Sales: 276645, COGS: 641250, Profit: 364605, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -12132,7 +12132,7 @@ export class PivotSalesData extends Array { Sales: 875864.5, COGS: 628420, Profit: 247444.5, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -12148,7 +12148,7 @@ export class PivotSalesData extends Array { Sales: 49908.75, COGS: 36750, Profit: 13158.75, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -12164,7 +12164,7 @@ export class PivotSalesData extends Array { Sales: 855462, COGS: 273500, Profit: 581962, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -12180,7 +12180,7 @@ export class PivotSalesData extends Array { Sales: 25658.55, COGS: 12270, Profit: 13388.55, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -12196,7 +12196,7 @@ export class PivotSalesData extends Array { Sales: 49691.64, COGS: 1101, Profit: 48590.64, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -12212,7 +12212,7 @@ export class PivotSalesData extends Array { Sales: 302352, COGS: 331000, Profit: 28648, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -12228,7 +12228,7 @@ export class PivotSalesData extends Array { Sales: 24591, COGS: 5325, Profit: 19266, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -12244,7 +12244,7 @@ export class PivotSalesData extends Array { Sales: 76283.75, COGS: 335640, Profit: 259356.25, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -12260,7 +12260,7 @@ export class PivotSalesData extends Array { Sales: 56744.25, COGS: 2450, Profit: 54294.25, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -12276,7 +12276,7 @@ export class PivotSalesData extends Array { Sales: 322075.5, COGS: 948375, Profit: 626299.5, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -12292,7 +12292,7 @@ export class PivotSalesData extends Array { Sales: 739679.5, COGS: 339820, Profit: 399859.5, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -12308,7 +12308,7 @@ export class PivotSalesData extends Array { Sales: 449746.25, COGS: 68040, Profit: 381706.25, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -12324,7 +12324,7 @@ export class PivotSalesData extends Array { Sales: 344762.5, COGS: 253200, Profit: 91562.5, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -12340,7 +12340,7 @@ export class PivotSalesData extends Array { Sales: 1148276.5, COGS: 329940, Profit: 818336.5, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -12356,7 +12356,7 @@ export class PivotSalesData extends Array { Sales: 29687.52, COGS: 5868, Profit: 23819.52, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -12372,7 +12372,7 @@ export class PivotSalesData extends Array { Sales: 103707, COGS: 664750, Profit: 561043, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -12388,7 +12388,7 @@ export class PivotSalesData extends Array { Sales: 418027.75, COGS: 351390, Profit: 66637.75, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -12404,7 +12404,7 @@ export class PivotSalesData extends Array { Sales: 52557.6, COGS: 2640, Profit: 49917.6, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -12420,7 +12420,7 @@ export class PivotSalesData extends Array { Sales: 762891, COGS: 466750, Profit: 296141, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -12436,7 +12436,7 @@ export class PivotSalesData extends Array { Sales: 29039.28, COGS: 6702, Profit: 22337.28, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -12452,7 +12452,7 @@ export class PivotSalesData extends Array { Sales: 52538.55, COGS: 12270, Profit: 40268.55, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -12468,7 +12468,7 @@ export class PivotSalesData extends Array { Sales: 221008.75, COGS: 105240, Profit: 115768.75, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -12484,7 +12484,7 @@ export class PivotSalesData extends Array { Sales: 983363.5, COGS: 538460, Profit: 444903.5, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -12500,7 +12500,7 @@ export class PivotSalesData extends Array { Sales: 953326.5, COGS: 329940, Profit: 623386.5, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -12516,7 +12516,7 @@ export class PivotSalesData extends Array { Sales: 18220.5, COGS: 9700, Profit: 8520.5, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -12532,7 +12532,7 @@ export class PivotSalesData extends Array { Sales: 27670.8, COGS: 16940, Profit: 10730.8, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -12548,7 +12548,7 @@ export class PivotSalesData extends Array { Sales: 24626.6, COGS: 6630, Profit: 17996.6, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -12564,7 +12564,7 @@ export class PivotSalesData extends Array { Sales: 7975.03, COGS: 4095, Profit: 3880.03, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -12580,7 +12580,7 @@ export class PivotSalesData extends Array { Sales: 26733.6, COGS: 4740, Profit: 21993.6, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -12596,7 +12596,7 @@ export class PivotSalesData extends Array { Sales: 13524.77, COGS: 2605, Profit: 10919.77, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -12612,7 +12612,7 @@ export class PivotSalesData extends Array { Sales: 55828.6, COGS: 9730, Profit: 46098.6, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -12628,7 +12628,7 @@ export class PivotSalesData extends Array { Sales: 32271.6, COGS: 10380, Profit: 21891.6, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -12644,7 +12644,7 @@ export class PivotSalesData extends Array { Sales: 20304.2, COGS: 1800, Profit: 18504.2, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -12660,7 +12660,7 @@ export class PivotSalesData extends Array { Sales: 10043.64, COGS: 5901, Profit: 4142.64, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -12676,7 +12676,7 @@ export class PivotSalesData extends Array { Sales: 6847.2, COGS: 26280, Profit: 19432.8, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -12692,7 +12692,7 @@ export class PivotSalesData extends Array { Sales: 25960.2, COGS: 1800, Profit: 24160.2, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -12708,7 +12708,7 @@ export class PivotSalesData extends Array { Sales: 57492.4, COGS: 26820, Profit: 30672.4, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -12724,7 +12724,7 @@ export class PivotSalesData extends Array { Sales: 27636.77, COGS: 2605, Profit: 25031.77, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -12740,7 +12740,7 @@ export class PivotSalesData extends Array { Sales: 17191.6, COGS: 10380, Profit: 6811.6, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -12756,7 +12756,7 @@ export class PivotSalesData extends Array { Sales: 35748.82, COGS: 16305, Profit: 19443.82, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -12772,7 +12772,7 @@ export class PivotSalesData extends Array { Sales: 30449.52, COGS: 918, Profit: 29531.52, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -12788,7 +12788,7 @@ export class PivotSalesData extends Array { Sales: 51100.8, COGS: 1158, Profit: 49942.8, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -12804,7 +12804,7 @@ export class PivotSalesData extends Array { Sales: 18467.4, COGS: 11640, Profit: 6827.4, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -12820,7 +12820,7 @@ export class PivotSalesData extends Array { Sales: 41980.8, COGS: 1158, Profit: 40822.8, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -12836,7 +12836,7 @@ export class PivotSalesData extends Array { Sales: 156681.25, COGS: 413460, Profit: 256778.75, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -12852,7 +12852,7 @@ export class PivotSalesData extends Array { Sales: 308475, COGS: 177840, Profit: 130635, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -12868,7 +12868,7 @@ export class PivotSalesData extends Array { Sales: 911645, COGS: 601380, Profit: 310265, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -12884,7 +12884,7 @@ export class PivotSalesData extends Array { Sales: 480325, COGS: 216480, Profit: 263845, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -12900,7 +12900,7 @@ export class PivotSalesData extends Array { Sales: 56802, COGS: 20720, Profit: 36082, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -12916,7 +12916,7 @@ export class PivotSalesData extends Array { Sales: 54652, COGS: 19540, Profit: 35112, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -12932,7 +12932,7 @@ export class PivotSalesData extends Array { Sales: 855870, COGS: 147750, Profit: 708120, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -12948,7 +12948,7 @@ export class PivotSalesData extends Array { Sales: 51814.5, COGS: 21670, Profit: 30144.5, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -12964,7 +12964,7 @@ export class PivotSalesData extends Array { Sales: 55078, COGS: 2410, Profit: 52668, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -12980,7 +12980,7 @@ export class PivotSalesData extends Array { Sales: 5053.5, COGS: 6810, Profit: 1756.5, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -12996,7 +12996,7 @@ export class PivotSalesData extends Array { Sales: 29430, COGS: 5100, Profit: 24330, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -13012,7 +13012,7 @@ export class PivotSalesData extends Array { Sales: 38325, COGS: 7900, Profit: 30425, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -13028,7 +13028,7 @@ export class PivotSalesData extends Array { Sales: 1435735, COGS: 166140, Profit: 1269595, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -13044,7 +13044,7 @@ export class PivotSalesData extends Array { Sales: 24425, COGS: 191520, Profit: 167095, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -13060,7 +13060,7 @@ export class PivotSalesData extends Array { Sales: 645780, COGS: 573500, Profit: 72280, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -13076,7 +13076,7 @@ export class PivotSalesData extends Array { Sales: 82918, COGS: 2410, Profit: 80508, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -13092,7 +13092,7 @@ export class PivotSalesData extends Array { Sales: 4378.5, COGS: 13325, Profit: 8946.5, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -13108,7 +13108,7 @@ export class PivotSalesData extends Array { Sales: 251050, COGS: 229920, Profit: 21130, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -13124,7 +13124,7 @@ export class PivotSalesData extends Array { Sales: 991110, COGS: 213250, Profit: 777860, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -13140,7 +13140,7 @@ export class PivotSalesData extends Array { Sales: 369487.5, COGS: 40920, Profit: 328567.5, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -13156,7 +13156,7 @@ export class PivotSalesData extends Array { Sales: 59233.5, COGS: 6410, Profit: 52823.5, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -13172,7 +13172,7 @@ export class PivotSalesData extends Array { Sales: 160405, COGS: 729820, Profit: 569415, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -13188,7 +13188,7 @@ export class PivotSalesData extends Array { Sales: 583740, COGS: 108000, Profit: 475740, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -13204,7 +13204,7 @@ export class PivotSalesData extends Array { Sales: 828480, COGS: 573500, Profit: 254980, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -13220,7 +13220,7 @@ export class PivotSalesData extends Array { Sales: 60304.5, COGS: 21670, Profit: 38634.5, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -13236,7 +13236,7 @@ export class PivotSalesData extends Array { Sales: 148637.5, COGS: 303480, Profit: 154842.5, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -13252,7 +13252,7 @@ export class PivotSalesData extends Array { Sales: 883750, COGS: 486200, Profit: 397550, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -13268,7 +13268,7 @@ export class PivotSalesData extends Array { Sales: 181262.5, COGS: 69480, Profit: 111782.5, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -13284,7 +13284,7 @@ export class PivotSalesData extends Array { Sales: 1407350, COGS: 582400, Profit: 824950, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -13300,7 +13300,7 @@ export class PivotSalesData extends Array { Sales: 699210, COGS: 748250, Profit: 49040, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -13316,7 +13316,7 @@ export class PivotSalesData extends Array { Sales: 9959.4, COGS: 10561.5, Profit: 602.1, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -13332,7 +13332,7 @@ export class PivotSalesData extends Array { Sales: 20342, COGS: 20390, Profit: 48, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -13348,7 +13348,7 @@ export class PivotSalesData extends Array { Sales: 8467.2, COGS: 7722, Profit: 745.2, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -13364,7 +13364,7 @@ export class PivotSalesData extends Array { Sales: 1110305, COGS: 183820, Profit: 926485, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -13380,7 +13380,7 @@ export class PivotSalesData extends Array { Sales: 13692, COGS: 20720, Profit: 7028, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -13396,7 +13396,7 @@ export class PivotSalesData extends Array { Sales: 326610, COGS: 213250, Profit: 113360, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -13412,7 +13412,7 @@ export class PivotSalesData extends Array { Sales: 28910.64, COGS: 3594, Profit: 25316.64, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -13428,7 +13428,7 @@ export class PivotSalesData extends Array { Sales: 20772.36, COGS: 12660, Profit: 8112.36, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -13444,7 +13444,7 @@ export class PivotSalesData extends Array { Sales: 16790.64, COGS: 3594, Profit: 13196.64, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -13460,7 +13460,7 @@ export class PivotSalesData extends Array { Sales: 37256.4, COGS: 3840, Profit: 33416.4, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -13476,7 +13476,7 @@ export class PivotSalesData extends Array { Sales: 13008.96, COGS: 1416, Profit: 11592.96, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -13492,7 +13492,7 @@ export class PivotSalesData extends Array { Sales: 12665.17, COGS: 7895, Profit: 4770.17, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -13508,7 +13508,7 @@ export class PivotSalesData extends Array { Sales: 37781.4, COGS: 3015, Profit: 34766.4, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -13524,7 +13524,7 @@ export class PivotSalesData extends Array { Sales: 43725.82, COGS: 31995, Profit: 11730.82, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -13540,7 +13540,7 @@ export class PivotSalesData extends Array { Sales: 28824.96, COGS: 1416, Profit: 27408.96, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -13556,7 +13556,7 @@ export class PivotSalesData extends Array { Sales: 29159.16, COGS: 5811, Profit: 23348.16, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -13572,7 +13572,7 @@ export class PivotSalesData extends Array { Sales: 103558, COGS: 205920, Profit: 102362, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -13588,7 +13588,7 @@ export class PivotSalesData extends Array { Sales: 747537, COGS: 702750, Profit: 44787, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -13604,7 +13604,7 @@ export class PivotSalesData extends Array { Sales: 174811.25, COGS: 292920, Profit: 118108.75, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -13620,7 +13620,7 @@ export class PivotSalesData extends Array { Sales: 50511, COGS: 15600, Profit: 34911, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -13636,7 +13636,7 @@ export class PivotSalesData extends Array { Sales: 27498.38, COGS: 13530, Profit: 13968.38, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -13652,7 +13652,7 @@ export class PivotSalesData extends Array { Sales: 747509, COGS: 199160, Profit: 548349, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -13668,7 +13668,7 @@ export class PivotSalesData extends Array { Sales: 8937.6, COGS: 29920, Profit: 20982.4, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -13684,7 +13684,7 @@ export class PivotSalesData extends Array { Sales: 4735.95, COGS: 21570, Profit: 16834.05, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -13700,7 +13700,7 @@ export class PivotSalesData extends Array { Sales: 603291, COGS: 218250, Profit: 385041, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -13716,7 +13716,7 @@ export class PivotSalesData extends Array { Sales: 46891.6, COGS: 11220, Profit: 35671.6, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -13732,7 +13732,7 @@ export class PivotSalesData extends Array { Sales: 585726.75, COGS: 547170, Profit: 38556.75, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -13748,7 +13748,7 @@ export class PivotSalesData extends Array { Sales: 38581.68, COGS: 12078, Profit: 26503.68, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -13764,7 +13764,7 @@ export class PivotSalesData extends Array { Sales: 48410.34, COGS: 7276.5, Profit: 41133.84, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -13780,7 +13780,7 @@ export class PivotSalesData extends Array { Sales: 43653.2, COGS: 23940, Profit: 19713.2, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -13796,7 +13796,7 @@ export class PivotSalesData extends Array { Sales: 59861.4, COGS: 19840, Profit: 40021.4, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -13812,7 +13812,7 @@ export class PivotSalesData extends Array { Sales: 385561.25, COGS: 292920, Profit: 92641.25, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -13828,7 +13828,7 @@ export class PivotSalesData extends Array { Sales: 21437.6, COGS: 29920, Profit: 8482.4, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -13844,7 +13844,7 @@ export class PivotSalesData extends Array { Sales: 514422, COGS: 341500, Profit: 172922, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -13860,7 +13860,7 @@ export class PivotSalesData extends Array { Sales: 3089, COGS: 28050, Profit: 24961, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -13876,7 +13876,7 @@ export class PivotSalesData extends Array { Sales: 61574.25, COGS: 6550, Profit: 55024.25, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -13892,7 +13892,7 @@ export class PivotSalesData extends Array { Sales: 869806, COGS: 89440, Profit: 780366, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -13908,7 +13908,7 @@ export class PivotSalesData extends Array { Sales: 12117.84, COGS: 9040, Profit: 3077.84, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -13924,7 +13924,7 @@ export class PivotSalesData extends Array { Sales: 13323.12, COGS: 5202, Profit: 8121.12, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -13940,7 +13940,7 @@ export class PivotSalesData extends Array { Sales: 508007.5, COGS: 66480, Profit: 441527.5, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -13956,7 +13956,7 @@ export class PivotSalesData extends Array { Sales: 5683, COGS: 29350, Profit: 23667, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -13972,7 +13972,7 @@ export class PivotSalesData extends Array { Sales: 16231.25, COGS: 379800, Profit: 363568.75, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -13988,7 +13988,7 @@ export class PivotSalesData extends Array { Sales: 83996.2, COGS: 26290, Profit: 57706.2, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -14004,7 +14004,7 @@ export class PivotSalesData extends Array { Sales: 168296.25, COGS: 171960, Profit: 3663.75, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -14020,7 +14020,7 @@ export class PivotSalesData extends Array { Sales: 457353.75, COGS: 113640, Profit: 343713.75, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -14036,7 +14036,7 @@ export class PivotSalesData extends Array { Sales: 830956, COGS: 89440, Profit: 741516, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -14052,7 +14052,7 @@ export class PivotSalesData extends Array { Sales: 31570.95, COGS: 21570, Profit: 10000.95, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -14068,7 +14068,7 @@ export class PivotSalesData extends Array { Sales: 30864.4, COGS: 1900, Profit: 28964.4, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -14084,7 +14084,7 @@ export class PivotSalesData extends Array { Sales: 1291388, COGS: 230360, Profit: 1061028, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -14100,7 +14100,7 @@ export class PivotSalesData extends Array { Sales: 249510, COGS: 289920, Profit: 40410, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -14116,7 +14116,7 @@ export class PivotSalesData extends Array { Sales: 419410, COGS: 258720, Profit: 160690, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -14132,7 +14132,7 @@ export class PivotSalesData extends Array { Sales: 20899.8, COGS: 26890, Profit: 5990.2, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -14148,7 +14148,7 @@ export class PivotSalesData extends Array { Sales: 18296.4, COGS: 6770, Profit: 11526.4, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -14164,7 +14164,7 @@ export class PivotSalesData extends Array { Sales: 1188672, COGS: 443250, Profit: 745422, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -14180,7 +14180,7 @@ export class PivotSalesData extends Array { Sales: 4792.2, COGS: 12100, Profit: 7307.8, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -14196,7 +14196,7 @@ export class PivotSalesData extends Array { Sales: 5781.44, COGS: 13670, Profit: 7888.56, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -14212,7 +14212,7 @@ export class PivotSalesData extends Array { Sales: 33344, COGS: 17150, Profit: 16194, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -14228,7 +14228,7 @@ export class PivotSalesData extends Array { Sales: 1087104, COGS: 296500, Profit: 790604, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -14244,7 +14244,7 @@ export class PivotSalesData extends Array { Sales: 941580, COGS: 873750, Profit: 67830, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -14260,7 +14260,7 @@ export class PivotSalesData extends Array { Sales: 1067388, COGS: 230360, Profit: 837028, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -14276,7 +14276,7 @@ export class PivotSalesData extends Array { Sales: 341910, COGS: 258720, Profit: 83190, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -14292,7 +14292,7 @@ export class PivotSalesData extends Array { Sales: 39568, COGS: 9050, Profit: 30518, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -14308,7 +14308,7 @@ export class PivotSalesData extends Array { Sales: 17004, COGS: 17150, Profit: 146, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -14324,7 +14324,7 @@ export class PivotSalesData extends Array { Sales: 406602, COGS: 414440, Profit: 7838, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -14340,7 +14340,7 @@ export class PivotSalesData extends Array { Sales: 75876, COGS: 339750, Profit: 263874, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -14356,7 +14356,7 @@ export class PivotSalesData extends Array { Sales: 1086600, COGS: 537500, Profit: 549100, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -14372,7 +14372,7 @@ export class PivotSalesData extends Array { Sales: 232876, COGS: 311220, Profit: 78344, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -14388,7 +14388,7 @@ export class PivotSalesData extends Array { Sales: 27696, COGS: 3800, Profit: 23896, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -14404,7 +14404,7 @@ export class PivotSalesData extends Array { Sales: 38480.8, COGS: 12330, Profit: 26150.8, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -14420,7 +14420,7 @@ export class PivotSalesData extends Array { Sales: 1009610, COGS: 362700, Profit: 646910, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -14436,7 +14436,7 @@ export class PivotSalesData extends Array { Sales: 1050938, COGS: 256360, Profit: 794578, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -14452,7 +14452,7 @@ export class PivotSalesData extends Array { Sales: 39008, COGS: 9050, Profit: 29958, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -14468,7 +14468,7 @@ export class PivotSalesData extends Array { Sales: 48011.04, COGS: 6327, Profit: 41684.04, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -14484,7 +14484,7 @@ export class PivotSalesData extends Array { Sales: 12420.9, COGS: 38745, Profit: 26324.1, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -14500,7 +14500,7 @@ export class PivotSalesData extends Array { Sales: 426384, COGS: 161980, Profit: 264404, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -14516,7 +14516,7 @@ export class PivotSalesData extends Array { Sales: 39088, COGS: 256360, Profit: 217272, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -14532,7 +14532,7 @@ export class PivotSalesData extends Array { Sales: 179570, COGS: 286440, Profit: 106870, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -14548,7 +14548,7 @@ export class PivotSalesData extends Array { Sales: 1840.8, COGS: 12330, Profit: 10489.2, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -14564,7 +14564,7 @@ export class PivotSalesData extends Array { Sales: 888510, COGS: 70200, Profit: 818310, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -14580,7 +14580,7 @@ export class PivotSalesData extends Array { Sales: 8752.94, COGS: 17107.5, Profit: 8354.56, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -14596,7 +14596,7 @@ export class PivotSalesData extends Array { Sales: 29021.44, COGS: 13670, Profit: 15351.44, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -14612,7 +14612,7 @@ export class PivotSalesData extends Array { Sales: 7908.6, COGS: 25480, Profit: 17571.4, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -14628,7 +14628,7 @@ export class PivotSalesData extends Array { Sales: 7428.4, COGS: 25215, Profit: 17786.6, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -14644,7 +14644,7 @@ export class PivotSalesData extends Array { Sales: 5504.16, COGS: 7983, Profit: 2478.84, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -14660,7 +14660,7 @@ export class PivotSalesData extends Array { Sales: 25465.6, COGS: 15310, Profit: 10155.6, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -14676,7 +14676,7 @@ export class PivotSalesData extends Array { Sales: 20853.56, COGS: 7455, Profit: 13398.56, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -14692,7 +14692,7 @@ export class PivotSalesData extends Array { Sales: 78225.6, COGS: 15310, Profit: 62915.6, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -14708,7 +14708,7 @@ export class PivotSalesData extends Array { Sales: 34064.16, COGS: 8283, Profit: 25781.16, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -14724,7 +14724,7 @@ export class PivotSalesData extends Array { Sales: 2389.35, COGS: 25670, Profit: 23280.65, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -14740,7 +14740,7 @@ export class PivotSalesData extends Array { Sales: 44284.35, COGS: 25670, Profit: 18614.35, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -14756,7 +14756,7 @@ export class PivotSalesData extends Array { Sales: 1205053.5, COGS: 239980, Profit: 965073.5, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -14772,7 +14772,7 @@ export class PivotSalesData extends Array { Sales: 1356705, COGS: 465400, Profit: 891305, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -14788,7 +14788,7 @@ export class PivotSalesData extends Array { Sales: 71910.8, COGS: 4420, Profit: 67490.8, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -14804,7 +14804,7 @@ export class PivotSalesData extends Array { Sales: 726346.25, COGS: 255450, Profit: 470896.25, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -14820,7 +14820,7 @@ export class PivotSalesData extends Array { Sales: 19286.82, COGS: 6490, Profit: 12796.82, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -14836,7 +14836,7 @@ export class PivotSalesData extends Array { Sales: 30857.76, COGS: 1812, Profit: 29045.76, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -14852,7 +14852,7 @@ export class PivotSalesData extends Array { Sales: 18017, COGS: 22550, Profit: 4533, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -14868,7 +14868,7 @@ export class PivotSalesData extends Array { Sales: 64072.6, COGS: 12490, Profit: 51582.6, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -14884,7 +14884,7 @@ export class PivotSalesData extends Array { Sales: 7965.97, COGS: 7192.5, Profit: 773.47, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -14900,7 +14900,7 @@ export class PivotSalesData extends Array { Sales: 1241427, COGS: 201750, Profit: 1039677, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -14916,7 +14916,7 @@ export class PivotSalesData extends Array { Sales: 50873.4, COGS: 26410, Profit: 24463.4, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -14932,7 +14932,7 @@ export class PivotSalesData extends Array { Sales: 69739.2, COGS: 27080, Profit: 42659.2, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -14948,7 +14948,7 @@ export class PivotSalesData extends Array { Sales: 532294, COGS: 684320, Profit: 152026, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -14964,7 +14964,7 @@ export class PivotSalesData extends Array { Sales: 331526.25, COGS: 189960, Profit: 141566.25, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -14980,7 +14980,7 @@ export class PivotSalesData extends Array { Sales: 33525.24, COGS: 1713, Profit: 31812.24, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -14996,7 +14996,7 @@ export class PivotSalesData extends Array { Sales: 24181.64, COGS: 13480, Profit: 10701.64, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -15012,7 +15012,7 @@ export class PivotSalesData extends Array { Sales: 55658.25, COGS: 15650, Profit: 40008.25, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15028,7 +15028,7 @@ export class PivotSalesData extends Array { Sales: 7232.6, COGS: 12490, Profit: 5257.4, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15044,7 +15044,7 @@ export class PivotSalesData extends Array { Sales: 1067006.5, COGS: 92820, Profit: 974186.5, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -15060,7 +15060,7 @@ export class PivotSalesData extends Array { Sales: 27339.72, COGS: 3039, Profit: 24300.72, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -15076,7 +15076,7 @@ export class PivotSalesData extends Array { Sales: 56149.88, COGS: 39975, Profit: 16174.88, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -15092,7 +15092,7 @@ export class PivotSalesData extends Array { Sales: 663894, COGS: 684320, Profit: 20426, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -15108,7 +15108,7 @@ export class PivotSalesData extends Array { Sales: 2900.1, COGS: 5950, Profit: 3049.9, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -15124,7 +15124,7 @@ export class PivotSalesData extends Array { Sales: 45725.76, COGS: 1812, Profit: 43913.76, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -15140,7 +15140,7 @@ export class PivotSalesData extends Array { Sales: 19383, COGS: 6600, Profit: 12783, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -15156,7 +15156,7 @@ export class PivotSalesData extends Array { Sales: 26396.4, COGS: 1230, Profit: 25166.4, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15172,7 +15172,7 @@ export class PivotSalesData extends Array { Sales: 859005, COGS: 651250, Profit: 207755, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -15188,7 +15188,7 @@ export class PivotSalesData extends Array { Sales: 44439.72, COGS: 3039, Profit: 41400.72, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -15204,7 +15204,7 @@ export class PivotSalesData extends Array { Sales: 285151.25, COGS: 189960, Profit: 95191.25, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -15220,7 +15220,7 @@ export class PivotSalesData extends Array { Sales: 63368.25, COGS: 15650, Profit: 47718.25, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15236,7 +15236,7 @@ export class PivotSalesData extends Array { Sales: 123041.25, COGS: 199080, Profit: 76038.75, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -15252,7 +15252,7 @@ export class PivotSalesData extends Array { Sales: 19588.1, COGS: 5950, Profit: 13638.1, - Date: `2019-06-01`, + Date: `06/01/2019`, MonthName: `June`, Year: 2019 }), @@ -15268,7 +15268,7 @@ export class PivotSalesData extends Array { Sales: 16796.4, COGS: 1230, Profit: 15566.4, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15284,7 +15284,7 @@ export class PivotSalesData extends Array { Sales: 7618.8, COGS: 5310, Profit: 2308.8, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -15300,7 +15300,7 @@ export class PivotSalesData extends Array { Sales: 14218.8, COGS: 25790, Profit: 11571.2, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -15316,7 +15316,7 @@ export class PivotSalesData extends Array { Sales: 29859.6, COGS: 17430, Profit: 12429.6, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -15332,7 +15332,7 @@ export class PivotSalesData extends Array { Sales: 7808.92, COGS: 14980, Profit: 7171.08, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -15348,7 +15348,7 @@ export class PivotSalesData extends Array { Sales: 17449.6, COGS: 1400, Profit: 16049.6, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -15364,7 +15364,7 @@ export class PivotSalesData extends Array { Sales: 12067.86, COGS: 1465, Profit: 10602.86, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -15380,7 +15380,7 @@ export class PivotSalesData extends Array { Sales: 8032.92, COGS: 14980, Profit: 6947.08, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -15396,7 +15396,7 @@ export class PivotSalesData extends Array { Sales: 39016.2, COGS: 2780, Profit: 36236.2, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -15412,7 +15412,7 @@ export class PivotSalesData extends Array { Sales: 54781.6, COGS: 24280, Profit: 30501.6, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -15428,7 +15428,7 @@ export class PivotSalesData extends Array { Sales: 58239.3, COGS: 17670, Profit: 40569.3, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -15444,7 +15444,7 @@ export class PivotSalesData extends Array { Sales: 32915.76, COGS: 4179, Profit: 28736.76, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15460,7 +15460,7 @@ export class PivotSalesData extends Array { Sales: 21285.6, COGS: 1400, Profit: 19885.6, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -15476,7 +15476,7 @@ export class PivotSalesData extends Array { Sales: 16019.76, COGS: 4179, Profit: 11840.76, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15492,7 +15492,7 @@ export class PivotSalesData extends Array { Sales: 39058.8, COGS: 6045, Profit: 33013.8, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -15508,7 +15508,7 @@ export class PivotSalesData extends Array { Sales: 572658, COGS: 200250, Profit: 372408, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -15524,7 +15524,7 @@ export class PivotSalesData extends Array { Sales: 207597.5, COGS: 122760, Profit: 84837.5, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -15540,7 +15540,7 @@ export class PivotSalesData extends Array { Sales: 241368, COGS: 374000, Profit: 132632, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15556,7 +15556,7 @@ export class PivotSalesData extends Array { Sales: 831480, COGS: 252500, Profit: 578980, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15572,7 +15572,7 @@ export class PivotSalesData extends Array { Sales: 8267.7, COGS: 15130, Profit: 6862.3, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -15588,7 +15588,7 @@ export class PivotSalesData extends Array { Sales: 16545, COGS: 23000, Profit: 6455, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -15604,7 +15604,7 @@ export class PivotSalesData extends Array { Sales: 495257.5, COGS: 338520, Profit: 156737.5, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -15620,7 +15620,7 @@ export class PivotSalesData extends Array { Sales: 639152.5, COGS: 579150, Profit: 60002.5, - Date: `2019-01-01`, + Date: `01/01/2019`, MonthName: `January`, Year: 2019 }), @@ -15636,7 +15636,7 @@ export class PivotSalesData extends Array { Sales: 1279999, COGS: 311740, Profit: 968259, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -15652,7 +15652,7 @@ export class PivotSalesData extends Array { Sales: 1177750, COGS: 52000, Profit: 1125750, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -15668,7 +15668,7 @@ export class PivotSalesData extends Array { Sales: 15124.76, COGS: 1940, Profit: 13184.76, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -15684,7 +15684,7 @@ export class PivotSalesData extends Array { Sales: 14253.54, COGS: 8635, Profit: 5618.54, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -15700,7 +15700,7 @@ export class PivotSalesData extends Array { Sales: 1215, COGS: 23000, Profit: 21785, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -15716,7 +15716,7 @@ export class PivotSalesData extends Array { Sales: 5052, COGS: 2600, Profit: 2452, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -15732,7 +15732,7 @@ export class PivotSalesData extends Array { Sales: 6048, COGS: 24700, Profit: 18652, - Date: `2018-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2018 }), @@ -15748,7 +15748,7 @@ export class PivotSalesData extends Array { Sales: 1919.7, COGS: 17430, Profit: 15510.3, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -15764,7 +15764,7 @@ export class PivotSalesData extends Array { Sales: 40476.48, COGS: 8742, Profit: 31734.48, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15780,7 +15780,7 @@ export class PivotSalesData extends Array { Sales: 10798.62, COGS: 8655, Profit: 2143.62, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -15796,7 +15796,7 @@ export class PivotSalesData extends Array { Sales: 1375850, COGS: 182000, Profit: 1193850, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -15812,7 +15812,7 @@ export class PivotSalesData extends Array { Sales: 30023.04, COGS: 6666, Profit: 23357.04, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -15828,7 +15828,7 @@ export class PivotSalesData extends Array { Sales: 694827, COGS: 306020, Profit: 388807, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -15844,7 +15844,7 @@ export class PivotSalesData extends Array { Sales: 638372, COGS: 499720, Profit: 138652, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -15860,7 +15860,7 @@ export class PivotSalesData extends Array { Sales: 521312.5, COGS: 189000, Profit: 332312.5, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -15876,7 +15876,7 @@ export class PivotSalesData extends Array { Sales: 52203.2, COGS: 6060, Profit: 46143.2, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -15892,7 +15892,7 @@ export class PivotSalesData extends Array { Sales: 297780, COGS: 615000, Profit: 317220, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -15908,7 +15908,7 @@ export class PivotSalesData extends Array { Sales: 775002, COGS: 67250, Profit: 707752, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -15924,7 +15924,7 @@ export class PivotSalesData extends Array { Sales: 1013988, COGS: 634000, Profit: 379988, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -15940,7 +15940,7 @@ export class PivotSalesData extends Array { Sales: 27395.06, COGS: 14515, Profit: 12880.06, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -15956,7 +15956,7 @@ export class PivotSalesData extends Array { Sales: 741678, COGS: 635250, Profit: 106428, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -15972,7 +15972,7 @@ export class PivotSalesData extends Array { Sales: 764502, COGS: 67250, Profit: 697252, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -15988,7 +15988,7 @@ export class PivotSalesData extends Array { Sales: 311568, COGS: 374000, Profit: 62432, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16004,7 +16004,7 @@ export class PivotSalesData extends Array { Sales: 1168080, COGS: 252500, Profit: 915580, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16020,7 +16020,7 @@ export class PivotSalesData extends Array { Sales: 62881, COGS: 333060, Profit: 270179, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -16036,7 +16036,7 @@ export class PivotSalesData extends Array { Sales: 1140504, COGS: 222000, Profit: 918504, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -16052,7 +16052,7 @@ export class PivotSalesData extends Array { Sales: 481105, COGS: 341280, Profit: 139825, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -16068,7 +16068,7 @@ export class PivotSalesData extends Array { Sales: 28182, COGS: 7425, Profit: 20757, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -16084,7 +16084,7 @@ export class PivotSalesData extends Array { Sales: 12899.7, COGS: 17430, Profit: 4530.3, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -16100,7 +16100,7 @@ export class PivotSalesData extends Array { Sales: 12492.48, COGS: 8742, Profit: 3750.48, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16116,7 +16116,7 @@ export class PivotSalesData extends Array { Sales: 6220.62, COGS: 8655, Profit: 2434.38, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16132,7 +16132,7 @@ export class PivotSalesData extends Array { Sales: 8583.54, COGS: 8635, Profit: 51.46, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -16148,7 +16148,7 @@ export class PivotSalesData extends Array { Sales: 15153, COGS: 18700, Profit: 3547, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -16164,7 +16164,7 @@ export class PivotSalesData extends Array { Sales: 153362.5, COGS: 140880, Profit: 12482.5, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -16180,7 +16180,7 @@ export class PivotSalesData extends Array { Sales: 218243.75, COGS: 332040, Profit: 113796.25, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -16196,7 +16196,7 @@ export class PivotSalesData extends Array { Sales: 221781.25, COGS: 130200, Profit: 91581.25, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16212,7 +16212,7 @@ export class PivotSalesData extends Array { Sales: 839130, COGS: 136500, Profit: 702630, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16228,7 +16228,7 @@ export class PivotSalesData extends Array { Sales: 23126, COGS: 11580, Profit: 11546, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -16244,7 +16244,7 @@ export class PivotSalesData extends Array { Sales: 32758.5, COGS: 16140, Profit: 16618.5, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -16260,7 +16260,7 @@ export class PivotSalesData extends Array { Sales: 11569.25, COGS: 12675, Profit: 1105.75, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -16276,7 +16276,7 @@ export class PivotSalesData extends Array { Sales: 560472.5, COGS: 741260, Profit: 180787.5, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -16292,7 +16292,7 @@ export class PivotSalesData extends Array { Sales: 9977.25, COGS: 25590, Profit: 15612.75, - Date: `2019-08-01`, + Date: `08/01/2019`, MonthName: `August`, Year: 2019 }), @@ -16308,7 +16308,7 @@ export class PivotSalesData extends Array { Sales: 20439, COGS: 2670, Profit: 17769, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -16324,7 +16324,7 @@ export class PivotSalesData extends Array { Sales: 293281.25, COGS: 130200, Profit: 163081.25, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16340,7 +16340,7 @@ export class PivotSalesData extends Array { Sales: 23501.25, COGS: 11750, Profit: 11751.25, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16356,7 +16356,7 @@ export class PivotSalesData extends Array { Sales: 1090932.5, COGS: 521820, Profit: 569112.5, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -16372,7 +16372,7 @@ export class PivotSalesData extends Array { Sales: 499922.5, COGS: 559260, Profit: 59337.5, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -16388,7 +16388,7 @@ export class PivotSalesData extends Array { Sales: 37090.8, COGS: 2742, Profit: 34348.8, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -16404,7 +16404,7 @@ export class PivotSalesData extends Array { Sales: 21221, COGS: 2930, Profit: 18291, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -16420,7 +16420,7 @@ export class PivotSalesData extends Array { Sales: 32436, COGS: 1500, Profit: 30936, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -16436,7 +16436,7 @@ export class PivotSalesData extends Array { Sales: 11236.5, COGS: 28260, Profit: 17023.5, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), @@ -16452,7 +16452,7 @@ export class PivotSalesData extends Array { Sales: 382568.75, COGS: 79560, Profit: 303008.75, - Date: `2019-09-01`, + Date: `09/01/2019`, MonthName: `September`, Year: 2019 }), @@ -16468,7 +16468,7 @@ export class PivotSalesData extends Array { Sales: 1180770, COGS: 643500, Profit: 537270, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -16484,7 +16484,7 @@ export class PivotSalesData extends Array { Sales: 191912.5, COGS: 292560, Profit: 100647.5, - Date: `2018-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2018 }), @@ -16500,7 +16500,7 @@ export class PivotSalesData extends Array { Sales: 34114.8, COGS: 2742, Profit: 31372.8, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -16516,7 +16516,7 @@ export class PivotSalesData extends Array { Sales: 78763.5, COGS: 8655, Profit: 70108.5, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -16532,7 +16532,7 @@ export class PivotSalesData extends Array { Sales: 30468, COGS: 4920, Profit: 25548, - Date: `2019-07-01`, + Date: `07/01/2019`, MonthName: `July`, Year: 2019 }), @@ -16548,7 +16548,7 @@ export class PivotSalesData extends Array { Sales: 32139, COGS: 2670, Profit: 29469, - Date: `2018-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2018 }), @@ -16564,7 +16564,7 @@ export class PivotSalesData extends Array { Sales: 881.25, COGS: 11750, Profit: 10868.75, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16580,7 +16580,7 @@ export class PivotSalesData extends Array { Sales: 396737.5, COGS: 354480, Profit: 42257.5, - Date: `2018-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2018 }), @@ -16596,7 +16596,7 @@ export class PivotSalesData extends Array { Sales: 252900, COGS: 66240, Profit: 186660, - Date: `2019-11-01`, + Date: `11/01/2019`, MonthName: `November`, Year: 2019 }), @@ -16612,7 +16612,7 @@ export class PivotSalesData extends Array { Sales: 46141, COGS: 2930, Profit: 43211, - Date: `2019-12-01`, + Date: `12/01/2019`, MonthName: `December`, Year: 2019 }), @@ -16628,7 +16628,7 @@ export class PivotSalesData extends Array { Sales: 457725, COGS: 618750, Profit: 161025, - Date: `2019-03-01`, + Date: `03/01/2019`, MonthName: `March`, Year: 2019 }), @@ -16644,7 +16644,7 @@ export class PivotSalesData extends Array { Sales: 169530, COGS: 136500, Profit: 33030, - Date: `2019-10-01`, + Date: `10/01/2019`, MonthName: `October`, Year: 2019 }), @@ -16660,7 +16660,7 @@ export class PivotSalesData extends Array { Sales: 23910.6, COGS: 6840, Profit: 17070.6, - Date: `2019-02-01`, + Date: `02/01/2019`, MonthName: `February`, Year: 2019 }), @@ -16676,7 +16676,7 @@ export class PivotSalesData extends Array { Sales: 21787.85, COGS: 3615, Profit: 18172.85, - Date: `2019-04-01`, + Date: `04/01/2019`, MonthName: `April`, Year: 2019 }), @@ -16692,7 +16692,7 @@ export class PivotSalesData extends Array { Sales: 2665.2, COGS: 5418, Profit: 2752.8, - Date: `2019-05-01`, + Date: `05/01/2019`, MonthName: `May`, Year: 2019 }), diff --git a/samples/grids/pivot-grid/aggregate-units-sold/tsconfig.json b/samples/grids/pivot-grid/aggregate-units-sold/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/tsconfig.json +++ b/samples/grids/pivot-grid/aggregate-units-sold/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/pivot-grid/basic/package.json b/samples/grids/pivot-grid/basic/package.json index b68931a64a..7b8e158ca4 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/basic/sandbox.config.json b/samples/grids/pivot-grid/basic/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/pivot-grid/basic/sandbox.config.json +++ b/samples/grids/pivot-grid/basic/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/pivot-grid/basic/src/index.ts b/samples/grids/pivot-grid/basic/src/index.ts index 606f736700..7ba3c7540d 100644 --- a/samples/grids/pivot-grid/basic/src/index.ts +++ b/samples/grids/pivot-grid/basic/src/index.ts @@ -1,9 +1,9 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcPivotGridComponent, IgcPivotConfiguration, IgcPivotDimension, IgcPivotValue, IgcPivotAggregator } from 'igniteui-webcomponents-grids/grids'; import { PivotSalesDataItem, PivotSalesData } from './PivotSalesData'; - import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; + export class Sample { private grid: IgcPivotGridComponent @@ -42,6 +42,7 @@ export class Sample { } return this._pivotConfiguration1; } + private _bind: () => void; constructor() { @@ -52,7 +53,6 @@ export class Sample { grid.data = this.pivotSalesData } this._bind(); - } private _pivotSalesData: PivotSalesData = null; diff --git a/samples/grids/pivot-grid/basic/tsconfig.json b/samples/grids/pivot-grid/basic/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/pivot-grid/basic/tsconfig.json +++ b/samples/grids/pivot-grid/basic/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/pivot-grid/data-persistence-noop/package.json b/samples/grids/pivot-grid/data-persistence-noop/package.json index 3df29ea9b1..4099317991 100644 --- a/samples/grids/pivot-grid/data-persistence-noop/package.json +++ b/samples/grids/pivot-grid/data-persistence-noop/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/data-persistence-noop/sandbox.config.json b/samples/grids/pivot-grid/data-persistence-noop/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/pivot-grid/data-persistence-noop/sandbox.config.json +++ b/samples/grids/pivot-grid/data-persistence-noop/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/pivot-grid/data-persistence-noop/src/index.css b/samples/grids/pivot-grid/data-persistence-noop/src/index.css index 5855f3765e..0fe9368715 100644 --- a/samples/grids/pivot-grid/data-persistence-noop/src/index.css +++ b/samples/grids/pivot-grid/data-persistence-noop/src/index.css @@ -1,7 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -.horizontal { - gap: 1rem; - padding: 0.5rem -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/pivot-grid/data-persistence-noop/src/index.ts b/samples/grids/pivot-grid/data-persistence-noop/src/index.ts index 7c779d8b07..5516ac973c 100644 --- a/samples/grids/pivot-grid/data-persistence-noop/src/index.ts +++ b/samples/grids/pivot-grid/data-persistence-noop/src/index.ts @@ -52,6 +52,7 @@ export class Sample { ], filters: null }; + public stateKey = 'pivot-grid-state'; private _gridState: IgcGridStateComponent; @@ -95,7 +96,7 @@ export class Sample { public clearStorage() { window.localStorage.removeItem(this.stateKey); } - + public stateParsedHandler(ev: any) { const parsedState = ev.detail; parsedState.pivotConfiguration.rowStrategy = IgcNoopPivotDimensionsStrategy.instance(); diff --git a/samples/grids/pivot-grid/data-persistence-noop/tsconfig.json b/samples/grids/pivot-grid/data-persistence-noop/tsconfig.json index 220404df76..de23257dd8 100644 --- a/samples/grids/pivot-grid/data-persistence-noop/tsconfig.json +++ b/samples/grids/pivot-grid/data-persistence-noop/tsconfig.json @@ -1,5 +1,5 @@ { - "compilerOptions": { + "compilerOptions": { "noImplicitReturns": true, "esModuleInterop": true, "noImplicitAny": true, @@ -8,32 +8,13 @@ "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 + "strict": true + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/grids/pivot-grid/data-persistence-noop/webpack.config.js b/samples/grids/pivot-grid/data-persistence-noop/webpack.config.js index 1c50333f6c..9d11a6155c 100644 --- a/samples/grids/pivot-grid/data-persistence-noop/webpack.config.js +++ b/samples/grids/pivot-grid/data-persistence-noop/webpack.config.js @@ -1,15 +1,32 @@ 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'); -const nodeEnv = process.env.NODE_ENV || 'development'; - module.exports = env => { - console.log("env:"); - console.log(env); - const isLegacy = !!env.legacy && !(env.legacy == "false"); - const isProd = env.NODE_ENV === 'production'; + 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'), @@ -18,13 +35,19 @@ module.exports = env => { ] : path.resolve(__dirname, 'src'), devtool: isProd ? false : 'source-map', output: { - filename: isProd ? '[chunkhash].bundle.js' : '[hash].bundle.js', + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', path: path.resolve(__dirname, 'dist'), }, resolve: { - mainFields: ['fesm2015', 'module', 'main'], - extensions: ['.ts', '.js', '.json'] + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] }, module: { @@ -33,25 +56,27 @@ module.exports = env => { { 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": [ - ["@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" - ], + "presets": presets, "plugins": [ "@babel/plugin-proposal-class-properties", "@babel/plugin-transform-runtime" @@ -68,9 +93,7 @@ module.exports = env => { plugins: [ new webpack.DefinePlugin({ - 'process.env': { - NODE_ENV: JSON.stringify(nodeEnv) - } + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) }), new HtmlWebpackPlugin({ title: 'for-cs', @@ -79,4 +102,4 @@ module.exports = env => { new ForkTsCheckerWebpackPlugin() ] }; -}; \ No newline at end of file +}; diff --git a/samples/grids/pivot-grid/data-selector/package.json b/samples/grids/pivot-grid/data-selector/package.json index 74cf0f3874..ca1257fd49 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/data-selector/sandbox.config.json b/samples/grids/pivot-grid/data-selector/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/pivot-grid/data-selector/sandbox.config.json +++ b/samples/grids/pivot-grid/data-selector/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/pivot-grid/data-selector/src/index.ts b/samples/grids/pivot-grid/data-selector/src/index.ts index 9158819026..398a7ee51a 100644 --- a/samples/grids/pivot-grid/data-selector/src/index.ts +++ b/samples/grids/pivot-grid/data-selector/src/index.ts @@ -3,7 +3,6 @@ import { IgcPivotGridComponent, IgcPivotConfiguration, IgcPivotDataSelectorCompo import { PivotSalesData } from './PivotSalesData'; import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; - export class Sample { private _pivotConfiguration: any | null = null; public get pivotConfiguration(): any { @@ -64,6 +63,7 @@ export class Sample { } return this._pivotConfiguration; } + private _bind: () => void; constructor() { @@ -75,7 +75,6 @@ export class Sample { selector.grid = grid; } this._bind(); - } private _pivotSalesData: PivotSalesData = null; @@ -87,8 +86,6 @@ export class Sample { return this._pivotSalesData; } - - } new Sample(); diff --git a/samples/grids/pivot-grid/data-selector/tsconfig.json b/samples/grids/pivot-grid/data-selector/tsconfig.json index 7e425ddd12..de23257dd8 100644 --- a/samples/grids/pivot-grid/data-selector/tsconfig.json +++ b/samples/grids/pivot-grid/data-selector/tsconfig.json @@ -8,8 +8,7 @@ "declaration": true, "target": "es2015", "module": "es2015", - "strict": true, - "strictNullChecks": false + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/pivot-grid/features/package.json b/samples/grids/pivot-grid/features/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/pivot-grid/features/package.json +++ b/samples/grids/pivot-grid/features/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/features/src/PivotDataFlat.ts b/samples/grids/pivot-grid/features/src/PivotDataFlat.ts index d302d2f295..0bcecd8e45 100644 --- a/samples/grids/pivot-grid/features/src/PivotDataFlat.ts +++ b/samples/grids/pivot-grid/features/src/PivotDataFlat.ts @@ -24,7 +24,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 12.8, SellerName: `Stanley Brooker`, SellerCity: `Seattle`, - Date: `2007-01-01T00:00:00`, + Date: `01/01/2007`, Value: 94.4, NumberOfUnits: 282 }), @@ -34,7 +34,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 49.6, SellerName: `Elisa Longbottom`, SellerCity: `Sofia`, - Date: `2007-01-05T00:00:00`, + Date: `01/05/2007`, Value: 70.8, NumberOfUnits: 296 }), @@ -44,7 +44,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 3.6, SellerName: `Lydia Burson`, SellerCity: `Tokyo`, - Date: `2007-01-06T00:00:00`, + Date: `01/06/2007`, Value: 35.8, NumberOfUnits: 68 }), @@ -54,7 +54,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 85.6, SellerName: `David Haley`, SellerCity: `London`, - Date: `2007-01-07T00:00:00`, + Date: `01/07/2007`, Value: 41.4, NumberOfUnits: 293 }), @@ -64,7 +64,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 18.2, SellerName: `John Smith`, SellerCity: `Seattle`, - Date: `2007-01-08T00:00:00`, + Date: `01/08/2007`, Value: 60.6, NumberOfUnits: 240 }), @@ -74,7 +74,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 68.4, SellerName: `Larry Lieb`, SellerCity: `Tokyo`, - Date: `2007-01-12T00:00:00`, + Date: `01/12/2007`, Value: 38, NumberOfUnits: 456 }), @@ -84,7 +84,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 16.2, SellerName: `Walter Pang`, SellerCity: `Sofia`, - Date: `2007-02-09T00:00:00`, + Date: `02/09/2007`, Value: 89.2, NumberOfUnits: 492 }), @@ -94,7 +94,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 35.2, SellerName: `Benjamin Dupree`, SellerCity: `Tokyo`, - Date: `2007-02-16T00:00:00`, + Date: `02/16/2007`, Value: 2, NumberOfUnits: 78 }), @@ -104,7 +104,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 73.2, SellerName: `Nicholas Carmona`, SellerCity: `Mellvile`, - Date: `2007-02-17T00:00:00`, + Date: `02/17/2007`, Value: 4.6, NumberOfUnits: 150 }), @@ -114,7 +114,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 73.6, SellerName: `Nicholas Carmona`, SellerCity: `London`, - Date: `2007-02-19T00:00:00`, + Date: `02/19/2007`, Value: 36.2, NumberOfUnits: 262 }), @@ -124,7 +124,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 47.2, SellerName: `Monica Freitag`, SellerCity: `Sofia`, - Date: `2007-02-21T00:00:00`, + Date: `02/21/2007`, Value: 18.8, NumberOfUnits: 125 }), @@ -134,7 +134,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 51.4, SellerName: `Kathe Pettel`, SellerCity: `Sofia`, - Date: `2007-03-04T00:00:00`, + Date: `03/04/2007`, Value: 11.6, NumberOfUnits: 42 }), @@ -144,7 +144,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 27.6, SellerName: `David Haley`, SellerCity: `Tokyo`, - Date: `2007-03-04T00:00:00`, + Date: `03/04/2007`, Value: 41.4, NumberOfUnits: 282 }), @@ -154,7 +154,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 22.4, SellerName: `Antonio Charbonneau`, SellerCity: `Berlin`, - Date: `2007-03-17T00:00:00`, + Date: `03/17/2007`, Value: 59.8, NumberOfUnits: 305 }), @@ -164,7 +164,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 85.4, SellerName: `Glenn Landeros`, SellerCity: `Tokyo`, - Date: `2007-03-23T00:00:00`, + Date: `03/23/2007`, Value: 31.4, NumberOfUnits: 265 }), @@ -174,7 +174,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 80.8, SellerName: `Elisa Longbottom`, SellerCity: `Mellvile`, - Date: `2007-03-25T00:00:00`, + Date: `03/25/2007`, Value: 90.4, NumberOfUnits: 350 }), @@ -184,7 +184,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 64.6, SellerName: `Glenn Landeros`, SellerCity: `Mellvile`, - Date: `2007-03-27T00:00:00`, + Date: `03/27/2007`, Value: 95.4, NumberOfUnits: 82 }), @@ -194,7 +194,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 50, SellerName: `Harry Tyler`, SellerCity: `New York`, - Date: `2007-04-02T00:00:00`, + Date: `04/02/2007`, Value: 1.4, NumberOfUnits: 67 }), @@ -204,7 +204,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 16.4, SellerName: `Brandon Mckim`, SellerCity: `Mellvile`, - Date: `2007-04-04T00:00:00`, + Date: `04/04/2007`, Value: 25.4, NumberOfUnits: 370 }), @@ -214,7 +214,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 50, SellerName: `Monica Freitag`, SellerCity: `Berlin`, - Date: `2007-04-12T00:00:00`, + Date: `04/12/2007`, Value: 46.4, NumberOfUnits: 228 }), @@ -224,7 +224,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 44.8, SellerName: `Bryan Culver`, SellerCity: `Tokyo`, - Date: `2007-04-15T00:00:00`, + Date: `04/15/2007`, Value: 82.2, NumberOfUnits: 272 }), @@ -234,7 +234,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 44.4, SellerName: `Russell Shorter`, SellerCity: `Berlin`, - Date: `2007-04-18T00:00:00`, + Date: `04/18/2007`, Value: 84, NumberOfUnits: 227 }), @@ -244,7 +244,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 39.4, SellerName: `Stanley Brooker`, SellerCity: `Mellvile`, - Date: `2007-04-18T00:00:00`, + Date: `04/18/2007`, Value: 94.4, NumberOfUnits: 248 }), @@ -254,7 +254,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 36.6, SellerName: `Benjamin Meekins`, SellerCity: `Tokyo`, - Date: `2007-04-21T00:00:00`, + Date: `04/21/2007`, Value: 45.8, NumberOfUnits: 414 }), @@ -264,7 +264,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 75.8, SellerName: `Walter Pang`, SellerCity: `London`, - Date: `2007-04-25T00:00:00`, + Date: `04/25/2007`, Value: 97.6, NumberOfUnits: 43 }), @@ -274,7 +274,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 57.8, SellerName: `Antonio Charbonneau`, SellerCity: `Mellvile`, - Date: `2007-04-26T00:00:00`, + Date: `04/26/2007`, Value: 21, NumberOfUnits: 71 }), @@ -284,7 +284,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 40.2, SellerName: `Stanley Brooker`, SellerCity: `New York`, - Date: `2007-05-14T00:00:00`, + Date: `05/14/2007`, Value: 72, NumberOfUnits: 321 }), @@ -294,7 +294,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 49.6, SellerName: `Elisa Longbottom`, SellerCity: `London`, - Date: `2007-05-17T00:00:00`, + Date: `05/17/2007`, Value: 49.6, NumberOfUnits: 329 }), @@ -304,7 +304,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 56.6, SellerName: `Benjamin Dupree`, SellerCity: `London`, - Date: `2007-05-17T00:00:00`, + Date: `05/17/2007`, Value: 72.8, NumberOfUnits: 88 }), @@ -314,7 +314,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 67.2, SellerName: `Glenn Landeros`, SellerCity: `New York`, - Date: `2007-05-26T00:00:00`, + Date: `05/26/2007`, Value: 56.2, NumberOfUnits: 366 }), @@ -324,7 +324,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 14.6, SellerName: `Walter Pang`, SellerCity: `Sofia`, - Date: `2007-06-02T00:00:00`, + Date: `06/02/2007`, Value: 81.4, NumberOfUnits: 450 }), @@ -334,7 +334,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 89.4, SellerName: `Howard Sprouse`, SellerCity: `Seattle`, - Date: `2007-06-06T00:00:00`, + Date: `06/06/2007`, Value: 19, NumberOfUnits: 475 }), @@ -344,7 +344,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 33.8, SellerName: `Nicholas Carmona`, SellerCity: `Seattle`, - Date: `2007-06-11T00:00:00`, + Date: `06/11/2007`, Value: 55, NumberOfUnits: 195 }), @@ -354,7 +354,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 54.2, SellerName: `Harold Garvin`, SellerCity: `Sofia`, - Date: `2007-06-17T00:00:00`, + Date: `06/17/2007`, Value: 71.6, NumberOfUnits: 458 }), @@ -364,7 +364,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 18.4, SellerName: `Benjamin Dupree`, SellerCity: `Sofia`, - Date: `2007-07-04T00:00:00`, + Date: `07/04/2007`, Value: 24.2, NumberOfUnits: 7 }), @@ -374,7 +374,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 96.2, SellerName: `Elisa Longbottom`, SellerCity: `New York`, - Date: `2007-07-08T00:00:00`, + Date: `07/08/2007`, Value: 57.6, NumberOfUnits: 158 }), @@ -384,7 +384,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 23, SellerName: `Benjamin Meekins`, SellerCity: `Tokyo`, - Date: `2007-07-09T00:00:00`, + Date: `07/09/2007`, Value: 58.8, NumberOfUnits: 34 }), @@ -394,7 +394,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 52.8, SellerName: `Larry Lieb`, SellerCity: `Seattle`, - Date: `2007-07-10T00:00:00`, + Date: `07/10/2007`, Value: 32.4, NumberOfUnits: 412 }), @@ -404,7 +404,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 62.2, SellerName: `John Smith`, SellerCity: `Sofia`, - Date: `2007-07-15T00:00:00`, + Date: `07/15/2007`, Value: 85, NumberOfUnits: 10 }), @@ -414,7 +414,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 10.8, SellerName: `Antonio Charbonneau`, SellerCity: `New York`, - Date: `2007-07-16T00:00:00`, + Date: `07/16/2007`, Value: 52.2, NumberOfUnits: 466 }), @@ -424,7 +424,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 4.8, SellerName: `Stanley Brooker`, SellerCity: `London`, - Date: `2007-07-20T00:00:00`, + Date: `07/20/2007`, Value: 34.2, NumberOfUnits: 248 }), @@ -434,7 +434,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 43.8, SellerName: `Brandon Mckim`, SellerCity: `Mellvile`, - Date: `2007-07-24T00:00:00`, + Date: `07/24/2007`, Value: 45.6, NumberOfUnits: 307 }), @@ -444,7 +444,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 76.4, SellerName: `Glenn Landeros`, SellerCity: `London`, - Date: `2007-07-26T00:00:00`, + Date: `07/26/2007`, Value: 26.2, NumberOfUnits: 445 }), @@ -454,7 +454,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 34.4, SellerName: `Bryan Culver`, SellerCity: `New York`, - Date: `2007-08-01T00:00:00`, + Date: `08/01/2007`, Value: 89.2, NumberOfUnits: 480 }), @@ -464,7 +464,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 68.6, SellerName: `Howard Sprouse`, SellerCity: `Berlin`, - Date: `2007-08-02T00:00:00`, + Date: `08/02/2007`, Value: 38.2, NumberOfUnits: 390 }), @@ -474,7 +474,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 65.2, SellerName: `Larry Lieb`, SellerCity: `Mellvile`, - Date: `2007-08-05T00:00:00`, + Date: `08/05/2007`, Value: 23.2, NumberOfUnits: 388 }), @@ -484,7 +484,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 45, SellerName: `Russell Shorter`, SellerCity: `Seattle`, - Date: `2007-08-19T00:00:00`, + Date: `08/19/2007`, Value: 23.4, NumberOfUnits: 37 }), @@ -494,7 +494,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 93.6, SellerName: `John Smith`, SellerCity: `New York`, - Date: `2007-08-24T00:00:00`, + Date: `08/24/2007`, Value: 17.4, NumberOfUnits: 237 }), @@ -504,7 +504,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 94.4, SellerName: `Harry Tyler`, SellerCity: `Seattle`, - Date: `2007-08-26T00:00:00`, + Date: `08/26/2007`, Value: 54.6, NumberOfUnits: 396 }), @@ -514,7 +514,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 72.4, SellerName: `David Haley`, SellerCity: `Tokyo`, - Date: `2007-08-26T00:00:00`, + Date: `08/26/2007`, Value: 61, NumberOfUnits: 3 }), @@ -524,7 +524,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 80.6, SellerName: `Russell Shorter`, SellerCity: `New York`, - Date: `2007-09-02T00:00:00`, + Date: `09/02/2007`, Value: 85.2, NumberOfUnits: 330 }), @@ -534,7 +534,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 65.4, SellerName: `Benjamin Dupree`, SellerCity: `London`, - Date: `2007-09-04T00:00:00`, + Date: `09/04/2007`, Value: 51.2, NumberOfUnits: 143 }), @@ -544,7 +544,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 30.6, SellerName: `Bryan Culver`, SellerCity: `Seattle`, - Date: `2007-09-05T00:00:00`, + Date: `09/05/2007`, Value: 55.2, NumberOfUnits: 318 }), @@ -554,7 +554,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 7.6, SellerName: `Alfredo Fetuchini`, SellerCity: `Seattle`, - Date: `2007-09-06T00:00:00`, + Date: `09/06/2007`, Value: 41.8, NumberOfUnits: 393 }), @@ -564,7 +564,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 47, SellerName: `Harold Garvin`, SellerCity: `Seattle`, - Date: `2007-09-10T00:00:00`, + Date: `09/10/2007`, Value: 9.2, NumberOfUnits: 129 }), @@ -574,7 +574,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 38, SellerName: `Glenn Landeros`, SellerCity: `London`, - Date: `2007-09-17T00:00:00`, + Date: `09/17/2007`, Value: 25.6, NumberOfUnits: 426 }), @@ -584,7 +584,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 2.6, SellerName: `Harry Tyler`, SellerCity: `London`, - Date: `2007-09-18T00:00:00`, + Date: `09/18/2007`, Value: 36.4, NumberOfUnits: 217 }), @@ -594,7 +594,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 77.6, SellerName: `John Smith`, SellerCity: `New York`, - Date: `2007-09-20T00:00:00`, + Date: `09/20/2007`, Value: 28, NumberOfUnits: 152 }), @@ -604,7 +604,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 97.2, SellerName: `Benjamin Meekins`, SellerCity: `Seattle`, - Date: `2007-09-25T00:00:00`, + Date: `09/25/2007`, Value: 21.8, NumberOfUnits: 452 }), @@ -614,7 +614,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 19.8, SellerName: `Carl Costello`, SellerCity: `Seattle`, - Date: `2007-10-02T00:00:00`, + Date: `10/02/2007`, Value: 98.4, NumberOfUnits: 499 }), @@ -624,7 +624,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 32.8, SellerName: `Mark Slater`, SellerCity: `Seattle`, - Date: `2007-10-06T00:00:00`, + Date: `10/06/2007`, Value: 79.6, NumberOfUnits: 169 }), @@ -634,7 +634,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 22, SellerName: `Nicholas Carmona`, SellerCity: `Berlin`, - Date: `2007-10-14T00:00:00`, + Date: `10/14/2007`, Value: 69.6, NumberOfUnits: 386 }), @@ -644,7 +644,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 35.6, SellerName: `Russell Shorter`, SellerCity: `Sofia`, - Date: `2007-10-14T00:00:00`, + Date: `10/14/2007`, Value: 27.8, NumberOfUnits: 454 }), @@ -654,7 +654,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 47, SellerName: `Elisa Longbottom`, SellerCity: `New York`, - Date: `2007-10-25T00:00:00`, + Date: `10/25/2007`, Value: 82.2, NumberOfUnits: 334 }), @@ -664,7 +664,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 41.2, SellerName: `Lydia Burson`, SellerCity: `Tokyo`, - Date: `2007-10-26T00:00:00`, + Date: `10/26/2007`, Value: 54.4, NumberOfUnits: 107 }), @@ -674,7 +674,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 13.8, SellerName: `Mark Slater`, SellerCity: `Sofia`, - Date: `2007-11-07T00:00:00`, + Date: `11/07/2007`, Value: 86.2, NumberOfUnits: 275 }), @@ -684,7 +684,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 64.2, SellerName: `Monica Freitag`, SellerCity: `London`, - Date: `2007-11-09T00:00:00`, + Date: `11/09/2007`, Value: 37.8, NumberOfUnits: 241 }), @@ -694,7 +694,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 1.2, SellerName: `Larry Lieb`, SellerCity: `London`, - Date: `2007-11-11T00:00:00`, + Date: `11/11/2007`, Value: 75.2, NumberOfUnits: 177 }), @@ -704,7 +704,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 57.8, SellerName: `Monica Freitag`, SellerCity: `Sofia`, - Date: `2007-11-13T00:00:00`, + Date: `11/13/2007`, Value: 58.6, NumberOfUnits: 494 }), @@ -714,7 +714,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 39.6, SellerName: `Lydia Burson`, SellerCity: `Mellvile`, - Date: `2007-11-19T00:00:00`, + Date: `11/19/2007`, Value: 40.8, NumberOfUnits: 451 }), @@ -724,7 +724,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 5.2, SellerName: `Stanley Brooker`, SellerCity: `Tokyo`, - Date: `2008-01-01T00:00:00`, + Date: `01/01/2008`, Value: 91.8, NumberOfUnits: 125 }), @@ -734,7 +734,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 53.4, SellerName: `Kathe Pettel`, SellerCity: `London`, - Date: `2008-01-02T00:00:00`, + Date: `01/02/2008`, Value: 31, NumberOfUnits: 103 }), @@ -744,7 +744,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 52.2, SellerName: `Larry Lieb`, SellerCity: `New York`, - Date: `2008-01-03T00:00:00`, + Date: `01/03/2008`, Value: 43, NumberOfUnits: 224 }), @@ -754,7 +754,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 17.8, SellerName: `Nicholas Carmona`, SellerCity: `Mellvile`, - Date: `2008-01-07T00:00:00`, + Date: `01/07/2008`, Value: 47.6, NumberOfUnits: 498 }), @@ -764,7 +764,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 80.8, SellerName: `Benjamin Dupree`, SellerCity: `London`, - Date: `2008-01-08T00:00:00`, + Date: `01/08/2008`, Value: 15.6, NumberOfUnits: 142 }), @@ -774,7 +774,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 95.4, SellerName: `Larry Lieb`, SellerCity: `Berlin`, - Date: `2008-01-21T00:00:00`, + Date: `01/21/2008`, Value: 87.2, NumberOfUnits: 487 }), @@ -784,7 +784,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 21.8, SellerName: `David Haley`, SellerCity: `Mellvile`, - Date: `2008-01-27T00:00:00`, + Date: `01/27/2008`, Value: 14.6, NumberOfUnits: 331 }), @@ -794,7 +794,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 30, SellerName: `Glenn Landeros`, SellerCity: `London`, - Date: `2008-02-03T00:00:00`, + Date: `02/03/2008`, Value: 99.2, NumberOfUnits: 418 }), @@ -804,7 +804,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 39.8, SellerName: `Benjamin Meekins`, SellerCity: `New York`, - Date: `2008-02-04T00:00:00`, + Date: `02/04/2008`, Value: 61, NumberOfUnits: 214 }), @@ -814,7 +814,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 40.4, SellerName: `Elisa Longbottom`, SellerCity: `Mellvile`, - Date: `2008-02-05T00:00:00`, + Date: `02/05/2008`, Value: 81.8, NumberOfUnits: 229 }), @@ -824,7 +824,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 35.2, SellerName: `Alfredo Fetuchini`, SellerCity: `London`, - Date: `2008-02-05T00:00:00`, + Date: `02/05/2008`, Value: 54.4, NumberOfUnits: 16 }), @@ -834,7 +834,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 41.8, SellerName: `Harry Tyler`, SellerCity: `Sofia`, - Date: `2008-02-08T00:00:00`, + Date: `02/08/2008`, Value: 18, NumberOfUnits: 216 }), @@ -844,7 +844,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 0.8, SellerName: `Harry Tyler`, SellerCity: `Sofia`, - Date: `2008-02-09T00:00:00`, + Date: `02/09/2008`, Value: 85, NumberOfUnits: 486 }), @@ -854,7 +854,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 37.6, SellerName: `Elisa Longbottom`, SellerCity: `Tokyo`, - Date: `2008-02-13T00:00:00`, + Date: `02/13/2008`, Value: 45.2, NumberOfUnits: 172 }), @@ -864,7 +864,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 20.8, SellerName: `Antonio Charbonneau`, SellerCity: `New York`, - Date: `2008-02-21T00:00:00`, + Date: `02/21/2008`, Value: 60.6, NumberOfUnits: 102 }), @@ -874,7 +874,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 70.8, SellerName: `Kathe Pettel`, SellerCity: `Seattle`, - Date: `2008-02-24T00:00:00`, + Date: `02/24/2008`, Value: 43, NumberOfUnits: 36 }), @@ -884,7 +884,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 53.4, SellerName: `Alfredo Fetuchini`, SellerCity: `Mellvile`, - Date: `2008-02-25T00:00:00`, + Date: `02/25/2008`, Value: 11, NumberOfUnits: 71 }), @@ -894,7 +894,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 25, SellerName: `Alfredo Fetuchini`, SellerCity: `Mellvile`, - Date: `2008-02-25T00:00:00`, + Date: `02/25/2008`, Value: 17, NumberOfUnits: 53 }), @@ -904,7 +904,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 64.6, SellerName: `Antonio Charbonneau`, SellerCity: `Tokyo`, - Date: `2008-02-25T00:00:00`, + Date: `02/25/2008`, Value: 99, NumberOfUnits: 104 }), @@ -914,7 +914,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 9.6, SellerName: `Brandon Mckim`, SellerCity: `Tokyo`, - Date: `2008-02-26T00:00:00`, + Date: `02/26/2008`, Value: 96.2, NumberOfUnits: 294 }), @@ -924,7 +924,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 41.2, SellerName: `Antonio Charbonneau`, SellerCity: `Sofia`, - Date: `2008-03-03T00:00:00`, + Date: `03/03/2008`, Value: 93.8, NumberOfUnits: 454 }), @@ -934,7 +934,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 37, SellerName: `Stanley Brooker`, SellerCity: `Berlin`, - Date: `2008-03-05T00:00:00`, + Date: `03/05/2008`, Value: 82.8, NumberOfUnits: 492 }), @@ -944,7 +944,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 16.8, SellerName: `Harry Tyler`, SellerCity: `New York`, - Date: `2008-03-08T00:00:00`, + Date: `03/08/2008`, Value: 0.8, NumberOfUnits: 132 }), @@ -954,7 +954,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 24.8, SellerName: `Alfredo Fetuchini`, SellerCity: `New York`, - Date: `2008-03-09T00:00:00`, + Date: `03/09/2008`, Value: 88.6, NumberOfUnits: 225 }), @@ -964,7 +964,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 65.6, SellerName: `David Haley`, SellerCity: `Tokyo`, - Date: `2008-03-10T00:00:00`, + Date: `03/10/2008`, Value: 69.2, NumberOfUnits: 422 }), @@ -974,7 +974,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 70.6, SellerName: `Glenn Landeros`, SellerCity: `London`, - Date: `2008-03-12T00:00:00`, + Date: `03/12/2008`, Value: 97.2, NumberOfUnits: 303 }), @@ -984,7 +984,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 65.2, SellerName: `Carl Costello`, SellerCity: `London`, - Date: `2008-03-13T00:00:00`, + Date: `03/13/2008`, Value: 46.4, NumberOfUnits: 319 }), @@ -994,7 +994,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 39.6, SellerName: `Harold Garvin`, SellerCity: `London`, - Date: `2008-03-14T00:00:00`, + Date: `03/14/2008`, Value: 48.6, NumberOfUnits: 262 }), @@ -1004,7 +1004,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 50.8, SellerName: `Harold Garvin`, SellerCity: `Berlin`, - Date: `2008-03-23T00:00:00`, + Date: `03/23/2008`, Value: 91.8, NumberOfUnits: 345 }), @@ -1014,7 +1014,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 88.4, SellerName: `David Haley`, SellerCity: `Tokyo`, - Date: `2008-04-03T00:00:00`, + Date: `04/03/2008`, Value: 87.4, NumberOfUnits: 407 }), @@ -1024,7 +1024,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 47.4, SellerName: `Walter Pang`, SellerCity: `Berlin`, - Date: `2008-04-04T00:00:00`, + Date: `04/04/2008`, Value: 15.2, NumberOfUnits: 121 }), @@ -1034,7 +1034,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 30.4, SellerName: `Larry Lieb`, SellerCity: `Seattle`, - Date: `2008-04-06T00:00:00`, + Date: `04/06/2008`, Value: 44.4, NumberOfUnits: 30 }), @@ -1044,7 +1044,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 88.2, SellerName: `Harold Garvin`, SellerCity: `Berlin`, - Date: `2008-04-11T00:00:00`, + Date: `04/11/2008`, Value: 25.4, NumberOfUnits: 293 }), @@ -1054,7 +1054,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 16.6, SellerName: `David Haley`, SellerCity: `Sofia`, - Date: `2008-04-12T00:00:00`, + Date: `04/12/2008`, Value: 55.2, NumberOfUnits: 271 }), @@ -1064,7 +1064,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 95.2, SellerName: `Howard Sprouse`, SellerCity: `Sofia`, - Date: `2008-04-18T00:00:00`, + Date: `04/18/2008`, Value: 25.8, NumberOfUnits: 107 }), @@ -1074,7 +1074,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 7.8, SellerName: `Bryan Culver`, SellerCity: `Mellvile`, - Date: `2008-04-18T00:00:00`, + Date: `04/18/2008`, Value: 54.6, NumberOfUnits: 87 }), @@ -1084,7 +1084,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 94.8, SellerName: `David Haley`, SellerCity: `Tokyo`, - Date: `2008-04-23T00:00:00`, + Date: `04/23/2008`, Value: 79, NumberOfUnits: 319 }), @@ -1094,7 +1094,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 37.2, SellerName: `Lydia Burson`, SellerCity: `New York`, - Date: `2008-04-24T00:00:00`, + Date: `04/24/2008`, Value: 21.6, NumberOfUnits: 346 }), @@ -1104,7 +1104,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 99.4, SellerName: `Benjamin Dupree`, SellerCity: `London`, - Date: `2008-05-07T00:00:00`, + Date: `05/07/2008`, Value: 77.8, NumberOfUnits: 382 }), @@ -1114,7 +1114,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 96.2, SellerName: `Larry Lieb`, SellerCity: `New York`, - Date: `2008-05-11T00:00:00`, + Date: `05/11/2008`, Value: 35.4, NumberOfUnits: 334 }), @@ -1124,7 +1124,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 26.2, SellerName: `Harold Garvin`, SellerCity: `Tokyo`, - Date: `2008-05-13T00:00:00`, + Date: `05/13/2008`, Value: 28.8, NumberOfUnits: 176 }), @@ -1134,7 +1134,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 80.8, SellerName: `Mark Slater`, SellerCity: `Berlin`, - Date: `2008-05-19T00:00:00`, + Date: `05/19/2008`, Value: 8.4, NumberOfUnits: 125 }), @@ -1144,7 +1144,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 78.4, SellerName: `Russell Shorter`, SellerCity: `Mellvile`, - Date: `2008-05-19T00:00:00`, + Date: `05/19/2008`, Value: 15, NumberOfUnits: 458 }), @@ -1154,7 +1154,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 94, SellerName: `Benjamin Meekins`, SellerCity: `Berlin`, - Date: `2008-05-25T00:00:00`, + Date: `05/25/2008`, Value: 68.6, NumberOfUnits: 331 }), @@ -1164,7 +1164,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 96.6, SellerName: `Stanley Brooker`, SellerCity: `Mellvile`, - Date: `2008-05-27T00:00:00`, + Date: `05/27/2008`, Value: 71, NumberOfUnits: 39 }), @@ -1174,7 +1174,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 37.6, SellerName: `Claudia Kobayashi`, SellerCity: `London`, - Date: `2008-06-06T00:00:00`, + Date: `06/06/2008`, Value: 97.2, NumberOfUnits: 238 }), @@ -1184,7 +1184,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 47, SellerName: `Walter Pang`, SellerCity: `London`, - Date: `2008-06-07T00:00:00`, + Date: `06/07/2008`, Value: 5.8, NumberOfUnits: 84 }), @@ -1194,7 +1194,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 80.2, SellerName: `Mark Slater`, SellerCity: `Tokyo`, - Date: `2008-06-08T00:00:00`, + Date: `06/08/2008`, Value: 24.8, NumberOfUnits: 363 }), @@ -1204,7 +1204,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 43.6, SellerName: `Harry Tyler`, SellerCity: `New York`, - Date: `2008-06-08T00:00:00`, + Date: `06/08/2008`, Value: 59, NumberOfUnits: 479 }), @@ -1214,7 +1214,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 56.4, SellerName: `Kathe Pettel`, SellerCity: `Sofia`, - Date: `2008-06-11T00:00:00`, + Date: `06/11/2008`, Value: 87.6, NumberOfUnits: 404 }), @@ -1224,7 +1224,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 81.8, SellerName: `Glenn Landeros`, SellerCity: `London`, - Date: `2008-06-18T00:00:00`, + Date: `06/18/2008`, Value: 80.4, NumberOfUnits: 478 }), @@ -1234,7 +1234,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 90.2, SellerName: `Benjamin Meekins`, SellerCity: `Sofia`, - Date: `2008-06-19T00:00:00`, + Date: `06/19/2008`, Value: 2.4, NumberOfUnits: 285 }), @@ -1244,7 +1244,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 99.4, SellerName: `Kathe Pettel`, SellerCity: `Sofia`, - Date: `2008-06-22T00:00:00`, + Date: `06/22/2008`, Value: 82.6, NumberOfUnits: 15 }), @@ -1254,7 +1254,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 30.8, SellerName: `Brandon Mckim`, SellerCity: `Berlin`, - Date: `2008-06-26T00:00:00`, + Date: `06/26/2008`, Value: 77.8, NumberOfUnits: 245 }), @@ -1264,7 +1264,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 99.4, SellerName: `Nicholas Carmona`, SellerCity: `Mellvile`, - Date: `2008-07-01T00:00:00`, + Date: `07/01/2008`, Value: 8.2, NumberOfUnits: 376 }), @@ -1274,7 +1274,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 73.4, SellerName: `Claudia Kobayashi`, SellerCity: `New York`, - Date: `2008-07-02T00:00:00`, + Date: `07/02/2008`, Value: 48.6, NumberOfUnits: 40 }), @@ -1284,7 +1284,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 43.6, SellerName: `Larry Lieb`, SellerCity: `London`, - Date: `2008-07-10T00:00:00`, + Date: `07/10/2008`, Value: 38, NumberOfUnits: 112 }), @@ -1294,7 +1294,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 16.4, SellerName: `Antonio Charbonneau`, SellerCity: `New York`, - Date: `2008-07-15T00:00:00`, + Date: `07/15/2008`, Value: 9.8, NumberOfUnits: 224 }), @@ -1304,7 +1304,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 71.4, SellerName: `Stanley Brooker`, SellerCity: `Tokyo`, - Date: `2008-07-16T00:00:00`, + Date: `07/16/2008`, Value: 66.4, NumberOfUnits: 145 }), @@ -1314,7 +1314,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 94.6, SellerName: `Stanley Brooker`, SellerCity: `Mellvile`, - Date: `2008-07-21T00:00:00`, + Date: `07/21/2008`, Value: 46.6, NumberOfUnits: 272 }), @@ -1324,7 +1324,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 50.8, SellerName: `Claudia Kobayashi`, SellerCity: `London`, - Date: `2008-07-27T00:00:00`, + Date: `07/27/2008`, Value: 90.2, NumberOfUnits: 278 }), @@ -1334,7 +1334,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 12.8, SellerName: `Harry Tyler`, SellerCity: `Seattle`, - Date: `2008-07-27T00:00:00`, + Date: `07/27/2008`, Value: 89.2, NumberOfUnits: 253 }), @@ -1344,7 +1344,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 35.8, SellerName: `Nicholas Carmona`, SellerCity: `New York`, - Date: `2008-08-01T00:00:00`, + Date: `08/01/2008`, Value: 28.4, NumberOfUnits: 255 }), @@ -1354,7 +1354,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 17.2, SellerName: `David Haley`, SellerCity: `Seattle`, - Date: `2008-08-02T00:00:00`, + Date: `08/02/2008`, Value: 0.6, NumberOfUnits: 46 }), @@ -1364,7 +1364,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 22.2, SellerName: `Benjamin Dupree`, SellerCity: `Tokyo`, - Date: `2008-08-08T00:00:00`, + Date: `08/08/2008`, Value: 58.6, NumberOfUnits: 279 }), @@ -1374,7 +1374,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 63, SellerName: `Russell Shorter`, SellerCity: `Sofia`, - Date: `2008-08-08T00:00:00`, + Date: `08/08/2008`, Value: 91.8, NumberOfUnits: 89 }), @@ -1384,7 +1384,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 83.8, SellerName: `Larry Lieb`, SellerCity: `Sofia`, - Date: `2008-08-14T00:00:00`, + Date: `08/14/2008`, Value: 52.6, NumberOfUnits: 17 }), @@ -1394,7 +1394,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 14.2, SellerName: `Lydia Burson`, SellerCity: `Sofia`, - Date: `2008-08-21T00:00:00`, + Date: `08/21/2008`, Value: 54, NumberOfUnits: 470 }), @@ -1404,7 +1404,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 34.6, SellerName: `Elisa Longbottom`, SellerCity: `Mellvile`, - Date: `2008-08-25T00:00:00`, + Date: `08/25/2008`, Value: 1.8, NumberOfUnits: 195 }), @@ -1414,7 +1414,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 86.8, SellerName: `Lydia Burson`, SellerCity: `New York`, - Date: `2008-08-27T00:00:00`, + Date: `08/27/2008`, Value: 23.8, NumberOfUnits: 173 }), @@ -1424,7 +1424,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 42.2, SellerName: `Benjamin Dupree`, SellerCity: `New York`, - Date: `2008-09-01T00:00:00`, + Date: `09/01/2008`, Value: 51.2, NumberOfUnits: 472 }), @@ -1434,7 +1434,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 25.8, SellerName: `Larry Lieb`, SellerCity: `Seattle`, - Date: `2008-09-06T00:00:00`, + Date: `09/06/2008`, Value: 88.4, NumberOfUnits: 148 }), @@ -1444,7 +1444,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 23.2, SellerName: `Walter Pang`, SellerCity: `Mellvile`, - Date: `2008-09-06T00:00:00`, + Date: `09/06/2008`, Value: 94.6, NumberOfUnits: 314 }), @@ -1454,7 +1454,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 83.8, SellerName: `Nicholas Carmona`, SellerCity: `Seattle`, - Date: `2008-09-07T00:00:00`, + Date: `09/07/2008`, Value: 66.8, NumberOfUnits: 431 }), @@ -1464,7 +1464,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 84.4, SellerName: `Walter Pang`, SellerCity: `Mellvile`, - Date: `2008-09-07T00:00:00`, + Date: `09/07/2008`, Value: 27.6, NumberOfUnits: 347 }), @@ -1474,7 +1474,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 7.4, SellerName: `Harry Tyler`, SellerCity: `Berlin`, - Date: `2008-09-11T00:00:00`, + Date: `09/11/2008`, Value: 2.8, NumberOfUnits: 27 }), @@ -1484,7 +1484,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 9.6, SellerName: `Elisa Longbottom`, SellerCity: `Berlin`, - Date: `2008-09-12T00:00:00`, + Date: `09/12/2008`, Value: 12, NumberOfUnits: 5 }), @@ -1494,7 +1494,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 50.8, SellerName: `Larry Lieb`, SellerCity: `Mellvile`, - Date: `2008-09-19T00:00:00`, + Date: `09/19/2008`, Value: 16.6, NumberOfUnits: 191 }), @@ -1504,7 +1504,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 80, SellerName: `Bryan Culver`, SellerCity: `New York`, - Date: `2008-09-25T00:00:00`, + Date: `09/25/2008`, Value: 84.4, NumberOfUnits: 421 }), @@ -1514,7 +1514,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 62.2, SellerName: `Carl Costello`, SellerCity: `Seattle`, - Date: `2008-10-03T00:00:00`, + Date: `10/03/2008`, Value: 29, NumberOfUnits: 297 }), @@ -1524,7 +1524,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 96.2, SellerName: `Glenn Landeros`, SellerCity: `New York`, - Date: `2008-10-04T00:00:00`, + Date: `10/04/2008`, Value: 15.8, NumberOfUnits: 128 }), @@ -1534,7 +1534,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 47, SellerName: `Howard Sprouse`, SellerCity: `Mellvile`, - Date: `2008-10-13T00:00:00`, + Date: `10/13/2008`, Value: 37.4, NumberOfUnits: 210 }), @@ -1544,7 +1544,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 35.8, SellerName: `Russell Shorter`, SellerCity: `London`, - Date: `2008-10-14T00:00:00`, + Date: `10/14/2008`, Value: 27, NumberOfUnits: 315 }), @@ -1554,7 +1554,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 79, SellerName: `Benjamin Meekins`, SellerCity: `New York`, - Date: `2008-10-19T00:00:00`, + Date: `10/19/2008`, Value: 69.8, NumberOfUnits: 489 }), @@ -1564,7 +1564,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 84.4, SellerName: `Walter Pang`, SellerCity: `Mellvile`, - Date: `2008-10-21T00:00:00`, + Date: `10/21/2008`, Value: 61.4, NumberOfUnits: 47 }), @@ -1574,7 +1574,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 25.6, SellerName: `John Smith`, SellerCity: `Mellvile`, - Date: `2008-10-22T00:00:00`, + Date: `10/22/2008`, Value: 69.4, NumberOfUnits: 92 }), @@ -1584,7 +1584,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 24, SellerName: `Alfredo Fetuchini`, SellerCity: `Mellvile`, - Date: `2008-11-01T00:00:00`, + Date: `11/01/2008`, Value: 81.2, NumberOfUnits: 30 }), @@ -1594,7 +1594,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 53.6, SellerName: `Stanley Brooker`, SellerCity: `Berlin`, - Date: `2008-11-01T00:00:00`, + Date: `11/01/2008`, Value: 15, NumberOfUnits: 132 }), @@ -1604,7 +1604,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 68.2, SellerName: `Bryan Culver`, SellerCity: `London`, - Date: `2008-11-10T00:00:00`, + Date: `11/10/2008`, Value: 6.2, NumberOfUnits: 368 }), @@ -1614,7 +1614,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 60, SellerName: `Kathe Pettel`, SellerCity: `New York`, - Date: `2008-11-11T00:00:00`, + Date: `11/11/2008`, Value: 39.2, NumberOfUnits: 482 }), @@ -1624,7 +1624,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 5.8, SellerName: `Antonio Charbonneau`, SellerCity: `Mellvile`, - Date: `2008-11-11T00:00:00`, + Date: `11/11/2008`, Value: 48.8, NumberOfUnits: 22 }), @@ -1634,7 +1634,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 96, SellerName: `Claudia Kobayashi`, SellerCity: `London`, - Date: `2008-11-20T00:00:00`, + Date: `11/20/2008`, Value: 87.2, NumberOfUnits: 159 }), @@ -1644,7 +1644,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 59.2, SellerName: `Alfredo Fetuchini`, SellerCity: `Berlin`, - Date: `2008-11-25T00:00:00`, + Date: `11/25/2008`, Value: 88.6, NumberOfUnits: 52 }), @@ -1654,7 +1654,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 94, SellerName: `Harry Tyler`, SellerCity: `Tokyo`, - Date: `2009-01-05T00:00:00`, + Date: `01/05/2009`, Value: 79.8, NumberOfUnits: 194 }), @@ -1664,7 +1664,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 12.8, SellerName: `David Haley`, SellerCity: `Berlin`, - Date: `2009-01-08T00:00:00`, + Date: `01/08/2009`, Value: 43, NumberOfUnits: 100 }), @@ -1674,7 +1674,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 38, SellerName: `Benjamin Meekins`, SellerCity: `Berlin`, - Date: `2009-01-10T00:00:00`, + Date: `01/10/2009`, Value: 48.4, NumberOfUnits: 252 }), @@ -1684,7 +1684,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 79.4, SellerName: `Kathe Pettel`, SellerCity: `Tokyo`, - Date: `2009-01-13T00:00:00`, + Date: `01/13/2009`, Value: 68.6, NumberOfUnits: 116 }), @@ -1694,7 +1694,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 91, SellerName: `Elisa Longbottom`, SellerCity: `London`, - Date: `2009-01-14T00:00:00`, + Date: `01/14/2009`, Value: 27.6, NumberOfUnits: 259 }), @@ -1704,7 +1704,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 100, SellerName: `Glenn Landeros`, SellerCity: `London`, - Date: `2009-01-19T00:00:00`, + Date: `01/19/2009`, Value: 56.8, NumberOfUnits: 217 }), @@ -1714,7 +1714,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 43.4, SellerName: `Bryan Culver`, SellerCity: `Seattle`, - Date: `2009-01-22T00:00:00`, + Date: `01/22/2009`, Value: 36.6, NumberOfUnits: 48 }), @@ -1724,7 +1724,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 0.8, SellerName: `Stanley Brooker`, SellerCity: `New York`, - Date: `2009-02-02T00:00:00`, + Date: `02/02/2009`, Value: 71.4, NumberOfUnits: 445 }), @@ -1734,7 +1734,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 60.6, SellerName: `Kathe Pettel`, SellerCity: `Mellvile`, - Date: `2009-02-03T00:00:00`, + Date: `02/03/2009`, Value: 44.6, NumberOfUnits: 90 }), @@ -1744,7 +1744,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 13.8, SellerName: `Harry Tyler`, SellerCity: `Sofia`, - Date: `2009-02-07T00:00:00`, + Date: `02/07/2009`, Value: 36.2, NumberOfUnits: 453 }), @@ -1754,7 +1754,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 44.2, SellerName: `Harry Tyler`, SellerCity: `Mellvile`, - Date: `2009-02-07T00:00:00`, + Date: `02/07/2009`, Value: 85.6, NumberOfUnits: 450 }), @@ -1764,7 +1764,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 94.4, SellerName: `Lydia Burson`, SellerCity: `Sofia`, - Date: `2009-02-07T00:00:00`, + Date: `02/07/2009`, Value: 48.2, NumberOfUnits: 152 }), @@ -1774,7 +1774,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 8.8, SellerName: `Harry Tyler`, SellerCity: `Berlin`, - Date: `2009-02-16T00:00:00`, + Date: `02/16/2009`, Value: 46.6, NumberOfUnits: 119 }), @@ -1784,7 +1784,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 79.2, SellerName: `Kathe Pettel`, SellerCity: `Tokyo`, - Date: `2009-02-16T00:00:00`, + Date: `02/16/2009`, Value: 29.2, NumberOfUnits: 463 }), @@ -1794,7 +1794,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 18.6, SellerName: `Howard Sprouse`, SellerCity: `Tokyo`, - Date: `2009-02-17T00:00:00`, + Date: `02/17/2009`, Value: 19.8, NumberOfUnits: 150 }), @@ -1804,7 +1804,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 28, SellerName: `Walter Pang`, SellerCity: `Berlin`, - Date: `2009-02-19T00:00:00`, + Date: `02/19/2009`, Value: 17.6, NumberOfUnits: 210 }), @@ -1814,7 +1814,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 67.2, SellerName: `Kathe Pettel`, SellerCity: `Tokyo`, - Date: `2009-02-20T00:00:00`, + Date: `02/20/2009`, Value: 36.4, NumberOfUnits: 150 }), @@ -1824,7 +1824,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 36, SellerName: `Benjamin Meekins`, SellerCity: `London`, - Date: `2009-02-21T00:00:00`, + Date: `02/21/2009`, Value: 74, NumberOfUnits: 97 }), @@ -1834,7 +1834,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 34.2, SellerName: `Stanley Brooker`, SellerCity: `Berlin`, - Date: `2009-02-22T00:00:00`, + Date: `02/22/2009`, Value: 86.4, NumberOfUnits: 256 }), @@ -1844,7 +1844,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 66.4, SellerName: `Russell Shorter`, SellerCity: `London`, - Date: `2009-02-24T00:00:00`, + Date: `02/24/2009`, Value: 53, NumberOfUnits: 172 }), @@ -1854,7 +1854,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 15, SellerName: `Monica Freitag`, SellerCity: `Mellvile`, - Date: `2009-02-24T00:00:00`, + Date: `02/24/2009`, Value: 5.2, NumberOfUnits: 489 }), @@ -1864,7 +1864,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 52, SellerName: `Claudia Kobayashi`, SellerCity: `Sofia`, - Date: `2009-02-27T00:00:00`, + Date: `02/27/2009`, Value: 9.2, NumberOfUnits: 222 }), @@ -1874,7 +1874,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 98.4, SellerName: `Nicholas Carmona`, SellerCity: `Berlin`, - Date: `2009-03-03T00:00:00`, + Date: `03/03/2009`, Value: 81.4, NumberOfUnits: 300 }), @@ -1884,7 +1884,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 72.8, SellerName: `Harry Tyler`, SellerCity: `London`, - Date: `2009-03-03T00:00:00`, + Date: `03/03/2009`, Value: 1.4, NumberOfUnits: 270 }), @@ -1894,7 +1894,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 16.4, SellerName: `Claudia Kobayashi`, SellerCity: `London`, - Date: `2009-03-07T00:00:00`, + Date: `03/07/2009`, Value: 81.4, NumberOfUnits: 263 }), @@ -1904,7 +1904,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 93.6, SellerName: `Elisa Longbottom`, SellerCity: `Mellvile`, - Date: `2009-03-10T00:00:00`, + Date: `03/10/2009`, Value: 22.8, NumberOfUnits: 28 }), @@ -1914,7 +1914,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 42.2, SellerName: `Howard Sprouse`, SellerCity: `London`, - Date: `2009-03-15T00:00:00`, + Date: `03/15/2009`, Value: 20.4, NumberOfUnits: 237 }), @@ -1924,7 +1924,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 55, SellerName: `Claudia Kobayashi`, SellerCity: `Tokyo`, - Date: `2009-03-16T00:00:00`, + Date: `03/16/2009`, Value: 64, NumberOfUnits: 171 }), @@ -1934,7 +1934,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 97.4, SellerName: `Kathe Pettel`, SellerCity: `New York`, - Date: `2009-03-27T00:00:00`, + Date: `03/27/2009`, Value: 24, NumberOfUnits: 251 }), @@ -1944,7 +1944,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 51, SellerName: `Antonio Charbonneau`, SellerCity: `London`, - Date: `2009-04-01T00:00:00`, + Date: `04/01/2009`, Value: 32.4, NumberOfUnits: 275 }), @@ -1954,7 +1954,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 4.8, SellerName: `Brandon Mckim`, SellerCity: `London`, - Date: `2009-04-06T00:00:00`, + Date: `04/06/2009`, Value: 42, NumberOfUnits: 311 }), @@ -1964,7 +1964,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 71, SellerName: `Monica Freitag`, SellerCity: `New York`, - Date: `2009-04-07T00:00:00`, + Date: `04/07/2009`, Value: 82.8, NumberOfUnits: 217 }), @@ -1974,7 +1974,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 96.8, SellerName: `Claudia Kobayashi`, SellerCity: `London`, - Date: `2009-04-09T00:00:00`, + Date: `04/09/2009`, Value: 62.2, NumberOfUnits: 360 }), @@ -1984,7 +1984,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 83.6, SellerName: `Howard Sprouse`, SellerCity: `Berlin`, - Date: `2009-04-12T00:00:00`, + Date: `04/12/2009`, Value: 51.6, NumberOfUnits: 35 }), @@ -1994,7 +1994,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 96.4, SellerName: `Nicholas Carmona`, SellerCity: `New York`, - Date: `2009-04-15T00:00:00`, + Date: `04/15/2009`, Value: 81, NumberOfUnits: 294 }), @@ -2004,7 +2004,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 70.8, SellerName: `Howard Sprouse`, SellerCity: `Seattle`, - Date: `2009-04-16T00:00:00`, + Date: `04/16/2009`, Value: 36, NumberOfUnits: 436 }), @@ -2014,7 +2014,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 94.6, SellerName: `Kathe Pettel`, SellerCity: `London`, - Date: `2009-04-20T00:00:00`, + Date: `04/20/2009`, Value: 82.6, NumberOfUnits: 78 }), @@ -2024,7 +2024,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 29.6, SellerName: `David Haley`, SellerCity: `Tokyo`, - Date: `2009-04-22T00:00:00`, + Date: `04/22/2009`, Value: 94, NumberOfUnits: 301 }), @@ -2034,7 +2034,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 70.6, SellerName: `Mark Slater`, SellerCity: `New York`, - Date: `2009-05-02T00:00:00`, + Date: `05/02/2009`, Value: 92.6, NumberOfUnits: 24 }), @@ -2044,7 +2044,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 71.8, SellerName: `Howard Sprouse`, SellerCity: `Seattle`, - Date: `2009-05-04T00:00:00`, + Date: `05/04/2009`, Value: 19.4, NumberOfUnits: 332 }), @@ -2054,7 +2054,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 14.6, SellerName: `Mark Slater`, SellerCity: `Berlin`, - Date: `2009-05-11T00:00:00`, + Date: `05/11/2009`, Value: 56.4, NumberOfUnits: 307 }), @@ -2064,7 +2064,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 36.8, SellerName: `Harold Garvin`, SellerCity: `Seattle`, - Date: `2009-05-11T00:00:00`, + Date: `05/11/2009`, Value: 34.4, NumberOfUnits: 375 }), @@ -2074,7 +2074,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 62.8, SellerName: `Benjamin Dupree`, SellerCity: `Mellvile`, - Date: `2009-05-12T00:00:00`, + Date: `05/12/2009`, Value: 2, NumberOfUnits: 499 }), @@ -2084,7 +2084,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 13.8, SellerName: `Russell Shorter`, SellerCity: `London`, - Date: `2009-05-21T00:00:00`, + Date: `05/21/2009`, Value: 42.6, NumberOfUnits: 337 }), @@ -2094,7 +2094,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 46.2, SellerName: `Larry Lieb`, SellerCity: `London`, - Date: `2009-05-24T00:00:00`, + Date: `05/24/2009`, Value: 55.4, NumberOfUnits: 284 }), @@ -2104,7 +2104,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 95.4, SellerName: `Howard Sprouse`, SellerCity: `Berlin`, - Date: `2009-05-26T00:00:00`, + Date: `05/26/2009`, Value: 94.8, NumberOfUnits: 292 }), @@ -2114,7 +2114,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 78.2, SellerName: `Howard Sprouse`, SellerCity: `Sofia`, - Date: `2009-05-26T00:00:00`, + Date: `05/26/2009`, Value: 60.2, NumberOfUnits: 424 }), @@ -2124,7 +2124,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 99.4, SellerName: `Mark Slater`, SellerCity: `Mellvile`, - Date: `2009-06-05T00:00:00`, + Date: `06/05/2009`, Value: 29, NumberOfUnits: 271 }), @@ -2134,7 +2134,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 87, SellerName: `Howard Sprouse`, SellerCity: `Mellvile`, - Date: `2009-06-10T00:00:00`, + Date: `06/10/2009`, Value: 94, NumberOfUnits: 6 }), @@ -2144,7 +2144,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 13.6, SellerName: `Elisa Longbottom`, SellerCity: `Sofia`, - Date: `2009-06-12T00:00:00`, + Date: `06/12/2009`, Value: 95, NumberOfUnits: 44 }), @@ -2154,7 +2154,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 99.8, SellerName: `Nicholas Carmona`, SellerCity: `Seattle`, - Date: `2009-06-12T00:00:00`, + Date: `06/12/2009`, Value: 74.2, NumberOfUnits: 277 }), @@ -2164,7 +2164,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 17, SellerName: `Brandon Mckim`, SellerCity: `Seattle`, - Date: `2009-06-13T00:00:00`, + Date: `06/13/2009`, Value: 65.2, NumberOfUnits: 98 }), @@ -2174,7 +2174,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 42.4, SellerName: `Elisa Longbottom`, SellerCity: `Mellvile`, - Date: `2009-06-22T00:00:00`, + Date: `06/22/2009`, Value: 68.6, NumberOfUnits: 443 }), @@ -2184,7 +2184,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 79.6, SellerName: `Benjamin Dupree`, SellerCity: `Seattle`, - Date: `2009-06-26T00:00:00`, + Date: `06/26/2009`, Value: 81.4, NumberOfUnits: 409 }), @@ -2194,7 +2194,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 26.4, SellerName: `Walter Pang`, SellerCity: `New York`, - Date: `2009-07-02T00:00:00`, + Date: `07/02/2009`, Value: 68.2, NumberOfUnits: 240 }), @@ -2204,7 +2204,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 34.2, SellerName: `Kathe Pettel`, SellerCity: `Seattle`, - Date: `2009-07-10T00:00:00`, + Date: `07/10/2009`, Value: 95.6, NumberOfUnits: 23 }), @@ -2214,7 +2214,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 29.4, SellerName: `Larry Lieb`, SellerCity: `Mellvile`, - Date: `2009-07-12T00:00:00`, + Date: `07/12/2009`, Value: 36, NumberOfUnits: 109 }), @@ -2224,7 +2224,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 86.8, SellerName: `Nicholas Carmona`, SellerCity: `Berlin`, - Date: `2009-07-13T00:00:00`, + Date: `07/13/2009`, Value: 30, NumberOfUnits: 117 }), @@ -2234,7 +2234,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 58.4, SellerName: `Mark Slater`, SellerCity: `New York`, - Date: `2009-07-15T00:00:00`, + Date: `07/15/2009`, Value: 34.4, NumberOfUnits: 336 }), @@ -2244,7 +2244,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 39.8, SellerName: `Antonio Charbonneau`, SellerCity: `Seattle`, - Date: `2009-07-18T00:00:00`, + Date: `07/18/2009`, Value: 92.4, NumberOfUnits: 372 }), @@ -2254,7 +2254,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 10.2, SellerName: `Larry Lieb`, SellerCity: `Berlin`, - Date: `2009-07-19T00:00:00`, + Date: `07/19/2009`, Value: 90.4, NumberOfUnits: 403 }), @@ -2264,7 +2264,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 17.8, SellerName: `Harry Tyler`, SellerCity: `Seattle`, - Date: `2009-07-19T00:00:00`, + Date: `07/19/2009`, Value: 66.2, NumberOfUnits: 144 }), @@ -2274,7 +2274,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 21.6, SellerName: `Lydia Burson`, SellerCity: `Seattle`, - Date: `2009-07-19T00:00:00`, + Date: `07/19/2009`, Value: 41.8, NumberOfUnits: 395 }), @@ -2284,7 +2284,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 33.6, SellerName: `Nicholas Carmona`, SellerCity: `New York`, - Date: `2009-07-20T00:00:00`, + Date: `07/20/2009`, Value: 16.6, NumberOfUnits: 236 }), @@ -2294,7 +2294,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 48.8, SellerName: `Larry Lieb`, SellerCity: `Seattle`, - Date: `2009-07-20T00:00:00`, + Date: `07/20/2009`, Value: 86.8, NumberOfUnits: 160 }), @@ -2304,7 +2304,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 81.8, SellerName: `David Haley`, SellerCity: `Sofia`, - Date: `2009-07-20T00:00:00`, + Date: `07/20/2009`, Value: 65.8, NumberOfUnits: 157 }), @@ -2314,7 +2314,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 9.8, SellerName: `Glenn Landeros`, SellerCity: `Sofia`, - Date: `2009-07-25T00:00:00`, + Date: `07/25/2009`, Value: 0.2, NumberOfUnits: 255 }), @@ -2324,7 +2324,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 88.6, SellerName: `Mark Slater`, SellerCity: `London`, - Date: `2009-08-16T00:00:00`, + Date: `08/16/2009`, Value: 43, NumberOfUnits: 284 }), @@ -2334,7 +2334,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 89.4, SellerName: `Walter Pang`, SellerCity: `Tokyo`, - Date: `2009-08-17T00:00:00`, + Date: `08/17/2009`, Value: 15.8, NumberOfUnits: 333 }), @@ -2344,7 +2344,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 24, SellerName: `Monica Freitag`, SellerCity: `Seattle`, - Date: `2009-08-17T00:00:00`, + Date: `08/17/2009`, Value: 51.6, NumberOfUnits: 48 }), @@ -2354,7 +2354,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 19.4, SellerName: `Kathe Pettel`, SellerCity: `New York`, - Date: `2009-08-18T00:00:00`, + Date: `08/18/2009`, Value: 82.6, NumberOfUnits: 399 }), @@ -2364,7 +2364,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 9.4, SellerName: `Mark Slater`, SellerCity: `Berlin`, - Date: `2009-08-24T00:00:00`, + Date: `08/24/2009`, Value: 68.6, NumberOfUnits: 413 }), @@ -2374,7 +2374,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 1.2, SellerName: `Monica Freitag`, SellerCity: `Sofia`, - Date: `2009-09-06T00:00:00`, + Date: `09/06/2009`, Value: 72, NumberOfUnits: 182 }), @@ -2384,7 +2384,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 77, SellerName: `Russell Shorter`, SellerCity: `Mellvile`, - Date: `2009-09-06T00:00:00`, + Date: `09/06/2009`, Value: 45, NumberOfUnits: 156 }), @@ -2394,7 +2394,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 80.8, SellerName: `Antonio Charbonneau`, SellerCity: `Mellvile`, - Date: `2009-09-09T00:00:00`, + Date: `09/09/2009`, Value: 92.4, NumberOfUnits: 293 }), @@ -2404,7 +2404,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 22.8, SellerName: `Benjamin Dupree`, SellerCity: `Berlin`, - Date: `2009-10-01T00:00:00`, + Date: `10/01/2009`, Value: 100, NumberOfUnits: 16 }), @@ -2414,7 +2414,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 78.2, SellerName: `Benjamin Meekins`, SellerCity: `Seattle`, - Date: `2009-10-01T00:00:00`, + Date: `10/01/2009`, Value: 16, NumberOfUnits: 106 }), @@ -2424,7 +2424,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 73, SellerName: `Glenn Landeros`, SellerCity: `Tokyo`, - Date: `2009-10-06T00:00:00`, + Date: `10/06/2009`, Value: 91.6, NumberOfUnits: 16 }), @@ -2434,7 +2434,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 22.2, SellerName: `John Smith`, SellerCity: `Tokyo`, - Date: `2009-10-07T00:00:00`, + Date: `10/07/2009`, Value: 1.8, NumberOfUnits: 187 }), @@ -2444,7 +2444,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 42.8, SellerName: `Harry Tyler`, SellerCity: `Seattle`, - Date: `2009-10-10T00:00:00`, + Date: `10/10/2009`, Value: 21.8, NumberOfUnits: 137 }), @@ -2454,7 +2454,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 46.2, SellerName: `Mark Slater`, SellerCity: `Seattle`, - Date: `2009-10-14T00:00:00`, + Date: `10/14/2009`, Value: 15, NumberOfUnits: 138 }), @@ -2464,7 +2464,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 14.4, SellerName: `Mark Slater`, SellerCity: `Seattle`, - Date: `2009-10-24T00:00:00`, + Date: `10/24/2009`, Value: 65, NumberOfUnits: 256 }), @@ -2474,7 +2474,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 40.2, SellerName: `Antonio Charbonneau`, SellerCity: `London`, - Date: `2009-10-24T00:00:00`, + Date: `10/24/2009`, Value: 11.2, NumberOfUnits: 353 }), @@ -2484,7 +2484,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 17.2, SellerName: `Lydia Burson`, SellerCity: `Tokyo`, - Date: `2009-11-01T00:00:00`, + Date: `11/01/2009`, Value: 95, NumberOfUnits: 359 }), @@ -2494,7 +2494,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 52, SellerName: `Walter Pang`, SellerCity: `Tokyo`, - Date: `2009-11-04T00:00:00`, + Date: `11/04/2009`, Value: 43.2, NumberOfUnits: 134 }), @@ -2504,7 +2504,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 91, SellerName: `Larry Lieb`, SellerCity: `Seattle`, - Date: `2009-11-09T00:00:00`, + Date: `11/09/2009`, Value: 25.2, NumberOfUnits: 263 }), @@ -2514,7 +2514,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 88.6, SellerName: `Monica Freitag`, SellerCity: `Seattle`, - Date: `2009-11-11T00:00:00`, + Date: `11/11/2009`, Value: 41, NumberOfUnits: 313 }), @@ -2524,7 +2524,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 46.6, SellerName: `Stanley Brooker`, SellerCity: `Mellvile`, - Date: `2009-11-16T00:00:00`, + Date: `11/16/2009`, Value: 20.4, NumberOfUnits: 115 }), @@ -2534,7 +2534,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 20.4, SellerName: `Claudia Kobayashi`, SellerCity: `Berlin`, - Date: `2009-11-17T00:00:00`, + Date: `11/17/2009`, Value: 33, NumberOfUnits: 414 }), @@ -2544,7 +2544,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 70.8, SellerName: `Kathe Pettel`, SellerCity: `New York`, - Date: `2009-11-21T00:00:00`, + Date: `11/21/2009`, Value: 3, NumberOfUnits: 53 }), @@ -2554,7 +2554,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 81.6, SellerName: `John Smith`, SellerCity: `New York`, - Date: `2009-11-22T00:00:00`, + Date: `11/22/2009`, Value: 86.8, NumberOfUnits: 472 }), @@ -2564,7 +2564,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 9.8, SellerName: `Harry Tyler`, SellerCity: `Mellvile`, - Date: `2009-11-23T00:00:00`, + Date: `11/23/2009`, Value: 53.6, NumberOfUnits: 199 }), @@ -2574,7 +2574,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 29.8, SellerName: `Harold Garvin`, SellerCity: `Sofia`, - Date: `2009-11-24T00:00:00`, + Date: `11/24/2009`, Value: 27.4, NumberOfUnits: 241 }), @@ -2584,7 +2584,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 33.2, SellerName: `Glenn Landeros`, SellerCity: `New York`, - Date: `2009-11-24T00:00:00`, + Date: `11/24/2009`, Value: 1.2, NumberOfUnits: 320 }), @@ -2594,7 +2594,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 65.6, SellerName: `David Haley`, SellerCity: `London`, - Date: `2010-01-02T00:00:00`, + Date: `01/02/2010`, Value: 20.6, NumberOfUnits: 299 }), @@ -2604,7 +2604,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 62.2, SellerName: `Benjamin Dupree`, SellerCity: `London`, - Date: `2010-01-08T00:00:00`, + Date: `01/08/2010`, Value: 35.4, NumberOfUnits: 366 }), @@ -2614,7 +2614,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 78.6, SellerName: `John Smith`, SellerCity: `New York`, - Date: `2010-01-10T00:00:00`, + Date: `01/10/2010`, Value: 27.8, NumberOfUnits: 290 }), @@ -2624,7 +2624,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 11.6, SellerName: `Lydia Burson`, SellerCity: `Sofia`, - Date: `2010-01-11T00:00:00`, + Date: `01/11/2010`, Value: 61.8, NumberOfUnits: 350 }), @@ -2634,7 +2634,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 33.4, SellerName: `Russell Shorter`, SellerCity: `Sofia`, - Date: `2010-01-14T00:00:00`, + Date: `01/14/2010`, Value: 33.8, NumberOfUnits: 469 }), @@ -2644,7 +2644,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 96.2, SellerName: `Nicholas Carmona`, SellerCity: `Sofia`, - Date: `2010-01-21T00:00:00`, + Date: `01/21/2010`, Value: 75.6, NumberOfUnits: 352 }), @@ -2654,7 +2654,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 92.2, SellerName: `Larry Lieb`, SellerCity: `Seattle`, - Date: `2010-01-25T00:00:00`, + Date: `01/25/2010`, Value: 38.8, NumberOfUnits: 47 }), @@ -2664,7 +2664,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 93.2, SellerName: `Russell Shorter`, SellerCity: `Tokyo`, - Date: `2010-02-02T00:00:00`, + Date: `02/02/2010`, Value: 66.4, NumberOfUnits: 153 }), @@ -2674,7 +2674,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 39, SellerName: `Antonio Charbonneau`, SellerCity: `Berlin`, - Date: `2010-02-02T00:00:00`, + Date: `02/02/2010`, Value: 28.6, NumberOfUnits: 211 }), @@ -2684,7 +2684,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 99.4, SellerName: `Russell Shorter`, SellerCity: `Sofia`, - Date: `2010-02-04T00:00:00`, + Date: `02/04/2010`, Value: 67, NumberOfUnits: 267 }), @@ -2694,7 +2694,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 94.4, SellerName: `Antonio Charbonneau`, SellerCity: `New York`, - Date: `2010-02-04T00:00:00`, + Date: `02/04/2010`, Value: 71.4, NumberOfUnits: 91 }), @@ -2704,7 +2704,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 19.8, SellerName: `Claudia Kobayashi`, SellerCity: `Tokyo`, - Date: `2010-02-05T00:00:00`, + Date: `02/05/2010`, Value: 46, NumberOfUnits: 84 }), @@ -2714,7 +2714,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 87.2, SellerName: `Howard Sprouse`, SellerCity: `Mellvile`, - Date: `2010-02-11T00:00:00`, + Date: `02/11/2010`, Value: 66.8, NumberOfUnits: 270 }), @@ -2724,7 +2724,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 76.2, SellerName: `Alfredo Fetuchini`, SellerCity: `Berlin`, - Date: `2010-02-12T00:00:00`, + Date: `02/12/2010`, Value: 87, NumberOfUnits: 496 }), @@ -2734,7 +2734,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 52, SellerName: `John Smith`, SellerCity: `Seattle`, - Date: `2010-02-16T00:00:00`, + Date: `02/16/2010`, Value: 47.4, NumberOfUnits: 24 }), @@ -2744,7 +2744,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 21.8, SellerName: `Walter Pang`, SellerCity: `Mellvile`, - Date: `2010-02-17T00:00:00`, + Date: `02/17/2010`, Value: 72.8, NumberOfUnits: 41 }), @@ -2754,7 +2754,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 15.8, SellerName: `John Smith`, SellerCity: `Mellvile`, - Date: `2010-02-22T00:00:00`, + Date: `02/22/2010`, Value: 65.6, NumberOfUnits: 365 }), @@ -2764,7 +2764,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 2.8, SellerName: `Brandon Mckim`, SellerCity: `Sofia`, - Date: `2010-03-01T00:00:00`, + Date: `03/01/2010`, Value: 68.6, NumberOfUnits: 202 }), @@ -2774,7 +2774,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 52.4, SellerName: `Howard Sprouse`, SellerCity: `Seattle`, - Date: `2010-03-01T00:00:00`, + Date: `03/01/2010`, Value: 79.4, NumberOfUnits: 225 }), @@ -2784,7 +2784,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 0.4, SellerName: `Stanley Brooker`, SellerCity: `Mellvile`, - Date: `2010-03-03T00:00:00`, + Date: `03/03/2010`, Value: 70.2, NumberOfUnits: 206 }), @@ -2794,7 +2794,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 22.4, SellerName: `Larry Lieb`, SellerCity: `Sofia`, - Date: `2010-03-11T00:00:00`, + Date: `03/11/2010`, Value: 54.8, NumberOfUnits: 158 }), @@ -2804,7 +2804,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 94.8, SellerName: `Benjamin Meekins`, SellerCity: `London`, - Date: `2010-03-14T00:00:00`, + Date: `03/14/2010`, Value: 70.4, NumberOfUnits: 169 }), @@ -2814,7 +2814,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 1.2, SellerName: `John Smith`, SellerCity: `New York`, - Date: `2010-03-15T00:00:00`, + Date: `03/15/2010`, Value: 19, NumberOfUnits: 4 }), @@ -2824,7 +2824,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 12.2, SellerName: `Monica Freitag`, SellerCity: `New York`, - Date: `2010-03-15T00:00:00`, + Date: `03/15/2010`, Value: 12.8, NumberOfUnits: 232 }), @@ -2834,7 +2834,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 58.8, SellerName: `Mark Slater`, SellerCity: `Berlin`, - Date: `2010-03-16T00:00:00`, + Date: `03/16/2010`, Value: 78.8, NumberOfUnits: 421 }), @@ -2844,7 +2844,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 44, SellerName: `David Haley`, SellerCity: `Seattle`, - Date: `2010-03-25T00:00:00`, + Date: `03/25/2010`, Value: 89.6, NumberOfUnits: 260 }), @@ -2854,7 +2854,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 54.6, SellerName: `Brandon Mckim`, SellerCity: `Seattle`, - Date: `2010-04-02T00:00:00`, + Date: `04/02/2010`, Value: 92, NumberOfUnits: 194 }), @@ -2864,7 +2864,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 94.6, SellerName: `Walter Pang`, SellerCity: `Tokyo`, - Date: `2010-04-05T00:00:00`, + Date: `04/05/2010`, Value: 35.4, NumberOfUnits: 491 }), @@ -2874,7 +2874,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 11.2, SellerName: `Harold Garvin`, SellerCity: `London`, - Date: `2010-04-14T00:00:00`, + Date: `04/14/2010`, Value: 30, NumberOfUnits: 256 }), @@ -2884,7 +2884,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 18.2, SellerName: `Alfredo Fetuchini`, SellerCity: `Mellvile`, - Date: `2010-04-15T00:00:00`, + Date: `04/15/2010`, Value: 84.6, NumberOfUnits: 279 }), @@ -2894,7 +2894,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 8.4, SellerName: `Carl Costello`, SellerCity: `Berlin`, - Date: `2010-04-15T00:00:00`, + Date: `04/15/2010`, Value: 99.6, NumberOfUnits: 287 }), @@ -2904,7 +2904,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 78, SellerName: `Carl Costello`, SellerCity: `New York`, - Date: `2010-04-22T00:00:00`, + Date: `04/22/2010`, Value: 59, NumberOfUnits: 363 }), @@ -2914,7 +2914,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 55.6, SellerName: `Mark Slater`, SellerCity: `Berlin`, - Date: `2010-04-22T00:00:00`, + Date: `04/22/2010`, Value: 16.4, NumberOfUnits: 499 }), @@ -2924,7 +2924,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 39.4, SellerName: `Lydia Burson`, SellerCity: `Berlin`, - Date: `2010-04-24T00:00:00`, + Date: `04/24/2010`, Value: 0.2, NumberOfUnits: 109 }), @@ -2934,7 +2934,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 7.8, SellerName: `Benjamin Dupree`, SellerCity: `Berlin`, - Date: `2010-05-04T00:00:00`, + Date: `05/04/2010`, Value: 99.6, NumberOfUnits: 25 }), @@ -2944,7 +2944,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 62.4, SellerName: `Alfredo Fetuchini`, SellerCity: `Mellvile`, - Date: `2010-05-05T00:00:00`, + Date: `05/05/2010`, Value: 48, NumberOfUnits: 64 }), @@ -2954,7 +2954,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 38.8, SellerName: `Howard Sprouse`, SellerCity: `London`, - Date: `2010-05-06T00:00:00`, + Date: `05/06/2010`, Value: 57.8, NumberOfUnits: 256 }), @@ -2964,7 +2964,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 17.8, SellerName: `Benjamin Meekins`, SellerCity: `Mellvile`, - Date: `2010-05-07T00:00:00`, + Date: `05/07/2010`, Value: 15.4, NumberOfUnits: 50 }), @@ -2974,7 +2974,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 57.8, SellerName: `Bryan Culver`, SellerCity: `Berlin`, - Date: `2010-05-07T00:00:00`, + Date: `05/07/2010`, Value: 58.6, NumberOfUnits: 437 }), @@ -2984,7 +2984,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 21.4, SellerName: `Bryan Culver`, SellerCity: `Sofia`, - Date: `2010-05-19T00:00:00`, + Date: `05/19/2010`, Value: 41, NumberOfUnits: 253 }), @@ -2994,7 +2994,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 10.2, SellerName: `Monica Freitag`, SellerCity: `London`, - Date: `2010-05-22T00:00:00`, + Date: `05/22/2010`, Value: 24, NumberOfUnits: 312 }), @@ -3004,7 +3004,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 87.8, SellerName: `Claudia Kobayashi`, SellerCity: `London`, - Date: `2010-05-24T00:00:00`, + Date: `05/24/2010`, Value: 12.6, NumberOfUnits: 82 }), @@ -3014,7 +3014,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 42.6, SellerName: `Harold Garvin`, SellerCity: `New York`, - Date: `2010-06-01T00:00:00`, + Date: `06/01/2010`, Value: 32.2, NumberOfUnits: 467 }), @@ -3024,7 +3024,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 79.8, SellerName: `Alfredo Fetuchini`, SellerCity: `Sofia`, - Date: `2010-06-05T00:00:00`, + Date: `06/05/2010`, Value: 69.6, NumberOfUnits: 74 }), @@ -3034,7 +3034,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 1.8, SellerName: `Nicholas Carmona`, SellerCity: `Seattle`, - Date: `2010-06-10T00:00:00`, + Date: `06/10/2010`, Value: 14.8, NumberOfUnits: 81 }), @@ -3044,7 +3044,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 15, SellerName: `Kathe Pettel`, SellerCity: `Berlin`, - Date: `2010-06-25T00:00:00`, + Date: `06/25/2010`, Value: 18.8, NumberOfUnits: 88 }), @@ -3054,7 +3054,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 43.4, SellerName: `Antonio Charbonneau`, SellerCity: `Mellvile`, - Date: `2010-06-26T00:00:00`, + Date: `06/26/2010`, Value: 44.4, NumberOfUnits: 126 }), @@ -3064,7 +3064,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 16.2, SellerName: `Elisa Longbottom`, SellerCity: `Sofia`, - Date: `2010-06-27T00:00:00`, + Date: `06/27/2010`, Value: 77.8, NumberOfUnits: 112 }), @@ -3074,7 +3074,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 59.2, SellerName: `Antonio Charbonneau`, SellerCity: `Sofia`, - Date: `2010-06-27T00:00:00`, + Date: `06/27/2010`, Value: 15.4, NumberOfUnits: 47 }), @@ -3084,7 +3084,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 40, SellerName: `Claudia Kobayashi`, SellerCity: `Sofia`, - Date: `2010-07-05T00:00:00`, + Date: `07/05/2010`, Value: 29.4, NumberOfUnits: 218 }), @@ -3094,7 +3094,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 27, SellerName: `Nicholas Carmona`, SellerCity: `New York`, - Date: `2010-07-05T00:00:00`, + Date: `07/05/2010`, Value: 30, NumberOfUnits: 34 }), @@ -3104,7 +3104,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 14.4, SellerName: `Bryan Culver`, SellerCity: `Sofia`, - Date: `2010-07-13T00:00:00`, + Date: `07/13/2010`, Value: 83.4, NumberOfUnits: 492 }), @@ -3114,7 +3114,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 53.4, SellerName: `Harry Tyler`, SellerCity: `Sofia`, - Date: `2010-07-16T00:00:00`, + Date: `07/16/2010`, Value: 41.6, NumberOfUnits: 464 }), @@ -3124,7 +3124,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 21.4, SellerName: `Harry Tyler`, SellerCity: `Seattle`, - Date: `2010-07-17T00:00:00`, + Date: `07/17/2010`, Value: 83.4, NumberOfUnits: 118 }), @@ -3134,7 +3134,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 24, SellerName: `Nicholas Carmona`, SellerCity: `Seattle`, - Date: `2010-07-18T00:00:00`, + Date: `07/18/2010`, Value: 94.2, NumberOfUnits: 442 }), @@ -3144,7 +3144,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 37.6, SellerName: `Benjamin Meekins`, SellerCity: `London`, - Date: `2010-07-23T00:00:00`, + Date: `07/23/2010`, Value: 59.6, NumberOfUnits: 248 }), @@ -3154,7 +3154,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 60.8, SellerName: `Lydia Burson`, SellerCity: `London`, - Date: `2010-07-23T00:00:00`, + Date: `07/23/2010`, Value: 83.6, NumberOfUnits: 472 }), @@ -3164,7 +3164,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 78, SellerName: `Alfredo Fetuchini`, SellerCity: `New York`, - Date: `2010-07-24T00:00:00`, + Date: `07/24/2010`, Value: 84, NumberOfUnits: 140 }), @@ -3174,7 +3174,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 47.6, SellerName: `Lydia Burson`, SellerCity: `Tokyo`, - Date: `2010-07-26T00:00:00`, + Date: `07/26/2010`, Value: 86.6, NumberOfUnits: 118 }), @@ -3184,7 +3184,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 58.2, SellerName: `Harry Tyler`, SellerCity: `Sofia`, - Date: `2010-07-27T00:00:00`, + Date: `07/27/2010`, Value: 64, NumberOfUnits: 176 }), @@ -3194,7 +3194,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 98.4, SellerName: `Russell Shorter`, SellerCity: `Mellvile`, - Date: `2010-08-01T00:00:00`, + Date: `08/01/2010`, Value: 23.4, NumberOfUnits: 77 }), @@ -3204,7 +3204,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 3, SellerName: `Glenn Landeros`, SellerCity: `Sofia`, - Date: `2010-08-08T00:00:00`, + Date: `08/08/2010`, Value: 74.4, NumberOfUnits: 105 }), @@ -3214,7 +3214,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 98.2, SellerName: `Alfredo Fetuchini`, SellerCity: `Tokyo`, - Date: `2010-08-21T00:00:00`, + Date: `08/21/2010`, Value: 60.8, NumberOfUnits: 160 }), @@ -3224,7 +3224,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 79, SellerName: `Stanley Brooker`, SellerCity: `Seattle`, - Date: `2010-08-26T00:00:00`, + Date: `08/26/2010`, Value: 67, NumberOfUnits: 186 }), @@ -3234,7 +3234,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 17.8, SellerName: `Harold Garvin`, SellerCity: `Seattle`, - Date: `2010-09-04T00:00:00`, + Date: `09/04/2010`, Value: 29, NumberOfUnits: 380 }), @@ -3244,7 +3244,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 38.8, SellerName: `John Smith`, SellerCity: `Tokyo`, - Date: `2010-09-11T00:00:00`, + Date: `09/11/2010`, Value: 41.6, NumberOfUnits: 470 }), @@ -3254,7 +3254,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 75.2, SellerName: `Benjamin Dupree`, SellerCity: `Mellvile`, - Date: `2010-09-13T00:00:00`, + Date: `09/13/2010`, Value: 42.8, NumberOfUnits: 348 }), @@ -3264,7 +3264,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 55.4, SellerName: `Carl Costello`, SellerCity: `London`, - Date: `2010-09-14T00:00:00`, + Date: `09/14/2010`, Value: 29.4, NumberOfUnits: 151 }), @@ -3274,7 +3274,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 51.4, SellerName: `Kathe Pettel`, SellerCity: `New York`, - Date: `2010-09-24T00:00:00`, + Date: `09/24/2010`, Value: 86.6, NumberOfUnits: 7 }), @@ -3284,7 +3284,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 31.4, SellerName: `Monica Freitag`, SellerCity: `New York`, - Date: `2010-10-07T00:00:00`, + Date: `10/07/2010`, Value: 39, NumberOfUnits: 123 }), @@ -3294,7 +3294,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 80, SellerName: `Mark Slater`, SellerCity: `Seattle`, - Date: `2010-10-08T00:00:00`, + Date: `10/08/2010`, Value: 8.8, NumberOfUnits: 374 }), @@ -3304,7 +3304,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 94.8, SellerName: `Kathe Pettel`, SellerCity: `Mellvile`, - Date: `2010-10-11T00:00:00`, + Date: `10/11/2010`, Value: 96.8, NumberOfUnits: 178 }), @@ -3314,7 +3314,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 42, SellerName: `Bryan Culver`, SellerCity: `Sofia`, - Date: `2010-10-22T00:00:00`, + Date: `10/22/2010`, Value: 31.4, NumberOfUnits: 354 }), @@ -3324,7 +3324,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 46.6, SellerName: `Elisa Longbottom`, SellerCity: `New York`, - Date: `2010-10-25T00:00:00`, + Date: `10/25/2010`, Value: 85.6, NumberOfUnits: 459 }), @@ -3334,7 +3334,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 27.2, SellerName: `Mark Slater`, SellerCity: `London`, - Date: `2010-11-02T00:00:00`, + Date: `11/02/2010`, Value: 46.4, NumberOfUnits: 78 }), @@ -3344,7 +3344,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 30.2, SellerName: `Walter Pang`, SellerCity: `Berlin`, - Date: `2010-11-03T00:00:00`, + Date: `11/03/2010`, Value: 52.2, NumberOfUnits: 417 }), @@ -3354,7 +3354,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 82.2, SellerName: `Walter Pang`, SellerCity: `Seattle`, - Date: `2010-11-12T00:00:00`, + Date: `11/12/2010`, Value: 15.4, NumberOfUnits: 208 }), @@ -3364,7 +3364,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 13.2, SellerName: `Harold Garvin`, SellerCity: `Seattle`, - Date: `2010-11-19T00:00:00`, + Date: `11/19/2010`, Value: 48.6, NumberOfUnits: 359 }), @@ -3374,7 +3374,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 8.8, SellerName: `Russell Shorter`, SellerCity: `New York`, - Date: `2010-11-25T00:00:00`, + Date: `11/25/2010`, Value: 24.6, NumberOfUnits: 392 }), @@ -3384,7 +3384,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 78.4, SellerName: `John Smith`, SellerCity: `London`, - Date: `2011-01-01T00:00:00`, + Date: `01/01/2011`, Value: 37.6, NumberOfUnits: 241 }), @@ -3394,7 +3394,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 50.6, SellerName: `Claudia Kobayashi`, SellerCity: `Seattle`, - Date: `2011-01-04T00:00:00`, + Date: `01/04/2011`, Value: 27.2, NumberOfUnits: 62 }), @@ -3404,7 +3404,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 6.4, SellerName: `Elisa Longbottom`, SellerCity: `Tokyo`, - Date: `2011-01-06T00:00:00`, + Date: `01/06/2011`, Value: 89.6, NumberOfUnits: 485 }), @@ -3414,7 +3414,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 47.4, SellerName: `Bryan Culver`, SellerCity: `Sofia`, - Date: `2011-01-14T00:00:00`, + Date: `01/14/2011`, Value: 5, NumberOfUnits: 470 }), @@ -3424,7 +3424,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 6.2, SellerName: `Harry Tyler`, SellerCity: `Seattle`, - Date: `2011-01-23T00:00:00`, + Date: `01/23/2011`, Value: 78.6, NumberOfUnits: 197 }), @@ -3434,7 +3434,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 57.6, SellerName: `Larry Lieb`, SellerCity: `Berlin`, - Date: `2011-01-26T00:00:00`, + Date: `01/26/2011`, Value: 59.8, NumberOfUnits: 353 }), @@ -3444,7 +3444,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 37.6, SellerName: `Benjamin Meekins`, SellerCity: `Mellvile`, - Date: `2011-02-01T00:00:00`, + Date: `02/01/2011`, Value: 39.6, NumberOfUnits: 338 }), @@ -3454,7 +3454,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 21, SellerName: `Claudia Kobayashi`, SellerCity: `New York`, - Date: `2011-02-08T00:00:00`, + Date: `02/08/2011`, Value: 93, NumberOfUnits: 17 }), @@ -3464,7 +3464,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 11.8, SellerName: `Antonio Charbonneau`, SellerCity: `Berlin`, - Date: `2011-02-12T00:00:00`, + Date: `02/12/2011`, Value: 61.4, NumberOfUnits: 429 }), @@ -3474,7 +3474,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 65, SellerName: `Alfredo Fetuchini`, SellerCity: `Tokyo`, - Date: `2011-02-14T00:00:00`, + Date: `02/14/2011`, Value: 24.4, NumberOfUnits: 385 }), @@ -3484,7 +3484,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 20, SellerName: `Claudia Kobayashi`, SellerCity: `New York`, - Date: `2011-02-20T00:00:00`, + Date: `02/20/2011`, Value: 35.4, NumberOfUnits: 166 }), @@ -3494,7 +3494,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 3.2, SellerName: `Lydia Burson`, SellerCity: `Seattle`, - Date: `2011-02-20T00:00:00`, + Date: `02/20/2011`, Value: 52.6, NumberOfUnits: 137 }), @@ -3504,7 +3504,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 18.2, SellerName: `Russell Shorter`, SellerCity: `New York`, - Date: `2011-02-24T00:00:00`, + Date: `02/24/2011`, Value: 8.2, NumberOfUnits: 443 }), @@ -3514,7 +3514,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 20.4, SellerName: `Carl Costello`, SellerCity: `Seattle`, - Date: `2011-02-26T00:00:00`, + Date: `02/26/2011`, Value: 87.4, NumberOfUnits: 40 }), @@ -3524,7 +3524,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 20.6, SellerName: `Glenn Landeros`, SellerCity: `London`, - Date: `2011-03-05T00:00:00`, + Date: `03/05/2011`, Value: 7.4, NumberOfUnits: 138 }), @@ -3534,7 +3534,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 23.8, SellerName: `Lydia Burson`, SellerCity: `Tokyo`, - Date: `2011-03-09T00:00:00`, + Date: `03/09/2011`, Value: 18.2, NumberOfUnits: 15 }), @@ -3544,7 +3544,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 76.4, SellerName: `Antonio Charbonneau`, SellerCity: `Mellvile`, - Date: `2011-03-09T00:00:00`, + Date: `03/09/2011`, Value: 74.6, NumberOfUnits: 469 }), @@ -3554,7 +3554,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 93.4, SellerName: `Russell Shorter`, SellerCity: `London`, - Date: `2011-03-11T00:00:00`, + Date: `03/11/2011`, Value: 89, NumberOfUnits: 426 }), @@ -3564,7 +3564,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 63, SellerName: `Benjamin Dupree`, SellerCity: `Seattle`, - Date: `2011-03-16T00:00:00`, + Date: `03/16/2011`, Value: 32.6, NumberOfUnits: 208 }), @@ -3574,7 +3574,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 58.6, SellerName: `Brandon Mckim`, SellerCity: `Seattle`, - Date: `2011-03-21T00:00:00`, + Date: `03/21/2011`, Value: 51, NumberOfUnits: 155 }), @@ -3584,7 +3584,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 82.4, SellerName: `Stanley Brooker`, SellerCity: `Seattle`, - Date: `2011-03-23T00:00:00`, + Date: `03/23/2011`, Value: 33.4, NumberOfUnits: 381 }), @@ -3594,7 +3594,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 19.2, SellerName: `Nicholas Carmona`, SellerCity: `Tokyo`, - Date: `2011-04-12T00:00:00`, + Date: `04/12/2011`, Value: 75.2, NumberOfUnits: 5 }), @@ -3604,7 +3604,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 53.6, SellerName: `Walter Pang`, SellerCity: `London`, - Date: `2011-04-12T00:00:00`, + Date: `04/12/2011`, Value: 14.6, NumberOfUnits: 221 }), @@ -3614,7 +3614,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 97.4, SellerName: `Howard Sprouse`, SellerCity: `Sofia`, - Date: `2011-04-14T00:00:00`, + Date: `04/14/2011`, Value: 84.8, NumberOfUnits: 39 }), @@ -3624,7 +3624,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 74.2, SellerName: `Mark Slater`, SellerCity: `New York`, - Date: `2011-04-16T00:00:00`, + Date: `04/16/2011`, Value: 51.4, NumberOfUnits: 468 }), @@ -3634,7 +3634,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 8.2, SellerName: `Claudia Kobayashi`, SellerCity: `Seattle`, - Date: `2011-04-17T00:00:00`, + Date: `04/17/2011`, Value: 0.8, NumberOfUnits: 44 }), @@ -3644,7 +3644,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 59.2, SellerName: `John Smith`, SellerCity: `Mellvile`, - Date: `2011-04-22T00:00:00`, + Date: `04/22/2011`, Value: 47.6, NumberOfUnits: 287 }), @@ -3654,7 +3654,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 96.8, SellerName: `Russell Shorter`, SellerCity: `Sofia`, - Date: `2011-04-24T00:00:00`, + Date: `04/24/2011`, Value: 78.6, NumberOfUnits: 463 }), @@ -3664,7 +3664,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 76.8, SellerName: `Walter Pang`, SellerCity: `Seattle`, - Date: `2011-04-24T00:00:00`, + Date: `04/24/2011`, Value: 63, NumberOfUnits: 335 }), @@ -3674,7 +3674,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 73.4, SellerName: `Walter Pang`, SellerCity: `Berlin`, - Date: `2011-04-24T00:00:00`, + Date: `04/24/2011`, Value: 30.6, NumberOfUnits: 211 }), @@ -3684,7 +3684,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 66.4, SellerName: `Benjamin Dupree`, SellerCity: `Seattle`, - Date: `2011-05-03T00:00:00`, + Date: `05/03/2011`, Value: 87.4, NumberOfUnits: 291 }), @@ -3694,7 +3694,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 37, SellerName: `John Smith`, SellerCity: `Sofia`, - Date: `2011-05-05T00:00:00`, + Date: `05/05/2011`, Value: 40.2, NumberOfUnits: 1 }), @@ -3704,7 +3704,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 21.4, SellerName: `Alfredo Fetuchini`, SellerCity: `Seattle`, - Date: `2011-05-06T00:00:00`, + Date: `05/06/2011`, Value: 46, NumberOfUnits: 120 }), @@ -3714,7 +3714,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 20, SellerName: `Benjamin Dupree`, SellerCity: `Berlin`, - Date: `2011-05-06T00:00:00`, + Date: `05/06/2011`, Value: 72.6, NumberOfUnits: 382 }), @@ -3724,7 +3724,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 16.6, SellerName: `Harry Tyler`, SellerCity: `Seattle`, - Date: `2011-05-07T00:00:00`, + Date: `05/07/2011`, Value: 7.8, NumberOfUnits: 63 }), @@ -3734,7 +3734,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 41.8, SellerName: `Stanley Brooker`, SellerCity: `Seattle`, - Date: `2011-05-12T00:00:00`, + Date: `05/12/2011`, Value: 94.4, NumberOfUnits: 230 }), @@ -3744,7 +3744,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 5, SellerName: `Larry Lieb`, SellerCity: `Tokyo`, - Date: `2011-05-13T00:00:00`, + Date: `05/13/2011`, Value: 31, NumberOfUnits: 362 }), @@ -3754,7 +3754,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 10.8, SellerName: `Monica Freitag`, SellerCity: `New York`, - Date: `2011-05-17T00:00:00`, + Date: `05/17/2011`, Value: 59.8, NumberOfUnits: 430 }), @@ -3764,7 +3764,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 66.2, SellerName: `Nicholas Carmona`, SellerCity: `Seattle`, - Date: `2011-05-23T00:00:00`, + Date: `05/23/2011`, Value: 91.2, NumberOfUnits: 204 }), @@ -3774,7 +3774,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 61, SellerName: `Antonio Charbonneau`, SellerCity: `Berlin`, - Date: `2011-05-24T00:00:00`, + Date: `05/24/2011`, Value: 86.2, NumberOfUnits: 118 }), @@ -3784,7 +3784,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 68.8, SellerName: `Walter Pang`, SellerCity: `Sofia`, - Date: `2011-06-01T00:00:00`, + Date: `06/01/2011`, Value: 14.6, NumberOfUnits: 17 }), @@ -3794,7 +3794,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 40.8, SellerName: `Walter Pang`, SellerCity: `New York`, - Date: `2011-06-03T00:00:00`, + Date: `06/03/2011`, Value: 9, NumberOfUnits: 312 }), @@ -3804,7 +3804,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 97, SellerName: `Lydia Burson`, SellerCity: `Seattle`, - Date: `2011-06-12T00:00:00`, + Date: `06/12/2011`, Value: 95, NumberOfUnits: 283 }), @@ -3814,7 +3814,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 67, SellerName: `Benjamin Dupree`, SellerCity: `Seattle`, - Date: `2011-06-13T00:00:00`, + Date: `06/13/2011`, Value: 27.6, NumberOfUnits: 460 }), @@ -3824,7 +3824,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 67.2, SellerName: `Howard Sprouse`, SellerCity: `New York`, - Date: `2011-06-14T00:00:00`, + Date: `06/14/2011`, Value: 66.2, NumberOfUnits: 295 }), @@ -3834,7 +3834,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 28.2, SellerName: `Alfredo Fetuchini`, SellerCity: `Mellvile`, - Date: `2011-06-15T00:00:00`, + Date: `06/15/2011`, Value: 50.6, NumberOfUnits: 49 }), @@ -3844,7 +3844,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 7.4, SellerName: `Russell Shorter`, SellerCity: `Tokyo`, - Date: `2011-06-24T00:00:00`, + Date: `06/24/2011`, Value: 8, NumberOfUnits: 127 }), @@ -3854,7 +3854,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 39.2, SellerName: `Mark Slater`, SellerCity: `Seattle`, - Date: `2011-06-27T00:00:00`, + Date: `06/27/2011`, Value: 98.8, NumberOfUnits: 244 }), @@ -3864,7 +3864,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 53.4, SellerName: `Harold Garvin`, SellerCity: `Tokyo`, - Date: `2011-07-01T00:00:00`, + Date: `07/01/2011`, Value: 11.2, NumberOfUnits: 188 }), @@ -3874,7 +3874,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 25.6, SellerName: `Benjamin Dupree`, SellerCity: `Seattle`, - Date: `2011-07-06T00:00:00`, + Date: `07/06/2011`, Value: 56.2, NumberOfUnits: 458 }), @@ -3884,7 +3884,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 70.4, SellerName: `Nicholas Carmona`, SellerCity: `Mellvile`, - Date: `2011-07-08T00:00:00`, + Date: `07/08/2011`, Value: 82.4, NumberOfUnits: 448 }), @@ -3894,7 +3894,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 7.6, SellerName: `Harold Garvin`, SellerCity: `Berlin`, - Date: `2011-07-27T00:00:00`, + Date: `07/27/2011`, Value: 30.6, NumberOfUnits: 226 }), @@ -3904,7 +3904,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 21.6, SellerName: `Benjamin Dupree`, SellerCity: `London`, - Date: `2011-08-01T00:00:00`, + Date: `08/01/2011`, Value: 69.6, NumberOfUnits: 474 }), @@ -3914,7 +3914,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 37.6, SellerName: `David Haley`, SellerCity: `Sofia`, - Date: `2011-08-02T00:00:00`, + Date: `08/02/2011`, Value: 62.8, NumberOfUnits: 338 }), @@ -3924,7 +3924,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 99.4, SellerName: `Benjamin Meekins`, SellerCity: `London`, - Date: `2011-08-02T00:00:00`, + Date: `08/02/2011`, Value: 75.2, NumberOfUnits: 88 }), @@ -3934,7 +3934,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 72.2, SellerName: `Carl Costello`, SellerCity: `Berlin`, - Date: `2011-08-04T00:00:00`, + Date: `08/04/2011`, Value: 86.4, NumberOfUnits: 436 }), @@ -3944,7 +3944,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 34.4, SellerName: `Nicholas Carmona`, SellerCity: `Mellvile`, - Date: `2011-08-06T00:00:00`, + Date: `08/06/2011`, Value: 9.2, NumberOfUnits: 297 }), @@ -3954,7 +3954,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 47, SellerName: `Russell Shorter`, SellerCity: `London`, - Date: `2011-08-07T00:00:00`, + Date: `08/07/2011`, Value: 5.2, NumberOfUnits: 240 }), @@ -3964,7 +3964,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 26.4, SellerName: `Stanley Brooker`, SellerCity: `Sofia`, - Date: `2011-08-07T00:00:00`, + Date: `08/07/2011`, Value: 80.2, NumberOfUnits: 415 }), @@ -3974,7 +3974,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 49.2, SellerName: `David Haley`, SellerCity: `Mellvile`, - Date: `2011-08-08T00:00:00`, + Date: `08/08/2011`, Value: 61.2, NumberOfUnits: 435 }), @@ -3984,7 +3984,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 95.2, SellerName: `Monica Freitag`, SellerCity: `Berlin`, - Date: `2011-08-16T00:00:00`, + Date: `08/16/2011`, Value: 73.8, NumberOfUnits: 64 }), @@ -3994,7 +3994,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 74.2, SellerName: `John Smith`, SellerCity: `Seattle`, - Date: `2011-08-23T00:00:00`, + Date: `08/23/2011`, Value: 40.8, NumberOfUnits: 21 }), @@ -4004,7 +4004,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 82.6, SellerName: `Benjamin Dupree`, SellerCity: `London`, - Date: `2011-08-25T00:00:00`, + Date: `08/25/2011`, Value: 55, NumberOfUnits: 467 }), @@ -4014,7 +4014,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 42.8, SellerName: `Lydia Burson`, SellerCity: `Sofia`, - Date: `2011-09-02T00:00:00`, + Date: `09/02/2011`, Value: 28.2, NumberOfUnits: 98 }), @@ -4024,7 +4024,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 83.6, SellerName: `Russell Shorter`, SellerCity: `Mellvile`, - Date: `2011-09-04T00:00:00`, + Date: `09/04/2011`, Value: 72.6, NumberOfUnits: 370 }), @@ -4034,7 +4034,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 41.6, SellerName: `Walter Pang`, SellerCity: `Berlin`, - Date: `2011-09-05T00:00:00`, + Date: `09/05/2011`, Value: 81, NumberOfUnits: 94 }), @@ -4044,7 +4044,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 74.2, SellerName: `Benjamin Dupree`, SellerCity: `London`, - Date: `2011-09-09T00:00:00`, + Date: `09/09/2011`, Value: 95, NumberOfUnits: 106 }), @@ -4054,7 +4054,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 75.4, SellerName: `Claudia Kobayashi`, SellerCity: `Sofia`, - Date: `2011-09-11T00:00:00`, + Date: `09/11/2011`, Value: 10, NumberOfUnits: 261 }), @@ -4064,7 +4064,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 10.2, SellerName: `Howard Sprouse`, SellerCity: `Seattle`, - Date: `2011-09-17T00:00:00`, + Date: `09/17/2011`, Value: 29.4, NumberOfUnits: 307 }), @@ -4074,7 +4074,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 73, SellerName: `Harry Tyler`, SellerCity: `New York`, - Date: `2011-09-17T00:00:00`, + Date: `09/17/2011`, Value: 57, NumberOfUnits: 362 }), @@ -4084,7 +4084,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 85.2, SellerName: `Benjamin Meekins`, SellerCity: `Tokyo`, - Date: `2011-09-24T00:00:00`, + Date: `09/24/2011`, Value: 24, NumberOfUnits: 330 }), @@ -4094,7 +4094,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 77.6, SellerName: `Walter Pang`, SellerCity: `New York`, - Date: `2011-09-26T00:00:00`, + Date: `09/26/2011`, Value: 91.8, NumberOfUnits: 23 }), @@ -4104,7 +4104,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 50.4, SellerName: `David Haley`, SellerCity: `Berlin`, - Date: `2011-09-27T00:00:00`, + Date: `09/27/2011`, Value: 66.8, NumberOfUnits: 392 }), @@ -4114,7 +4114,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 32.4, SellerName: `Larry Lieb`, SellerCity: `Seattle`, - Date: `2011-10-13T00:00:00`, + Date: `10/13/2011`, Value: 81.6, NumberOfUnits: 16 }), @@ -4124,7 +4124,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 63, SellerName: `Lydia Burson`, SellerCity: `New York`, - Date: `2011-10-13T00:00:00`, + Date: `10/13/2011`, Value: 31, NumberOfUnits: 100 }), @@ -4134,7 +4134,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 13.4, SellerName: `Carl Costello`, SellerCity: `Berlin`, - Date: `2011-10-22T00:00:00`, + Date: `10/22/2011`, Value: 85.6, NumberOfUnits: 132 }), @@ -4144,7 +4144,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 0.4, SellerName: `Nicholas Carmona`, SellerCity: `Seattle`, - Date: `2011-10-22T00:00:00`, + Date: `10/22/2011`, Value: 74.4, NumberOfUnits: 22 }), @@ -4154,7 +4154,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 66.2, SellerName: `Walter Pang`, SellerCity: `New York`, - Date: `2011-11-02T00:00:00`, + Date: `11/02/2011`, Value: 88.2, NumberOfUnits: 96 }), @@ -4164,7 +4164,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 50.2, SellerName: `Elisa Longbottom`, SellerCity: `Berlin`, - Date: `2011-11-03T00:00:00`, + Date: `11/03/2011`, Value: 31.4, NumberOfUnits: 76 }), @@ -4174,7 +4174,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 68, SellerName: `Stanley Brooker`, SellerCity: `Mellvile`, - Date: `2011-11-04T00:00:00`, + Date: `11/04/2011`, Value: 91.2, NumberOfUnits: 492 }), @@ -4184,7 +4184,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 6.6, SellerName: `Harry Tyler`, SellerCity: `Berlin`, - Date: `2011-11-08T00:00:00`, + Date: `11/08/2011`, Value: 51.6, NumberOfUnits: 49 }), @@ -4194,7 +4194,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 35.6, SellerName: `Russell Shorter`, SellerCity: `Mellvile`, - Date: `2011-11-12T00:00:00`, + Date: `11/12/2011`, Value: 21, NumberOfUnits: 197 }), @@ -4204,7 +4204,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 60, SellerName: `Howard Sprouse`, SellerCity: `Tokyo`, - Date: `2011-11-12T00:00:00`, + Date: `11/12/2011`, Value: 70.4, NumberOfUnits: 484 }), @@ -4214,7 +4214,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 67.4, SellerName: `Russell Shorter`, SellerCity: `Tokyo`, - Date: `2011-11-13T00:00:00`, + Date: `11/13/2011`, Value: 14.4, NumberOfUnits: 182 }), @@ -4224,7 +4224,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 52, SellerName: `Alfredo Fetuchini`, SellerCity: `London`, - Date: `2011-11-15T00:00:00`, + Date: `11/15/2011`, Value: 18.4, NumberOfUnits: 42 }), @@ -4234,7 +4234,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 66.8, SellerName: `Brandon Mckim`, SellerCity: `New York`, - Date: `2011-11-19T00:00:00`, + Date: `11/19/2011`, Value: 52.8, NumberOfUnits: 109 }), @@ -4244,7 +4244,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 56.2, SellerName: `Harold Garvin`, SellerCity: `Mellvile`, - Date: `2011-11-23T00:00:00`, + Date: `11/23/2011`, Value: 40.2, NumberOfUnits: 310 }), @@ -4254,7 +4254,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 93.6, SellerName: `Monica Freitag`, SellerCity: `Sofia`, - Date: `2012-01-03T00:00:00`, + Date: `01/03/2012`, Value: 53.4, NumberOfUnits: 306 }), @@ -4264,7 +4264,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 9.6, SellerName: `Harold Garvin`, SellerCity: `Seattle`, - Date: `2012-01-06T00:00:00`, + Date: `01/06/2012`, Value: 83, NumberOfUnits: 290 }), @@ -4274,7 +4274,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 41.2, SellerName: `Monica Freitag`, SellerCity: `Tokyo`, - Date: `2012-01-10T00:00:00`, + Date: `01/10/2012`, Value: 29.8, NumberOfUnits: 499 }), @@ -4284,7 +4284,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 9.8, SellerName: `Kathe Pettel`, SellerCity: `Berlin`, - Date: `2012-01-11T00:00:00`, + Date: `01/11/2012`, Value: 10.8, NumberOfUnits: 7 }), @@ -4294,7 +4294,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 64.6, SellerName: `Nicholas Carmona`, SellerCity: `Sofia`, - Date: `2012-01-14T00:00:00`, + Date: `01/14/2012`, Value: 35, NumberOfUnits: 220 }), @@ -4304,7 +4304,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 47.4, SellerName: `Elisa Longbottom`, SellerCity: `New York`, - Date: `2012-01-15T00:00:00`, + Date: `01/15/2012`, Value: 50.2, NumberOfUnits: 395 }), @@ -4314,7 +4314,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 14.6, SellerName: `Lydia Burson`, SellerCity: `Sofia`, - Date: `2012-01-18T00:00:00`, + Date: `01/18/2012`, Value: 100, NumberOfUnits: 219 }), @@ -4324,7 +4324,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 10.8, SellerName: `Larry Lieb`, SellerCity: `Mellvile`, - Date: `2012-01-18T00:00:00`, + Date: `01/18/2012`, Value: 92, NumberOfUnits: 229 }), @@ -4334,7 +4334,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 65, SellerName: `Nicholas Carmona`, SellerCity: `Mellvile`, - Date: `2012-01-22T00:00:00`, + Date: `01/22/2012`, Value: 55.8, NumberOfUnits: 111 }), @@ -4344,7 +4344,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 48, SellerName: `Alfredo Fetuchini`, SellerCity: `London`, - Date: `2012-02-01T00:00:00`, + Date: `02/01/2012`, Value: 20.6, NumberOfUnits: 237 }), @@ -4354,7 +4354,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 87.8, SellerName: `Claudia Kobayashi`, SellerCity: `Berlin`, - Date: `2012-02-13T00:00:00`, + Date: `02/13/2012`, Value: 17.2, NumberOfUnits: 114 }), @@ -4364,7 +4364,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 55.4, SellerName: `Bryan Culver`, SellerCity: `London`, - Date: `2012-02-23T00:00:00`, + Date: `02/23/2012`, Value: 76.8, NumberOfUnits: 329 }), @@ -4374,7 +4374,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 40.8, SellerName: `Howard Sprouse`, SellerCity: `Seattle`, - Date: `2012-02-24T00:00:00`, + Date: `02/24/2012`, Value: 1.2, NumberOfUnits: 135 }), @@ -4384,7 +4384,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 57.8, SellerName: `Harold Garvin`, SellerCity: `New York`, - Date: `2012-03-02T00:00:00`, + Date: `03/02/2012`, Value: 46.8, NumberOfUnits: 187 }), @@ -4394,7 +4394,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 14.8, SellerName: `David Haley`, SellerCity: `Tokyo`, - Date: `2012-03-10T00:00:00`, + Date: `03/10/2012`, Value: 17.6, NumberOfUnits: 286 }), @@ -4404,7 +4404,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 13, SellerName: `Antonio Charbonneau`, SellerCity: `Mellvile`, - Date: `2012-03-11T00:00:00`, + Date: `03/11/2012`, Value: 18.2, NumberOfUnits: 468 }), @@ -4414,7 +4414,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 26, SellerName: `Monica Freitag`, SellerCity: `Tokyo`, - Date: `2012-03-18T00:00:00`, + Date: `03/18/2012`, Value: 93.2, NumberOfUnits: 71 }), @@ -4424,7 +4424,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 72.6, SellerName: `Bryan Culver`, SellerCity: `Mellvile`, - Date: `2012-03-21T00:00:00`, + Date: `03/21/2012`, Value: 62, NumberOfUnits: 251 }), @@ -4434,7 +4434,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 44.4, SellerName: `Monica Freitag`, SellerCity: `Berlin`, - Date: `2012-03-25T00:00:00`, + Date: `03/25/2012`, Value: 57.2, NumberOfUnits: 297 }), @@ -4444,7 +4444,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 68.2, SellerName: `Alfredo Fetuchini`, SellerCity: `Berlin`, - Date: `2012-03-25T00:00:00`, + Date: `03/25/2012`, Value: 4.2, NumberOfUnits: 248 }), @@ -4454,7 +4454,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 35.4, SellerName: `Elisa Longbottom`, SellerCity: `Sofia`, - Date: `2012-03-26T00:00:00`, + Date: `03/26/2012`, Value: 45.2, NumberOfUnits: 488 }), @@ -4464,7 +4464,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 41.2, SellerName: `Alfredo Fetuchini`, SellerCity: `Sofia`, - Date: `2012-04-06T00:00:00`, + Date: `04/06/2012`, Value: 59.6, NumberOfUnits: 211 }), @@ -4474,7 +4474,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 29.4, SellerName: `Stanley Brooker`, SellerCity: `Seattle`, - Date: `2012-04-14T00:00:00`, + Date: `04/14/2012`, Value: 3.2, NumberOfUnits: 149 }), @@ -4484,7 +4484,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 52, SellerName: `Lydia Burson`, SellerCity: `Berlin`, - Date: `2012-04-14T00:00:00`, + Date: `04/14/2012`, Value: 9.8, NumberOfUnits: 99 }), @@ -4494,7 +4494,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 57.8, SellerName: `Benjamin Meekins`, SellerCity: `Seattle`, - Date: `2012-04-16T00:00:00`, + Date: `04/16/2012`, Value: 14, NumberOfUnits: 225 }), @@ -4504,7 +4504,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 26, SellerName: `Nicholas Carmona`, SellerCity: `Seattle`, - Date: `2012-04-27T00:00:00`, + Date: `04/27/2012`, Value: 95.4, NumberOfUnits: 408 }), @@ -4514,7 +4514,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 5, SellerName: `Benjamin Meekins`, SellerCity: `Sofia`, - Date: `2012-05-09T00:00:00`, + Date: `05/09/2012`, Value: 40.2, NumberOfUnits: 417 }), @@ -4524,7 +4524,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 3, SellerName: `Alfredo Fetuchini`, SellerCity: `London`, - Date: `2012-05-24T00:00:00`, + Date: `05/24/2012`, Value: 67.8, NumberOfUnits: 221 }), @@ -4534,7 +4534,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 57.6, SellerName: `Mark Slater`, SellerCity: `New York`, - Date: `2012-06-02T00:00:00`, + Date: `06/02/2012`, Value: 45.4, NumberOfUnits: 288 }), @@ -4544,7 +4544,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 72.4, SellerName: `Bryan Culver`, SellerCity: `Berlin`, - Date: `2012-06-03T00:00:00`, + Date: `06/03/2012`, Value: 92.8, NumberOfUnits: 372 }), @@ -4554,7 +4554,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 82.6, SellerName: `Kathe Pettel`, SellerCity: `Seattle`, - Date: `2012-06-03T00:00:00`, + Date: `06/03/2012`, Value: 51.4, NumberOfUnits: 408 }), @@ -4564,7 +4564,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 91.6, SellerName: `Benjamin Dupree`, SellerCity: `Mellvile`, - Date: `2012-06-04T00:00:00`, + Date: `06/04/2012`, Value: 28.6, NumberOfUnits: 13 }), @@ -4574,7 +4574,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 94.8, SellerName: `Benjamin Dupree`, SellerCity: `Mellvile`, - Date: `2012-06-05T00:00:00`, + Date: `06/05/2012`, Value: 31.6, NumberOfUnits: 487 }), @@ -4584,7 +4584,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 46.4, SellerName: `Benjamin Dupree`, SellerCity: `Sofia`, - Date: `2012-06-11T00:00:00`, + Date: `06/11/2012`, Value: 86, NumberOfUnits: 276 }), @@ -4594,7 +4594,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 18.2, SellerName: `Howard Sprouse`, SellerCity: `New York`, - Date: `2012-06-16T00:00:00`, + Date: `06/16/2012`, Value: 40.2, NumberOfUnits: 490 }), @@ -4604,7 +4604,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 48.8, SellerName: `Harold Garvin`, SellerCity: `London`, - Date: `2012-06-18T00:00:00`, + Date: `06/18/2012`, Value: 55.6, NumberOfUnits: 238 }), @@ -4614,7 +4614,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 94.4, SellerName: `David Haley`, SellerCity: `Tokyo`, - Date: `2012-06-23T00:00:00`, + Date: `06/23/2012`, Value: 92, NumberOfUnits: 170 }), @@ -4624,7 +4624,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 48.8, SellerName: `Brandon Mckim`, SellerCity: `Mellvile`, - Date: `2012-07-04T00:00:00`, + Date: `07/04/2012`, Value: 72.8, NumberOfUnits: 132 }), @@ -4634,7 +4634,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 82.8, SellerName: `Mark Slater`, SellerCity: `Mellvile`, - Date: `2012-07-05T00:00:00`, + Date: `07/05/2012`, Value: 56.8, NumberOfUnits: 443 }), @@ -4644,7 +4644,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 38.2, SellerName: `Benjamin Dupree`, SellerCity: `New York`, - Date: `2012-07-05T00:00:00`, + Date: `07/05/2012`, Value: 27.6, NumberOfUnits: 368 }), @@ -4654,7 +4654,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 24.2, SellerName: `Harold Garvin`, SellerCity: `New York`, - Date: `2012-07-11T00:00:00`, + Date: `07/11/2012`, Value: 38.6, NumberOfUnits: 39 }), @@ -4664,7 +4664,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 4, SellerName: `Alfredo Fetuchini`, SellerCity: `Tokyo`, - Date: `2012-07-13T00:00:00`, + Date: `07/13/2012`, Value: 43.2, NumberOfUnits: 95 }), @@ -4674,7 +4674,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 81.8, SellerName: `Benjamin Meekins`, SellerCity: `Berlin`, - Date: `2012-07-14T00:00:00`, + Date: `07/14/2012`, Value: 42.6, NumberOfUnits: 42 }), @@ -4684,7 +4684,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 75, SellerName: `Brandon Mckim`, SellerCity: `Seattle`, - Date: `2012-07-16T00:00:00`, + Date: `07/16/2012`, Value: 61.4, NumberOfUnits: 200 }), @@ -4694,7 +4694,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 85.6, SellerName: `Monica Freitag`, SellerCity: `Seattle`, - Date: `2012-07-16T00:00:00`, + Date: `07/16/2012`, Value: 10.6, NumberOfUnits: 221 }), @@ -4704,7 +4704,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 96.4, SellerName: `Larry Lieb`, SellerCity: `New York`, - Date: `2012-07-21T00:00:00`, + Date: `07/21/2012`, Value: 99.6, NumberOfUnits: 54 }), @@ -4714,7 +4714,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 46.2, SellerName: `Lydia Burson`, SellerCity: `Tokyo`, - Date: `2012-07-21T00:00:00`, + Date: `07/21/2012`, Value: 56, NumberOfUnits: 173 }), @@ -4724,7 +4724,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 99.8, SellerName: `Lydia Burson`, SellerCity: `London`, - Date: `2012-07-23T00:00:00`, + Date: `07/23/2012`, Value: 10.8, NumberOfUnits: 47 }), @@ -4734,7 +4734,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 42.4, SellerName: `Kathe Pettel`, SellerCity: `Mellvile`, - Date: `2012-07-26T00:00:00`, + Date: `07/26/2012`, Value: 91.6, NumberOfUnits: 173 }), @@ -4744,7 +4744,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 52.2, SellerName: `Claudia Kobayashi`, SellerCity: `Mellvile`, - Date: `2012-08-05T00:00:00`, + Date: `08/05/2012`, Value: 98.8, NumberOfUnits: 323 }), @@ -4754,7 +4754,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 45.6, SellerName: `Russell Shorter`, SellerCity: `Sofia`, - Date: `2012-08-07T00:00:00`, + Date: `08/07/2012`, Value: 26, NumberOfUnits: 264 }), @@ -4764,7 +4764,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 56.8, SellerName: `Mark Slater`, SellerCity: `Sofia`, - Date: `2012-08-09T00:00:00`, + Date: `08/09/2012`, Value: 11.6, NumberOfUnits: 385 }), @@ -4774,7 +4774,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 3.6, SellerName: `Harry Tyler`, SellerCity: `London`, - Date: `2012-08-10T00:00:00`, + Date: `08/10/2012`, Value: 26, NumberOfUnits: 56 }), @@ -4784,7 +4784,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 34.6, SellerName: `Benjamin Dupree`, SellerCity: `Berlin`, - Date: `2012-08-12T00:00:00`, + Date: `08/12/2012`, Value: 96.2, NumberOfUnits: 267 }), @@ -4794,7 +4794,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 92.4, SellerName: `Monica Freitag`, SellerCity: `Seattle`, - Date: `2012-08-14T00:00:00`, + Date: `08/14/2012`, Value: 95, NumberOfUnits: 109 }), @@ -4804,7 +4804,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 34.8, SellerName: `Mark Slater`, SellerCity: `Berlin`, - Date: `2012-08-17T00:00:00`, + Date: `08/17/2012`, Value: 62.4, NumberOfUnits: 478 }), @@ -4814,7 +4814,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 23.4, SellerName: `Claudia Kobayashi`, SellerCity: `Berlin`, - Date: `2012-08-21T00:00:00`, + Date: `08/21/2012`, Value: 57.8, NumberOfUnits: 184 }), @@ -4824,7 +4824,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 79.6, SellerName: `Brandon Mckim`, SellerCity: `Seattle`, - Date: `2012-08-21T00:00:00`, + Date: `08/21/2012`, Value: 35.4, NumberOfUnits: 132 }), @@ -4834,7 +4834,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 30.8, SellerName: `Nicholas Carmona`, SellerCity: `Sofia`, - Date: `2012-08-22T00:00:00`, + Date: `08/22/2012`, Value: 96, NumberOfUnits: 142 }), @@ -4844,7 +4844,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 90, SellerName: `Carl Costello`, SellerCity: `Seattle`, - Date: `2012-08-27T00:00:00`, + Date: `08/27/2012`, Value: 27.6, NumberOfUnits: 46 }), @@ -4854,7 +4854,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 83.2, SellerName: `Walter Pang`, SellerCity: `Seattle`, - Date: `2012-09-03T00:00:00`, + Date: `09/03/2012`, Value: 68.6, NumberOfUnits: 102 }), @@ -4864,7 +4864,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 0.2, SellerName: `Russell Shorter`, SellerCity: `Berlin`, - Date: `2012-09-09T00:00:00`, + Date: `09/09/2012`, Value: 96.6, NumberOfUnits: 21 }), @@ -4874,7 +4874,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 36.6, SellerName: `Monica Freitag`, SellerCity: `Sofia`, - Date: `2012-09-10T00:00:00`, + Date: `09/10/2012`, Value: 5, NumberOfUnits: 442 }), @@ -4884,7 +4884,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 92.4, SellerName: `Harry Tyler`, SellerCity: `New York`, - Date: `2012-09-13T00:00:00`, + Date: `09/13/2012`, Value: 99.2, NumberOfUnits: 254 }), @@ -4894,7 +4894,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 28, SellerName: `Nicholas Carmona`, SellerCity: `Sofia`, - Date: `2012-09-13T00:00:00`, + Date: `09/13/2012`, Value: 50, NumberOfUnits: 251 }), @@ -4904,7 +4904,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 60.4, SellerName: `Antonio Charbonneau`, SellerCity: `New York`, - Date: `2012-09-15T00:00:00`, + Date: `09/15/2012`, Value: 44, NumberOfUnits: 119 }), @@ -4914,7 +4914,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 33, SellerName: `Claudia Kobayashi`, SellerCity: `New York`, - Date: `2012-09-19T00:00:00`, + Date: `09/19/2012`, Value: 32.4, NumberOfUnits: 256 }), @@ -4924,7 +4924,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 99, SellerName: `John Smith`, SellerCity: `New York`, - Date: `2012-09-23T00:00:00`, + Date: `09/23/2012`, Value: 35.8, NumberOfUnits: 456 }), @@ -4934,7 +4934,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 16.2, SellerName: `Kathe Pettel`, SellerCity: `London`, - Date: `2012-10-01T00:00:00`, + Date: `10/01/2012`, Value: 16.4, NumberOfUnits: 430 }), @@ -4944,7 +4944,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 73, SellerName: `David Haley`, SellerCity: `Berlin`, - Date: `2012-10-02T00:00:00`, + Date: `10/02/2012`, Value: 57, NumberOfUnits: 248 }), @@ -4954,7 +4954,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 21.8, SellerName: `Harold Garvin`, SellerCity: `Berlin`, - Date: `2012-10-18T00:00:00`, + Date: `10/18/2012`, Value: 28.2, NumberOfUnits: 440 }), @@ -4964,7 +4964,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 28.4, SellerName: `Howard Sprouse`, SellerCity: `New York`, - Date: `2012-10-19T00:00:00`, + Date: `10/19/2012`, Value: 66.6, NumberOfUnits: 234 }), @@ -4974,7 +4974,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 80.6, SellerName: `Benjamin Meekins`, SellerCity: `New York`, - Date: `2012-10-25T00:00:00`, + Date: `10/25/2012`, Value: 5.4, NumberOfUnits: 36 }), @@ -4984,7 +4984,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 97.8, SellerName: `Harry Tyler`, SellerCity: `London`, - Date: `2012-10-26T00:00:00`, + Date: `10/26/2012`, Value: 41.2, NumberOfUnits: 46 }), @@ -4994,7 +4994,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 88.8, SellerName: `Elisa Longbottom`, SellerCity: `London`, - Date: `2012-11-02T00:00:00`, + Date: `11/02/2012`, Value: 64.6, NumberOfUnits: 211 }), @@ -5004,7 +5004,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 67.4, SellerName: `Walter Pang`, SellerCity: `New York`, - Date: `2012-11-17T00:00:00`, + Date: `11/17/2012`, Value: 14.2, NumberOfUnits: 408 }), @@ -5014,7 +5014,7 @@ export class PivotDataFlat extends Array { ProductUnitPrice: 7.2, SellerName: `Walter Pang`, SellerCity: `New York`, - Date: `2012-11-20T00:00:00`, + Date: `11/20/2012`, Value: 72.8, NumberOfUnits: 376 }), diff --git a/samples/grids/pivot-grid/features/tsconfig.json b/samples/grids/pivot-grid/features/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/pivot-grid/features/tsconfig.json +++ b/samples/grids/pivot-grid/features/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/pivot-grid/remote/package.json b/samples/grids/pivot-grid/remote/package.json index 74cf0f3874..ca1257fd49 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/remote/sandbox.config.json b/samples/grids/pivot-grid/remote/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/pivot-grid/remote/sandbox.config.json +++ b/samples/grids/pivot-grid/remote/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/pivot-grid/remote/src/index.ts b/samples/grids/pivot-grid/remote/src/index.ts index a840c4bacb..5dec336f7f 100644 --- a/samples/grids/pivot-grid/remote/src/index.ts +++ b/samples/grids/pivot-grid/remote/src/index.ts @@ -56,6 +56,7 @@ export class Sample { } return this._pivotConfiguration; } + private _bind: () => void; constructor() { @@ -71,4 +72,4 @@ export class Sample { } } -new Sample(); \ No newline at end of file +new Sample(); diff --git a/samples/grids/pivot-grid/remote/tsconfig.json b/samples/grids/pivot-grid/remote/tsconfig.json index 220404df76..de23257dd8 100644 --- a/samples/grids/pivot-grid/remote/tsconfig.json +++ b/samples/grids/pivot-grid/remote/tsconfig.json @@ -1,5 +1,5 @@ { - "compilerOptions": { + "compilerOptions": { "noImplicitReturns": true, "esModuleInterop": true, "noImplicitAny": true, @@ -8,32 +8,13 @@ "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 + "strict": true + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/grids/pivot-grid/remote/webpack.config.js b/samples/grids/pivot-grid/remote/webpack.config.js index 1c50333f6c..9d11a6155c 100644 --- a/samples/grids/pivot-grid/remote/webpack.config.js +++ b/samples/grids/pivot-grid/remote/webpack.config.js @@ -1,15 +1,32 @@ 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'); -const nodeEnv = process.env.NODE_ENV || 'development'; - module.exports = env => { - console.log("env:"); - console.log(env); - const isLegacy = !!env.legacy && !(env.legacy == "false"); - const isProd = env.NODE_ENV === 'production'; + 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'), @@ -18,13 +35,19 @@ module.exports = env => { ] : path.resolve(__dirname, 'src'), devtool: isProd ? false : 'source-map', output: { - filename: isProd ? '[chunkhash].bundle.js' : '[hash].bundle.js', + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', path: path.resolve(__dirname, 'dist'), }, resolve: { - mainFields: ['fesm2015', 'module', 'main'], - extensions: ['.ts', '.js', '.json'] + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] }, module: { @@ -33,25 +56,27 @@ module.exports = env => { { 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": [ - ["@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" - ], + "presets": presets, "plugins": [ "@babel/plugin-proposal-class-properties", "@babel/plugin-transform-runtime" @@ -68,9 +93,7 @@ module.exports = env => { plugins: [ new webpack.DefinePlugin({ - 'process.env': { - NODE_ENV: JSON.stringify(nodeEnv) - } + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) }), new HtmlWebpackPlugin({ title: 'for-cs', @@ -79,4 +102,4 @@ module.exports = env => { new ForkTsCheckerWebpackPlugin() ] }; -}; \ No newline at end of file +}; diff --git a/samples/grids/pivot-grid/state-persistence-about/package.json b/samples/grids/pivot-grid/state-persistence-about/package.json index d3b1f66218..bad35e1865 100644 --- a/samples/grids/pivot-grid/state-persistence-about/package.json +++ b/samples/grids/pivot-grid/state-persistence-about/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/state-persistence-about/tsconfig.json b/samples/grids/pivot-grid/state-persistence-about/tsconfig.json index 2c74e00627..de23257dd8 100644 --- a/samples/grids/pivot-grid/state-persistence-about/tsconfig.json +++ b/samples/grids/pivot-grid/state-persistence-about/tsconfig.json @@ -1,34 +1,14 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "resolveJsonModule": 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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/pivot-grid/state-persistence-about/webpack.config.js b/samples/grids/pivot-grid/state-persistence-about/webpack.config.js index 4f82e885b8..9d11a6155c 100644 --- a/samples/grids/pivot-grid/state-persistence-about/webpack.config.js +++ b/samples/grids/pivot-grid/state-persistence-about/webpack.config.js @@ -35,7 +35,7 @@ module.exports = env => { ] : path.resolve(__dirname, 'src'), devtool: isProd ? false : 'source-map', output: { - filename: '[name].[fullhash].bundle.js', + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', globalObject: 'this', path: path.resolve(__dirname, 'dist'), }, @@ -96,8 +96,8 @@ module.exports = env => { 'process.env.NODE_ENV': JSON.stringify(nodeEnv) }), new HtmlWebpackPlugin({ - title: 'index-cs', - template: 'index.html', + title: 'for-cs', + template: 'index.html' }), new ForkTsCheckerWebpackPlugin() ] diff --git a/samples/grids/pivot-grid/state-persistence-main/package.json b/samples/grids/pivot-grid/state-persistence-main/package.json index d3b1f66218..bad35e1865 100644 --- a/samples/grids/pivot-grid/state-persistence-main/package.json +++ b/samples/grids/pivot-grid/state-persistence-main/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/state-persistence-main/src/index.css b/samples/grids/pivot-grid/state-persistence-main/src/index.css index 6aa735e3c7..0fe9368715 100644 --- a/samples/grids/pivot-grid/state-persistence-main/src/index.css +++ b/samples/grids/pivot-grid/state-persistence-main/src/index.css @@ -1,19 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -.horizontal { - gap: 10px; - flex-basis: fit-content; - flex-wrap: wrap; -} -.sampleContainer { - padding: 0.5rem -} - -.upFontValue { - color: hsla(var(--ig-success-500)); -} - -.downFontValue { - color: hsla(var(--ig-error-500)); -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/pivot-grid/state-persistence-main/src/index.ts b/samples/grids/pivot-grid/state-persistence-main/src/index.ts index 86f4132afb..55ce5ec337 100644 --- a/samples/grids/pivot-grid/state-persistence-main/src/index.ts +++ b/samples/grids/pivot-grid/state-persistence-main/src/index.ts @@ -27,6 +27,7 @@ export class Sample { expansion: true, pivotConfiguration: true }; + private columnsLoaded: Promise; public totalSale = (members: any, data: any) => @@ -35,7 +36,7 @@ export class Sample { public totalMin = (members: any, data: any) => { return data.map((x: any) => x.ProductUnitPrice * x.NumberOfUnits).reduce((a: any, b: any) => Math.min(a, b)); }; - + public totalMax = (members: any, data: any) => { return data.map((x: any) => x.ProductUnitPrice * x.NumberOfUnits).reduce((a: any, b: any) => Math.max(a,b)); }; @@ -198,7 +199,6 @@ export class Sample { grid.data = this.gridData; grid.pivotConfiguration = this.pivotConfiguration; - grid.addEventListener("columnInit", (ev: any) => { this.onColumnInit(ev); }); grid.addEventListener("valueInit", (ev:any) => this.onValueInit(ev)); grid.addEventListener("dimensionInit", (ev:any) => this.onDimensionInit(ev)); @@ -214,9 +214,9 @@ export class Sample { cb.addEventListener("igcChange", (ev: CustomEvent) => { this.onChange(ev, cb.id); }); }); - window.addEventListener("load", async () => { + window.addEventListener("load", async () => { await this.columnsLoaded; - this.restoreGridState(); + this.restoreGridState(); }); window.addEventListener("beforeunload", () => { this.saveGridState(); }); } @@ -270,7 +270,7 @@ export class Sample { window.location.reload(); } - private onColumnInit(event: any) { + private onColumnInit(event: any) { if(event.detail.index === this.grid.columns.length - 1) { this.columnsLoaded = new Promise((resolve) => resolve()); } diff --git a/samples/grids/pivot-grid/state-persistence-main/tsconfig.json b/samples/grids/pivot-grid/state-persistence-main/tsconfig.json index 2c74e00627..de23257dd8 100644 --- a/samples/grids/pivot-grid/state-persistence-main/tsconfig.json +++ b/samples/grids/pivot-grid/state-persistence-main/tsconfig.json @@ -1,34 +1,14 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "resolveJsonModule": 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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/pivot-grid/state-persistence-main/webpack.config.js b/samples/grids/pivot-grid/state-persistence-main/webpack.config.js index 4f82e885b8..9d11a6155c 100644 --- a/samples/grids/pivot-grid/state-persistence-main/webpack.config.js +++ b/samples/grids/pivot-grid/state-persistence-main/webpack.config.js @@ -35,7 +35,7 @@ module.exports = env => { ] : path.resolve(__dirname, 'src'), devtool: isProd ? false : 'source-map', output: { - filename: '[name].[fullhash].bundle.js', + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', globalObject: 'this', path: path.resolve(__dirname, 'dist'), }, @@ -96,8 +96,8 @@ module.exports = env => { 'process.env.NODE_ENV': JSON.stringify(nodeEnv) }), new HtmlWebpackPlugin({ - title: 'index-cs', - template: 'index.html', + title: 'for-cs', + template: 'index.html' }), new ForkTsCheckerWebpackPlugin() ] diff --git a/samples/grids/tree-grid/action-strip/package.json b/samples/grids/tree-grid/action-strip/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/action-strip/package.json +++ b/samples/grids/tree-grid/action-strip/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/action-strip/tsconfig.json b/samples/grids/tree-grid/action-strip/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/action-strip/tsconfig.json +++ b/samples/grids/tree-grid/action-strip/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/advanced-filtering-options/package.json b/samples/grids/tree-grid/advanced-filtering-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/package.json +++ b/samples/grids/tree-grid/advanced-filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/advanced-filtering-options/tsconfig.json b/samples/grids/tree-grid/advanced-filtering-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/tsconfig.json +++ b/samples/grids/tree-grid/advanced-filtering-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/advanced-filtering-style/package.json b/samples/grids/tree-grid/advanced-filtering-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/package.json +++ b/samples/grids/tree-grid/advanced-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/advanced-filtering-style/tsconfig.json b/samples/grids/tree-grid/advanced-filtering-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/tsconfig.json +++ b/samples/grids/tree-grid/advanced-filtering-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/cell-editing-sample/package.json b/samples/grids/tree-grid/cell-editing-sample/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/tree-grid/cell-editing-sample/package.json +++ b/samples/grids/tree-grid/cell-editing-sample/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/cell-editing-sample/tsconfig.json b/samples/grids/tree-grid/cell-editing-sample/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/cell-editing-sample/tsconfig.json +++ b/samples/grids/tree-grid/cell-editing-sample/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/cell-editing-styling/package.json b/samples/grids/tree-grid/cell-editing-styling/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/cell-editing-styling/package.json +++ b/samples/grids/tree-grid/cell-editing-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/cell-editing-styling/tsconfig.json b/samples/grids/tree-grid/cell-editing-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/cell-editing-styling/tsconfig.json +++ b/samples/grids/tree-grid/cell-editing-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/cell-selection-mode/package.json b/samples/grids/tree-grid/cell-selection-mode/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/tree-grid/cell-selection-mode/package.json +++ b/samples/grids/tree-grid/cell-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/cell-selection-mode/tsconfig.json b/samples/grids/tree-grid/cell-selection-mode/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/cell-selection-mode/tsconfig.json +++ b/samples/grids/tree-grid/cell-selection-mode/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/cell-selection-style/package.json b/samples/grids/tree-grid/cell-selection-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/cell-selection-style/package.json +++ b/samples/grids/tree-grid/cell-selection-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/cell-selection-style/tsconfig.json b/samples/grids/tree-grid/cell-selection-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/cell-selection-style/tsconfig.json +++ b/samples/grids/tree-grid/cell-selection-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/clipboard-operations/package.json b/samples/grids/tree-grid/clipboard-operations/package.json index d3b1f66218..bad35e1865 100644 --- a/samples/grids/tree-grid/clipboard-operations/package.json +++ b/samples/grids/tree-grid/clipboard-operations/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/clipboard-operations/sandbox.config.json b/samples/grids/tree-grid/clipboard-operations/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/tree-grid/clipboard-operations/sandbox.config.json +++ b/samples/grids/tree-grid/clipboard-operations/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/tree-grid/clipboard-operations/src/index.css b/samples/grids/tree-grid/clipboard-operations/src/index.css index 8b42ec3ed2..0fe9368715 100644 --- a/samples/grids/tree-grid/clipboard-operations/src/index.css +++ b/samples/grids/tree-grid/clipboard-operations/src/index.css @@ -1,3 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/tree-grid/clipboard-operations/src/index.ts b/samples/grids/tree-grid/clipboard-operations/src/index.ts index 6e80c2f253..267d9d2c7a 100644 --- a/samples/grids/tree-grid/clipboard-operations/src/index.ts +++ b/samples/grids/tree-grid/clipboard-operations/src/index.ts @@ -4,12 +4,11 @@ import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionCo import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; - import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents, IgcButtonComponent, IgcInputComponent, IgcSwitchComponent } from 'igniteui-webcomponents'; -defineAllComponents(); +defineAllComponents(); export class Sample { @@ -67,6 +66,7 @@ export class Sample { } return this._employeesFlatDetails; } + public webGridClearSelection(args: any): void { console.log("TODO" + args); //TODO diff --git a/samples/grids/tree-grid/clipboard-operations/tsconfig.json b/samples/grids/tree-grid/clipboard-operations/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/tree-grid/clipboard-operations/tsconfig.json +++ b/samples/grids/tree-grid/clipboard-operations/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-auto-sizing/package.json b/samples/grids/tree-grid/column-auto-sizing/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-auto-sizing/package.json +++ b/samples/grids/tree-grid/column-auto-sizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-auto-sizing/tsconfig.json b/samples/grids/tree-grid/column-auto-sizing/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-auto-sizing/tsconfig.json +++ b/samples/grids/tree-grid/column-auto-sizing/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/column-collapsible-groups/package.json b/samples/grids/tree-grid/column-collapsible-groups/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/package.json +++ b/samples/grids/tree-grid/column-collapsible-groups/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-collapsible-groups/tsconfig.json b/samples/grids/tree-grid/column-collapsible-groups/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/tsconfig.json +++ b/samples/grids/tree-grid/column-collapsible-groups/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/column-data-types/package.json b/samples/grids/tree-grid/column-data-types/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/tree-grid/column-data-types/package.json +++ b/samples/grids/tree-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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-data-types/sandbox.config.json b/samples/grids/tree-grid/column-data-types/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/tree-grid/column-data-types/sandbox.config.json +++ b/samples/grids/tree-grid/column-data-types/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/tree-grid/column-data-types/src/index.css b/samples/grids/tree-grid/column-data-types/src/index.css index f6d22d3897..0fe9368715 100644 --- a/samples/grids/tree-grid/column-data-types/src/index.css +++ b/samples/grids/tree-grid/column-data-types/src/index.css @@ -1,6 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -img { - width: 50px; -} +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/tree-grid/column-data-types/src/index.ts b/samples/grids/tree-grid/column-data-types/src/index.ts index 2988d46b89..8855746bb7 100644 --- a/samples/grids/tree-grid/column-data-types/src/index.ts +++ b/samples/grids/tree-grid/column-data-types/src/index.ts @@ -1,11 +1,11 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcColumnComponent, IgcColumnPipeArgs, IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EMPLOYEES_DATA } from './EmployeesData'; - import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; - import "./index.css"; + + export class Sample { public get columnPipeArgs1(): IgcColumnPipeArgs { return { diff --git a/samples/grids/tree-grid/column-data-types/tsconfig.json b/samples/grids/tree-grid/column-data-types/tsconfig.json index a15284fdc2..de23257dd8 100644 --- a/samples/grids/tree-grid/column-data-types/tsconfig.json +++ b/samples/grids/tree-grid/column-data-types/tsconfig.json @@ -1,34 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-hiding-toolbar-style/tsconfig.json b/samples/grids/tree-grid/column-hiding-toolbar-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/tsconfig.json +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/column-hiding-toolbar/package.json b/samples/grids/tree-grid/column-hiding-toolbar/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-hiding-toolbar/tsconfig.json b/samples/grids/tree-grid/column-hiding-toolbar/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/tsconfig.json +++ b/samples/grids/tree-grid/column-hiding-toolbar/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/column-moving-options/package.json b/samples/grids/tree-grid/column-moving-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-moving-options/package.json +++ b/samples/grids/tree-grid/column-moving-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-moving-options/tsconfig.json b/samples/grids/tree-grid/column-moving-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-moving-options/tsconfig.json +++ b/samples/grids/tree-grid/column-moving-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/column-moving-styles/package.json b/samples/grids/tree-grid/column-moving-styles/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-moving-styles/package.json +++ b/samples/grids/tree-grid/column-moving-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-moving-styles/tsconfig.json b/samples/grids/tree-grid/column-moving-styles/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-moving-styles/tsconfig.json +++ b/samples/grids/tree-grid/column-moving-styles/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/column-pinning-options/package.json b/samples/grids/tree-grid/column-pinning-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-pinning-options/package.json +++ b/samples/grids/tree-grid/column-pinning-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning-options/tsconfig.json b/samples/grids/tree-grid/column-pinning-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-pinning-options/tsconfig.json +++ b/samples/grids/tree-grid/column-pinning-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/package.json +++ b/samples/grids/tree-grid/column-pinning-right-side/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning-right-side/tsconfig.json b/samples/grids/tree-grid/column-pinning-right-side/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/tsconfig.json +++ b/samples/grids/tree-grid/column-pinning-right-side/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/column-pinning-styles/package.json b/samples/grids/tree-grid/column-pinning-styles/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-pinning-styles/package.json +++ b/samples/grids/tree-grid/column-pinning-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning-styles/tsconfig.json b/samples/grids/tree-grid/column-pinning-styles/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-pinning-styles/tsconfig.json +++ b/samples/grids/tree-grid/column-pinning-styles/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/column-pinning-toolbar/package.json b/samples/grids/tree-grid/column-pinning-toolbar/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/package.json +++ b/samples/grids/tree-grid/column-pinning-toolbar/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning-toolbar/tsconfig.json b/samples/grids/tree-grid/column-pinning-toolbar/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/tsconfig.json +++ b/samples/grids/tree-grid/column-pinning-toolbar/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/column-pinning/package.json b/samples/grids/tree-grid/column-pinning/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-pinning/package.json +++ b/samples/grids/tree-grid/column-pinning/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning/tsconfig.json b/samples/grids/tree-grid/column-pinning/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-pinning/tsconfig.json +++ b/samples/grids/tree-grid/column-pinning/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/column-resize-styling/package.json b/samples/grids/tree-grid/column-resize-styling/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-resize-styling/package.json +++ b/samples/grids/tree-grid/column-resize-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-resize-styling/tsconfig.json b/samples/grids/tree-grid/column-resize-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-resize-styling/tsconfig.json +++ b/samples/grids/tree-grid/column-resize-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/column-resizing/package.json b/samples/grids/tree-grid/column-resizing/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-resizing/package.json +++ b/samples/grids/tree-grid/column-resizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-resizing/tsconfig.json b/samples/grids/tree-grid/column-resizing/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-resizing/tsconfig.json +++ b/samples/grids/tree-grid/column-resizing/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/column-selection-group/package.json b/samples/grids/tree-grid/column-selection-group/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-selection-group/package.json +++ b/samples/grids/tree-grid/column-selection-group/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-selection-group/tsconfig.json b/samples/grids/tree-grid/column-selection-group/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-selection-group/tsconfig.json +++ b/samples/grids/tree-grid/column-selection-group/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/column-selection-mode/package.json b/samples/grids/tree-grid/column-selection-mode/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/tree-grid/column-selection-mode/package.json +++ b/samples/grids/tree-grid/column-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-selection-mode/tsconfig.json b/samples/grids/tree-grid/column-selection-mode/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-selection-mode/tsconfig.json +++ b/samples/grids/tree-grid/column-selection-mode/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/column-selection-style/package.json b/samples/grids/tree-grid/column-selection-style/package.json index b68931a64a..7b8e158ca4 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-selection-style/sandbox.config.json b/samples/grids/tree-grid/column-selection-style/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/tree-grid/column-selection-style/sandbox.config.json +++ b/samples/grids/tree-grid/column-selection-style/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/tree-grid/column-selection-style/src/index.css b/samples/grids/tree-grid/column-selection-style/src/index.css index 3b1a2d1712..0fe9368715 100644 --- a/samples/grids/tree-grid/column-selection-style/src/index.css +++ b/samples/grids/tree-grid/column-selection-style/src/index.css @@ -1,13 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -#treeGrid { - --ig-grid-row-selected-background: #0062A3; - --ig-grid-row-selected-text-color: #ecaa53; - --ig-grid-row-selected-hover-background: #0062A3; - --ig-grid-header-selected-text-color: #ecaa53; - --ig-grid-header-selected-background: #0062A3; - --ig-grid-row-selected-hover-text-color: #ecaa53; - --ig-grid-row-selected-hover-background: #0062A3; -} - +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/tree-grid/column-selection-style/src/index.ts b/samples/grids/tree-grid/column-selection-style/src/index.ts index 75082e572b..408e1142cf 100644 --- a/samples/grids/tree-grid/column-selection-style/src/index.ts +++ b/samples/grids/tree-grid/column-selection-style/src/index.ts @@ -1,11 +1,11 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; - import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; - import "./index.css"; + + export class Sample { private treeGrid: IgcTreeGridComponent @@ -18,7 +18,6 @@ export class Sample { treeGrid.data = this.employeesFlatDetails; } this._bind(); - } private _employeesFlatDetails: EmployeesFlatDetails = null; diff --git a/samples/grids/tree-grid/column-selection-style/tsconfig.json b/samples/grids/tree-grid/column-selection-style/tsconfig.json index a15284fdc2..de23257dd8 100644 --- a/samples/grids/tree-grid/column-selection-style/tsconfig.json +++ b/samples/grids/tree-grid/column-selection-style/tsconfig.json @@ -1,34 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-selection-styles/package.json b/samples/grids/tree-grid/column-selection-styles/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-selection-styles/package.json +++ b/samples/grids/tree-grid/column-selection-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-selection-styles/tsconfig.json b/samples/grids/tree-grid/column-selection-styles/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-selection-styles/tsconfig.json +++ b/samples/grids/tree-grid/column-selection-styles/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/column-sorting-indicators/package.json b/samples/grids/tree-grid/column-sorting-indicators/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/package.json +++ b/samples/grids/tree-grid/column-sorting-indicators/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-sorting-indicators/tsconfig.json b/samples/grids/tree-grid/column-sorting-indicators/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/tsconfig.json +++ b/samples/grids/tree-grid/column-sorting-indicators/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/column-sorting-options/package.json b/samples/grids/tree-grid/column-sorting-options/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/tree-grid/column-sorting-options/package.json +++ b/samples/grids/tree-grid/column-sorting-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-sorting-options/tsconfig.json b/samples/grids/tree-grid/column-sorting-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-sorting-options/tsconfig.json +++ b/samples/grids/tree-grid/column-sorting-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/column-sorting-style/package.json b/samples/grids/tree-grid/column-sorting-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-sorting-style/package.json +++ b/samples/grids/tree-grid/column-sorting-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-sorting-style/tsconfig.json b/samples/grids/tree-grid/column-sorting-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/column-sorting-style/tsconfig.json +++ b/samples/grids/tree-grid/column-sorting-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/conditional-cell-style-1/tsconfig.json b/samples/grids/tree-grid/conditional-cell-style-1/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/tsconfig.json +++ b/samples/grids/tree-grid/conditional-cell-style-1/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/conditional-cell-style-2/package.json b/samples/grids/tree-grid/conditional-cell-style-2/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/conditional-cell-style-2/tsconfig.json b/samples/grids/tree-grid/conditional-cell-style-2/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/tsconfig.json +++ b/samples/grids/tree-grid/conditional-cell-style-2/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/conditional-row-selectors/package.json b/samples/grids/tree-grid/conditional-row-selectors/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/package.json +++ b/samples/grids/tree-grid/conditional-row-selectors/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/conditional-row-selectors/tsconfig.json b/samples/grids/tree-grid/conditional-row-selectors/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/tsconfig.json +++ b/samples/grids/tree-grid/conditional-row-selectors/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/custom-filtering/package.json b/samples/grids/tree-grid/custom-filtering/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/tree-grid/custom-filtering/package.json +++ b/samples/grids/tree-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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/custom-filtering/sandbox.config.json b/samples/grids/tree-grid/custom-filtering/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/tree-grid/custom-filtering/sandbox.config.json +++ b/samples/grids/tree-grid/custom-filtering/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ 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 index eb1b4c81b3..9ffd555498 100644 --- a/samples/grids/tree-grid/custom-filtering/src/index.ts +++ b/samples/grids/tree-grid/custom-filtering/src/index.ts @@ -1,12 +1,11 @@ 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; @@ -29,8 +28,6 @@ export class Sample { } return this._ordersData; } - - } diff --git a/samples/grids/tree-grid/custom-filtering/tsconfig.json b/samples/grids/tree-grid/custom-filtering/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/tree-grid/custom-filtering/tsconfig.json +++ b/samples/grids/tree-grid/custom-filtering/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/data-exporting-indicator/package.json b/samples/grids/tree-grid/data-exporting-indicator/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/package.json +++ b/samples/grids/tree-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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-exporting-indicator/sandbox.config.json b/samples/grids/tree-grid/data-exporting-indicator/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/sandbox.config.json +++ b/samples/grids/tree-grid/data-exporting-indicator/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/tree-grid/data-exporting-indicator/src/index.ts b/samples/grids/tree-grid/data-exporting-indicator/src/index.ts index 9faf4fcd66..4d85491714 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/src/index.ts +++ b/samples/grids/tree-grid/data-exporting-indicator/src/index.ts @@ -1,14 +1,14 @@ import { IgcGridToolbarComponent, IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { defineComponents, IgcButtonComponent } from 'igniteui-webcomponents'; import { OrdersTreeData } from './OrdersData'; - import 'igniteui-webcomponents-grids/grids/combined'; import 'igniteui-webcomponents-grids/grids/themes/light/bootstrap.css'; + defineComponents(IgcButtonComponent); export class Sample { - + constructor() { const localData: any[] = []; for (let i = 0; i < 10000; i += 3) { diff --git a/samples/grids/tree-grid/data-exporting-indicator/tsconfig.json b/samples/grids/tree-grid/data-exporting-indicator/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/tsconfig.json +++ b/samples/grids/tree-grid/data-exporting-indicator/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/data-searching/package.json b/samples/grids/tree-grid/data-searching/package.json index d3b1f66218..bad35e1865 100644 --- a/samples/grids/tree-grid/data-searching/package.json +++ b/samples/grids/tree-grid/data-searching/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-searching/sandbox.config.json b/samples/grids/tree-grid/data-searching/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/tree-grid/data-searching/sandbox.config.json +++ b/samples/grids/tree-grid/data-searching/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/tree-grid/data-searching/src/index.ts b/samples/grids/tree-grid/data-searching/src/index.ts index 1759777002..ea26c9f655 100644 --- a/samples/grids/tree-grid/data-searching/src/index.ts +++ b/samples/grids/tree-grid/data-searching/src/index.ts @@ -1,7 +1,6 @@ import 'igniteui-webcomponents-grids/grids/combined'; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; - import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { defineComponents, IgcInputComponent, IgcChipComponent, IgcIconComponent, IgcIconButtonComponent, registerIconFromText } from 'igniteui-webcomponents'; import { EmployeesFlatData } from './EmployeesFlatData'; @@ -10,10 +9,10 @@ defineComponents(IgcInputComponent, IgcChipComponent, IgcIconComponent, IgcIconB export class Sample { - private treeGrid: IgcTreeGridComponent; + private treeGrid: IgcTreeGridComponent; private searchBox: IgcInputComponent; - + private icon: IgcIconComponent; private nextIconButton: IgcIconButtonComponent; private prevIconButton: IgcIconButtonComponent; @@ -24,22 +23,22 @@ export class Sample { private _bind: () => void; constructor() { - this.treeGrid = document.getElementById('treeGrid') as IgcTreeGridComponent; - + this.treeGrid = document.getElementById('treeGrid') as IgcTreeGridComponent; + this.nextSearch = this.nextSearch.bind(this); this.prevSearch = this.prevSearch.bind(this); - this.clearSearch = this.clearSearch.bind(this); - + this.clearSearch = this.clearSearch.bind(this); + const prevIconText = ""; const nextIconText = ""; const searchIconText = ""; const clearIconText = ""; - + registerIconFromText('prev', prevIconText, 'material'); registerIconFromText('next', nextIconText, 'material'); registerIconFromText('search', searchIconText, 'material'); registerIconFromText('clear', clearIconText, 'material'); - + this.icon = document.getElementById('icon') as IgcIconComponent; this.nextIconButton = document.getElementById('nextIconBtn') as IgcIconButtonComponent; @@ -51,8 +50,7 @@ export class Sample { this.searchBox = document.getElementById('searchBox') as IgcInputComponent; this._bind = () => { - this.treeGrid.data = new EmployeesFlatData(); - + this.treeGrid.data = new EmployeesFlatData(); this.searchBox.addEventListener("keydown", (evt) => { this.onSearchKeydown(evt); }); this.searchBox.addEventListener("igcInput", (evt) => { this.icon.name = evt.detail ? 'clear' : 'search'; @@ -71,7 +69,7 @@ export class Sample { this._bind(); } - public onSearchKeydown(evt: KeyboardEvent) { + public onSearchKeydown(evt: KeyboardEvent) { if (evt.key === 'Enter' || evt.key === 'ArrowDown') { evt.preventDefault(); this.treeGrid.findNext(this.searchBox.value, this.caseSensitiveChip.selected, this.exactMatchChip.selected); diff --git a/samples/grids/tree-grid/data-searching/tsconfig.json b/samples/grids/tree-grid/data-searching/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/tree-grid/data-searching/tsconfig.json +++ b/samples/grids/tree-grid/data-searching/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/data-summaries-custom/package.json b/samples/grids/tree-grid/data-summaries-custom/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/tree-grid/data-summaries-custom/package.json +++ b/samples/grids/tree-grid/data-summaries-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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-summaries-custom/sandbox.config.json b/samples/grids/tree-grid/data-summaries-custom/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/tree-grid/data-summaries-custom/sandbox.config.json +++ b/samples/grids/tree-grid/data-summaries-custom/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/tree-grid/data-summaries-custom/src/index.css b/samples/grids/tree-grid/data-summaries-custom/src/index.css index 08c65b2d5c..0fe9368715 100644 --- a/samples/grids/tree-grid/data-summaries-custom/src/index.css +++ b/samples/grids/tree-grid/data-summaries-custom/src/index.css @@ -1,6 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -.gridSize { - --ig-size: var(--ig-size-small); -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/tree-grid/data-summaries-custom/src/index.ts b/samples/grids/tree-grid/data-summaries-custom/src/index.ts index 3367f211bd..2dce77c346 100644 --- a/samples/grids/tree-grid/data-summaries-custom/src/index.ts +++ b/samples/grids/tree-grid/data-summaries-custom/src/index.ts @@ -2,11 +2,11 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcColumnComponent, IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDataItem, EmployeesFlatData } from './EmployeesFlatData'; - import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; - import "./index.css"; + + class PtoSummary { count(data: any[]): number { return data.length; @@ -57,7 +57,6 @@ export class Sample { column1.summaries = PtoSummary; } this._bind(); - } private _employeesFlatData: EmployeesFlatData = null; diff --git a/samples/grids/tree-grid/data-summaries-custom/tsconfig.json b/samples/grids/tree-grid/data-summaries-custom/tsconfig.json index a15284fdc2..de23257dd8 100644 --- a/samples/grids/tree-grid/data-summaries-custom/tsconfig.json +++ b/samples/grids/tree-grid/data-summaries-custom/tsconfig.json @@ -1,34 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/data-summary-children/package.json b/samples/grids/tree-grid/data-summary-children/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/tree-grid/data-summary-children/package.json +++ b/samples/grids/tree-grid/data-summary-children/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-summary-children/tsconfig.json b/samples/grids/tree-grid/data-summary-children/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/data-summary-children/tsconfig.json +++ b/samples/grids/tree-grid/data-summary-children/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/data-summary-formatter/package.json b/samples/grids/tree-grid/data-summary-formatter/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/data-summary-formatter/package.json +++ b/samples/grids/tree-grid/data-summary-formatter/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-summary-formatter/tsconfig.json b/samples/grids/tree-grid/data-summary-formatter/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/data-summary-formatter/tsconfig.json +++ b/samples/grids/tree-grid/data-summary-formatter/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/data-summary-options-styling/package.json b/samples/grids/tree-grid/data-summary-options-styling/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/package.json +++ b/samples/grids/tree-grid/data-summary-options-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-summary-options-styling/tsconfig.json b/samples/grids/tree-grid/data-summary-options-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/tsconfig.json +++ b/samples/grids/tree-grid/data-summary-options-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/data-summary-options/package.json b/samples/grids/tree-grid/data-summary-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/data-summary-options/package.json +++ b/samples/grids/tree-grid/data-summary-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-summary-options/tsconfig.json b/samples/grids/tree-grid/data-summary-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/data-summary-options/tsconfig.json +++ b/samples/grids/tree-grid/data-summary-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/data-summary-template/package.json b/samples/grids/tree-grid/data-summary-template/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/tree-grid/data-summary-template/package.json +++ b/samples/grids/tree-grid/data-summary-template/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-summary-template/tsconfig.json b/samples/grids/tree-grid/data-summary-template/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/data-summary-template/tsconfig.json +++ b/samples/grids/tree-grid/data-summary-template/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/editing-columns/package.json b/samples/grids/tree-grid/editing-columns/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/editing-columns/package.json +++ b/samples/grids/tree-grid/editing-columns/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/editing-columns/tsconfig.json b/samples/grids/tree-grid/editing-columns/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/editing-columns/tsconfig.json +++ b/samples/grids/tree-grid/editing-columns/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/editing-events/package.json b/samples/grids/tree-grid/editing-events/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/editing-events/package.json +++ b/samples/grids/tree-grid/editing-events/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/editing-events/tsconfig.json b/samples/grids/tree-grid/editing-events/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/editing-events/tsconfig.json +++ b/samples/grids/tree-grid/editing-events/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/editing-lifecycle/package.json b/samples/grids/tree-grid/editing-lifecycle/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/editing-lifecycle/package.json +++ b/samples/grids/tree-grid/editing-lifecycle/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/editing-lifecycle/tsconfig.json b/samples/grids/tree-grid/editing-lifecycle/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/editing-lifecycle/tsconfig.json +++ b/samples/grids/tree-grid/editing-lifecycle/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/excel-exporting/package.json b/samples/grids/tree-grid/excel-exporting/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/excel-exporting/package.json +++ b/samples/grids/tree-grid/excel-exporting/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-exporting/tsconfig.json b/samples/grids/tree-grid/excel-exporting/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/excel-exporting/tsconfig.json +++ b/samples/grids/tree-grid/excel-exporting/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 dc50bbc8f5..422f6bfa3e 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 @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-1/tsconfig.json b/samples/grids/tree-grid/excel-style-filtering-sample-1/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/tsconfig.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 bffd17003a..4edf508b16 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 @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-2/tsconfig.json b/samples/grids/tree-grid/excel-style-filtering-sample-2/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-2/tsconfig.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-2/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 bffd17003a..4edf508b16 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 @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-3/tsconfig.json b/samples/grids/tree-grid/excel-style-filtering-sample-3/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-3/tsconfig.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-3/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-style-filtering-style/tsconfig.json b/samples/grids/tree-grid/excel-style-filtering-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/tsconfig.json +++ b/samples/grids/tree-grid/excel-style-filtering-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/filtering-options/package.json b/samples/grids/tree-grid/filtering-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/filtering-options/package.json +++ b/samples/grids/tree-grid/filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/filtering-options/tsconfig.json b/samples/grids/tree-grid/filtering-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/filtering-options/tsconfig.json +++ b/samples/grids/tree-grid/filtering-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/filtering-style/package.json b/samples/grids/tree-grid/filtering-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/filtering-style/package.json +++ b/samples/grids/tree-grid/filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/filtering-style/tsconfig.json b/samples/grids/tree-grid/filtering-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/filtering-style/tsconfig.json +++ b/samples/grids/tree-grid/filtering-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/finjs/package.json b/samples/grids/tree-grid/finjs/package.json index 93b946e25b..1dcd5ac7d4 100644 --- a/samples/grids/tree-grid/finjs/package.json +++ b/samples/grids/tree-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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/finjs/sandbox.config.json b/samples/grids/tree-grid/finjs/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/tree-grid/finjs/sandbox.config.json +++ b/samples/grids/tree-grid/finjs/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/tree-grid/finjs/src/index.css b/samples/grids/tree-grid/finjs/src/index.css index b2ddbc6a23..0fe9368715 100644 --- a/samples/grids/tree-grid/finjs/src/index.css +++ b/samples/grids/tree-grid/finjs/src/index.css @@ -1,122 +1,2 @@ /* 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; -} - -.gridSize { - --ig-size: var(--ig-size-medium); -} - -.size-small { - --ig-size: var(--ig-size-small); -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ 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 index 5a9156b103..b49f644d30 100644 --- a/samples/grids/tree-grid/finjs/src/index.ts +++ b/samples/grids/tree-grid/finjs/src/index.ts @@ -16,7 +16,6 @@ ModuleManager.register( export class Sample { - private grid1: IgcTreeGridComponent; private chart: IgcCategoryChartComponent; private _timer: ReturnType; @@ -52,7 +51,6 @@ export class Sample { 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; @@ -62,7 +60,6 @@ export class Sample { this.grid1.data = this.data; }); - const sliderFreqValueSpan = document.getElementById('slider-freq-value') as HTMLElement; const freqSlider = document.getElementById('frequency') as IgcSliderComponent; freqSlider.value = 500; @@ -153,7 +150,6 @@ export class Sample { 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 && @@ -168,7 +164,6 @@ export class Sample { chartDialog.show(); } - public priceTemplate = (ctx: IgcCellTemplateContext) => { const cell = ctx.cell; const rowData = this.grid1.getRowData(cell.id.rowID); diff --git a/samples/grids/tree-grid/finjs/tsconfig.json b/samples/grids/tree-grid/finjs/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/tree-grid/finjs/tsconfig.json +++ b/samples/grids/tree-grid/finjs/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/package.json b/samples/grids/tree-grid/keyboard-custom-navigation/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/package.json +++ b/samples/grids/tree-grid/keyboard-custom-navigation/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/tsconfig.json b/samples/grids/tree-grid/keyboard-custom-navigation/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/tsconfig.json +++ b/samples/grids/tree-grid/keyboard-custom-navigation/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/package.json b/samples/grids/tree-grid/keyboard-navigation-guide/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/tree-grid/keyboard-navigation-guide/package.json +++ b/samples/grids/tree-grid/keyboard-navigation-guide/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/sandbox.config.json b/samples/grids/tree-grid/keyboard-navigation-guide/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/tree-grid/keyboard-navigation-guide/sandbox.config.json +++ b/samples/grids/tree-grid/keyboard-navigation-guide/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/src/index.css b/samples/grids/tree-grid/keyboard-navigation-guide/src/index.css index 35149fb7ad..0fe9368715 100644 --- a/samples/grids/tree-grid/keyboard-navigation-guide/src/index.css +++ b/samples/grids/tree-grid/keyboard-navigation-guide/src/index.css @@ -1,29 +1,2 @@ /* 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 +/* https://static.infragistics.com/xplatform/css/samples */ \ 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 index a863f6554d..209082625b 100644 --- a/samples/grids/tree-grid/keyboard-navigation-guide/src/index.ts +++ b/samples/grids/tree-grid/keyboard-navigation-guide/src/index.ts @@ -34,7 +34,6 @@ const summaryCombinations: Item[] = [ new Item('End', 'navigates to the last summary cell', false, ItemAction.Always) ]; - export class Sample { private grid: IgcTreeGridComponent; @@ -54,6 +53,7 @@ export class Sample { grid.addEventListener("gridKeydown", this.gridKeydown); grid.addEventListener("keydown", this.keydown); } + public changeCombinationsCollection(gridSection: GridSection, evt: any) { switch (gridSection) { case GridSection.THEAD: @@ -240,7 +240,6 @@ export class Sample { this.keydown(evt); } - public listTemplate = () => { let htmlContent = ""; (window as any).onChangeHandler = (i: number) => { diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/tsconfig.json b/samples/grids/tree-grid/keyboard-navigation-guide/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/tree-grid/keyboard-navigation-guide/tsconfig.json +++ b/samples/grids/tree-grid/keyboard-navigation-guide/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/layout-display-density/package.json b/samples/grids/tree-grid/layout-display-density/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/tree-grid/layout-display-density/package.json +++ b/samples/grids/tree-grid/layout-display-density/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/layout-display-density/tsconfig.json b/samples/grids/tree-grid/layout-display-density/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/layout-display-density/tsconfig.json +++ b/samples/grids/tree-grid/layout-display-density/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/load-on-demand/package.json b/samples/grids/tree-grid/load-on-demand/package.json index b68931a64a..7b8e158ca4 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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/load-on-demand/sandbox.config.json b/samples/grids/tree-grid/load-on-demand/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/tree-grid/load-on-demand/sandbox.config.json +++ b/samples/grids/tree-grid/load-on-demand/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/tree-grid/load-on-demand/src/index.ts b/samples/grids/tree-grid/load-on-demand/src/index.ts index 6d5b7ccad8..e1c47cc0d7 100644 --- a/samples/grids/tree-grid/load-on-demand/src/index.ts +++ b/samples/grids/tree-grid/load-on-demand/src/index.ts @@ -1,8 +1,8 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDataItem, EmployeesFlatData } from './EmployeesFlatData'; - import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; + export class Sample { constructor() { diff --git a/samples/grids/tree-grid/load-on-demand/tsconfig.json b/samples/grids/tree-grid/load-on-demand/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/tree-grid/load-on-demand/tsconfig.json +++ b/samples/grids/tree-grid/load-on-demand/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/multi-cell-selection-mode/package.json b/samples/grids/tree-grid/multi-cell-selection-mode/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/tree-grid/multi-cell-selection-mode/package.json +++ b/samples/grids/tree-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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-cell-selection-mode/sandbox.config.json b/samples/grids/tree-grid/multi-cell-selection-mode/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/tree-grid/multi-cell-selection-mode/sandbox.config.json +++ b/samples/grids/tree-grid/multi-cell-selection-mode/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/tree-grid/multi-cell-selection-mode/src/index.css b/samples/grids/tree-grid/multi-cell-selection-mode/src/index.css index 8b42ec3ed2..0fe9368715 100644 --- a/samples/grids/tree-grid/multi-cell-selection-mode/src/index.css +++ b/samples/grids/tree-grid/multi-cell-selection-mode/src/index.css @@ -1,3 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/tree-grid/multi-cell-selection-mode/src/index.ts b/samples/grids/tree-grid/multi-cell-selection-mode/src/index.ts index ce8b293934..7683009df5 100644 --- a/samples/grids/tree-grid/multi-cell-selection-mode/src/index.ts +++ b/samples/grids/tree-grid/multi-cell-selection-mode/src/index.ts @@ -1,11 +1,11 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent, IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatData } from './EmployeesFlatData'; - import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; - import "./index.css"; + + export class Sample { private leftTreeGrid: IgcTreeGridComponent; private rightGrid: IgcGridComponent; diff --git a/samples/grids/tree-grid/multi-cell-selection-mode/tsconfig.json b/samples/grids/tree-grid/multi-cell-selection-mode/tsconfig.json index a15284fdc2..de23257dd8 100644 --- a/samples/grids/tree-grid/multi-cell-selection-mode/tsconfig.json +++ b/samples/grids/tree-grid/multi-cell-selection-mode/tsconfig.json @@ -1,34 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" 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 bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/package.json +++ b/samples/grids/tree-grid/multi-column-headers-export/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-column-headers-export/tsconfig.json b/samples/grids/tree-grid/multi-column-headers-export/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/tsconfig.json +++ b/samples/grids/tree-grid/multi-column-headers-export/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/package.json +++ b/samples/grids/tree-grid/multi-column-headers-overview/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-column-headers-overview/tsconfig.json b/samples/grids/tree-grid/multi-column-headers-overview/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/tsconfig.json +++ b/samples/grids/tree-grid/multi-column-headers-overview/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/package.json +++ b/samples/grids/tree-grid/multi-column-headers-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-column-headers-styling/tsconfig.json b/samples/grids/tree-grid/multi-column-headers-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/tsconfig.json +++ b/samples/grids/tree-grid/multi-column-headers-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/package.json +++ b/samples/grids/tree-grid/multi-column-headers-template/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-column-headers-template/tsconfig.json b/samples/grids/tree-grid/multi-column-headers-template/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/tsconfig.json +++ b/samples/grids/tree-grid/multi-column-headers-template/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/overview-styling/package.json b/samples/grids/tree-grid/overview-styling/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/overview-styling/package.json +++ b/samples/grids/tree-grid/overview-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/overview-styling/tsconfig.json b/samples/grids/tree-grid/overview-styling/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/overview-styling/tsconfig.json +++ b/samples/grids/tree-grid/overview-styling/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/overview/package.json b/samples/grids/tree-grid/overview/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/overview/package.json +++ b/samples/grids/tree-grid/overview/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/overview/tsconfig.json b/samples/grids/tree-grid/overview/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/overview/tsconfig.json +++ b/samples/grids/tree-grid/overview/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/row-adding/package.json b/samples/grids/tree-grid/row-adding/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-adding/package.json +++ b/samples/grids/tree-grid/row-adding/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-adding/tsconfig.json b/samples/grids/tree-grid/row-adding/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/row-adding/tsconfig.json +++ b/samples/grids/tree-grid/row-adding/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/row-classes/package.json b/samples/grids/tree-grid/row-classes/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-classes/package.json +++ b/samples/grids/tree-grid/row-classes/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-classes/tsconfig.json b/samples/grids/tree-grid/row-classes/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/row-classes/tsconfig.json +++ b/samples/grids/tree-grid/row-classes/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/row-drag-base/package.json b/samples/grids/tree-grid/row-drag-base/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/tree-grid/row-drag-base/package.json +++ b/samples/grids/tree-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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-drag-base/sandbox.config.json b/samples/grids/tree-grid/row-drag-base/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/tree-grid/row-drag-base/sandbox.config.json +++ b/samples/grids/tree-grid/row-drag-base/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/tree-grid/row-drag-base/src/index.css b/samples/grids/tree-grid/row-drag-base/src/index.css index 8b42ec3ed2..0fe9368715 100644 --- a/samples/grids/tree-grid/row-drag-base/src/index.css +++ b/samples/grids/tree-grid/row-drag-base/src/index.css @@ -1,3 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/tree-grid/row-drag-base/src/index.ts b/samples/grids/tree-grid/row-drag-base/src/index.ts index 7047f63951..cf91d1ea1b 100644 --- a/samples/grids/tree-grid/row-drag-base/src/index.ts +++ b/samples/grids/tree-grid/row-drag-base/src/index.ts @@ -3,12 +3,12 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebTreeGridDescriptionModule, WebPaginatorDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent, IgcGridToolbarTitleComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesNestedDataItem, EmployeesNestedDataItem_EmployeesItem, EmployeesNestedData } from './EmployeesNestedData'; - import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; - import "./index.css"; + + ModuleManager.register( IgcPropertyEditorPanelModule ); @@ -30,23 +30,22 @@ export class Sample { this._bind = () => { treeGrid.data = this.employeesNestedData; treeGrid2.data = []; - treeGrid2.emptyGridMessage = "Drag and Drop a row from the left grid to this grid"; - treeGrid.addEventListener("rowDragEnd", this.onGridRowDragEnd.bind(this)); + treeGrid2.emptyGridMessage = "Drag and Drop a row from the left grid to this grid"; + treeGrid.addEventListener("rowDragEnd", this.onGridRowDragEnd.bind(this)); } this._bind(); - } public addRowAndChildren(row:EmployeesNestedDataItem, newData:any[]) { if(newData.includes(row)){ return; } - else if(newData.length>0 && row.Employees){ + else if(newData.length>0 && row.Employees){ for(let i= row.Employees.length;i>=0;i--){ if(newData.includes(row.Employees[i])){ - let index = newData.findIndex(element => element.ID === row.Employees[i].ID); + let index = newData.findIndex(element => element.ID === row.Employees[i].ID); if (index > -1) { - newData.splice(index, 1); + newData.splice(index, 1); } } } @@ -58,24 +57,24 @@ export class Sample { } } - newData.push(row); + newData.push(row); } - + public onGridRowDragEnd(args: any): void { const ghostElement = args.detail.dragDirective.ghostElement; if (ghostElement != null) { - const dragElementPos = ghostElement.getBoundingClientRect(); + const dragElementPos = ghostElement.getBoundingClientRect(); - const gridPosition = this.treeGrid2.getBoundingClientRect(); + const gridPosition = this.treeGrid2.getBoundingClientRect(); const withinXBounds = dragElementPos.x >= gridPosition.x && dragElementPos.x <= gridPosition.x + gridPosition.width; const withinYBounds = dragElementPos.y >= gridPosition.y && dragElementPos.y <= gridPosition.y + gridPosition.height; if (withinXBounds && withinYBounds) { const newData = [...this.treeGrid2.data]; const draggedRowData = args.detail.dragData.data; this.addRowAndChildren(draggedRowData, newData); - this.treeGrid2.data = newData; + this.treeGrid2.data = newData; } } } diff --git a/samples/grids/tree-grid/row-drag-base/tsconfig.json b/samples/grids/tree-grid/row-drag-base/tsconfig.json index a15284fdc2..de23257dd8 100644 --- a/samples/grids/tree-grid/row-drag-base/tsconfig.json +++ b/samples/grids/tree-grid/row-drag-base/tsconfig.json @@ -1,34 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/row-editing-options/package.json b/samples/grids/tree-grid/row-editing-options/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-editing-options/package.json +++ b/samples/grids/tree-grid/row-editing-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-editing-options/tsconfig.json b/samples/grids/tree-grid/row-editing-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/row-editing-options/tsconfig.json +++ b/samples/grids/tree-grid/row-editing-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/row-editing-style/package.json b/samples/grids/tree-grid/row-editing-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-editing-style/package.json +++ b/samples/grids/tree-grid/row-editing-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-editing-style/tsconfig.json b/samples/grids/tree-grid/row-editing-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/row-editing-style/tsconfig.json +++ b/samples/grids/tree-grid/row-editing-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/row-paging-basic/package.json b/samples/grids/tree-grid/row-paging-basic/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-paging-basic/package.json +++ b/samples/grids/tree-grid/row-paging-basic/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-paging-basic/tsconfig.json b/samples/grids/tree-grid/row-paging-basic/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/row-paging-basic/tsconfig.json +++ b/samples/grids/tree-grid/row-paging-basic/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/row-paging-options/package.json b/samples/grids/tree-grid/row-paging-options/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/tree-grid/row-paging-options/package.json +++ b/samples/grids/tree-grid/row-paging-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-paging-options/tsconfig.json b/samples/grids/tree-grid/row-paging-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/row-paging-options/tsconfig.json +++ b/samples/grids/tree-grid/row-paging-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/row-paging-style/package.json b/samples/grids/tree-grid/row-paging-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-paging-style/package.json +++ b/samples/grids/tree-grid/row-paging-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-paging-style/tsconfig.json b/samples/grids/tree-grid/row-paging-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/row-paging-style/tsconfig.json +++ b/samples/grids/tree-grid/row-paging-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/row-pinning-extra-column/package.json b/samples/grids/tree-grid/row-pinning-extra-column/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/package.json +++ b/samples/grids/tree-grid/row-pinning-extra-column/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-pinning-extra-column/tsconfig.json b/samples/grids/tree-grid/row-pinning-extra-column/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/tsconfig.json +++ b/samples/grids/tree-grid/row-pinning-extra-column/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/row-pinning-options/package.json b/samples/grids/tree-grid/row-pinning-options/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/tree-grid/row-pinning-options/package.json +++ b/samples/grids/tree-grid/row-pinning-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-pinning-options/tsconfig.json b/samples/grids/tree-grid/row-pinning-options/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/row-pinning-options/tsconfig.json +++ b/samples/grids/tree-grid/row-pinning-options/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/row-pinning-style/package.json b/samples/grids/tree-grid/row-pinning-style/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-pinning-style/package.json +++ b/samples/grids/tree-grid/row-pinning-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-pinning-style/tsconfig.json b/samples/grids/tree-grid/row-pinning-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/row-pinning-style/tsconfig.json +++ b/samples/grids/tree-grid/row-pinning-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/row-reorder/package.json b/samples/grids/tree-grid/row-reorder/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-reorder/package.json +++ b/samples/grids/tree-grid/row-reorder/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-reorder/tsconfig.json b/samples/grids/tree-grid/row-reorder/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/row-reorder/tsconfig.json +++ b/samples/grids/tree-grid/row-reorder/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/row-selection-mode/package.json b/samples/grids/tree-grid/row-selection-mode/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/tree-grid/row-selection-mode/package.json +++ b/samples/grids/tree-grid/row-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-selection-mode/tsconfig.json b/samples/grids/tree-grid/row-selection-mode/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/row-selection-mode/tsconfig.json +++ b/samples/grids/tree-grid/row-selection-mode/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/row-selection-template-excel/package.json b/samples/grids/tree-grid/row-selection-template-excel/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/package.json +++ b/samples/grids/tree-grid/row-selection-template-excel/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-selection-template-excel/tsconfig.json b/samples/grids/tree-grid/row-selection-template-excel/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/tsconfig.json +++ b/samples/grids/tree-grid/row-selection-template-excel/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/package.json +++ b/samples/grids/tree-grid/row-selection-template-numbers/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-selection-template-numbers/tsconfig.json b/samples/grids/tree-grid/row-selection-template-numbers/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/tsconfig.json +++ b/samples/grids/tree-grid/row-selection-template-numbers/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/row-styles/package.json b/samples/grids/tree-grid/row-styles/package.json index bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-styles/package.json +++ b/samples/grids/tree-grid/row-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-styles/tsconfig.json b/samples/grids/tree-grid/row-styles/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/row-styles/tsconfig.json +++ b/samples/grids/tree-grid/row-styles/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/state-persistence-about/package.json b/samples/grids/tree-grid/state-persistence-about/package.json index d3b1f66218..bad35e1865 100644 --- a/samples/grids/tree-grid/state-persistence-about/package.json +++ b/samples/grids/tree-grid/state-persistence-about/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/state-persistence-about/src/index.ts b/samples/grids/tree-grid/state-persistence-about/src/index.ts index 14e8b9e92b..ba99d622f1 100644 --- a/samples/grids/tree-grid/state-persistence-about/src/index.ts +++ b/samples/grids/tree-grid/state-persistence-about/src/index.ts @@ -8,7 +8,7 @@ export class Sample { constructor() { var backBtn = document.getElementById("backBtn") as IgcButtonComponent; - + this._bind = () => { backBtn.addEventListener("click", () => { window.location.replace("./grids/tree-grid/state-persistence-main");}); } diff --git a/samples/grids/tree-grid/state-persistence-about/tsconfig.json b/samples/grids/tree-grid/state-persistence-about/tsconfig.json index 2c74e00627..de23257dd8 100644 --- a/samples/grids/tree-grid/state-persistence-about/tsconfig.json +++ b/samples/grids/tree-grid/state-persistence-about/tsconfig.json @@ -1,34 +1,14 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "resolveJsonModule": 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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/state-persistence-about/webpack.config.js b/samples/grids/tree-grid/state-persistence-about/webpack.config.js index 4f82e885b8..9d11a6155c 100644 --- a/samples/grids/tree-grid/state-persistence-about/webpack.config.js +++ b/samples/grids/tree-grid/state-persistence-about/webpack.config.js @@ -35,7 +35,7 @@ module.exports = env => { ] : path.resolve(__dirname, 'src'), devtool: isProd ? false : 'source-map', output: { - filename: '[name].[fullhash].bundle.js', + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', globalObject: 'this', path: path.resolve(__dirname, 'dist'), }, @@ -96,8 +96,8 @@ module.exports = env => { 'process.env.NODE_ENV': JSON.stringify(nodeEnv) }), new HtmlWebpackPlugin({ - title: 'index-cs', - template: 'index.html', + title: 'for-cs', + template: 'index.html' }), new ForkTsCheckerWebpackPlugin() ] diff --git a/samples/grids/tree-grid/state-persistence-main/package.json b/samples/grids/tree-grid/state-persistence-main/package.json index d3b1f66218..bad35e1865 100644 --- a/samples/grids/tree-grid/state-persistence-main/package.json +++ b/samples/grids/tree-grid/state-persistence-main/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/state-persistence-main/src/index.css b/samples/grids/tree-grid/state-persistence-main/src/index.css index 9e0f296aa9..0fe9368715 100644 --- a/samples/grids/tree-grid/state-persistence-main/src/index.css +++ b/samples/grids/tree-grid/state-persistence-main/src/index.css @@ -1,11 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -.horizontal { - gap: 10px; - flex-basis: fit-content; - flex-wrap: wrap; -} -.sampleContainer { - padding: 0.5rem -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/tree-grid/state-persistence-main/src/index.ts b/samples/grids/tree-grid/state-persistence-main/src/index.ts index eb2111e7ef..ed9a628290 100644 --- a/samples/grids/tree-grid/state-persistence-main/src/index.ts +++ b/samples/grids/tree-grid/state-persistence-main/src/index.ts @@ -34,8 +34,8 @@ export class Sample { columnSelection: true, moving: true }; - private columnsLoaded: Promise; + private columnsLoaded: Promise; constructor() { var grid = this.grid = document.getElementById('grid') as IgcGridComponent; @@ -64,7 +64,6 @@ export class Sample { grid.filterMode = 'excelStyleFilter'; grid.columnSelection = 'multiple'; grid.rowSelection = 'multiple'; - saveStateBtn.addEventListener('click', (ev: any) => { this.saveGridState(); }); restoreStateBtn.addEventListener('click', (ev: any) => { this.restoreGridState(); }); resetStateBtn.addEventListener('click', (ev: any) => { this.resetGridState(); }); @@ -77,9 +76,9 @@ export class Sample { cb.addEventListener("igcChange", (ev: CustomEvent) => { this.onChange(ev, cb.id); }); }); - window.addEventListener("load", async () => { + window.addEventListener("load", async () => { await this.columnsLoaded; - this.restoreGridState(); + this.restoreGridState(); }); window.addEventListener("beforeunload", () => { this.saveGridState(); }); } @@ -136,7 +135,7 @@ export class Sample { window.location.reload(); } - private onColumnInit(event: any) { + private onColumnInit(event: any) { if(event.detail.index === this.grid.columns.length - 1) { this.columnsLoaded = new Promise((resolve) => resolve()); } diff --git a/samples/grids/tree-grid/state-persistence-main/tsconfig.json b/samples/grids/tree-grid/state-persistence-main/tsconfig.json index 2c74e00627..de23257dd8 100644 --- a/samples/grids/tree-grid/state-persistence-main/tsconfig.json +++ b/samples/grids/tree-grid/state-persistence-main/tsconfig.json @@ -1,34 +1,14 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "resolveJsonModule": 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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/state-persistence-main/webpack.config.js b/samples/grids/tree-grid/state-persistence-main/webpack.config.js index 4f82e885b8..9d11a6155c 100644 --- a/samples/grids/tree-grid/state-persistence-main/webpack.config.js +++ b/samples/grids/tree-grid/state-persistence-main/webpack.config.js @@ -35,7 +35,7 @@ module.exports = env => { ] : path.resolve(__dirname, 'src'), devtool: isProd ? false : 'source-map', output: { - filename: '[name].[fullhash].bundle.js', + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', globalObject: 'this', path: path.resolve(__dirname, 'dist'), }, @@ -96,8 +96,8 @@ module.exports = env => { 'process.env.NODE_ENV': JSON.stringify(nodeEnv) }), new HtmlWebpackPlugin({ - title: 'index-cs', - template: 'index.html', + title: 'for-cs', + template: 'index.html' }), new ForkTsCheckerWebpackPlugin() ] diff --git a/samples/grids/tree-grid/toolbar-sample-1/package.json b/samples/grids/tree-grid/toolbar-sample-1/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/package.json +++ b/samples/grids/tree-grid/toolbar-sample-1/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/toolbar-sample-1/tsconfig.json b/samples/grids/tree-grid/toolbar-sample-1/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/tsconfig.json +++ b/samples/grids/tree-grid/toolbar-sample-1/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/toolbar-sample-2/package.json b/samples/grids/tree-grid/toolbar-sample-2/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/tree-grid/toolbar-sample-2/package.json +++ b/samples/grids/tree-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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/toolbar-sample-2/sandbox.config.json b/samples/grids/tree-grid/toolbar-sample-2/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/tree-grid/toolbar-sample-2/sandbox.config.json +++ b/samples/grids/tree-grid/toolbar-sample-2/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/tree-grid/toolbar-sample-2/src/index.css b/samples/grids/tree-grid/toolbar-sample-2/src/index.css index 98b81be55e..0fe9368715 100644 --- a/samples/grids/tree-grid/toolbar-sample-2/src/index.css +++ b/samples/grids/tree-grid/toolbar-sample-2/src/index.css @@ -1,16 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -.cell__inner { - display: flex; - align-items: center; -} - -.name { - margin-left: 30px; -} - -.control_panel { - width: 700px; - margin-bottom: 10px; -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/tree-grid/toolbar-sample-2/src/index.ts b/samples/grids/tree-grid/toolbar-sample-2/src/index.ts index 9c9b94fb98..b96a0ed44b 100644 --- a/samples/grids/tree-grid/toolbar-sample-2/src/index.ts +++ b/samples/grids/tree-grid/toolbar-sample-2/src/index.ts @@ -2,12 +2,12 @@ import { IgcCellTemplateContext, IgcColumnComponent, IgcTreeGridComponent } from import { defineComponents, IgcAvatarComponent, IgcInputComponent, IgcSwitchComponent } from 'igniteui-webcomponents'; import { EmployeesFlatAvatars } from './EmployeesFlatAvatars'; import { html } from 'lit-html'; - import 'igniteui-webcomponents-grids/grids/combined'; import 'igniteui-webcomponents-grids/grids/themes/light/bootstrap.css'; - import "./index.css"; + + defineComponents(IgcAvatarComponent, IgcInputComponent, IgcSwitchComponent); export class Sample { @@ -59,7 +59,7 @@ export class Sample { } return this._employeesFlatAvatars; } - + public webTreeGridAvatarCellTemplate = (ctx: IgcCellTemplateContext) => { return html`
diff --git a/samples/grids/tree-grid/toolbar-sample-2/tsconfig.json b/samples/grids/tree-grid/toolbar-sample-2/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/tree-grid/toolbar-sample-2/tsconfig.json +++ b/samples/grids/tree-grid/toolbar-sample-2/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/toolbar-sample-3/package.json b/samples/grids/tree-grid/toolbar-sample-3/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/package.json +++ b/samples/grids/tree-grid/toolbar-sample-3/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/toolbar-sample-3/tsconfig.json b/samples/grids/tree-grid/toolbar-sample-3/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/tsconfig.json +++ b/samples/grids/tree-grid/toolbar-sample-3/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree-grid/toolbar-sample-4/package.json b/samples/grids/tree-grid/toolbar-sample-4/package.json index b68931a64a..7b8e158ca4 100644 --- a/samples/grids/tree-grid/toolbar-sample-4/package.json +++ b/samples/grids/tree-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": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/toolbar-sample-4/sandbox.config.json b/samples/grids/tree-grid/toolbar-sample-4/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/grids/tree-grid/toolbar-sample-4/sandbox.config.json +++ b/samples/grids/tree-grid/toolbar-sample-4/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/grids/tree-grid/toolbar-sample-4/src/index.css b/samples/grids/tree-grid/toolbar-sample-4/src/index.css index bc0d64e5ae..0fe9368715 100644 --- a/samples/grids/tree-grid/toolbar-sample-4/src/index.css +++ b/samples/grids/tree-grid/toolbar-sample-4/src/index.css @@ -1,11 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -.cell__inner { - display: flex; - align-items: center; -} - -.name { - margin-left: 30px; -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/tree-grid/toolbar-sample-4/src/index.ts b/samples/grids/tree-grid/toolbar-sample-4/src/index.ts index f30c941532..5101546e55 100644 --- a/samples/grids/tree-grid/toolbar-sample-4/src/index.ts +++ b/samples/grids/tree-grid/toolbar-sample-4/src/index.ts @@ -2,12 +2,12 @@ import { IgcCellTemplateContext, IgcColumnComponent, IgcTreeGridComponent } from import { defineComponents, IgcAvatarComponent, IgcButtonComponent, IgcIconComponent, registerIconFromText } from 'igniteui-webcomponents'; import { EmployeesFlatAvatars } from './EmployeesFlatAvatars'; import { html } from 'lit-html'; - import 'igniteui-webcomponents-grids/grids/combined'; import 'igniteui-webcomponents-grids/grids/themes/light/bootstrap.css'; - import "./index.css"; + + defineComponents(IgcButtonComponent, IgcIconComponent, IgcAvatarComponent); const icon = ``; @@ -36,7 +36,7 @@ export class Sample { } return this._employeesFlatAvatars; } - + public webTreeGridAvatarCellTemplate = (ctx: IgcCellTemplateContext) => { return html`
diff --git a/samples/grids/tree-grid/toolbar-sample-4/tsconfig.json b/samples/grids/tree-grid/toolbar-sample-4/tsconfig.json index 861fa3aeb1..de23257dd8 100644 --- a/samples/grids/tree-grid/toolbar-sample-4/tsconfig.json +++ b/samples/grids/tree-grid/toolbar-sample-4/tsconfig.json @@ -1,33 +1,14 @@ { "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" ] - } + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/toolbar-style/package.json b/samples/grids/tree-grid/toolbar-style/package.json index dc50bbc8f5..422f6bfa3e 100644 --- a/samples/grids/tree-grid/toolbar-style/package.json +++ b/samples/grids/tree-grid/toolbar-style/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/toolbar-style/tsconfig.json b/samples/grids/tree-grid/toolbar-style/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/toolbar-style/tsconfig.json +++ b/samples/grids/tree-grid/toolbar-style/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ 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 bffd17003a..4edf508b16 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/package.json +++ b/samples/grids/tree-grid/using-primary-foreign-keys/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-grids": "5.1.0", - "igniteui-webcomponents-inputs": "5.1.0", - "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/using-primary-foreign-keys/tsconfig.json b/samples/grids/tree-grid/using-primary-foreign-keys/tsconfig.json index a15284fdc2..e7c370def4 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/tsconfig.json +++ b/samples/grids/tree-grid/using-primary-foreign-keys/tsconfig.json @@ -27,7 +27,8 @@ "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" ] + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] } }, "include": [ diff --git a/samples/grids/tree/basic-example/.prettierrc b/samples/grids/tree/basic-example/.prettierrc index cb0498d36a..15a7c7c6cf 100644 --- a/samples/grids/tree/basic-example/.prettierrc +++ b/samples/grids/tree/basic-example/.prettierrc @@ -8,4 +8,4 @@ "bracketSpacing": true, "jsxBracketSameLine": false, "fluid": false -} +} \ No newline at end of file diff --git a/samples/grids/tree/basic-example/src/index.css b/samples/grids/tree/basic-example/src/index.css index 98682b8543..0fe9368715 100644 --- a/samples/grids/tree/basic-example/src/index.css +++ b/samples/grids/tree/basic-example/src/index.css @@ -1,2 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/tree/basic-example/tsconfig.json b/samples/grids/tree/basic-example/tsconfig.json index 7c639d7f0c..de23257dd8 100644 --- a/samples/grids/tree/basic-example/tsconfig.json +++ b/samples/grids/tree/basic-example/tsconfig.json @@ -17,4 +17,4 @@ "node_modules", "dist" ] -} +} \ No newline at end of file diff --git a/samples/grids/tree/load-on-demand-virtualized/.prettierrc b/samples/grids/tree/load-on-demand-virtualized/.prettierrc index 1c933eb945..15a7c7c6cf 100644 --- a/samples/grids/tree/load-on-demand-virtualized/.prettierrc +++ b/samples/grids/tree/load-on-demand-virtualized/.prettierrc @@ -1,11 +1,11 @@ { - "printWidth": 120, - "tabWidth": 4, - "useTabs": false, - "semi": true, - "singleQuote": false, - "trailingComma": "none", - "bracketSpacing": true, - "jsxBracketSameLine": false, - "fluid": false -} + "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/load-on-demand-virtualized/sandbox.config.json b/samples/grids/tree/load-on-demand-virtualized/sandbox.config.json index 2ab51ac3f9..5c5b54fe21 100644 --- a/samples/grids/tree/load-on-demand-virtualized/sandbox.config.json +++ b/samples/grids/tree/load-on-demand-virtualized/sandbox.config.json @@ -4,3 +4,4 @@ "view": "browser", "template": "parcel" } + \ No newline at end of file diff --git a/samples/grids/tree/load-on-demand-virtualized/src/index.css b/samples/grids/tree/load-on-demand-virtualized/src/index.css index 98682b8543..0fe9368715 100644 --- a/samples/grids/tree/load-on-demand-virtualized/src/index.css +++ b/samples/grids/tree/load-on-demand-virtualized/src/index.css @@ -1,2 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/tree/load-on-demand-virtualized/tsconfig.json b/samples/grids/tree/load-on-demand-virtualized/tsconfig.json index 4e48434483..de23257dd8 100644 --- a/samples/grids/tree/load-on-demand-virtualized/tsconfig.json +++ b/samples/grids/tree/load-on-demand-virtualized/tsconfig.json @@ -8,8 +8,7 @@ "declaration": true, "target": "es2015", "module": "es2015", - "strict": true, - "experimentalDecorators": true + "strict": true }, "include": [ "src/**/*" @@ -18,4 +17,4 @@ "node_modules", "dist" ] -} +} \ No newline at end of file diff --git a/samples/grids/tree/load-on-demand-virtualized/webpack.config.js b/samples/grids/tree/load-on-demand-virtualized/webpack.config.js index 15e131c0d0..9d11a6155c 100644 --- a/samples/grids/tree/load-on-demand-virtualized/webpack.config.js +++ b/samples/grids/tree/load-on-demand-virtualized/webpack.config.js @@ -1,99 +1,103 @@ -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"); +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"; +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-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", + 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") - }, - - devServer: { - client: { - overlay: false - } + 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"] - }) - ] + 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: /\.(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: 'worker-loader' }, { - loader: "babel-loader", - options: { - compact: isProd ? true : false, - presets: presets, - plugins: ["@babel/plugin-proposal-class-properties", "@babel/plugin-transform-runtime"] + 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", + test: /\.(ts|js)$/, loader: 'babel-loader', options: { - compact: isProd ? true : false, - presets: presets, - plugins: ["@babel/plugin-proposal-class-properties", "@babel/plugin-transform-runtime"] + "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); - } - } - ] + 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) + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) }), new HtmlWebpackPlugin({ - title: "for-cs", - template: "index.html" + title: 'for-cs', + template: 'index.html' }), new ForkTsCheckerWebpackPlugin() ] diff --git a/samples/grids/tree/load-on-demand/.prettierrc b/samples/grids/tree/load-on-demand/.prettierrc index cb0498d36a..15a7c7c6cf 100644 --- a/samples/grids/tree/load-on-demand/.prettierrc +++ b/samples/grids/tree/load-on-demand/.prettierrc @@ -8,4 +8,4 @@ "bracketSpacing": true, "jsxBracketSameLine": false, "fluid": false -} +} \ No newline at end of file diff --git a/samples/grids/tree/load-on-demand/sandbox.config.json b/samples/grids/tree/load-on-demand/sandbox.config.json index 2ab51ac3f9..5c5b54fe21 100644 --- a/samples/grids/tree/load-on-demand/sandbox.config.json +++ b/samples/grids/tree/load-on-demand/sandbox.config.json @@ -4,3 +4,4 @@ "view": "browser", "template": "parcel" } + \ No newline at end of file diff --git a/samples/grids/tree/load-on-demand/src/index.css b/samples/grids/tree/load-on-demand/src/index.css index 98682b8543..0fe9368715 100644 --- a/samples/grids/tree/load-on-demand/src/index.css +++ b/samples/grids/tree/load-on-demand/src/index.css @@ -1,2 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/grids/tree/load-on-demand/tsconfig.json b/samples/grids/tree/load-on-demand/tsconfig.json index 7c639d7f0c..de23257dd8 100644 --- a/samples/grids/tree/load-on-demand/tsconfig.json +++ b/samples/grids/tree/load-on-demand/tsconfig.json @@ -17,4 +17,4 @@ "node_modules", "dist" ] -} +} \ No newline at end of file diff --git a/samples/inputs/button-group/alignment/src/index.css b/samples/inputs/button-group/alignment/src/index.css index e224a9ca33..0fe9368715 100644 --- a/samples/inputs/button-group/alignment/src/index.css +++ b/samples/inputs/button-group/alignment/src/index.css @@ -1,10 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -igc-button-group { - width: 200px; -} - -igc-ripple { - --color: gray; -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/button-group/alignment/src/index.ts b/samples/inputs/button-group/alignment/src/index.ts index 8a1078b247..e0a793139e 100644 --- a/samples/inputs/button-group/alignment/src/index.ts +++ b/samples/inputs/button-group/alignment/src/index.ts @@ -8,4 +8,4 @@ export class ButtonGroupAlignment { } } -new ButtonGroupAlignment(); \ No newline at end of file +new ButtonGroupAlignment(); diff --git a/samples/inputs/button-group/overview/src/index.css b/samples/inputs/button-group/overview/src/index.css index 59cdda9df7..0fe9368715 100644 --- a/samples/inputs/button-group/overview/src/index.css +++ b/samples/inputs/button-group/overview/src/index.css @@ -1,10 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -igc-button-group { - max-width: 400px; -} - -igc-ripple { - --color: gray; -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/button-group/overview/src/index.ts b/samples/inputs/button-group/overview/src/index.ts index 71c53890d4..e2c28a3f29 100644 --- a/samples/inputs/button-group/overview/src/index.ts +++ b/samples/inputs/button-group/overview/src/index.ts @@ -37,4 +37,4 @@ export class ButtonGroupOverview { } } -new ButtonGroupOverview(); \ No newline at end of file +new ButtonGroupOverview(); diff --git a/samples/inputs/button-group/selection/src/index.css b/samples/inputs/button-group/selection/src/index.css index c7e74ab1f4..0fe9368715 100644 --- a/samples/inputs/button-group/selection/src/index.css +++ b/samples/inputs/button-group/selection/src/index.css @@ -1,19 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -.radio-group-container { - width: 400px; - margin-bottom: 1rem; -} - -igc-radio-group { - padding: 0.5rem; -} - -igc-button-group { - width: 200px; -} - -igc-ripple { - --color: gray; -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/button-group/selection/src/index.ts b/samples/inputs/button-group/selection/src/index.ts index 5454962886..91d0b36350 100644 --- a/samples/inputs/button-group/selection/src/index.ts +++ b/samples/inputs/button-group/selection/src/index.ts @@ -45,4 +45,4 @@ export class ButtonGroupSelection { } } -new ButtonGroupSelection(); \ No newline at end of file +new ButtonGroupSelection(); diff --git a/samples/inputs/button-group/size/src/index.css b/samples/inputs/button-group/size/src/index.css index 19ba3286d0..0fe9368715 100644 --- a/samples/inputs/button-group/size/src/index.css +++ b/samples/inputs/button-group/size/src/index.css @@ -1,6 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -igc-button-group { - --ig-size: var(--ig-size-large); -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/button-group/size/src/index.ts b/samples/inputs/button-group/size/src/index.ts index 462645e6cd..0b15bf484f 100644 --- a/samples/inputs/button-group/size/src/index.ts +++ b/samples/inputs/button-group/size/src/index.ts @@ -15,4 +15,4 @@ export class ButtonGroupSize { } } -new ButtonGroupSize(); \ No newline at end of file +new ButtonGroupSize(); diff --git a/samples/inputs/button-group/styling/src/index.css b/samples/inputs/button-group/styling/src/index.css index 4c4814d446..0fe9368715 100644 --- a/samples/inputs/button-group/styling/src/index.css +++ b/samples/inputs/button-group/styling/src/index.css @@ -1,30 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -igc-button-group { - width: 200px; -} - -igc-ripple { - --color: gray; -} - -igc-toggle-button::part(toggle) { - color: #fdfdfd; - background: #2f4d6a; -} - -igc-toggle-button::part(toggle):hover { - color: #fdfdfd; - background: #1f3347; -} - -igc-toggle-button[disabled]::part(toggle) { - color: gray; - background: lightgray; -} - -igc-toggle-button[selected]::part(toggle) { - color: #fdfdfd; - background: #1f3347; -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/button-group/styling/src/index.ts b/samples/inputs/button-group/styling/src/index.ts index b6c91178f4..7a33e389bf 100644 --- a/samples/inputs/button-group/styling/src/index.ts +++ b/samples/inputs/button-group/styling/src/index.ts @@ -8,4 +8,4 @@ export class ButtonGroupStyling { } } -new ButtonGroupStyling(); \ No newline at end of file +new ButtonGroupStyling(); diff --git a/samples/inputs/button/size/src/index.ts b/samples/inputs/button/size/src/index.ts index abe366cc55..5d171b2944 100644 --- a/samples/inputs/button/size/src/index.ts +++ b/samples/inputs/button/size/src/index.ts @@ -22,7 +22,7 @@ export class ButtonSizing { this.flatButton.style.setProperty('--ig-size', `var(--ig-size-${radio.target.value})`); this.containedButton.style.setProperty('--ig-size', `var(--ig-size-${radio.target.value})`); this.fabButton.style.setProperty('--ig-size', `var(--ig-size-${radio.target.value})`); - }); + }); } } diff --git a/samples/inputs/color-editor/overview/.prettierrc b/samples/inputs/color-editor/overview/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/inputs/color-editor/overview/.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/inputs/color-editor/overview/ReadMe.md b/samples/inputs/color-editor/overview/ReadMe.md new file mode 100644 index 0000000000..a75c4d8a2d --- /dev/null +++ b/samples/inputs/color-editor/overview/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of Web Components application with example of Overview feature using [Color Editor](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-wc-examples.git +git checkout master +cd ./igniteui-wc-examples +cd ./samples/inputs/color-editor/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/inputs/color-editor/overview/index.html b/samples/inputs/color-editor/overview/index.html new file mode 100644 index 0000000000..67cd7538d9 --- /dev/null +++ b/samples/inputs/color-editor/overview/index.html @@ -0,0 +1,34 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+ + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json new file mode 100644 index 0000000000..97f49f80d8 --- /dev/null +++ b/samples/inputs/color-editor/overview/package.json @@ -0,0 +1,57 @@ +{ + "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": { + "babel-runtime": "^6.26.0", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "lit-html": "^3.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.96.1", + "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/inputs/color-editor/overview/sandbox.config.json b/samples/inputs/color-editor/overview/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/inputs/color-editor/overview/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/inputs/color-editor/overview/src/index.css b/samples/inputs/color-editor/overview/src/index.css new file mode 100644 index 0000000000..8b42ec3ed2 --- /dev/null +++ b/samples/inputs/color-editor/overview/src/index.css @@ -0,0 +1,3 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/inputs/color-editor/overview/src/index.ts b/samples/inputs/color-editor/overview/src/index.ts new file mode 100644 index 0000000000..0aff5c986e --- /dev/null +++ b/samples/inputs/color-editor/overview/src/index.ts @@ -0,0 +1,23 @@ +import { IgcColorEditorModule } from 'igniteui-webcomponents-inputs'; +import { IgcColorEditorComponent } from 'igniteui-webcomponents-inputs'; + +import { ModuleManager } from 'igniteui-webcomponents-core'; + +import "./index.css"; + +ModuleManager.register( + IgcColorEditorModule +); + +export class Sample { + + private colorEditor: IgcColorEditorComponent + + constructor() { + var colorEditor = this.colorEditor = document.getElementById('colorEditor') as IgcColorEditorComponent; + + } + +} + +new Sample(); diff --git a/samples/inputs/color-editor/overview/tsconfig.json b/samples/inputs/color-editor/overview/tsconfig.json new file mode 100644 index 0000000000..e7c370def4 --- /dev/null +++ b/samples/inputs/color-editor/overview/tsconfig.json @@ -0,0 +1,41 @@ +{ + "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" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/inputs/color-editor/overview/tslint.json b/samples/inputs/color-editor/overview/tslint.json new file mode 100644 index 0000000000..e3b56e93a1 --- /dev/null +++ b/samples/inputs/color-editor/overview/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/inputs/color-editor/overview/webpack.config.js b/samples/inputs/color-editor/overview/webpack.config.js new file mode 100644 index 0000000000..1de7f08279 --- /dev/null +++ b/samples/inputs/color-editor/overview/webpack.config.js @@ -0,0 +1,103 @@ +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, '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/inputs/combo/features/src/index.css b/samples/inputs/combo/features/src/index.css index ae63539c88..0fe9368715 100644 --- a/samples/inputs/combo/features/src/index.css +++ b/samples/inputs/combo/features/src/index.css @@ -1,9 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -.options { - display: flex; - flex-direction: column; - margin-top: 12px; - gap: 8px; -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/combo/selection/src/index.css b/samples/inputs/combo/selection/src/index.css index 968620263b..0fe9368715 100644 --- a/samples/inputs/combo/selection/src/index.css +++ b/samples/inputs/combo/selection/src/index.css @@ -1,7 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ -.button-container { - display: flex; - margin-top: 16px; - gap: 8px; -} +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/combo/simplified/src/index.css b/samples/inputs/combo/simplified/src/index.css index ae63539c88..0fe9368715 100644 --- a/samples/inputs/combo/simplified/src/index.css +++ b/samples/inputs/combo/simplified/src/index.css @@ -1,9 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -.options { - display: flex; - flex-direction: column; - margin-top: 12px; - gap: 8px; -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/combo/styling/src/index.css b/samples/inputs/combo/styling/src/index.css index a596b95f1b..0fe9368715 100644 --- a/samples/inputs/combo/styling/src/index.css +++ b/samples/inputs/combo/styling/src/index.css @@ -1,33 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ -igc-combo::part(label), -igc-combo::part(empty), -igc-combo::part(group-header) { - color: #2B3A55; -} - -igc-combo::part(native-input), -igc-combo::part(list-wrapper) { - background-color: #F2E5E5; -} - -igc-combo::part(item selected) { - background: #E8C4C4; -} - -igc-combo::part(item selected active), -igc-combo::part(item selected):hover { - background: #CE7777; -} - -igc-combo::part(prefix), -igc-combo::part(suffix), -igc-combo::part(case-icon) { - color: #F2E5E5; - background-color: #2B3A55; -} - -igc-combo::part(checkbox checked)::after { - background: #2B3A55; - box-shadow: none; -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/combo/templates/src/index.css b/samples/inputs/combo/templates/src/index.css index 5c44cbceb8..0fe9368715 100644 --- a/samples/inputs/combo/templates/src/index.css +++ b/samples/inputs/combo/templates/src/index.css @@ -1,12 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -igc-combo::part(header), -igc-combo::part(footer) { - padding: 12px 8px; - text-align: center; -} - -igc-combo::part(empty) { - font-size: 16px; -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/combo/templates/src/index.ts b/samples/inputs/combo/templates/src/index.ts index 7577d76e81..a0a27f3c26 100644 --- a/samples/inputs/combo/templates/src/index.ts +++ b/samples/inputs/combo/templates/src/index.ts @@ -47,7 +47,6 @@ export class ComboTemplates { protected itemTemplate: ComboItemTemplate = ({ item }) => { return html` ${item.name} [${item.id}]`; }; - protected groupHeaderTemplate: ComboItemTemplate = ({ item }) => { return html`Country of ${item.country}`; }; diff --git a/samples/inputs/date-time-input/step-up-down/src/index.ts b/samples/inputs/date-time-input/step-up-down/src/index.ts index 0ae596928a..ca895aa2eb 100644 --- a/samples/inputs/date-time-input/step-up-down/src/index.ts +++ b/samples/inputs/date-time-input/step-up-down/src/index.ts @@ -27,11 +27,11 @@ export class DateTimeInputStepUpDown { const up = document.getElementById('up'); const down = document.getElementById('down'); - up!.addEventListener('click', () => { + up!.addEventListener('click', () => { input.stepUp("month" as DatePart); }); - down!.addEventListener('click', () => { + down!.addEventListener('click', () => { input.stepDown("date" as DatePart); }); diff --git a/samples/inputs/icon-button/styling/src/index.css b/samples/inputs/icon-button/styling/src/index.css index 98682b8543..0fe9368715 100644 --- a/samples/inputs/icon-button/styling/src/index.css +++ b/samples/inputs/icon-button/styling/src/index.css @@ -1,2 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/icon-button/variant/src/index.ts b/samples/inputs/icon-button/variant/src/index.ts index 6ba73102ca..7ac6cd0512 100644 --- a/samples/inputs/icon-button/variant/src/index.ts +++ b/samples/inputs/icon-button/variant/src/index.ts @@ -5,7 +5,6 @@ defineComponents(IgcIconButtonComponent); const thumbUpIcon = ''; - export class IconButtonVariants { constructor() { registerIconFromText("thumb-up", thumbUpIcon, "material"); diff --git a/samples/inputs/input/size/src/index.ts b/samples/inputs/input/size/src/index.ts index daad80b737..18cd17009e 100644 --- a/samples/inputs/input/size/src/index.ts +++ b/samples/inputs/input/size/src/index.ts @@ -18,12 +18,12 @@ export class InputSize { this.inputDisabled = document.getElementById('input-disabled') as IgcInputComponent; this.inputReadonly = document.getElementById('input-readonly') as IgcInputComponent; registerIconFromText("phone", phoneIcon); - + this.radioGroup.addEventListener('click', (radio: any) => { this.inputRequired.style.setProperty('--ig-size', `var(--ig-size-${radio.target.value})`); this.inputDisabled.style.setProperty('--ig-size', `var(--ig-size-${radio.target.value})`); this.inputReadonly.style.setProperty('--ig-size', `var(--ig-size-${radio.target.value})`); - }); + }); } } diff --git a/samples/inputs/mask-input/applying-mask/.prettierrc b/samples/inputs/mask-input/applying-mask/.prettierrc index cb0498d36a..15a7c7c6cf 100644 --- a/samples/inputs/mask-input/applying-mask/.prettierrc +++ b/samples/inputs/mask-input/applying-mask/.prettierrc @@ -8,4 +8,4 @@ "bracketSpacing": true, "jsxBracketSameLine": false, "fluid": false -} +} \ No newline at end of file diff --git a/samples/inputs/mask-input/applying-mask/src/index.css b/samples/inputs/mask-input/applying-mask/src/index.css index 98682b8543..0fe9368715 100644 --- a/samples/inputs/mask-input/applying-mask/src/index.css +++ b/samples/inputs/mask-input/applying-mask/src/index.css @@ -1,2 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/mask-input/applying-mask/tsconfig.json b/samples/inputs/mask-input/applying-mask/tsconfig.json index 7c639d7f0c..de23257dd8 100644 --- a/samples/inputs/mask-input/applying-mask/tsconfig.json +++ b/samples/inputs/mask-input/applying-mask/tsconfig.json @@ -17,4 +17,4 @@ "node_modules", "dist" ] -} +} \ No newline at end of file diff --git a/samples/inputs/mask-input/overview/.prettierrc b/samples/inputs/mask-input/overview/.prettierrc index cb0498d36a..15a7c7c6cf 100644 --- a/samples/inputs/mask-input/overview/.prettierrc +++ b/samples/inputs/mask-input/overview/.prettierrc @@ -8,4 +8,4 @@ "bracketSpacing": true, "jsxBracketSameLine": false, "fluid": false -} +} \ No newline at end of file diff --git a/samples/inputs/mask-input/overview/src/index.css b/samples/inputs/mask-input/overview/src/index.css index 98682b8543..0fe9368715 100644 --- a/samples/inputs/mask-input/overview/src/index.css +++ b/samples/inputs/mask-input/overview/src/index.css @@ -1,2 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/mask-input/overview/tsconfig.json b/samples/inputs/mask-input/overview/tsconfig.json index 7c639d7f0c..de23257dd8 100644 --- a/samples/inputs/mask-input/overview/tsconfig.json +++ b/samples/inputs/mask-input/overview/tsconfig.json @@ -17,4 +17,4 @@ "node_modules", "dist" ] -} +} \ No newline at end of file diff --git a/samples/inputs/mask-input/value-modes/.prettierrc b/samples/inputs/mask-input/value-modes/.prettierrc index cb0498d36a..15a7c7c6cf 100644 --- a/samples/inputs/mask-input/value-modes/.prettierrc +++ b/samples/inputs/mask-input/value-modes/.prettierrc @@ -8,4 +8,4 @@ "bracketSpacing": true, "jsxBracketSameLine": false, "fluid": false -} +} \ No newline at end of file diff --git a/samples/inputs/mask-input/value-modes/src/index.css b/samples/inputs/mask-input/value-modes/src/index.css index 98682b8543..0fe9368715 100644 --- a/samples/inputs/mask-input/value-modes/src/index.css +++ b/samples/inputs/mask-input/value-modes/src/index.css @@ -1,2 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/mask-input/value-modes/tsconfig.json b/samples/inputs/mask-input/value-modes/tsconfig.json index 7c639d7f0c..de23257dd8 100644 --- a/samples/inputs/mask-input/value-modes/tsconfig.json +++ b/samples/inputs/mask-input/value-modes/tsconfig.json @@ -17,4 +17,4 @@ "node_modules", "dist" ] -} +} \ No newline at end of file diff --git a/samples/inputs/radio/styling/src/index.css b/samples/inputs/radio/styling/src/index.css index 9f94f15bdd..0fe9368715 100644 --- a/samples/inputs/radio/styling/src/index.css +++ b/samples/inputs/radio/styling/src/index.css @@ -1,11 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ -:root { - --ig-primary-h: 60deg; - --ig-primary-s: 100%; - --ig-primary-l: 25%; -} - -igc-radio::part(control) { - --size: 18px; -} +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/rating/basic/src/index.css b/samples/inputs/rating/basic/src/index.css index cb2d060e11..0fe9368715 100644 --- a/samples/inputs/rating/basic/src/index.css +++ b/samples/inputs/rating/basic/src/index.css @@ -1,5 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ -.size-large { - --ig-size: var(--ig-size-large); -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/rating/single-selection/src/index.css b/samples/inputs/rating/single-selection/src/index.css index c74824388c..0fe9368715 100644 --- a/samples/inputs/rating/single-selection/src/index.css +++ b/samples/inputs/rating/single-selection/src/index.css @@ -1,6 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -igc-rating::part(symbols) { - gap: 8px; -} +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/rating/styling/src/index.css b/samples/inputs/rating/styling/src/index.css index 3b69b0b124..0fe9368715 100644 --- a/samples/inputs/rating/styling/src/index.css +++ b/samples/inputs/rating/styling/src/index.css @@ -1,28 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -igc-rating { - --symbol-size: 44px; - --symbol-full-color: hsla(var(--ig-warn-A400), var(--ig-warn-a)); - --symbol-empty-color: hsla(var(--ig-warn-A400), var(--ig-warn-a)); -} - -igc-rating[disabled] { - --symbol-full-color: hsla(var(--ig-gray-400), var(--ig-gray-a)); - --symbol-empty-color: hsla(var(--ig-gray-400), var(--ig-gray-a)); -} - -igc-rating::part(label) { - font-size: 18px; - font-weight: 600; - text-transform: var(--ig-overline-text-transform); - color: hsla(var(--ig-gray-600), var(--ig-gray-a)); -} - -igc-rating::part(symbols) { - gap: 8px; -} - -.size-large { - --ig-size: var(--ig-size-large); -} +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/textarea/form-integration/sandbox.config.json b/samples/inputs/textarea/form-integration/sandbox.config.json index 2ab51ac3f9..5c5b54fe21 100644 --- a/samples/inputs/textarea/form-integration/sandbox.config.json +++ b/samples/inputs/textarea/form-integration/sandbox.config.json @@ -4,3 +4,4 @@ "view": "browser", "template": "parcel" } + \ No newline at end of file diff --git a/samples/inputs/textarea/form-integration/src/index.css b/samples/inputs/textarea/form-integration/src/index.css index 7a32d0ee73..0fe9368715 100644 --- a/samples/inputs/textarea/form-integration/src/index.css +++ b/samples/inputs/textarea/form-integration/src/index.css @@ -1,6 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -.controls { - margin-top: 1rem; -} +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/textarea/form-integration/tsconfig.json b/samples/inputs/textarea/form-integration/tsconfig.json index b4a0e0068d..de23257dd8 100644 --- a/samples/inputs/textarea/form-integration/tsconfig.json +++ b/samples/inputs/textarea/form-integration/tsconfig.json @@ -1,15 +1,20 @@ { - "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true - }, - "include": ["src/**/*"], - "exclude": ["node_modules", "dist"] -} + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/inputs/textarea/form-integration/webpack.config.js b/samples/inputs/textarea/form-integration/webpack.config.js index bd525cc131..9d11a6155c 100644 --- a/samples/inputs/textarea/form-integration/webpack.config.js +++ b/samples/inputs/textarea/form-integration/webpack.config.js @@ -1,93 +1,103 @@ -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"); +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"; +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-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", + 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") + 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"] - }) - ] + 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: /\.(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: 'worker-loader' }, { - loader: "babel-loader", - options: { - compact: isProd ? true : false, - presets: presets, - plugins: ["@babel/plugin-proposal-class-properties", "@babel/plugin-transform-runtime"] + 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", + test: /\.(ts|js)$/, loader: 'babel-loader', options: { - compact: isProd ? true : false, - presets: presets, - plugins: ["@babel/plugin-proposal-class-properties", "@babel/plugin-transform-runtime"] + "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); - } - } - ] + 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) + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) }), new HtmlWebpackPlugin({ - title: "for-cs", - template: "index.html" + title: 'for-cs', + template: 'index.html' }), new ForkTsCheckerWebpackPlugin() ] diff --git a/samples/inputs/textarea/overview/sandbox.config.json b/samples/inputs/textarea/overview/sandbox.config.json index 2ab51ac3f9..5c5b54fe21 100644 --- a/samples/inputs/textarea/overview/sandbox.config.json +++ b/samples/inputs/textarea/overview/sandbox.config.json @@ -4,3 +4,4 @@ "view": "browser", "template": "parcel" } + \ No newline at end of file diff --git a/samples/inputs/textarea/overview/src/index.css b/samples/inputs/textarea/overview/src/index.css index 98682b8543..0fe9368715 100644 --- a/samples/inputs/textarea/overview/src/index.css +++ b/samples/inputs/textarea/overview/src/index.css @@ -1,2 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/textarea/overview/tsconfig.json b/samples/inputs/textarea/overview/tsconfig.json index b4a0e0068d..de23257dd8 100644 --- a/samples/inputs/textarea/overview/tsconfig.json +++ b/samples/inputs/textarea/overview/tsconfig.json @@ -1,15 +1,20 @@ { - "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true - }, - "include": ["src/**/*"], - "exclude": ["node_modules", "dist"] -} + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/inputs/textarea/overview/webpack.config.js b/samples/inputs/textarea/overview/webpack.config.js index bd525cc131..9d11a6155c 100644 --- a/samples/inputs/textarea/overview/webpack.config.js +++ b/samples/inputs/textarea/overview/webpack.config.js @@ -1,93 +1,103 @@ -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"); +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"; +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-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", + 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") + 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"] - }) - ] + 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: /\.(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: 'worker-loader' }, { - loader: "babel-loader", - options: { - compact: isProd ? true : false, - presets: presets, - plugins: ["@babel/plugin-proposal-class-properties", "@babel/plugin-transform-runtime"] + 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", + test: /\.(ts|js)$/, loader: 'babel-loader', options: { - compact: isProd ? true : false, - presets: presets, - plugins: ["@babel/plugin-proposal-class-properties", "@babel/plugin-transform-runtime"] + "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); - } - } - ] + 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) + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) }), new HtmlWebpackPlugin({ - title: "for-cs", - template: "index.html" + title: 'for-cs', + template: 'index.html' }), new ForkTsCheckerWebpackPlugin() ] diff --git a/samples/inputs/textarea/resize/sandbox.config.json b/samples/inputs/textarea/resize/sandbox.config.json index 2ab51ac3f9..5c5b54fe21 100644 --- a/samples/inputs/textarea/resize/sandbox.config.json +++ b/samples/inputs/textarea/resize/sandbox.config.json @@ -4,3 +4,4 @@ "view": "browser", "template": "parcel" } + \ No newline at end of file diff --git a/samples/inputs/textarea/resize/src/index.css b/samples/inputs/textarea/resize/src/index.css index 98682b8543..0fe9368715 100644 --- a/samples/inputs/textarea/resize/src/index.css +++ b/samples/inputs/textarea/resize/src/index.css @@ -1,2 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/textarea/resize/tsconfig.json b/samples/inputs/textarea/resize/tsconfig.json index b4a0e0068d..de23257dd8 100644 --- a/samples/inputs/textarea/resize/tsconfig.json +++ b/samples/inputs/textarea/resize/tsconfig.json @@ -1,15 +1,20 @@ { - "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true - }, - "include": ["src/**/*"], - "exclude": ["node_modules", "dist"] -} + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/inputs/textarea/resize/webpack.config.js b/samples/inputs/textarea/resize/webpack.config.js index bd525cc131..9d11a6155c 100644 --- a/samples/inputs/textarea/resize/webpack.config.js +++ b/samples/inputs/textarea/resize/webpack.config.js @@ -1,93 +1,103 @@ -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"); +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"; +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-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", + 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") + 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"] - }) - ] + 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: /\.(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: 'worker-loader' }, { - loader: "babel-loader", - options: { - compact: isProd ? true : false, - presets: presets, - plugins: ["@babel/plugin-proposal-class-properties", "@babel/plugin-transform-runtime"] + 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", + test: /\.(ts|js)$/, loader: 'babel-loader', options: { - compact: isProd ? true : false, - presets: presets, - plugins: ["@babel/plugin-proposal-class-properties", "@babel/plugin-transform-runtime"] + "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); - } - } - ] + 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) + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) }), new HtmlWebpackPlugin({ - title: "for-cs", - template: "index.html" + title: 'for-cs', + template: 'index.html' }), new ForkTsCheckerWebpackPlugin() ] diff --git a/samples/inputs/textarea/slots/sandbox.config.json b/samples/inputs/textarea/slots/sandbox.config.json index 2ab51ac3f9..5c5b54fe21 100644 --- a/samples/inputs/textarea/slots/sandbox.config.json +++ b/samples/inputs/textarea/slots/sandbox.config.json @@ -4,3 +4,4 @@ "view": "browser", "template": "parcel" } + \ No newline at end of file diff --git a/samples/inputs/textarea/slots/src/index.css b/samples/inputs/textarea/slots/src/index.css index 98682b8543..0fe9368715 100644 --- a/samples/inputs/textarea/slots/src/index.css +++ b/samples/inputs/textarea/slots/src/index.css @@ -1,2 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/textarea/slots/tsconfig.json b/samples/inputs/textarea/slots/tsconfig.json index b4a0e0068d..de23257dd8 100644 --- a/samples/inputs/textarea/slots/tsconfig.json +++ b/samples/inputs/textarea/slots/tsconfig.json @@ -1,15 +1,20 @@ { - "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true - }, - "include": ["src/**/*"], - "exclude": ["node_modules", "dist"] -} + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/inputs/textarea/slots/webpack.config.js b/samples/inputs/textarea/slots/webpack.config.js index bd525cc131..9d11a6155c 100644 --- a/samples/inputs/textarea/slots/webpack.config.js +++ b/samples/inputs/textarea/slots/webpack.config.js @@ -1,93 +1,103 @@ -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"); +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"; +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-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", + 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") + 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"] - }) - ] + 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: /\.(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: 'worker-loader' }, { - loader: "babel-loader", - options: { - compact: isProd ? true : false, - presets: presets, - plugins: ["@babel/plugin-proposal-class-properties", "@babel/plugin-transform-runtime"] + 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", + test: /\.(ts|js)$/, loader: 'babel-loader', options: { - compact: isProd ? true : false, - presets: presets, - plugins: ["@babel/plugin-proposal-class-properties", "@babel/plugin-transform-runtime"] + "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); - } - } - ] + 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) + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) }), new HtmlWebpackPlugin({ - title: "for-cs", - template: "index.html" + title: 'for-cs', + template: 'index.html' }), new ForkTsCheckerWebpackPlugin() ] diff --git a/samples/inputs/textarea/styling/sandbox.config.json b/samples/inputs/textarea/styling/sandbox.config.json index 2ab51ac3f9..5c5b54fe21 100644 --- a/samples/inputs/textarea/styling/sandbox.config.json +++ b/samples/inputs/textarea/styling/sandbox.config.json @@ -4,3 +4,4 @@ "view": "browser", "template": "parcel" } + \ No newline at end of file diff --git a/samples/inputs/textarea/styling/src/index.css b/samples/inputs/textarea/styling/src/index.css index 98682b8543..0fe9368715 100644 --- a/samples/inputs/textarea/styling/src/index.css +++ b/samples/inputs/textarea/styling/src/index.css @@ -1,2 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/inputs/textarea/styling/tsconfig.json b/samples/inputs/textarea/styling/tsconfig.json index b4a0e0068d..de23257dd8 100644 --- a/samples/inputs/textarea/styling/tsconfig.json +++ b/samples/inputs/textarea/styling/tsconfig.json @@ -1,15 +1,20 @@ { - "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true - }, - "include": ["src/**/*"], - "exclude": ["node_modules", "dist"] -} + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/inputs/textarea/styling/webpack.config.js b/samples/inputs/textarea/styling/webpack.config.js index bd525cc131..9d11a6155c 100644 --- a/samples/inputs/textarea/styling/webpack.config.js +++ b/samples/inputs/textarea/styling/webpack.config.js @@ -1,93 +1,103 @@ -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"); +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"; +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-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", + 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") + 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"] - }) - ] + 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: /\.(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: 'worker-loader' }, { - loader: "babel-loader", - options: { - compact: isProd ? true : false, - presets: presets, - plugins: ["@babel/plugin-proposal-class-properties", "@babel/plugin-transform-runtime"] + 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", + test: /\.(ts|js)$/, loader: 'babel-loader', options: { - compact: isProd ? true : false, - presets: presets, - plugins: ["@babel/plugin-proposal-class-properties", "@babel/plugin-transform-runtime"] + "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); - } - } - ] + 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) + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) }), new HtmlWebpackPlugin({ - title: "for-cs", - template: "index.html" + title: 'for-cs', + template: 'index.html' }), new ForkTsCheckerWebpackPlugin() ] diff --git a/samples/layouts/avatar/image/src/index.ts b/samples/layouts/avatar/image/src/index.ts index cb131dfb3b..d46a87c84a 100644 --- a/samples/layouts/avatar/image/src/index.ts +++ b/samples/layouts/avatar/image/src/index.ts @@ -3,7 +3,7 @@ import 'igniteui-webcomponents/themes/light/bootstrap.css'; defineComponents(IgcAvatarComponent, IgcIconComponent); const homeIcon = - ''; + ''; export class ImageAvatar { constructor() { diff --git a/samples/layouts/card/integration/.prettierrc b/samples/layouts/card/integration/.prettierrc index cb0498d36a..15a7c7c6cf 100644 --- a/samples/layouts/card/integration/.prettierrc +++ b/samples/layouts/card/integration/.prettierrc @@ -8,4 +8,4 @@ "bracketSpacing": true, "jsxBracketSameLine": false, "fluid": false -} +} \ No newline at end of file diff --git a/samples/layouts/card/integration/src/index.css b/samples/layouts/card/integration/src/index.css index 98682b8543..0fe9368715 100644 --- a/samples/layouts/card/integration/src/index.css +++ b/samples/layouts/card/integration/src/index.css @@ -1,2 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/card/integration/src/index.ts b/samples/layouts/card/integration/src/index.ts index 19d11b84d9..7a83a89380 100644 --- a/samples/layouts/card/integration/src/index.ts +++ b/samples/layouts/card/integration/src/index.ts @@ -1,4 +1,4 @@ -import { +import { defineComponents, IgcNavDrawerComponent, IgcIconComponent, @@ -43,11 +43,11 @@ export class CardIntegrationComponent { constructor() { const btn = document.getElementById('drawerToggle'); const navDrawer = document.querySelector('igc-nav-drawer') as IgcNavDrawerComponent; - + btn!.addEventListener('click', () => { navDrawer.toggle(); }); - + registerIconFromText('logout', logout); registerIconFromText('list', list); registerIconFromText('dashboard', dashboard); diff --git a/samples/layouts/card/integration/tsconfig.json b/samples/layouts/card/integration/tsconfig.json index 7c639d7f0c..de23257dd8 100644 --- a/samples/layouts/card/integration/tsconfig.json +++ b/samples/layouts/card/integration/tsconfig.json @@ -17,4 +17,4 @@ "node_modules", "dist" ] -} +} \ No newline at end of file diff --git a/samples/layouts/carousel/animations/src/index.css b/samples/layouts/carousel/animations/src/index.css index 2d82443ecf..0fe9368715 100644 --- a/samples/layouts/carousel/animations/src/index.css +++ b/samples/layouts/carousel/animations/src/index.css @@ -1,49 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -.carousel-wrapper { - height: 600px; - width: 90%; - margin: 20px auto; - display: flex; - flex-direction: column; - justify-content: space-between; -} - -.action-wrapper { - height: 40px; - width: 500px; - display: flex; - justify-content: space-between; - margin-bottom: 10px; -} - -.action { - display: flex; - align-items: center; -} - -.slide-wrapper { - display: flex; - align-items: center; - justify-content: center; - padding: 10px; -} - -igc-carousel { - border: 0.5px solid #dde0e4; -} - -igc-select { - width: 150px; - margin-left: 10px; - --ig-size: var(--ig-size-small); -} - -igc-card { - border: none; -} - -igc-card-header { - padding: 8px 16px; -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/carousel/components/src/index.css b/samples/layouts/carousel/components/src/index.css index b588a05ace..0fe9368715 100644 --- a/samples/layouts/carousel/components/src/index.css +++ b/samples/layouts/carousel/components/src/index.css @@ -1,28 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -.carousel-container { - padding: 16px; -} - -igc-carousel { - margin-inline: auto; - max-width: 75%; - height: 500px; -} - -igc-carousel-slide { - display: flex; - justify-content: center; - align-items: center; -} - -igc-carousel-slide div { - text-align: center; - max-width: 40%; - margin-inline: auto; -} - -igc-carousel-slide div * { - margin-block: 8px; -} +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/carousel/overview/src/index.css b/samples/layouts/carousel/overview/src/index.css index af4562e186..0fe9368715 100644 --- a/samples/layouts/carousel/overview/src/index.css +++ b/samples/layouts/carousel/overview/src/index.css @@ -1,31 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -.carousel-container { - padding: 16px; -} - -.image-container { - display: flex; - align-items: center; - justify-content: center; -} - -img { - object-fit: fill; - max-width: 90%; -} - -igc-carousel { - margin-inline: auto; - max-width: 75%; - height: 450px; -} - -igc-carousel-slide::part(base) { - display: flex; - justify-content: center; - align-items: center; - max-width: 75%; - margin-inline: auto; -} +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/carousel/thumbnail/src/index.css b/samples/layouts/carousel/thumbnail/src/index.css index 8d5a7b6cbc..0fe9368715 100644 --- a/samples/layouts/carousel/thumbnail/src/index.css +++ b/samples/layouts/carousel/thumbnail/src/index.css @@ -1,16 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -igc-carousel { - margin-inline: auto; - max-width: 75%; -} - -igc-carousel::part(indicators) { - border-radius: 2px; -} - -.blurred { - filter: blur(2px); - opacity: 0.5; -} +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/divider/middle/src/index.ts b/samples/layouts/divider/middle/src/index.ts index ac76319cd4..2b6bc7fb6d 100644 --- a/samples/layouts/divider/middle/src/index.ts +++ b/samples/layouts/divider/middle/src/index.ts @@ -5,7 +5,7 @@ import './DividerStyling.css'; defineComponents(IgcDividerComponent); export class SelectStyling { - constructor() { + constructor() { } } diff --git a/samples/layouts/divider/overview/ReadMe.md b/samples/layouts/divider/overview/ReadMe.md index 69d6f4b125..89cc77c42d 100644 --- a/samples/layouts/divider/overview/ReadMe.md +++ b/samples/layouts/divider/overview/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Base feature using [Divider](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of Overview feature using [Divider](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/layouts/divider/base +cd ./samples/layouts/divider/overview ``` open above folder in VS Code or type: diff --git a/samples/layouts/divider/vertical/src/index.ts b/samples/layouts/divider/vertical/src/index.ts index ac76319cd4..2b6bc7fb6d 100644 --- a/samples/layouts/divider/vertical/src/index.ts +++ b/samples/layouts/divider/vertical/src/index.ts @@ -5,7 +5,7 @@ import './DividerStyling.css'; defineComponents(IgcDividerComponent); export class SelectStyling { - constructor() { + constructor() { } } diff --git a/samples/layouts/dock-manager/add-content-runtime/src/index.ts b/samples/layouts/dock-manager/add-content-runtime/src/index.ts index 8a8c4d2a47..fc29d0754b 100644 --- a/samples/layouts/dock-manager/add-content-runtime/src/index.ts +++ b/samples/layouts/dock-manager/add-content-runtime/src/index.ts @@ -1,6 +1,6 @@ import './DockManagerStyles.css' import { defineCustomElements } from 'igniteui-dockmanager/loader'; -import { +import { IgcContentPane, IgcDockManagerPaneType, IgcSplitPane, @@ -43,7 +43,7 @@ export class DockManagerAddContentRuntime { const addContentPaneBtn = document.getElementById('contentPaneBtn'); const addTabGroupPaneBtn = document.getElementById('tabGroupPaneBtn'); const addFloatingPaneBtn = document.getElementById('floatingPaneBtn'); - + this.dockManager.layout = { rootPane: { type: IgcDockManagerPaneType.splitPane, @@ -139,7 +139,7 @@ export class DockManagerAddContentRuntime { }; this.dockManager.layout.rootPane.panes.push(cp); - + this.attachPane(); }) @@ -150,9 +150,9 @@ export class DockManagerAddContentRuntime { header: `New Document ${this.counter}`, }; - let tabGroup = this.docHostRootPane.panes.find((p: IgcDockManagerPane) => + let tabGroup = this.docHostRootPane.panes.find((p: IgcDockManagerPane) => p.type === IgcDockManagerPaneType.tabGroupPane) as IgcTabGroupPane; - + if (tabGroup) { tabGroup.panes.push(cp); } else { @@ -162,7 +162,7 @@ export class DockManagerAddContentRuntime { }; this.docHostRootPane.panes.push(tg); } - + this.attachPane(); }) @@ -183,7 +183,7 @@ export class DockManagerAddContentRuntime { } this.dockManager.layout.floatingPanes!.push(sp); - + this.attachPane(); }) } @@ -194,7 +194,6 @@ export class DockManagerAddContentRuntime { content.innerHTML = 'This pane is added at runtime'; this.dockManager.appendChild(content); - this.dockManager.layout = { ...this.dockManager.layout }; this.counter++; } diff --git a/samples/layouts/dock-manager/contained-in-boundaries/src/index.ts b/samples/layouts/dock-manager/contained-in-boundaries/src/index.ts index 0250b30ba9..700ed11776 100644 --- a/samples/layouts/dock-manager/contained-in-boundaries/src/index.ts +++ b/samples/layouts/dock-manager/contained-in-boundaries/src/index.ts @@ -1,6 +1,6 @@ import './DockManagerStyles.css' import { defineCustomElements } from 'igniteui-dockmanager/loader'; -import { +import { IgcDockManagerPaneType, IgcSplitPane, IgcSplitPaneOrientation, diff --git a/samples/layouts/dock-manager/customize-buttons/.prettierrc b/samples/layouts/dock-manager/customize-buttons/.prettierrc index cb0498d36a..15a7c7c6cf 100644 --- a/samples/layouts/dock-manager/customize-buttons/.prettierrc +++ b/samples/layouts/dock-manager/customize-buttons/.prettierrc @@ -8,4 +8,4 @@ "bracketSpacing": true, "jsxBracketSameLine": false, "fluid": false -} +} \ No newline at end of file diff --git a/samples/layouts/dock-manager/customize-buttons/sandbox.config.json b/samples/layouts/dock-manager/customize-buttons/sandbox.config.json index 2ab51ac3f9..5c5b54fe21 100644 --- a/samples/layouts/dock-manager/customize-buttons/sandbox.config.json +++ b/samples/layouts/dock-manager/customize-buttons/sandbox.config.json @@ -4,3 +4,4 @@ "view": "browser", "template": "parcel" } + \ No newline at end of file diff --git a/samples/layouts/dock-manager/customize-buttons/src/index.css b/samples/layouts/dock-manager/customize-buttons/src/index.css index 98682b8543..0fe9368715 100644 --- a/samples/layouts/dock-manager/customize-buttons/src/index.css +++ b/samples/layouts/dock-manager/customize-buttons/src/index.css @@ -1,2 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/dock-manager/customize-buttons/tsconfig.json b/samples/layouts/dock-manager/customize-buttons/tsconfig.json index 7c639d7f0c..de23257dd8 100644 --- a/samples/layouts/dock-manager/customize-buttons/tsconfig.json +++ b/samples/layouts/dock-manager/customize-buttons/tsconfig.json @@ -17,4 +17,4 @@ "node_modules", "dist" ] -} +} \ No newline at end of file diff --git a/samples/layouts/dock-manager/embedding-frames/package.json b/samples/layouts/dock-manager/embedding-frames/package.json index 27c582f4c8..de36e979ba 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.15.2", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/dock-manager/focus-panes/src/index.ts b/samples/layouts/dock-manager/focus-panes/src/index.ts index f39c711049..656c2464c9 100644 --- a/samples/layouts/dock-manager/focus-panes/src/index.ts +++ b/samples/layouts/dock-manager/focus-panes/src/index.ts @@ -1,6 +1,6 @@ import './DockManagerStyles.css' import { defineCustomElements } from 'igniteui-dockmanager/loader'; -import { +import { IgcDockManagerPaneType, IgcSplitPane, IgcSplitPaneOrientation, @@ -39,7 +39,7 @@ export class DockManagerAddContentRuntime { const focusFloatingPaneBtn = document.getElementById('focusFloating'); const focusUnpinnedPaneBtn = document.getElementById('focusUnpinned'); const focusRegularPaneBtn = document.getElementById('focusRegular'); - + this.dockManager.layout = { rootPane: { type: IgcDockManagerPaneType.splitPane, diff --git a/samples/layouts/dock-manager/hide-pane-headers/src/index.ts b/samples/layouts/dock-manager/hide-pane-headers/src/index.ts index 0ec8b4bcf5..cbb011658c 100644 --- a/samples/layouts/dock-manager/hide-pane-headers/src/index.ts +++ b/samples/layouts/dock-manager/hide-pane-headers/src/index.ts @@ -1,6 +1,6 @@ import './DockManagerStyles.css' import { defineCustomElements } from 'igniteui-dockmanager/loader'; -import { +import { IgcDockManagerPaneType, IgcSplitPane, IgcSplitPaneOrientation, diff --git a/samples/layouts/dock-manager/hiding-panes/package.json b/samples/layouts/dock-manager/hiding-panes/package.json index 6990bff704..0ebdc8e9b7 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.15.2", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/dock-manager/hiding-panes/src/index.ts b/samples/layouts/dock-manager/hiding-panes/src/index.ts index f58e2265d8..58eb4c6f92 100644 --- a/samples/layouts/dock-manager/hiding-panes/src/index.ts +++ b/samples/layouts/dock-manager/hiding-panes/src/index.ts @@ -150,7 +150,7 @@ export class DockManagerHidePanes { for (const pane of ev.detail.panes) { pane.hidden = true; this.setHiddenPane(pane); - + if (this.dockManager.maximizedPane) { if (this.dockManager.maximizedPane === pane || diff --git a/samples/layouts/dock-manager/overview/package.json b/samples/layouts/dock-manager/overview/package.json index 0218b1c806..a0a976457c 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.15.2", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/dock-manager/proximity-dock/src/index.ts b/samples/layouts/dock-manager/proximity-dock/src/index.ts index 4b038911af..2a98684732 100644 --- a/samples/layouts/dock-manager/proximity-dock/src/index.ts +++ b/samples/layouts/dock-manager/proximity-dock/src/index.ts @@ -1,6 +1,6 @@ import './DockManagerStyles.css' import { defineCustomElements } from 'igniteui-dockmanager/loader'; -import { +import { IgcDockManagerPaneType, IgcSplitPane, IgcSplitPaneOrientation, diff --git a/samples/layouts/dock-manager/styling/package.json b/samples/layouts/dock-manager/styling/package.json index 6406fd3a4a..50db9eef9f 100644 --- a/samples/layouts/dock-manager/styling/package.json +++ b/samples/layouts/dock-manager/styling/package.json @@ -26,7 +26,7 @@ "core-js": "^3.6.5", "igniteui-dockmanager": "1.15.2", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/dock-manager/styling/src/index.ts b/samples/layouts/dock-manager/styling/src/index.ts index 2b4a0dc3be..f977a538fc 100644 --- a/samples/layouts/dock-manager/styling/src/index.ts +++ b/samples/layouts/dock-manager/styling/src/index.ts @@ -225,14 +225,14 @@ export class DockManagerStylePanes { ] } }; - + layouts:IgcDockManagerLayout[] = []; index = 0; newIndex = -1; constructor() { this.layouts = [this.layout, this.layout1, this.layout2]; - + this.dockManager = document.getElementById("dockManager") as IgcDockManagerComponent; this.handleLayoutViews(document.body.clientWidth); diff --git a/samples/layouts/dock-manager/toggle-inner-dock/src/index.ts b/samples/layouts/dock-manager/toggle-inner-dock/src/index.ts index dbdde3c851..a1fc2bc0b1 100644 --- a/samples/layouts/dock-manager/toggle-inner-dock/src/index.ts +++ b/samples/layouts/dock-manager/toggle-inner-dock/src/index.ts @@ -1,6 +1,6 @@ import './DockManagerStyles.css' import { defineCustomElements } from 'igniteui-dockmanager/loader'; -import { +import { IgcDockManagerPaneType, IgcSplitPane, IgcSplitPaneOrientation, @@ -140,7 +140,7 @@ export class DockManagerToggleInnerDock { }; innerDockBtn!.addEventListener('click', () => { - this.dockManager.allowInnerDock = !this.dockManager.allowInnerDock; + this.dockManager.allowInnerDock = !this.dockManager.allowInnerDock; }) } } diff --git a/samples/layouts/dock-manager/updating-panes/package.json b/samples/layouts/dock-manager/updating-panes/package.json index 8b37b826af..d3adb9eaad 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.15.2", - "igniteui-webcomponents-charts": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-gauges": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/icon/sizing/sandbox.config.json b/samples/layouts/icon/sizing/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/layouts/icon/sizing/sandbox.config.json +++ b/samples/layouts/icon/sizing/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/layouts/icon/sizing/tsconfig.json b/samples/layouts/icon/sizing/tsconfig.json index 7c639d7f0c..de23257dd8 100644 --- a/samples/layouts/icon/sizing/tsconfig.json +++ b/samples/layouts/icon/sizing/tsconfig.json @@ -17,4 +17,4 @@ "node_modules", "dist" ] -} +} \ No newline at end of file diff --git a/samples/layouts/icon/styling/sandbox.config.json b/samples/layouts/icon/styling/sandbox.config.json index 52c7875103..5c5b54fe21 100644 --- a/samples/layouts/icon/styling/sandbox.config.json +++ b/samples/layouts/icon/styling/sandbox.config.json @@ -3,4 +3,5 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} \ No newline at end of file +} + \ No newline at end of file diff --git a/samples/layouts/icon/styling/src/index.css b/samples/layouts/icon/styling/src/index.css index 6a5ec2a4fb..0fe9368715 100644 --- a/samples/layouts/icon/styling/src/index.css +++ b/samples/layouts/icon/styling/src/index.css @@ -1,7 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -igc-icon { - --size: 48px; - color: olive; -} +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/icon/styling/tsconfig.json b/samples/layouts/icon/styling/tsconfig.json index 7c639d7f0c..de23257dd8 100644 --- a/samples/layouts/icon/styling/tsconfig.json +++ b/samples/layouts/icon/styling/tsconfig.json @@ -17,4 +17,4 @@ "node_modules", "dist" ] -} +} \ No newline at end of file diff --git a/samples/layouts/stepper/animations/src/index.css b/samples/layouts/stepper/animations/src/index.css index df6b7ed3dc..0fe9368715 100644 --- a/samples/layouts/stepper/animations/src/index.css +++ b/samples/layouts/stepper/animations/src/index.css @@ -1,16 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ -.container { - padding: 1rem; -} - -.settings { - display: grid; - grid-template-columns: repeat(4, 1fr); - gap: 1.125rem; - background: hsl(var(--ig-gray-100)); - padding: 1.125rem; - border: 1px solid hsl(var(--ig-gray-300)); - border-radius: .25rem; - margin-bottom: 2rem; -} +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/stepper/linear/src/index.ts b/samples/layouts/stepper/linear/src/index.ts index ce8689fa44..3859c2bfc8 100644 --- a/samples/layouts/stepper/linear/src/index.ts +++ b/samples/layouts/stepper/linear/src/index.ts @@ -1,8 +1,8 @@ import { defineComponents, IgcStepperComponent, IgcStepComponent, IgcInputComponent, IgcButtonComponent, IgcRadioComponent, IgcSwitchComponent } from "igniteui-webcomponents"; - import "igniteui-webcomponents/themes/light/bootstrap.css"; import "./StepperLinear.css"; + defineComponents(IgcStepperComponent, IgcInputComponent, IgcButtonComponent, IgcRadioComponent, IgcSwitchComponent); export class StepperLinear { @@ -43,10 +43,10 @@ export class StepperLinear { if (this.activeStep!.optional || !this.nextButton) { return; } - + const form = this.activeStep!.querySelector("form") as HTMLFormElement; const isFormInvalid = !form.checkValidity(); - + this.activeStep!.invalid = isFormInvalid; this.nextButton.disabled = this.stepper.linear ? isFormInvalid : false; } diff --git a/samples/layouts/stepper/overview/src/index.ts b/samples/layouts/stepper/overview/src/index.ts index 047541f6ea..ebef580b4d 100644 --- a/samples/layouts/stepper/overview/src/index.ts +++ b/samples/layouts/stepper/overview/src/index.ts @@ -156,4 +156,4 @@ export class StepperOverview { } } -new StepperOverview(); \ No newline at end of file +new StepperOverview(); diff --git a/samples/layouts/tabs/prefix-suffix/src/index.css b/samples/layouts/tabs/prefix-suffix/src/index.css index c048c972ee..0fe9368715 100644 --- a/samples/layouts/tabs/prefix-suffix/src/index.css +++ b/samples/layouts/tabs/prefix-suffix/src/index.css @@ -1,10 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ - -igc-icon { - --ig-size: var(--ig-size-small); -} - -igc-icon-button { - --ig-size: var(--ig-size-small); -} \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/tabs/scrolling/src/index.ts b/samples/layouts/tabs/scrolling/src/index.ts index acb365820c..004f1234ba 100644 --- a/samples/layouts/tabs/scrolling/src/index.ts +++ b/samples/layouts/tabs/scrolling/src/index.ts @@ -8,7 +8,7 @@ export class TabsScrolling { constructor() { this.tabs = document.getElementById('tabs') as IgcTabsComponent; - + for(let i = 0; i < 18; i++) { this.tabs.insertAdjacentHTML('beforeend', ` Tab ${i + 1} diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 2c67a49f6e..c818a9f626 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.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 0146c8eadb..577473e3f0 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.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 f6aff7edd7..636fdf58e7 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-data-model/src/index.ts b/samples/maps/geo-map/binding-data-model/src/index.ts index de335ccbf6..2c22ece219 100644 --- a/samples/maps/geo-map/binding-data-model/src/index.ts +++ b/samples/maps/geo-map/binding-data-model/src/index.ts @@ -43,7 +43,7 @@ export class MapBindingDataModel { { origin: cityLAX, dest: citySYD, color: 'Gray' }, ]; - this.geoMap = document.getElementById('geoMap') as IgcGeographicMapComponent; + this.geoMap = document.getElementById('geoMap') as IgcGeographicMapComponent; this.geoMap.updateZoomWindow({ left: 0.2, top: 0.1, width: 0.6, height: 0.6 }); for (const flight of this.flights) { diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 111a69bbb5..75bc2b29cb 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.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 fc86aa8f67..212e1ab3bb 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.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 2f891717ed..d7ef9b453e 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.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 1c1f9544fe..17f2c13305 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-shp-polygons/src/index.ts b/samples/maps/geo-map/binding-shp-polygons/src/index.ts index df6bebbd16..20b21a94b7 100644 --- a/samples/maps/geo-map/binding-shp-polygons/src/index.ts +++ b/samples/maps/geo-map/binding-shp-polygons/src/index.ts @@ -22,7 +22,7 @@ export class MapBindingShapefilePolygons { this.onDataLoaded = this.onDataLoaded.bind(this); this.geoMap = document.getElementById('geoMap') as IgcGeographicMapComponent; - this.geoMap.backgroundContent = undefined; + this.geoMap.backgroundContent = undefined; this.geoMap.updateZoomWindow({ left: 0.2, top: 0.1, width: 0.6, height: 0.6 }); const url = 'https://static.infragistics.com/xplatform'; diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 18375e87a8..e31c35619d 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-shp-polylines/src/index.ts b/samples/maps/geo-map/binding-shp-polylines/src/index.ts index 0a9e126537..7c0a9c8f16 100644 --- a/samples/maps/geo-map/binding-shp-polylines/src/index.ts +++ b/samples/maps/geo-map/binding-shp-polylines/src/index.ts @@ -20,7 +20,7 @@ export class MapBindingShapefilePolylines { this.onDataLoaded = this.onDataLoaded.bind(this); - this.geoMap = document.getElementById('geoMap') as IgcGeographicMapComponent; + this.geoMap = document.getElementById('geoMap') as IgcGeographicMapComponent; this.geoMap.updateZoomWindow({ left: 0.2, top: 0.1, width: 0.6, height: 0.6 }); const url = 'https://static.infragistics.com/xplatform'; diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 1d998a8a14..c0d79d19f0 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.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 591baeafe8..116d4aea4f 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/display-all-imagery/src/index.ts b/samples/maps/geo-map/display-all-imagery/src/index.ts index c693e81728..517d27b3a5 100644 --- a/samples/maps/geo-map/display-all-imagery/src/index.ts +++ b/samples/maps/geo-map/display-all-imagery/src/index.ts @@ -19,12 +19,11 @@ export class MapImagerySources { this.onMapTypeSelectionChange = this.onMapTypeSelectionChange.bind(this); this.geoMap = document.getElementById('geoMap') as IgcGeographicMapComponent; - - this.geoMap.zoomToGeographic({ left: -120, top: 30, width: 45, height: 20 }); + this.geoMap.zoomToGeographic({ left: -120, top: 30, width: 45, height: 20 }); let dropDown: HTMLSelectElement = document.getElementById('mapTypeSelect') as HTMLSelectElement; dropDown.addEventListener("change", this.onMapTypeSelectionChange); - + let openStreetOption: HTMLOptionElement = document.createElement('option') as HTMLOptionElement; openStreetOption.textContent = "OpenStreetMaps (default)"; @@ -34,7 +33,7 @@ export class MapImagerySources { let bingAerialNoLabelsOption: HTMLOptionElement = document.createElement('option') as HTMLOptionElement; bingAerialNoLabelsOption.textContent = "Bing Maps Aerial Without Labels"; - let bingAerialLabelsOption: HTMLOptionElement = document.createElement('option') as HTMLOptionElement; + let bingAerialLabelsOption: HTMLOptionElement = document.createElement('option') as HTMLOptionElement; bingAerialLabelsOption.textContent = "Bing Maps Aerial With Labels"; dropDown.add(openStreetOption); @@ -49,17 +48,17 @@ export class MapImagerySources { let option: HTMLOptionElement = document.createElement('option') as HTMLOptionElement; let style = esriKeys[i]; - option.textContent = "Esri " + style; - option.value = esriVals[i]; + option.textContent = "Esri " + style; + option.value = esriVals[i]; dropDown.add(option); } } - public onMapTypeSelectionChange(e: any){ + public onMapTypeSelectionChange(e: any){ if (this.geoMap === undefined) return; - let value: string = e.target.value; + let value: string = e.target.value; if(value.includes("OpenStreetMap")){ console.log("OSM"); diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 3cd96cf53c..1b5fa2d004 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.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 71bb3492e0..24ed2ad440 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.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 c4df682d5b..1a10b4578d 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.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 7754123969..22b1688860 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.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 94a15bfb5a..21f67f3d04 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.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 7407d797b7..3d14999c54 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.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 6fcaeff6f0..46a3c39050 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/navigation/src/index.ts b/samples/maps/geo-map/navigation/src/index.ts index e74a9d8cdd..36442372a2 100644 --- a/samples/maps/geo-map/navigation/src/index.ts +++ b/samples/maps/geo-map/navigation/src/index.ts @@ -47,7 +47,6 @@ export class MapNavigation { this.geoMap.actualWindowRectChanged = this.onMapWindowChanged; this.geoMap.zoomable = true; this.geoMap.addEventListener('mousemove', this.onMapMouseMove, false); - const usaRegion = { left: -134.5, top: 16.0, width: 70.0, height: 37.0 }; this.geoMap.zoomToGeographic(usaRegion); } diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index d4eacac9f5..acc3dcae5c 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.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 09206b316f..ce0b543402 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.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 ff8478bc08..810ac6d214 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.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 b5f7a79722..39eab569ad 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.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 8ccb43a3f9..420228d4a1 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-scatter-area-series/src/index.ts b/samples/maps/geo-map/type-scatter-area-series/src/index.ts index 963f6dca6e..08efce93f3 100644 --- a/samples/maps/geo-map/type-scatter-area-series/src/index.ts +++ b/samples/maps/geo-map/type-scatter-area-series/src/index.ts @@ -20,7 +20,7 @@ export class MapTypeScatterAreaSeries { this.onDataLoaded = this.onDataLoaded.bind(this); - this.geoMap = document.getElementById('geoMap') as IgcGeographicMapComponent; + this.geoMap = document.getElementById('geoMap') as IgcGeographicMapComponent; this.geoMap.updateZoomWindow({ left: 0.2, top: 0.1, width: 0.6, height: 0.6 }); const url = 'https://static.infragistics.com/xplatform'; 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 108b9d6f35..8f26123d8a 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-scatter-bubble-series/src/index.ts b/samples/maps/geo-map/type-scatter-bubble-series/src/index.ts index 8046515257..4482159041 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/src/index.ts +++ b/samples/maps/geo-map/type-scatter-bubble-series/src/index.ts @@ -19,7 +19,7 @@ export class MapTypeScatterBubbleSeries { constructor() { - this.geoMap = document.getElementById('geoMap') as IgcGeographicMapComponent; + this.geoMap = document.getElementById('geoMap') as IgcGeographicMapComponent; this.geoMap.updateZoomWindow({ left: 0.2, top: 0.1, width: 0.6, height: 0.6 }); this.addSeriesWith(WorldLocations.getAll()); 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 61162fe3e2..f3cb0238a1 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-scatter-contour-series/src/index.ts b/samples/maps/geo-map/type-scatter-contour-series/src/index.ts index ed96938841..e4032ea3b7 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/src/index.ts +++ b/samples/maps/geo-map/type-scatter-contour-series/src/index.ts @@ -21,7 +21,7 @@ export class MapTypeScatterContourSeries { this.onDataLoaded = this.onDataLoaded.bind(this); - this.geoMap = document.getElementById('geoMap') as IgcGeographicMapComponent; + this.geoMap = document.getElementById('geoMap') as IgcGeographicMapComponent; this.geoMap.updateZoomWindow({ left: 0.2, top: 0.1, width: 0.6, height: 0.6 }); const url = 'https://static.infragistics.com/xplatform'; 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 c2f605b101..a84e7d66b2 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.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 25b08ca94f..aed7fa274e 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-scatter-symbol-series/src/index.ts b/samples/maps/geo-map/type-scatter-symbol-series/src/index.ts index 2ae3df5785..47e56a4ee6 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/src/index.ts +++ b/samples/maps/geo-map/type-scatter-symbol-series/src/index.ts @@ -19,7 +19,7 @@ export class MapTypeScatterSymbolSeries { constructor() { - this.geoMap = document.getElementById('geoMap') as IgcGeographicMapComponent; + this.geoMap = document.getElementById('geoMap') as IgcGeographicMapComponent; this.geoMap.updateZoomWindow({ left: 0.2, top: 0.1, width: 0.6, height: 0.6 }); this.addSeriesWith(WorldLocations.getCities(), 'Gray'); 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 b7588fafa8..b24adcf2bd 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-shape-polygon-series/src/index.ts b/samples/maps/geo-map/type-shape-polygon-series/src/index.ts index c5661da530..d446b716bd 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/src/index.ts +++ b/samples/maps/geo-map/type-shape-polygon-series/src/index.ts @@ -20,7 +20,7 @@ export class MapTypeScatterPolygonSeries { this.geoMap = document.getElementById('geoMap') as IgcGeographicMapComponent; this.geoMap.backgroundContent = undefined; - // zooming map to region of North America + // zooming map to region of North America this.geoMap.updateZoomWindow({ left: 0.2, top: 0.1, width: 0.6, height: 0.6 }); // loading a shapefile with geographic shapes 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 13b41445ac..aaecd30def 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": "5.1.0", - "igniteui-webcomponents-core": "5.1.0", - "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-shape-polyline-series/src/index.ts b/samples/maps/geo-map/type-shape-polyline-series/src/index.ts index 678901c0e6..79c10f58b0 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/src/index.ts +++ b/samples/maps/geo-map/type-shape-polyline-series/src/index.ts @@ -18,7 +18,7 @@ export class MapTypeScatterPolylineSeries { this.onDataLoaded = this.onDataLoaded.bind(this); - this.geoMap = document.getElementById('geoMap') as IgcGeographicMapComponent; + this.geoMap = document.getElementById('geoMap') as IgcGeographicMapComponent; this.geoMap.updateZoomWindow({ left: 0.195, top: 0.325, width: 0.2, height: 0.1 }); // loading a shapefile with geographic shapes diff --git a/samples/menus/nav-drawer/add-mini/src/index.ts b/samples/menus/nav-drawer/add-mini/src/index.ts index 110d476eb5..daa51d74b4 100644 --- a/samples/menus/nav-drawer/add-mini/src/index.ts +++ b/samples/menus/nav-drawer/add-mini/src/index.ts @@ -28,11 +28,11 @@ export class NavDrawerAddMini { navDrawer.onclick = (e) => { const target = e.target as HTMLElement; const drawerItem = target.closest('igc-nav-drawer-item'); - + if (drawerItem) { const iconName = drawerItem.querySelector('igc-icon')!.name; const icons = document.querySelectorAll(`igc-icon`); - + icons.forEach(icon => { const parentItem = icon.parentElement! as IgcNavDrawerItemComponent; @@ -46,7 +46,7 @@ export class NavDrawerAddMini { } registerIconFromText('search', searchIcon); - + registerIconFromText('home', homeIcon); } } diff --git a/samples/menus/nav-drawer/add-positions-navbar/src/index.ts b/samples/menus/nav-drawer/add-positions-navbar/src/index.ts index ab47e1a3a6..bfbcbf1f81 100644 --- a/samples/menus/nav-drawer/add-positions-navbar/src/index.ts +++ b/samples/menus/nav-drawer/add-positions-navbar/src/index.ts @@ -10,7 +10,7 @@ const searchIcon = const homeIcon = ''; -const menuIcon = +const menuIcon = ''; export class NavDrawerAddPositionsNavbar { constructor() { @@ -53,7 +53,6 @@ export class NavDrawerAddPositionsNavbar { navDrawer.position = radio.target.value; }); - registerIconFromText('home', homeIcon); registerIconFromText('menu', menuIcon); registerIconFromText('search', searchIcon); diff --git a/samples/menus/nav-drawer/styling/src/index.ts b/samples/menus/nav-drawer/styling/src/index.ts index f94aba6741..80ccf3ed86 100644 --- a/samples/menus/nav-drawer/styling/src/index.ts +++ b/samples/menus/nav-drawer/styling/src/index.ts @@ -1,4 +1,4 @@ -import { defineComponents, IgcNavDrawerComponent, IgcNavDrawerItemComponent, IgcIconComponent, +import { defineComponents, IgcNavDrawerComponent, IgcNavDrawerItemComponent, IgcIconComponent, registerIconFromText, IgcIconButtonComponent } from 'igniteui-webcomponents'; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import './drawer-styling.css'; diff --git a/samples/notifications/banner/banner-sample-1/src/index.ts b/samples/notifications/banner/banner-sample-1/src/index.ts index 32a47a7719..1a21a28b71 100644 --- a/samples/notifications/banner/banner-sample-1/src/index.ts +++ b/samples/notifications/banner/banner-sample-1/src/index.ts @@ -6,7 +6,7 @@ defineComponents(IgcBannerComponent, IgcNavbarComponent, IgcIconComponent, IgcCa const refreshIcon = ''; - + export class BannerSample1 { constructor() { registerIconFromText('refresh', refreshIcon); diff --git a/samples/notifications/toast/styling/src/index.css b/samples/notifications/toast/styling/src/index.css index 98682b8543..0fe9368715 100644 --- a/samples/notifications/toast/styling/src/index.css +++ b/samples/notifications/toast/styling/src/index.css @@ -1,2 +1,2 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/scheduling/date-picker/dialog-mode/ReadMe.md b/samples/scheduling/date-picker/dialog-mode/ReadMe.md index c103d5dbfd..7f68ad6aea 100644 --- a/samples/scheduling/date-picker/dialog-mode/ReadMe.md +++ b/samples/scheduling/date-picker/dialog-mode/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Dialog_mode feature using [Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of Dialog Mode feature using [Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/scheduling/date-picker/dialog_mode +cd ./samples/scheduling/date-picker/dialog-mode ``` open above folder in VS Code or type: diff --git a/samples/scheduling/date-picker/dialog-mode/src/index.ts b/samples/scheduling/date-picker/dialog-mode/src/index.ts index 9f100eb7bb..0a08b525fb 100644 --- a/samples/scheduling/date-picker/dialog-mode/src/index.ts +++ b/samples/scheduling/date-picker/dialog-mode/src/index.ts @@ -8,7 +8,7 @@ export class DatePickerDialogMode { let datePicker = document.getElementById('date-picker') as IgcDatePickerComponent; const date = new Date(); datePicker.value = date; - } + } } new DatePickerDialogMode(); diff --git a/samples/scheduling/date-picker/form/src/index.ts b/samples/scheduling/date-picker/form/src/index.ts index dc4de9ea8c..08e7ce9c73 100644 --- a/samples/scheduling/date-picker/form/src/index.ts +++ b/samples/scheduling/date-picker/form/src/index.ts @@ -24,13 +24,13 @@ export class DatePickerOverview { datePickerValue.innerHTML = `Date picker value: ${datePicker.value ? datePicker.value.toLocaleString() : null}`; formStatus.innerHTML = `Form valid: ${form.checkValidity()}`; }); - } + } public reset(){ let form = document.getElementById('form') as HTMLFormElement; let datePickerValue = document.getElementById('datePickerValue') as HTMLElement; let formStatus = document.getElementById('formStatus') as HTMLElement; - + datePickerValue.innerHTML = "Date picker value: "; formStatus.innerHTML = "Form valid: "; form.reset(); diff --git a/samples/scheduling/date-picker/format/src/index.ts b/samples/scheduling/date-picker/format/src/index.ts index 98b12867dc..f817667430 100644 --- a/samples/scheduling/date-picker/format/src/index.ts +++ b/samples/scheduling/date-picker/format/src/index.ts @@ -8,7 +8,7 @@ export class DatePickerFormat { let datePicker = document.getElementById('date-picker') as IgcDatePickerComponent; const date = new Date(); datePicker.value = date; - } + } } new DatePickerFormat(); diff --git a/samples/scheduling/date-picker/overview/src/index.ts b/samples/scheduling/date-picker/overview/src/index.ts index fda9a816f9..6336e974f3 100644 --- a/samples/scheduling/date-picker/overview/src/index.ts +++ b/samples/scheduling/date-picker/overview/src/index.ts @@ -8,7 +8,7 @@ export class DatePickerOverview { let datePicker = document.getElementById('date-picker') as IgcDatePickerComponent; const date = new Date(); datePicker.value = date; - } + } } new DatePickerOverview(); diff --git a/samples/scheduling/date-picker/styling/src/index.ts b/samples/scheduling/date-picker/styling/src/index.ts index 2968953d2c..22da1f55a6 100644 --- a/samples/scheduling/date-picker/styling/src/index.ts +++ b/samples/scheduling/date-picker/styling/src/index.ts @@ -6,7 +6,7 @@ defineComponents(IgcDatePickerComponent, IgcInputComponent); export class DatePickerDialogMode { constructor() { - } + } } new DatePickerDialogMode(); diff --git a/tsconfig.json b/tsconfig.json index d1592bc61a..1409847eb6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,7 +11,6 @@ "outDir": "dist", "lib": ["es2017", "dom", "DOM.Iterable"], "noImplicitAny": false, - "suppressImplicitAnyIndexErrors": true, "removeComments": true, "baseUrl": ".", "paths": { @@ -32,6 +31,7 @@ "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"], + "igniteui-webcomponents-dashboards": ["node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards"] } }, "exclude": [ diff --git a/webpack.config.js b/webpack.config.js index ba5c416f9e..43202972b1 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -203,6 +203,11 @@ var config = { name: 'igniteui-webcomponents-layouts', chunks: 'all', }, + igniteuiDashboards: { + test: /[\\/]node_modules[\\/](igniteui-webcomponents-dashboards)[\\/]/, + name: 'igniteui-webcomponents-dashboards', + chunks: 'all', + }, igniteuiDockmanager: { test: /[\\/]node_modules[\\/](igniteui-dockmanager)[\\/]/, name: 'igniteui-dockmanager',