diff --git a/samples/charts/category-chart/annotations-all/sandbox.config.json b/samples/charts/category-chart/annotations-all/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/annotations-all/sandbox.config.json +++ b/samples/charts/category-chart/annotations-all/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-all/src/index.css b/samples/charts/category-chart/annotations-all/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/annotations-all/src/index.css +++ b/samples/charts/category-chart/annotations-all/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/annotations-all/src/index.ts b/samples/charts/category-chart/annotations-all/src/index.ts index 5f754e4809..02f6075cfb 100644 --- a/samples/charts/category-chart/annotations-all/src/index.ts +++ b/samples/charts/category-chart/annotations-all/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartD import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { TemperatureAnnotatedDataItem, TemperatureAnnotatedData } from './TemperatureAnnotatedData'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -41,6 +41,7 @@ export class Sample { chart.dataSource = this.temperatureAnnotatedData; } this._bind(); + } private _temperatureAnnotatedData: TemperatureAnnotatedData = null; diff --git a/samples/charts/category-chart/annotations-all/tsconfig.json b/samples/charts/category-chart/annotations-all/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/annotations-all/tsconfig.json +++ b/samples/charts/category-chart/annotations-all/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/annotations-all/webpack.config.js b/samples/charts/category-chart/annotations-all/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/annotations-all/webpack.config.js +++ b/samples/charts/category-chart/annotations-all/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/annotations-callouts/sandbox.config.json b/samples/charts/category-chart/annotations-callouts/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/annotations-callouts/sandbox.config.json +++ b/samples/charts/category-chart/annotations-callouts/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-callouts/src/index.css b/samples/charts/category-chart/annotations-callouts/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/annotations-callouts/src/index.css +++ b/samples/charts/category-chart/annotations-callouts/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/annotations-callouts/src/index.ts b/samples/charts/category-chart/annotations-callouts/src/index.ts index e7cfd95941..4b76ef40b2 100644 --- a/samples/charts/category-chart/annotations-callouts/src/index.ts +++ b/samples/charts/category-chart/annotations-callouts/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartD import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { TemperatureAnnotatedDataItem, TemperatureAnnotatedData } from './TemperatureAnnotatedData'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -35,6 +35,7 @@ export class Sample { chart.dataSource = this.temperatureAnnotatedData; } this._bind(); + } private _temperatureAnnotatedData: TemperatureAnnotatedData = null; diff --git a/samples/charts/category-chart/annotations-callouts/tsconfig.json b/samples/charts/category-chart/annotations-callouts/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/annotations-callouts/tsconfig.json +++ b/samples/charts/category-chart/annotations-callouts/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/annotations-callouts/webpack.config.js b/samples/charts/category-chart/annotations-callouts/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/annotations-callouts/webpack.config.js +++ b/samples/charts/category-chart/annotations-callouts/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/annotations-crosshairs/sandbox.config.json b/samples/charts/category-chart/annotations-crosshairs/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/annotations-crosshairs/sandbox.config.json +++ b/samples/charts/category-chart/annotations-crosshairs/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-crosshairs/src/index.css b/samples/charts/category-chart/annotations-crosshairs/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/annotations-crosshairs/src/index.css +++ b/samples/charts/category-chart/annotations-crosshairs/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/annotations-crosshairs/src/index.ts b/samples/charts/category-chart/annotations-crosshairs/src/index.ts index c354e6a758..52a2d988bd 100644 --- a/samples/charts/category-chart/annotations-crosshairs/src/index.ts +++ b/samples/charts/category-chart/annotations-crosshairs/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartD import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { TemperatureAnnotatedDataItem, TemperatureAnnotatedData } from './TemperatureAnnotatedData'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -37,6 +37,7 @@ export class Sample { chart.dataSource = this.temperatureAnnotatedData; } this._bind(); + } private _temperatureAnnotatedData: TemperatureAnnotatedData = null; diff --git a/samples/charts/category-chart/annotations-crosshairs/tsconfig.json b/samples/charts/category-chart/annotations-crosshairs/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/annotations-crosshairs/tsconfig.json +++ b/samples/charts/category-chart/annotations-crosshairs/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/annotations-crosshairs/webpack.config.js b/samples/charts/category-chart/annotations-crosshairs/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/annotations-crosshairs/webpack.config.js +++ b/samples/charts/category-chart/annotations-crosshairs/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/annotations-custom/sandbox.config.json b/samples/charts/category-chart/annotations-custom/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/annotations-custom/sandbox.config.json +++ b/samples/charts/category-chart/annotations-custom/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-custom/src/index.css b/samples/charts/category-chart/annotations-custom/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/annotations-custom/src/index.css +++ b/samples/charts/category-chart/annotations-custom/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/annotations-custom/src/index.ts b/samples/charts/category-chart/annotations-custom/src/index.ts index c683ace2f3..34e1710b1f 100644 --- a/samples/charts/category-chart/annotations-custom/src/index.ts +++ b/samples/charts/category-chart/annotations-custom/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartD import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { TemperatureAnnotatedDataItem, TemperatureAnnotatedData } from './TemperatureAnnotatedData'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -36,6 +36,7 @@ export class Sample { chart.calloutsDataSource = this.temperatureAnnotatedData; } this._bind(); + } private _temperatureAnnotatedData: TemperatureAnnotatedData = null; diff --git a/samples/charts/category-chart/annotations-custom/tsconfig.json b/samples/charts/category-chart/annotations-custom/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/annotations-custom/tsconfig.json +++ b/samples/charts/category-chart/annotations-custom/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/annotations-custom/webpack.config.js b/samples/charts/category-chart/annotations-custom/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/annotations-custom/webpack.config.js +++ b/samples/charts/category-chart/annotations-custom/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/annotations-final-value/sandbox.config.json b/samples/charts/category-chart/annotations-final-value/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/annotations-final-value/sandbox.config.json +++ b/samples/charts/category-chart/annotations-final-value/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-final-value/src/index.css b/samples/charts/category-chart/annotations-final-value/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/annotations-final-value/src/index.css +++ b/samples/charts/category-chart/annotations-final-value/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/annotations-final-value/src/index.ts b/samples/charts/category-chart/annotations-final-value/src/index.ts index 97be46d792..6ac0e33e5f 100644 --- a/samples/charts/category-chart/annotations-final-value/src/index.ts +++ b/samples/charts/category-chart/annotations-final-value/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartD import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { TemperatureAnnotatedDataItem, TemperatureAnnotatedData } from './TemperatureAnnotatedData'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -35,6 +35,7 @@ export class Sample { chart.dataSource = this.temperatureAnnotatedData; } this._bind(); + } private _temperatureAnnotatedData: TemperatureAnnotatedData = null; diff --git a/samples/charts/category-chart/annotations-final-value/tsconfig.json b/samples/charts/category-chart/annotations-final-value/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/annotations-final-value/tsconfig.json +++ b/samples/charts/category-chart/annotations-final-value/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/annotations-final-value/webpack.config.js b/samples/charts/category-chart/annotations-final-value/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/annotations-final-value/webpack.config.js +++ b/samples/charts/category-chart/annotations-final-value/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/annotations-highlighting/sandbox.config.json b/samples/charts/category-chart/annotations-highlighting/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/annotations-highlighting/sandbox.config.json +++ b/samples/charts/category-chart/annotations-highlighting/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/annotations-highlighting/src/index.css b/samples/charts/category-chart/annotations-highlighting/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/annotations-highlighting/src/index.css +++ b/samples/charts/category-chart/annotations-highlighting/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/annotations-highlighting/src/index.ts b/samples/charts/category-chart/annotations-highlighting/src/index.ts index 2f6c21a86d..f3a74a18a2 100644 --- a/samples/charts/category-chart/annotations-highlighting/src/index.ts +++ b/samples/charts/category-chart/annotations-highlighting/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartD import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { TemperatureAnnotatedDataItem, TemperatureAnnotatedData } from './TemperatureAnnotatedData'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -37,6 +37,7 @@ export class Sample { chart.dataSource = this.temperatureAnnotatedData; } this._bind(); + } private _temperatureAnnotatedData: TemperatureAnnotatedData = null; diff --git a/samples/charts/category-chart/annotations-highlighting/tsconfig.json b/samples/charts/category-chart/annotations-highlighting/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/annotations-highlighting/tsconfig.json +++ b/samples/charts/category-chart/annotations-highlighting/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/annotations-highlighting/webpack.config.js b/samples/charts/category-chart/annotations-highlighting/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/annotations-highlighting/webpack.config.js +++ b/samples/charts/category-chart/annotations-highlighting/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/area-chart-multiple-sources/sandbox.config.json b/samples/charts/category-chart/area-chart-multiple-sources/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/sandbox.config.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-multiple-sources/src/index.css b/samples/charts/category-chart/area-chart-multiple-sources/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/src/index.css +++ b/samples/charts/category-chart/area-chart-multiple-sources/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/area-chart-multiple-sources/src/index.ts b/samples/charts/category-chart/area-chart-multiple-sources/src/index.ts index 24335fec1c..96972fb7c3 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/src/index.ts +++ b/samples/charts/category-chart/area-chart-multiple-sources/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -25,6 +26,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/area-chart-multiple-sources/webpack.config.js b/samples/charts/category-chart/area-chart-multiple-sources/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/webpack.config.js +++ b/samples/charts/category-chart/area-chart-multiple-sources/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/area-chart-single-source/sandbox.config.json b/samples/charts/category-chart/area-chart-single-source/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/area-chart-single-source/sandbox.config.json +++ b/samples/charts/category-chart/area-chart-single-source/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-single-source/src/index.css b/samples/charts/category-chart/area-chart-single-source/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/area-chart-single-source/src/index.css +++ b/samples/charts/category-chart/area-chart-single-source/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/area-chart-single-source/src/index.ts b/samples/charts/category-chart/area-chart-single-source/src/index.ts index d6589a2735..06100ba79f 100644 --- a/samples/charts/category-chart/area-chart-single-source/src/index.ts +++ b/samples/charts/category-chart/area-chart-single-source/src/index.ts @@ -1,9 +1,10 @@ import { IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcCategoryChartModule @@ -21,6 +22,7 @@ export class Sample { chart.dataSource = this.countryRenewableElectricity; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/area-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/area-chart-single-source/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/area-chart-single-source/webpack.config.js b/samples/charts/category-chart/area-chart-single-source/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/area-chart-single-source/webpack.config.js +++ b/samples/charts/category-chart/area-chart-single-source/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/area-chart-styling/sandbox.config.json b/samples/charts/category-chart/area-chart-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/area-chart-styling/sandbox.config.json +++ b/samples/charts/category-chart/area-chart-styling/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/area-chart-styling/src/index.css b/samples/charts/category-chart/area-chart-styling/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/area-chart-styling/src/index.css +++ b/samples/charts/category-chart/area-chart-styling/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/area-chart-styling/src/index.ts b/samples/charts/category-chart/area-chart-styling/src/index.ts index 24335fec1c..96972fb7c3 100644 --- a/samples/charts/category-chart/area-chart-styling/src/index.ts +++ b/samples/charts/category-chart/area-chart-styling/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -25,6 +26,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/area-chart-styling/tsconfig.json b/samples/charts/category-chart/area-chart-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/area-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/area-chart-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/area-chart-styling/webpack.config.js b/samples/charts/category-chart/area-chart-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/area-chart-styling/webpack.config.js +++ b/samples/charts/category-chart/area-chart-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/axis-gap/sandbox.config.json b/samples/charts/category-chart/axis-gap/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/axis-gap/sandbox.config.json +++ b/samples/charts/category-chart/axis-gap/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-gap/src/index.css b/samples/charts/category-chart/axis-gap/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/axis-gap/src/index.css +++ b/samples/charts/category-chart/axis-gap/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/axis-gap/src/index.ts b/samples/charts/category-chart/axis-gap/src/index.ts index fd2f6a4d6d..e6d24abb25 100644 --- a/samples/charts/category-chart/axis-gap/src/index.ts +++ b/samples/charts/category-chart/axis-gap/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescript import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -38,6 +38,7 @@ export class Sample { chart.dataSource = this.countryRenewableElectricity; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/axis-gap/tsconfig.json b/samples/charts/category-chart/axis-gap/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/axis-gap/tsconfig.json +++ b/samples/charts/category-chart/axis-gap/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/axis-gap/webpack.config.js b/samples/charts/category-chart/axis-gap/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/axis-gap/webpack.config.js +++ b/samples/charts/category-chart/axis-gap/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/axis-gridlines/sandbox.config.json b/samples/charts/category-chart/axis-gridlines/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/axis-gridlines/sandbox.config.json +++ b/samples/charts/category-chart/axis-gridlines/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-gridlines/src/index.css b/samples/charts/category-chart/axis-gridlines/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/axis-gridlines/src/index.css +++ b/samples/charts/category-chart/axis-gridlines/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/axis-gridlines/src/index.ts b/samples/charts/category-chart/axis-gridlines/src/index.ts index 0c0ad79173..2f85fe3827 100644 --- a/samples/charts/category-chart/axis-gridlines/src/index.ts +++ b/samples/charts/category-chart/axis-gridlines/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescript import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -43,6 +43,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/axis-gridlines/tsconfig.json b/samples/charts/category-chart/axis-gridlines/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/axis-gridlines/tsconfig.json +++ b/samples/charts/category-chart/axis-gridlines/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/axis-gridlines/webpack.config.js b/samples/charts/category-chart/axis-gridlines/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/axis-gridlines/webpack.config.js +++ b/samples/charts/category-chart/axis-gridlines/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/axis-inverted/sandbox.config.json b/samples/charts/category-chart/axis-inverted/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/axis-inverted/sandbox.config.json +++ b/samples/charts/category-chart/axis-inverted/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-inverted/src/index.css b/samples/charts/category-chart/axis-inverted/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/axis-inverted/src/index.css +++ b/samples/charts/category-chart/axis-inverted/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/axis-inverted/src/index.ts b/samples/charts/category-chart/axis-inverted/src/index.ts index 6e51b317f8..970e28c00a 100644 --- a/samples/charts/category-chart/axis-inverted/src/index.ts +++ b/samples/charts/category-chart/axis-inverted/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartD import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -37,6 +37,7 @@ export class Sample { chart.dataSource = this.countryRenewableElectricity; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/axis-inverted/tsconfig.json b/samples/charts/category-chart/axis-inverted/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/axis-inverted/tsconfig.json +++ b/samples/charts/category-chart/axis-inverted/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/axis-inverted/webpack.config.js b/samples/charts/category-chart/axis-inverted/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/axis-inverted/webpack.config.js +++ b/samples/charts/category-chart/axis-inverted/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/axis-labels/sandbox.config.json b/samples/charts/category-chart/axis-labels/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/axis-labels/sandbox.config.json +++ b/samples/charts/category-chart/axis-labels/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-labels/src/index.css b/samples/charts/category-chart/axis-labels/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/axis-labels/src/index.css +++ b/samples/charts/category-chart/axis-labels/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/axis-labels/src/index.ts b/samples/charts/category-chart/axis-labels/src/index.ts index d8871d7012..203f0dc710 100644 --- a/samples/charts/category-chart/axis-labels/src/index.ts +++ b/samples/charts/category-chart/axis-labels/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescript import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -43,6 +43,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/axis-labels/tsconfig.json b/samples/charts/category-chart/axis-labels/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/axis-labels/tsconfig.json +++ b/samples/charts/category-chart/axis-labels/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/axis-labels/webpack.config.js b/samples/charts/category-chart/axis-labels/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/axis-labels/webpack.config.js +++ b/samples/charts/category-chart/axis-labels/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/axis-locations/sandbox.config.json b/samples/charts/category-chart/axis-locations/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/axis-locations/sandbox.config.json +++ b/samples/charts/category-chart/axis-locations/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-locations/src/index.css b/samples/charts/category-chart/axis-locations/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/axis-locations/src/index.css +++ b/samples/charts/category-chart/axis-locations/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/axis-locations/src/index.ts b/samples/charts/category-chart/axis-locations/src/index.ts index 409d4b2aed..fb5e9a4820 100644 --- a/samples/charts/category-chart/axis-locations/src/index.ts +++ b/samples/charts/category-chart/axis-locations/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescript import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -39,6 +39,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/axis-locations/tsconfig.json b/samples/charts/category-chart/axis-locations/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/axis-locations/tsconfig.json +++ b/samples/charts/category-chart/axis-locations/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/axis-locations/webpack.config.js b/samples/charts/category-chart/axis-locations/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/axis-locations/webpack.config.js +++ b/samples/charts/category-chart/axis-locations/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/axis-options/sandbox.config.json b/samples/charts/category-chart/axis-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/axis-options/sandbox.config.json +++ b/samples/charts/category-chart/axis-options/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-options/src/index.css b/samples/charts/category-chart/axis-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/axis-options/src/index.css +++ b/samples/charts/category-chart/axis-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/axis-options/src/index.ts b/samples/charts/category-chart/axis-options/src/index.ts index c65229b500..402367a44c 100644 --- a/samples/charts/category-chart/axis-options/src/index.ts +++ b/samples/charts/category-chart/axis-options/src/index.ts @@ -1,9 +1,10 @@ import { IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { OlympicMedalsTopCountriesItem, OlympicMedalsTopCountries } from './OlympicMedalsTopCountries'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcCategoryChartModule @@ -21,6 +22,7 @@ export class Sample { chart.dataSource = this.olympicMedalsTopCountries; } this._bind(); + } private _olympicMedalsTopCountries: OlympicMedalsTopCountries = null; diff --git a/samples/charts/category-chart/axis-options/tsconfig.json b/samples/charts/category-chart/axis-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/axis-options/tsconfig.json +++ b/samples/charts/category-chart/axis-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/axis-options/webpack.config.js b/samples/charts/category-chart/axis-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/axis-options/webpack.config.js +++ b/samples/charts/category-chart/axis-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/axis-overlap/sandbox.config.json b/samples/charts/category-chart/axis-overlap/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/axis-overlap/sandbox.config.json +++ b/samples/charts/category-chart/axis-overlap/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-overlap/src/index.css b/samples/charts/category-chart/axis-overlap/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/axis-overlap/src/index.css +++ b/samples/charts/category-chart/axis-overlap/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/axis-overlap/src/index.ts b/samples/charts/category-chart/axis-overlap/src/index.ts index 5d5f559af0..6d071486e7 100644 --- a/samples/charts/category-chart/axis-overlap/src/index.ts +++ b/samples/charts/category-chart/axis-overlap/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescript import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGrossingMovies'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -38,6 +38,7 @@ export class Sample { chart.dataSource = this.highestGrossingMovies; } this._bind(); + } private _highestGrossingMovies: HighestGrossingMovies = null; diff --git a/samples/charts/category-chart/axis-overlap/tsconfig.json b/samples/charts/category-chart/axis-overlap/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/axis-overlap/tsconfig.json +++ b/samples/charts/category-chart/axis-overlap/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/axis-overlap/webpack.config.js b/samples/charts/category-chart/axis-overlap/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/axis-overlap/webpack.config.js +++ b/samples/charts/category-chart/axis-overlap/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/axis-range/sandbox.config.json b/samples/charts/category-chart/axis-range/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/axis-range/sandbox.config.json +++ b/samples/charts/category-chart/axis-range/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-range/src/index.css b/samples/charts/category-chart/axis-range/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/axis-range/src/index.css +++ b/samples/charts/category-chart/axis-range/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/axis-range/src/index.ts b/samples/charts/category-chart/axis-range/src/index.ts index e297580d82..b825110993 100644 --- a/samples/charts/category-chart/axis-range/src/index.ts +++ b/samples/charts/category-chart/axis-range/src/index.ts @@ -7,10 +7,10 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } from 'igniteui-webcomponents-layouts'; import { MarkerType, MarkerType_$type } from 'igniteui-webcomponents-charts'; import { EnumUtil } from 'igniteui-webcomponents-core'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -48,6 +48,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/axis-range/tsconfig.json b/samples/charts/category-chart/axis-range/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/axis-range/tsconfig.json +++ b/samples/charts/category-chart/axis-range/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/axis-range/webpack.config.js b/samples/charts/category-chart/axis-range/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/axis-range/webpack.config.js +++ b/samples/charts/category-chart/axis-range/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/axis-tickmarks/sandbox.config.json b/samples/charts/category-chart/axis-tickmarks/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/axis-tickmarks/sandbox.config.json +++ b/samples/charts/category-chart/axis-tickmarks/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-tickmarks/src/index.css b/samples/charts/category-chart/axis-tickmarks/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/axis-tickmarks/src/index.css +++ b/samples/charts/category-chart/axis-tickmarks/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/axis-tickmarks/src/index.ts b/samples/charts/category-chart/axis-tickmarks/src/index.ts index 6f2e41c0c6..31d06489f0 100644 --- a/samples/charts/category-chart/axis-tickmarks/src/index.ts +++ b/samples/charts/category-chart/axis-tickmarks/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescript import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -39,6 +39,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/axis-tickmarks/tsconfig.json b/samples/charts/category-chart/axis-tickmarks/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/axis-tickmarks/tsconfig.json +++ b/samples/charts/category-chart/axis-tickmarks/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/axis-tickmarks/webpack.config.js b/samples/charts/category-chart/axis-tickmarks/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/axis-tickmarks/webpack.config.js +++ b/samples/charts/category-chart/axis-tickmarks/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/axis-titles/sandbox.config.json b/samples/charts/category-chart/axis-titles/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/axis-titles/sandbox.config.json +++ b/samples/charts/category-chart/axis-titles/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/axis-titles/src/index.css b/samples/charts/category-chart/axis-titles/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/axis-titles/src/index.css +++ b/samples/charts/category-chart/axis-titles/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/axis-titles/src/index.ts b/samples/charts/category-chart/axis-titles/src/index.ts index 24335fec1c..96972fb7c3 100644 --- a/samples/charts/category-chart/axis-titles/src/index.ts +++ b/samples/charts/category-chart/axis-titles/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -25,6 +26,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/axis-titles/tsconfig.json b/samples/charts/category-chart/axis-titles/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/axis-titles/tsconfig.json +++ b/samples/charts/category-chart/axis-titles/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/axis-titles/webpack.config.js b/samples/charts/category-chart/axis-titles/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/axis-titles/webpack.config.js +++ b/samples/charts/category-chart/axis-titles/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/chart-highlight-filter/sandbox.config.json b/samples/charts/category-chart/chart-highlight-filter/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/chart-highlight-filter/sandbox.config.json +++ b/samples/charts/category-chart/chart-highlight-filter/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/chart-highlight-filter/src/index.css b/samples/charts/category-chart/chart-highlight-filter/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/chart-highlight-filter/src/index.css +++ b/samples/charts/category-chart/chart-highlight-filter/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/chart-highlight-filter/src/index.ts b/samples/charts/category-chart/chart-highlight-filter/src/index.ts index 814b5b9ea7..657dd27132 100644 --- a/samples/charts/category-chart/chart-highlight-filter/src/index.ts +++ b/samples/charts/category-chart/chart-highlight-filter/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartD import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { SalesDataItem, SalesData } from './SalesData'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -35,6 +35,7 @@ export class Sample { chart.dataSource = this.salesData; } this._bind(); + } private _salesData: SalesData = null; diff --git a/samples/charts/category-chart/chart-highlight-filter/tsconfig.json b/samples/charts/category-chart/chart-highlight-filter/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/chart-highlight-filter/tsconfig.json +++ b/samples/charts/category-chart/chart-highlight-filter/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/chart-highlight-filter/webpack.config.js b/samples/charts/category-chart/chart-highlight-filter/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/chart-highlight-filter/webpack.config.js +++ b/samples/charts/category-chart/chart-highlight-filter/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/column-chart-multiple-sources/sandbox.config.json b/samples/charts/category-chart/column-chart-multiple-sources/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/sandbox.config.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-multiple-sources/src/index.css b/samples/charts/category-chart/column-chart-multiple-sources/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/src/index.css +++ b/samples/charts/category-chart/column-chart-multiple-sources/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/column-chart-multiple-sources/src/index.ts b/samples/charts/category-chart/column-chart-multiple-sources/src/index.ts index 3d24d0dafc..0804305663 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/src/index.ts +++ b/samples/charts/category-chart/column-chart-multiple-sources/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGrossingMovies'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -25,6 +26,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _highestGrossingMovies: HighestGrossingMovies = null; diff --git a/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.json b/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/column-chart-multiple-sources/webpack.config.js b/samples/charts/category-chart/column-chart-multiple-sources/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/webpack.config.js +++ b/samples/charts/category-chart/column-chart-multiple-sources/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/column-chart-single-source/sandbox.config.json b/samples/charts/category-chart/column-chart-single-source/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/column-chart-single-source/sandbox.config.json +++ b/samples/charts/category-chart/column-chart-single-source/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-single-source/src/index.css b/samples/charts/category-chart/column-chart-single-source/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/column-chart-single-source/src/index.css +++ b/samples/charts/category-chart/column-chart-single-source/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/column-chart-single-source/src/index.ts b/samples/charts/category-chart/column-chart-single-source/src/index.ts index 6067221aec..c069ba0299 100644 --- a/samples/charts/category-chart/column-chart-single-source/src/index.ts +++ b/samples/charts/category-chart/column-chart-single-source/src/index.ts @@ -1,9 +1,10 @@ import { IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { TemperatureAverageDataItem, TemperatureAverageData } from './TemperatureAverageData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcCategoryChartModule @@ -21,6 +22,7 @@ export class Sample { chart.dataSource = this.temperatureAverageData; } this._bind(); + } private _temperatureAverageData: TemperatureAverageData = null; diff --git a/samples/charts/category-chart/column-chart-single-source/tsconfig.json b/samples/charts/category-chart/column-chart-single-source/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/column-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/column-chart-single-source/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/column-chart-single-source/webpack.config.js b/samples/charts/category-chart/column-chart-single-source/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/column-chart-single-source/webpack.config.js +++ b/samples/charts/category-chart/column-chart-single-source/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/column-chart-styling/sandbox.config.json b/samples/charts/category-chart/column-chart-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/column-chart-styling/sandbox.config.json +++ b/samples/charts/category-chart/column-chart-styling/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-styling/src/index.css b/samples/charts/category-chart/column-chart-styling/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/column-chart-styling/src/index.css +++ b/samples/charts/category-chart/column-chart-styling/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/column-chart-styling/src/index.ts b/samples/charts/category-chart/column-chart-styling/src/index.ts index 8dc070fe0f..6ba374ffe9 100644 --- a/samples/charts/category-chart/column-chart-styling/src/index.ts +++ b/samples/charts/category-chart/column-chart-styling/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { EnergyRenewableConsumptionItem, EnergyRenewableConsumption } from './EnergyRenewableConsumption'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -25,6 +26,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _energyRenewableConsumption: EnergyRenewableConsumption = null; diff --git a/samples/charts/category-chart/column-chart-styling/tsconfig.json b/samples/charts/category-chart/column-chart-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/column-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/column-chart-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/column-chart-styling/webpack.config.js b/samples/charts/category-chart/column-chart-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/column-chart-styling/webpack.config.js +++ b/samples/charts/category-chart/column-chart-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/column-chart-with-tooltips/sandbox.config.json b/samples/charts/category-chart/column-chart-with-tooltips/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/sandbox.config.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/column-chart-with-tooltips/src/index.css b/samples/charts/category-chart/column-chart-with-tooltips/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/src/index.css +++ b/samples/charts/category-chart/column-chart-with-tooltips/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/column-chart-with-tooltips/src/index.ts b/samples/charts/category-chart/column-chart-with-tooltips/src/index.ts index 3ff824399f..150c1ca151 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/src/index.ts +++ b/samples/charts/category-chart/column-chart-with-tooltips/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescript import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGrossingMovies'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -39,6 +39,7 @@ export class Sample { chart.dataSource = this.highestGrossingMovies; } this._bind(); + } private _highestGrossingMovies: HighestGrossingMovies = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/column-chart-with-tooltips/webpack.config.js b/samples/charts/category-chart/column-chart-with-tooltips/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/webpack.config.js +++ b/samples/charts/category-chart/column-chart-with-tooltips/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/custom-selection/sandbox.config.json b/samples/charts/category-chart/custom-selection/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/custom-selection/sandbox.config.json +++ b/samples/charts/category-chart/custom-selection/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/custom-selection/src/index.css b/samples/charts/category-chart/custom-selection/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/custom-selection/src/index.css +++ b/samples/charts/category-chart/custom-selection/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/custom-selection/src/index.ts b/samples/charts/category-chart/custom-selection/src/index.ts index f7f2db716b..d05aceec7a 100644 --- a/samples/charts/category-chart/custom-selection/src/index.ts +++ b/samples/charts/category-chart/custom-selection/src/index.ts @@ -2,9 +2,10 @@ import { IgcDataLegendModule, IgcCategoryChartModule, IgcDataChartInteractivityM import { IgcDataLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { SelectableDataItem, SelectableData } from './SelectableData'; import { IgcDomainChartSeriesPointerEventArgs } from 'igniteui-webcomponents-charts'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataLegendModule, @@ -29,6 +30,7 @@ export class Sample { chart.seriesPointerDown = this.categoryChartCustomSelectionPointerDown; } this._bind(); + } private _selectableData: SelectableData = null; @@ -40,6 +42,7 @@ export class Sample { return this._selectableData; } + public categoryChartCustomSelectionPointerDown(sender: any, args: IgcDomainChartSeriesPointerEventArgs): void { var chart = this.chart; diff --git a/samples/charts/category-chart/custom-selection/tsconfig.json b/samples/charts/category-chart/custom-selection/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/custom-selection/tsconfig.json +++ b/samples/charts/category-chart/custom-selection/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/custom-selection/webpack.config.js b/samples/charts/category-chart/custom-selection/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/custom-selection/webpack.config.js +++ b/samples/charts/category-chart/custom-selection/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/data-aggregations/sandbox.config.json b/samples/charts/category-chart/data-aggregations/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/data-aggregations/sandbox.config.json +++ b/samples/charts/category-chart/data-aggregations/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/data-aggregations/src/index.css b/samples/charts/category-chart/data-aggregations/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/data-aggregations/src/index.css +++ b/samples/charts/category-chart/data-aggregations/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/data-aggregations/src/index.ts b/samples/charts/category-chart/data-aggregations/src/index.ts index 6c2d52f359..8aa936dcc2 100644 --- a/samples/charts/category-chart/data-aggregations/src/index.ts +++ b/samples/charts/category-chart/data-aggregations/src/index.ts @@ -7,10 +7,10 @@ import { SalesDataItem, SalesData } from './SalesData'; import { MarkerType, MarkerType_$type } from 'igniteui-webcomponents-charts'; import { IgcPropertyEditorPropertyDescriptionChangedEventArgs, PropertyEditorValueType } from 'igniteui-webcomponents-layouts'; import { EnumUtil } from 'igniteui-webcomponents-core'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; diff --git a/samples/charts/category-chart/data-aggregations/tsconfig.json b/samples/charts/category-chart/data-aggregations/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/data-aggregations/tsconfig.json +++ b/samples/charts/category-chart/data-aggregations/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/data-aggregations/webpack.config.js b/samples/charts/category-chart/data-aggregations/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/data-aggregations/webpack.config.js +++ b/samples/charts/category-chart/data-aggregations/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/data-filter/sandbox.config.json b/samples/charts/category-chart/data-filter/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/data-filter/sandbox.config.json +++ b/samples/charts/category-chart/data-filter/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/data-filter/src/index.css b/samples/charts/category-chart/data-filter/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/data-filter/src/index.css +++ b/samples/charts/category-chart/data-filter/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/data-filter/src/index.ts b/samples/charts/category-chart/data-filter/src/index.ts index 53fb2d72af..e884e13389 100644 --- a/samples/charts/category-chart/data-filter/src/index.ts +++ b/samples/charts/category-chart/data-filter/src/index.ts @@ -7,10 +7,10 @@ import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthR import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } from 'igniteui-webcomponents-layouts'; import { MarkerType, MarkerType_$type } from 'igniteui-webcomponents-charts'; import { EnumUtil } from 'igniteui-webcomponents-core'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -44,6 +44,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _continentsBirthRate: ContinentsBirthRate = null; diff --git a/samples/charts/category-chart/data-filter/tsconfig.json b/samples/charts/category-chart/data-filter/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/data-filter/tsconfig.json +++ b/samples/charts/category-chart/data-filter/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/data-filter/webpack.config.js b/samples/charts/category-chart/data-filter/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/data-filter/webpack.config.js +++ b/samples/charts/category-chart/data-filter/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/sandbox.config.json b/samples/charts/category-chart/data-legend-formatting-decimals/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/sandbox.config.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/src/index.css b/samples/charts/category-chart/data-legend-formatting-decimals/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/src/index.css +++ b/samples/charts/category-chart/data-legend-formatting-decimals/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/src/index.ts b/samples/charts/category-chart/data-legend-formatting-decimals/src/index.ts index 4e3e333a2f..f8ee6bb4bf 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/src/index.ts +++ b/samples/charts/category-chart/data-legend-formatting-decimals/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataLegendModule, IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcDataLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGrossingMovies'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataLegendModule, @@ -25,6 +26,7 @@ export class Sample { chart.dataSource = this.highestGrossingMovies; } this._bind(); + } private _highestGrossingMovies: HighestGrossingMovies = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/webpack.config.js b/samples/charts/category-chart/data-legend-formatting-decimals/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/webpack.config.js +++ b/samples/charts/category-chart/data-legend-formatting-decimals/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/data-legend/sandbox.config.json b/samples/charts/category-chart/data-legend/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/data-legend/sandbox.config.json +++ b/samples/charts/category-chart/data-legend/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/data-legend/src/index.css b/samples/charts/category-chart/data-legend/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/data-legend/src/index.css +++ b/samples/charts/category-chart/data-legend/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/data-legend/src/index.ts b/samples/charts/category-chart/data-legend/src/index.ts index 4e3e333a2f..f8ee6bb4bf 100644 --- a/samples/charts/category-chart/data-legend/src/index.ts +++ b/samples/charts/category-chart/data-legend/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataLegendModule, IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcDataLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGrossingMovies'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataLegendModule, @@ -25,6 +26,7 @@ export class Sample { chart.dataSource = this.highestGrossingMovies; } this._bind(); + } private _highestGrossingMovies: HighestGrossingMovies = null; diff --git a/samples/charts/category-chart/data-legend/tsconfig.json b/samples/charts/category-chart/data-legend/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/data-legend/tsconfig.json +++ b/samples/charts/category-chart/data-legend/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/data-legend/webpack.config.js b/samples/charts/category-chart/data-legend/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/data-legend/webpack.config.js +++ b/samples/charts/category-chart/data-legend/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/sandbox.config.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/sandbox.config.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/index.css b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/index.css +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/index.ts b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/index.ts index bc88967a8f..7c88e74467 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/src/index.ts +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGrossingMovies'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -22,6 +23,7 @@ export class Sample { chart.dataSource = this.highestGrossingMovies; } this._bind(); + } private _highestGrossingMovies: HighestGrossingMovies = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/webpack.config.js b/samples/charts/category-chart/data-tooltip-formatting-decimals/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/webpack.config.js +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/data-tooltip-positioning/sandbox.config.json b/samples/charts/category-chart/data-tooltip-positioning/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/sandbox.config.json +++ b/samples/charts/category-chart/data-tooltip-positioning/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip-positioning/src/index.css b/samples/charts/category-chart/data-tooltip-positioning/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/src/index.css +++ b/samples/charts/category-chart/data-tooltip-positioning/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/data-tooltip-positioning/src/index.ts b/samples/charts/category-chart/data-tooltip-positioning/src/index.ts index 53bac6c01f..849fb5369e 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/src/index.ts +++ b/samples/charts/category-chart/data-tooltip-positioning/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescript import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGrossingMovies'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -40,6 +40,7 @@ export class Sample { chart.dataSource = this.highestGrossingMovies; } this._bind(); + } private _highestGrossingMovies: HighestGrossingMovies = null; diff --git a/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json b/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json +++ b/samples/charts/category-chart/data-tooltip-positioning/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/data-tooltip-positioning/webpack.config.js b/samples/charts/category-chart/data-tooltip-positioning/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/webpack.config.js +++ b/samples/charts/category-chart/data-tooltip-positioning/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/data-tooltip/sandbox.config.json b/samples/charts/category-chart/data-tooltip/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/data-tooltip/sandbox.config.json +++ b/samples/charts/category-chart/data-tooltip/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/data-tooltip/src/index.css b/samples/charts/category-chart/data-tooltip/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/data-tooltip/src/index.css +++ b/samples/charts/category-chart/data-tooltip/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/data-tooltip/src/index.ts b/samples/charts/category-chart/data-tooltip/src/index.ts index bc88967a8f..7c88e74467 100644 --- a/samples/charts/category-chart/data-tooltip/src/index.ts +++ b/samples/charts/category-chart/data-tooltip/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGrossingMovies'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -22,6 +23,7 @@ export class Sample { chart.dataSource = this.highestGrossingMovies; } this._bind(); + } private _highestGrossingMovies: HighestGrossingMovies = null; diff --git a/samples/charts/category-chart/data-tooltip/tsconfig.json b/samples/charts/category-chart/data-tooltip/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/data-tooltip/tsconfig.json +++ b/samples/charts/category-chart/data-tooltip/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/data-tooltip/webpack.config.js b/samples/charts/category-chart/data-tooltip/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/data-tooltip/webpack.config.js +++ b/samples/charts/category-chart/data-tooltip/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/format-specifiers/sandbox.config.json b/samples/charts/category-chart/format-specifiers/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/format-specifiers/sandbox.config.json +++ b/samples/charts/category-chart/format-specifiers/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/format-specifiers/src/index.css b/samples/charts/category-chart/format-specifiers/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/format-specifiers/src/index.css +++ b/samples/charts/category-chart/format-specifiers/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/format-specifiers/src/index.ts b/samples/charts/category-chart/format-specifiers/src/index.ts index 17d46aff71..8ef753fe9e 100644 --- a/samples/charts/category-chart/format-specifiers/src/index.ts +++ b/samples/charts/category-chart/format-specifiers/src/index.ts @@ -5,9 +5,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataLegendDesc import { IgcDataLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { IgcNumberFormatSpecifier } from 'igniteui-webcomponents-core'; import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGrossingMovies'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule, @@ -36,7 +37,6 @@ export class Sample { } return this._numberFormatSpecifier1; } - private chart: IgcCategoryChartComponent private _numberFormatSpecifier3: IgcNumberFormatSpecifier[] | null = null; public get numberFormatSpecifier3(): IgcNumberFormatSpecifier[] { @@ -55,7 +55,6 @@ export class Sample { } return this._numberFormatSpecifier3; } - private _numberFormatSpecifier5: IgcNumberFormatSpecifier[] | null = null; public get numberFormatSpecifier5(): IgcNumberFormatSpecifier[] { if (this._numberFormatSpecifier5 == null) @@ -72,7 +71,6 @@ export class Sample { } return this._numberFormatSpecifier5; } - private _bind: () => void; constructor() { @@ -87,6 +85,7 @@ export class Sample { chart.yAxisLabelFormatSpecifiers = this.numberFormatSpecifier5; } this._bind(); + } private _highestGrossingMovies: HighestGrossingMovies = null; diff --git a/samples/charts/category-chart/format-specifiers/tsconfig.json b/samples/charts/category-chart/format-specifiers/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/format-specifiers/tsconfig.json +++ b/samples/charts/category-chart/format-specifiers/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/format-specifiers/webpack.config.js b/samples/charts/category-chart/format-specifiers/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/format-specifiers/webpack.config.js +++ b/samples/charts/category-chart/format-specifiers/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/highlighting-behavior/sandbox.config.json b/samples/charts/category-chart/highlighting-behavior/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/highlighting-behavior/sandbox.config.json +++ b/samples/charts/category-chart/highlighting-behavior/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-behavior/src/index.css b/samples/charts/category-chart/highlighting-behavior/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/highlighting-behavior/src/index.css +++ b/samples/charts/category-chart/highlighting-behavior/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/highlighting-behavior/src/index.ts b/samples/charts/category-chart/highlighting-behavior/src/index.ts index 1a2becb679..604f7d7205 100644 --- a/samples/charts/category-chart/highlighting-behavior/src/index.ts +++ b/samples/charts/category-chart/highlighting-behavior/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartD import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { TemperatureAnnotatedDataItem, TemperatureAnnotatedData } from './TemperatureAnnotatedData'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -35,6 +35,7 @@ export class Sample { chart.dataSource = this.temperatureAnnotatedData; } this._bind(); + } private _temperatureAnnotatedData: TemperatureAnnotatedData = null; diff --git a/samples/charts/category-chart/highlighting-behavior/tsconfig.json b/samples/charts/category-chart/highlighting-behavior/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/highlighting-behavior/tsconfig.json +++ b/samples/charts/category-chart/highlighting-behavior/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/highlighting-behavior/webpack.config.js b/samples/charts/category-chart/highlighting-behavior/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/highlighting-behavior/webpack.config.js +++ b/samples/charts/category-chart/highlighting-behavior/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/highlighting-mode/sandbox.config.json b/samples/charts/category-chart/highlighting-mode/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/highlighting-mode/sandbox.config.json +++ b/samples/charts/category-chart/highlighting-mode/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/highlighting-mode/src/index.css b/samples/charts/category-chart/highlighting-mode/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/highlighting-mode/src/index.css +++ b/samples/charts/category-chart/highlighting-mode/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/highlighting-mode/src/index.ts b/samples/charts/category-chart/highlighting-mode/src/index.ts index 47ce5fd867..ceb63b9398 100644 --- a/samples/charts/category-chart/highlighting-mode/src/index.ts +++ b/samples/charts/category-chart/highlighting-mode/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, CategoryChartD import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { TemperatureAnnotatedDataItem, TemperatureAnnotatedData } from './TemperatureAnnotatedData'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -35,6 +35,7 @@ export class Sample { chart.dataSource = this.temperatureAnnotatedData; } this._bind(); + } private _temperatureAnnotatedData: TemperatureAnnotatedData = null; diff --git a/samples/charts/category-chart/highlighting-mode/tsconfig.json b/samples/charts/category-chart/highlighting-mode/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/highlighting-mode/tsconfig.json +++ b/samples/charts/category-chart/highlighting-mode/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/highlighting-mode/webpack.config.js b/samples/charts/category-chart/highlighting-mode/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/highlighting-mode/webpack.config.js +++ b/samples/charts/category-chart/highlighting-mode/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/legend-highlighting/sandbox.config.json b/samples/charts/category-chart/legend-highlighting/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/legend-highlighting/sandbox.config.json +++ b/samples/charts/category-chart/legend-highlighting/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/legend-highlighting/src/index.css b/samples/charts/category-chart/legend-highlighting/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/legend-highlighting/src/index.css +++ b/samples/charts/category-chart/legend-highlighting/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/legend-highlighting/src/index.ts b/samples/charts/category-chart/legend-highlighting/src/index.ts index 32e46417d6..c5383ea3bd 100644 --- a/samples/charts/category-chart/legend-highlighting/src/index.ts +++ b/samples/charts/category-chart/legend-highlighting/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGrossingMovies'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -25,6 +26,7 @@ export class Sample { chart.dataSource = this.highestGrossingMovies; } this._bind(); + } private _highestGrossingMovies: HighestGrossingMovies = null; diff --git a/samples/charts/category-chart/legend-highlighting/tsconfig.json b/samples/charts/category-chart/legend-highlighting/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/legend-highlighting/tsconfig.json +++ b/samples/charts/category-chart/legend-highlighting/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/legend-highlighting/webpack.config.js b/samples/charts/category-chart/legend-highlighting/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/legend-highlighting/webpack.config.js +++ b/samples/charts/category-chart/legend-highlighting/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/line-chart-multiple-sources/sandbox.config.json b/samples/charts/category-chart/line-chart-multiple-sources/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/sandbox.config.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-multiple-sources/src/index.css b/samples/charts/category-chart/line-chart-multiple-sources/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/src/index.css +++ b/samples/charts/category-chart/line-chart-multiple-sources/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/line-chart-multiple-sources/src/index.ts b/samples/charts/category-chart/line-chart-multiple-sources/src/index.ts index 24335fec1c..96972fb7c3 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/src/index.ts +++ b/samples/charts/category-chart/line-chart-multiple-sources/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -25,6 +26,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/line-chart-multiple-sources/webpack.config.js b/samples/charts/category-chart/line-chart-multiple-sources/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/webpack.config.js +++ b/samples/charts/category-chart/line-chart-multiple-sources/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/line-chart-single-source/sandbox.config.json b/samples/charts/category-chart/line-chart-single-source/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/line-chart-single-source/sandbox.config.json +++ b/samples/charts/category-chart/line-chart-single-source/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-single-source/src/index.css b/samples/charts/category-chart/line-chart-single-source/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/line-chart-single-source/src/index.css +++ b/samples/charts/category-chart/line-chart-single-source/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/line-chart-single-source/src/index.ts b/samples/charts/category-chart/line-chart-single-source/src/index.ts index d6589a2735..06100ba79f 100644 --- a/samples/charts/category-chart/line-chart-single-source/src/index.ts +++ b/samples/charts/category-chart/line-chart-single-source/src/index.ts @@ -1,9 +1,10 @@ import { IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcCategoryChartModule @@ -21,6 +22,7 @@ export class Sample { chart.dataSource = this.countryRenewableElectricity; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/line-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/line-chart-single-source/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/line-chart-single-source/webpack.config.js b/samples/charts/category-chart/line-chart-single-source/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/line-chart-single-source/webpack.config.js +++ b/samples/charts/category-chart/line-chart-single-source/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/line-chart-styling/sandbox.config.json b/samples/charts/category-chart/line-chart-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/line-chart-styling/sandbox.config.json +++ b/samples/charts/category-chart/line-chart-styling/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/line-chart-styling/src/index.css b/samples/charts/category-chart/line-chart-styling/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/line-chart-styling/src/index.css +++ b/samples/charts/category-chart/line-chart-styling/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/line-chart-styling/src/index.ts b/samples/charts/category-chart/line-chart-styling/src/index.ts index 24335fec1c..96972fb7c3 100644 --- a/samples/charts/category-chart/line-chart-styling/src/index.ts +++ b/samples/charts/category-chart/line-chart-styling/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -25,6 +26,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/line-chart-styling/tsconfig.json b/samples/charts/category-chart/line-chart-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/line-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/line-chart-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/line-chart-styling/webpack.config.js b/samples/charts/category-chart/line-chart-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/line-chart-styling/webpack.config.js +++ b/samples/charts/category-chart/line-chart-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/marker-options/sandbox.config.json b/samples/charts/category-chart/marker-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/marker-options/sandbox.config.json +++ b/samples/charts/category-chart/marker-options/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/marker-options/src/index.css b/samples/charts/category-chart/marker-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/marker-options/src/index.css +++ b/samples/charts/category-chart/marker-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/marker-options/src/index.ts b/samples/charts/category-chart/marker-options/src/index.ts index 0b1a0a9825..00585e9468 100644 --- a/samples/charts/category-chart/marker-options/src/index.ts +++ b/samples/charts/category-chart/marker-options/src/index.ts @@ -7,10 +7,10 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } from 'igniteui-webcomponents-layouts'; import { MarkerType, MarkerType_$type } from 'igniteui-webcomponents-charts'; import { EnumUtil } from 'igniteui-webcomponents-core'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -43,6 +43,7 @@ export class Sample { chart.dataSource = this.countryRenewableElectricity; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/marker-options/tsconfig.json b/samples/charts/category-chart/marker-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/marker-options/tsconfig.json +++ b/samples/charts/category-chart/marker-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/marker-options/webpack.config.js b/samples/charts/category-chart/marker-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/marker-options/webpack.config.js +++ b/samples/charts/category-chart/marker-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/overview/sandbox.config.json b/samples/charts/category-chart/overview/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/overview/sandbox.config.json +++ b/samples/charts/category-chart/overview/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/overview/src/index.css b/samples/charts/category-chart/overview/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/overview/src/index.css +++ b/samples/charts/category-chart/overview/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/overview/src/index.ts b/samples/charts/category-chart/overview/src/index.ts index 982ef63180..b134c613fd 100644 --- a/samples/charts/category-chart/overview/src/index.ts +++ b/samples/charts/category-chart/overview/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule, IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -26,6 +27,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/overview/tsconfig.json b/samples/charts/category-chart/overview/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/overview/tsconfig.json +++ b/samples/charts/category-chart/overview/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/overview/webpack.config.js b/samples/charts/category-chart/overview/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/overview/webpack.config.js +++ b/samples/charts/category-chart/overview/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/point-chart-multiple-sources/sandbox.config.json b/samples/charts/category-chart/point-chart-multiple-sources/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/sandbox.config.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-multiple-sources/src/index.css b/samples/charts/category-chart/point-chart-multiple-sources/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/src/index.css +++ b/samples/charts/category-chart/point-chart-multiple-sources/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/point-chart-multiple-sources/src/index.ts b/samples/charts/category-chart/point-chart-multiple-sources/src/index.ts index 24335fec1c..96972fb7c3 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/src/index.ts +++ b/samples/charts/category-chart/point-chart-multiple-sources/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -25,6 +26,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/point-chart-multiple-sources/webpack.config.js b/samples/charts/category-chart/point-chart-multiple-sources/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/webpack.config.js +++ b/samples/charts/category-chart/point-chart-multiple-sources/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/point-chart-single-source/sandbox.config.json b/samples/charts/category-chart/point-chart-single-source/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/point-chart-single-source/sandbox.config.json +++ b/samples/charts/category-chart/point-chart-single-source/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-single-source/src/index.css b/samples/charts/category-chart/point-chart-single-source/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/point-chart-single-source/src/index.css +++ b/samples/charts/category-chart/point-chart-single-source/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/point-chart-single-source/src/index.ts b/samples/charts/category-chart/point-chart-single-source/src/index.ts index d6589a2735..06100ba79f 100644 --- a/samples/charts/category-chart/point-chart-single-source/src/index.ts +++ b/samples/charts/category-chart/point-chart-single-source/src/index.ts @@ -1,9 +1,10 @@ import { IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcCategoryChartModule @@ -21,6 +22,7 @@ export class Sample { chart.dataSource = this.countryRenewableElectricity; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/point-chart-single-source/tsconfig.json +++ b/samples/charts/category-chart/point-chart-single-source/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/point-chart-single-source/webpack.config.js b/samples/charts/category-chart/point-chart-single-source/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/point-chart-single-source/webpack.config.js +++ b/samples/charts/category-chart/point-chart-single-source/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/point-chart-styling/sandbox.config.json b/samples/charts/category-chart/point-chart-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/point-chart-styling/sandbox.config.json +++ b/samples/charts/category-chart/point-chart-styling/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/point-chart-styling/src/index.css b/samples/charts/category-chart/point-chart-styling/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/point-chart-styling/src/index.css +++ b/samples/charts/category-chart/point-chart-styling/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/point-chart-styling/src/index.ts b/samples/charts/category-chart/point-chart-styling/src/index.ts index 24335fec1c..96972fb7c3 100644 --- a/samples/charts/category-chart/point-chart-styling/src/index.ts +++ b/samples/charts/category-chart/point-chart-styling/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -25,6 +26,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/point-chart-styling/tsconfig.json b/samples/charts/category-chart/point-chart-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/point-chart-styling/tsconfig.json +++ b/samples/charts/category-chart/point-chart-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/point-chart-styling/webpack.config.js b/samples/charts/category-chart/point-chart-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/point-chart-styling/webpack.config.js +++ b/samples/charts/category-chart/point-chart-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/selection-modes/sandbox.config.json b/samples/charts/category-chart/selection-modes/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/selection-modes/sandbox.config.json +++ b/samples/charts/category-chart/selection-modes/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/selection-modes/src/index.css b/samples/charts/category-chart/selection-modes/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/selection-modes/src/index.css +++ b/samples/charts/category-chart/selection-modes/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/selection-modes/src/index.ts b/samples/charts/category-chart/selection-modes/src/index.ts index 238f8c15b6..bc35ce73aa 100644 --- a/samples/charts/category-chart/selection-modes/src/index.ts +++ b/samples/charts/category-chart/selection-modes/src/index.ts @@ -1,9 +1,10 @@ import { IgcCategoryChartModule, IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { TemperatureAverageDataItem, TemperatureAverageData } from './TemperatureAverageData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcCategoryChartModule, @@ -22,6 +23,7 @@ export class Sample { chart.dataSource = this.temperatureAverageData; } this._bind(); + } private _temperatureAverageData: TemperatureAverageData = null; diff --git a/samples/charts/category-chart/selection-modes/tsconfig.json b/samples/charts/category-chart/selection-modes/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/selection-modes/tsconfig.json +++ b/samples/charts/category-chart/selection-modes/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/selection-modes/webpack.config.js b/samples/charts/category-chart/selection-modes/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/selection-modes/webpack.config.js +++ b/samples/charts/category-chart/selection-modes/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/selection-multiple-modes/sandbox.config.json b/samples/charts/category-chart/selection-multiple-modes/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/selection-multiple-modes/sandbox.config.json +++ b/samples/charts/category-chart/selection-multiple-modes/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/selection-multiple-modes/src/index.css b/samples/charts/category-chart/selection-multiple-modes/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/selection-multiple-modes/src/index.css +++ b/samples/charts/category-chart/selection-multiple-modes/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/selection-multiple-modes/src/index.ts b/samples/charts/category-chart/selection-multiple-modes/src/index.ts index bcd4d513fd..9290aaf45e 100644 --- a/samples/charts/category-chart/selection-multiple-modes/src/index.ts +++ b/samples/charts/category-chart/selection-multiple-modes/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, LegendDescript import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { EnergyRenewableConsumptionItem, EnergyRenewableConsumption } from './EnergyRenewableConsumption'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -41,6 +41,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _energyRenewableConsumption: EnergyRenewableConsumption = null; diff --git a/samples/charts/category-chart/selection-multiple-modes/tsconfig.json b/samples/charts/category-chart/selection-multiple-modes/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/selection-multiple-modes/tsconfig.json +++ b/samples/charts/category-chart/selection-multiple-modes/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/selection-multiple-modes/webpack.config.js b/samples/charts/category-chart/selection-multiple-modes/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/selection-multiple-modes/webpack.config.js +++ b/samples/charts/category-chart/selection-multiple-modes/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/spline-area-multiple-sources/sandbox.config.json b/samples/charts/category-chart/spline-area-multiple-sources/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/sandbox.config.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-multiple-sources/src/index.css b/samples/charts/category-chart/spline-area-multiple-sources/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/src/index.css +++ b/samples/charts/category-chart/spline-area-multiple-sources/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/spline-area-multiple-sources/src/index.ts b/samples/charts/category-chart/spline-area-multiple-sources/src/index.ts index 72f889b2fa..4142598816 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/src/index.ts +++ b/samples/charts/category-chart/spline-area-multiple-sources/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule, IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -26,6 +27,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/spline-area-multiple-sources/webpack.config.js b/samples/charts/category-chart/spline-area-multiple-sources/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/webpack.config.js +++ b/samples/charts/category-chart/spline-area-multiple-sources/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/spline-area-single-source/sandbox.config.json b/samples/charts/category-chart/spline-area-single-source/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/spline-area-single-source/sandbox.config.json +++ b/samples/charts/category-chart/spline-area-single-source/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-single-source/src/index.css b/samples/charts/category-chart/spline-area-single-source/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/spline-area-single-source/src/index.css +++ b/samples/charts/category-chart/spline-area-single-source/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/spline-area-single-source/src/index.ts b/samples/charts/category-chart/spline-area-single-source/src/index.ts index d6589a2735..06100ba79f 100644 --- a/samples/charts/category-chart/spline-area-single-source/src/index.ts +++ b/samples/charts/category-chart/spline-area-single-source/src/index.ts @@ -1,9 +1,10 @@ import { IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcCategoryChartModule @@ -21,6 +22,7 @@ export class Sample { chart.dataSource = this.countryRenewableElectricity; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/spline-area-single-source/tsconfig.json +++ b/samples/charts/category-chart/spline-area-single-source/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/spline-area-single-source/webpack.config.js b/samples/charts/category-chart/spline-area-single-source/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/spline-area-single-source/webpack.config.js +++ b/samples/charts/category-chart/spline-area-single-source/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/spline-area-styling/sandbox.config.json b/samples/charts/category-chart/spline-area-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/spline-area-styling/sandbox.config.json +++ b/samples/charts/category-chart/spline-area-styling/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-area-styling/src/index.css b/samples/charts/category-chart/spline-area-styling/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/spline-area-styling/src/index.css +++ b/samples/charts/category-chart/spline-area-styling/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/spline-area-styling/src/index.ts b/samples/charts/category-chart/spline-area-styling/src/index.ts index 72f889b2fa..4142598816 100644 --- a/samples/charts/category-chart/spline-area-styling/src/index.ts +++ b/samples/charts/category-chart/spline-area-styling/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule, IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -26,6 +27,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/spline-area-styling/tsconfig.json b/samples/charts/category-chart/spline-area-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/spline-area-styling/tsconfig.json +++ b/samples/charts/category-chart/spline-area-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/spline-area-styling/webpack.config.js b/samples/charts/category-chart/spline-area-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/spline-area-styling/webpack.config.js +++ b/samples/charts/category-chart/spline-area-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/spline-multiple-sources/sandbox.config.json b/samples/charts/category-chart/spline-multiple-sources/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/spline-multiple-sources/sandbox.config.json +++ b/samples/charts/category-chart/spline-multiple-sources/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-multiple-sources/src/index.css b/samples/charts/category-chart/spline-multiple-sources/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/spline-multiple-sources/src/index.css +++ b/samples/charts/category-chart/spline-multiple-sources/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/spline-multiple-sources/src/index.ts b/samples/charts/category-chart/spline-multiple-sources/src/index.ts index 72f889b2fa..4142598816 100644 --- a/samples/charts/category-chart/spline-multiple-sources/src/index.ts +++ b/samples/charts/category-chart/spline-multiple-sources/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule, IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -26,6 +27,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/spline-multiple-sources/tsconfig.json b/samples/charts/category-chart/spline-multiple-sources/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/spline-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/spline-multiple-sources/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/spline-multiple-sources/webpack.config.js b/samples/charts/category-chart/spline-multiple-sources/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/spline-multiple-sources/webpack.config.js +++ b/samples/charts/category-chart/spline-multiple-sources/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/spline-single-source/sandbox.config.json b/samples/charts/category-chart/spline-single-source/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/spline-single-source/sandbox.config.json +++ b/samples/charts/category-chart/spline-single-source/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-single-source/src/index.css b/samples/charts/category-chart/spline-single-source/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/spline-single-source/src/index.css +++ b/samples/charts/category-chart/spline-single-source/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/spline-single-source/src/index.ts b/samples/charts/category-chart/spline-single-source/src/index.ts index d6589a2735..06100ba79f 100644 --- a/samples/charts/category-chart/spline-single-source/src/index.ts +++ b/samples/charts/category-chart/spline-single-source/src/index.ts @@ -1,9 +1,10 @@ import { IgcCategoryChartModule } from 'igniteui-webcomponents-charts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcCategoryChartModule @@ -21,6 +22,7 @@ export class Sample { chart.dataSource = this.countryRenewableElectricity; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/spline-single-source/tsconfig.json b/samples/charts/category-chart/spline-single-source/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/spline-single-source/tsconfig.json +++ b/samples/charts/category-chart/spline-single-source/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/spline-single-source/webpack.config.js b/samples/charts/category-chart/spline-single-source/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/spline-single-source/webpack.config.js +++ b/samples/charts/category-chart/spline-single-source/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/spline-styling/sandbox.config.json b/samples/charts/category-chart/spline-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/spline-styling/sandbox.config.json +++ b/samples/charts/category-chart/spline-styling/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/spline-styling/src/index.css b/samples/charts/category-chart/spline-styling/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/spline-styling/src/index.css +++ b/samples/charts/category-chart/spline-styling/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/spline-styling/src/index.ts b/samples/charts/category-chart/spline-styling/src/index.ts index 72f889b2fa..4142598816 100644 --- a/samples/charts/category-chart/spline-styling/src/index.ts +++ b/samples/charts/category-chart/spline-styling/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule, IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -26,6 +27,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/spline-styling/tsconfig.json b/samples/charts/category-chart/spline-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/spline-styling/tsconfig.json +++ b/samples/charts/category-chart/spline-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/spline-styling/webpack.config.js b/samples/charts/category-chart/spline-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/spline-styling/webpack.config.js +++ b/samples/charts/category-chart/spline-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/step-area-multiple-sources/sandbox.config.json b/samples/charts/category-chart/step-area-multiple-sources/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/sandbox.config.json +++ b/samples/charts/category-chart/step-area-multiple-sources/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-multiple-sources/src/index.css b/samples/charts/category-chart/step-area-multiple-sources/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/src/index.css +++ b/samples/charts/category-chart/step-area-multiple-sources/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/step-area-multiple-sources/src/index.ts b/samples/charts/category-chart/step-area-multiple-sources/src/index.ts index 72f889b2fa..4142598816 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/src/index.ts +++ b/samples/charts/category-chart/step-area-multiple-sources/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule, IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -26,6 +27,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/step-area-multiple-sources/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/step-area-multiple-sources/webpack.config.js b/samples/charts/category-chart/step-area-multiple-sources/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/webpack.config.js +++ b/samples/charts/category-chart/step-area-multiple-sources/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/step-area-single-source/sandbox.config.json b/samples/charts/category-chart/step-area-single-source/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/step-area-single-source/sandbox.config.json +++ b/samples/charts/category-chart/step-area-single-source/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-single-source/src/index.css b/samples/charts/category-chart/step-area-single-source/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/step-area-single-source/src/index.css +++ b/samples/charts/category-chart/step-area-single-source/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/step-area-single-source/src/index.ts b/samples/charts/category-chart/step-area-single-source/src/index.ts index b286d37fff..634bdcf8ce 100644 --- a/samples/charts/category-chart/step-area-single-source/src/index.ts +++ b/samples/charts/category-chart/step-area-single-source/src/index.ts @@ -1,9 +1,10 @@ import { IgcCategoryChartModule, IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcCategoryChartModule, @@ -22,6 +23,7 @@ export class Sample { chart.dataSource = this.countryRenewableElectricity; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/step-area-single-source/tsconfig.json +++ b/samples/charts/category-chart/step-area-single-source/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/step-area-single-source/webpack.config.js b/samples/charts/category-chart/step-area-single-source/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/step-area-single-source/webpack.config.js +++ b/samples/charts/category-chart/step-area-single-source/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/step-area-styling/sandbox.config.json b/samples/charts/category-chart/step-area-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/step-area-styling/sandbox.config.json +++ b/samples/charts/category-chart/step-area-styling/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/step-area-styling/src/index.css b/samples/charts/category-chart/step-area-styling/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/step-area-styling/src/index.css +++ b/samples/charts/category-chart/step-area-styling/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/step-area-styling/src/index.ts b/samples/charts/category-chart/step-area-styling/src/index.ts index 72f889b2fa..4142598816 100644 --- a/samples/charts/category-chart/step-area-styling/src/index.ts +++ b/samples/charts/category-chart/step-area-styling/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule, IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -26,6 +27,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/step-area-styling/tsconfig.json b/samples/charts/category-chart/step-area-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/step-area-styling/tsconfig.json +++ b/samples/charts/category-chart/step-area-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/step-area-styling/webpack.config.js b/samples/charts/category-chart/step-area-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/step-area-styling/webpack.config.js +++ b/samples/charts/category-chart/step-area-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/step-line-multiple-sources/sandbox.config.json b/samples/charts/category-chart/step-line-multiple-sources/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/sandbox.config.json +++ b/samples/charts/category-chart/step-line-multiple-sources/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-multiple-sources/src/index.css b/samples/charts/category-chart/step-line-multiple-sources/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/src/index.css +++ b/samples/charts/category-chart/step-line-multiple-sources/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/step-line-multiple-sources/src/index.ts b/samples/charts/category-chart/step-line-multiple-sources/src/index.ts index 2c2556358a..7f121863f5 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/src/index.ts +++ b/samples/charts/category-chart/step-line-multiple-sources/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule, IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -26,6 +27,7 @@ export class Sample { chart.dataSource = this.countryRenewableElectricity; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/tsconfig.json +++ b/samples/charts/category-chart/step-line-multiple-sources/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/step-line-multiple-sources/webpack.config.js b/samples/charts/category-chart/step-line-multiple-sources/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/webpack.config.js +++ b/samples/charts/category-chart/step-line-multiple-sources/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/step-line-single-source/sandbox.config.json b/samples/charts/category-chart/step-line-single-source/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/step-line-single-source/sandbox.config.json +++ b/samples/charts/category-chart/step-line-single-source/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-single-source/src/index.css b/samples/charts/category-chart/step-line-single-source/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/step-line-single-source/src/index.css +++ b/samples/charts/category-chart/step-line-single-source/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/step-line-single-source/src/index.ts b/samples/charts/category-chart/step-line-single-source/src/index.ts index b286d37fff..634bdcf8ce 100644 --- a/samples/charts/category-chart/step-line-single-source/src/index.ts +++ b/samples/charts/category-chart/step-line-single-source/src/index.ts @@ -1,9 +1,10 @@ import { IgcCategoryChartModule, IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; import { IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcCategoryChartModule, @@ -22,6 +23,7 @@ export class Sample { chart.dataSource = this.countryRenewableElectricity; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/step-line-single-source/tsconfig.json +++ b/samples/charts/category-chart/step-line-single-source/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/step-line-single-source/webpack.config.js b/samples/charts/category-chart/step-line-single-source/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/step-line-single-source/webpack.config.js +++ b/samples/charts/category-chart/step-line-single-source/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/step-line-styling/sandbox.config.json b/samples/charts/category-chart/step-line-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/step-line-styling/sandbox.config.json +++ b/samples/charts/category-chart/step-line-styling/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/step-line-styling/src/index.css b/samples/charts/category-chart/step-line-styling/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/step-line-styling/src/index.css +++ b/samples/charts/category-chart/step-line-styling/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/step-line-styling/src/index.ts b/samples/charts/category-chart/step-line-styling/src/index.ts index 2c2556358a..7f121863f5 100644 --- a/samples/charts/category-chart/step-line-styling/src/index.ts +++ b/samples/charts/category-chart/step-line-styling/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcCategoryChartModule, IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -26,6 +27,7 @@ export class Sample { chart.dataSource = this.countryRenewableElectricity; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/step-line-styling/tsconfig.json b/samples/charts/category-chart/step-line-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/step-line-styling/tsconfig.json +++ b/samples/charts/category-chart/step-line-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/step-line-styling/webpack.config.js b/samples/charts/category-chart/step-line-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/step-line-styling/webpack.config.js +++ b/samples/charts/category-chart/step-line-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/category-chart/value-lines/sandbox.config.json b/samples/charts/category-chart/value-lines/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/category-chart/value-lines/sandbox.config.json +++ b/samples/charts/category-chart/value-lines/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/category-chart/value-lines/src/index.css b/samples/charts/category-chart/value-lines/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/category-chart/value-lines/src/index.css +++ b/samples/charts/category-chart/value-lines/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/value-lines/src/index.ts b/samples/charts/category-chart/value-lines/src/index.ts index 0babc1c654..b3b253da69 100644 --- a/samples/charts/category-chart/value-lines/src/index.ts +++ b/samples/charts/category-chart/value-lines/src/index.ts @@ -7,10 +7,10 @@ import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './ import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } from 'igniteui-webcomponents-layouts'; import { MarkerType, MarkerType_$type } from 'igniteui-webcomponents-charts'; import { EnumUtil } from 'igniteui-webcomponents-core'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -44,6 +44,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/category-chart/value-lines/tsconfig.json b/samples/charts/category-chart/value-lines/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/category-chart/value-lines/tsconfig.json +++ b/samples/charts/category-chart/value-lines/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/category-chart/value-lines/webpack.config.js b/samples/charts/category-chart/value-lines/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/category-chart/value-lines/webpack.config.js +++ b/samples/charts/category-chart/value-lines/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/annotations-custom/sandbox.config.json b/samples/charts/data-chart/annotations-custom/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/annotations-custom/sandbox.config.json +++ b/samples/charts/data-chart/annotations-custom/sandbox.config.json @@ -3,5 +3,4 @@ "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/annotations-custom/src/index.css b/samples/charts/data-chart/annotations-custom/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/annotations-custom/src/index.css +++ b/samples/charts/data-chart/annotations-custom/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/annotations-custom/src/index.ts b/samples/charts/data-chart/annotations-custom/src/index.ts index d5e8707139..dbc73fcc81 100644 --- a/samples/charts/data-chart/annotations-custom/src/index.ts +++ b/samples/charts/data-chart/annotations-custom/src/index.ts @@ -2,9 +2,10 @@ import { IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartAnnotat import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcLineSeriesComponent, IgcCalloutLayerComponent, IgcFinalValueLayerComponent, IgcCrosshairLayerComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; import { CountryRenewableCalloutsItem, CountryRenewableCallouts } from './CountryRenewableCallouts'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataChartCoreModule, @@ -44,6 +45,7 @@ export class Sample { calloutLayer1.dataSource = this.countryRenewableCallouts; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/data-chart/annotations-custom/tsconfig.json b/samples/charts/data-chart/annotations-custom/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/annotations-custom/tsconfig.json +++ b/samples/charts/data-chart/annotations-custom/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/annotations-custom/webpack.config.js b/samples/charts/data-chart/annotations-custom/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/annotations-custom/webpack.config.js +++ b/samples/charts/data-chart/annotations-custom/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/sandbox.config.json b/samples/charts/data-chart/axis-annotations-corner-radius/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/sandbox.config.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/sandbox.config.json @@ -3,5 +3,4 @@ "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/axis-annotations-corner-radius/src/index.css b/samples/charts/data-chart/axis-annotations-corner-radius/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/src/index.css +++ b/samples/charts/data-chart/axis-annotations-corner-radius/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/src/index.ts b/samples/charts/data-chart/axis-annotations-corner-radius/src/index.ts index e7e49fda8c..745317c194 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/src/index.ts +++ b/samples/charts/data-chart/axis-annotations-corner-radius/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartAnnotationModule, IgcDataChartInteractivityModule, IgcAnnotationLayerProxyModule } from 'igniteui-webcomponents-charts'; import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcLineSeriesComponent, IgcCalloutLayerComponent, IgcFinalValueLayerComponent, IgcCrosshairLayerComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataChartCoreModule, @@ -42,6 +43,7 @@ export class Sample { lineSeries1.dataSource = this.countryRenewableElectricity; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/webpack.config.js b/samples/charts/data-chart/axis-annotations-corner-radius/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/webpack.config.js +++ b/samples/charts/data-chart/axis-annotations-corner-radius/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/axis-label-rotation/sandbox.config.json b/samples/charts/data-chart/axis-label-rotation/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/axis-label-rotation/sandbox.config.json +++ b/samples/charts/data-chart/axis-label-rotation/sandbox.config.json @@ -3,5 +3,4 @@ "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/axis-label-rotation/src/index.css b/samples/charts/data-chart/axis-label-rotation/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/axis-label-rotation/src/index.css +++ b/samples/charts/data-chart/axis-label-rotation/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/axis-label-rotation/src/index.ts b/samples/charts/data-chart/axis-label-rotation/src/index.ts index 1a913885d1..f6e12f3200 100644 --- a/samples/charts/data-chart/axis-label-rotation/src/index.ts +++ b/samples/charts/data-chart/axis-label-rotation/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataChartCateg import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcColumnSeriesComponent } from 'igniteui-webcomponents-charts'; import { TemperatureAverageDataLongLabelsItem, TemperatureAverageDataLongLabels } from './TemperatureAverageDataLongLabels'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -47,6 +47,7 @@ export class Sample { colSeries1.dataSource = this.temperatureAverageDataLongLabels; } this._bind(); + } private _temperatureAverageDataLongLabels: TemperatureAverageDataLongLabels = null; diff --git a/samples/charts/data-chart/axis-label-rotation/tsconfig.json b/samples/charts/data-chart/axis-label-rotation/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/axis-label-rotation/tsconfig.json +++ b/samples/charts/data-chart/axis-label-rotation/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/axis-label-rotation/webpack.config.js b/samples/charts/data-chart/axis-label-rotation/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/axis-label-rotation/webpack.config.js +++ b/samples/charts/data-chart/axis-label-rotation/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/axis-min-max-gap/sandbox.config.json b/samples/charts/data-chart/axis-min-max-gap/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/axis-min-max-gap/sandbox.config.json +++ b/samples/charts/data-chart/axis-min-max-gap/sandbox.config.json @@ -3,5 +3,4 @@ "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/axis-min-max-gap/src/index.css b/samples/charts/data-chart/axis-min-max-gap/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/axis-min-max-gap/src/index.css +++ b/samples/charts/data-chart/axis-min-max-gap/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/axis-min-max-gap/src/index.ts b/samples/charts/data-chart/axis-min-max-gap/src/index.ts index e987d8e950..c7432f426c 100644 --- a/samples/charts/data-chart/axis-min-max-gap/src/index.ts +++ b/samples/charts/data-chart/axis-min-max-gap/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataChartCategoryModule, IgcDataChartAnnotationModule, IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcCategoryHighlightLayerComponent, IgcColumnSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { TemperatureAverageDataItem, TemperatureAverageData } from './TemperatureAverageData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataChartCategoryModule, @@ -36,6 +37,7 @@ export class Sample { columnSeries1.dataSource = this.temperatureAverageData; } this._bind(); + } private _temperatureAverageData: TemperatureAverageData = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/axis-min-max-gap/tsconfig.json +++ b/samples/charts/data-chart/axis-min-max-gap/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/axis-min-max-gap/webpack.config.js b/samples/charts/data-chart/axis-min-max-gap/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/axis-min-max-gap/webpack.config.js +++ b/samples/charts/data-chart/axis-min-max-gap/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/sandbox.config.json b/samples/charts/data-chart/bar-chart-multiple-sources/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/sandbox.config.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/sandbox.config.json @@ -3,5 +3,4 @@ "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/bar-chart-multiple-sources/src/index.css b/samples/charts/data-chart/bar-chart-multiple-sources/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/src/index.css +++ b/samples/charts/data-chart/bar-chart-multiple-sources/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/src/index.ts b/samples/charts/data-chart/bar-chart-multiple-sources/src/index.ts index 39eb59102f..2e0bf6a2b0 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/src/index.ts +++ b/samples/charts/data-chart/bar-chart-multiple-sources/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartCategoryCoreModule, IgcDataChartCategoryModule, IgcDataChartInteractivityModule, IgcDataChartVerticalCategoryModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryYAxisComponent, IgcNumericXAxisComponent, IgcCategoryHighlightLayerComponent, IgcBarSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { HighestGrossingMoviesItem, HighestGrossingMovies } from './HighestGrossingMovies'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -48,6 +49,7 @@ export class Sample { barSeries2.dataSource = this.highestGrossingMovies; } this._bind(); + } private _highestGrossingMovies: HighestGrossingMovies = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/webpack.config.js b/samples/charts/data-chart/bar-chart-multiple-sources/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/webpack.config.js +++ b/samples/charts/data-chart/bar-chart-multiple-sources/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/bar-chart-overlapping/sandbox.config.json b/samples/charts/data-chart/bar-chart-overlapping/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/sandbox.config.json +++ b/samples/charts/data-chart/bar-chart-overlapping/sandbox.config.json @@ -3,5 +3,4 @@ "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/bar-chart-overlapping/src/index.css b/samples/charts/data-chart/bar-chart-overlapping/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/src/index.css +++ b/samples/charts/data-chart/bar-chart-overlapping/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/bar-chart-overlapping/src/index.ts b/samples/charts/data-chart/bar-chart-overlapping/src/index.ts index fb30aec5a0..107da7fc75 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/src/index.ts +++ b/samples/charts/data-chart/bar-chart-overlapping/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartAnnotationModule, IgcDataChartCoreModule, IgcDataChartCategoryCoreModule, IgcDataChartCategoryModule, IgcDataChartInteractivityModule, IgcDataChartVerticalCategoryModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryYAxisComponent, IgcNumericXAxisComponent, IgcCategoryHighlightLayerComponent, IgcBarSeriesComponent, IgcCalloutLayerComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { RoadblocksToSuccessItem, RoadblocksToSuccess } from './RoadblocksToSuccess'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -56,6 +57,7 @@ export class Sample { barSeries2.dataSource = this.roadblocksToSuccess; } this._bind(); + } private _roadblocksToSuccess: RoadblocksToSuccess = null; diff --git a/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json b/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-overlapping/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/bar-chart-overlapping/webpack.config.js b/samples/charts/data-chart/bar-chart-overlapping/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/webpack.config.js +++ b/samples/charts/data-chart/bar-chart-overlapping/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/bar-chart-single-source/sandbox.config.json b/samples/charts/data-chart/bar-chart-single-source/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/bar-chart-single-source/sandbox.config.json +++ b/samples/charts/data-chart/bar-chart-single-source/sandbox.config.json @@ -3,5 +3,4 @@ "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/bar-chart-single-source/src/index.css b/samples/charts/data-chart/bar-chart-single-source/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/bar-chart-single-source/src/index.css +++ b/samples/charts/data-chart/bar-chart-single-source/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/bar-chart-single-source/src/index.ts b/samples/charts/data-chart/bar-chart-single-source/src/index.ts index 4055133c8e..3636d77720 100644 --- a/samples/charts/data-chart/bar-chart-single-source/src/index.ts +++ b/samples/charts/data-chart/bar-chart-single-source/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataChartCoreModule, IgcDataChartCategoryCoreModule, IgcDataChartCategoryModule, IgcDataChartAnnotationModule, IgcDataChartInteractivityModule, IgcDataChartVerticalCategoryModule } from 'igniteui-webcomponents-charts'; import { IgcDataChartComponent, IgcCategoryYAxisComponent, IgcNumericXAxisComponent, IgcCategoryHighlightLayerComponent, IgcBarSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { OnlineShoppingSearchesItem, OnlineShoppingSearches } from './OnlineShoppingSearches'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataChartCoreModule, @@ -39,6 +40,7 @@ export class Sample { barSeries1.dataSource = this.onlineShoppingSearches; } this._bind(); + } private _onlineShoppingSearches: OnlineShoppingSearches = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/bar-chart-single-source/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-single-source/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/bar-chart-single-source/webpack.config.js b/samples/charts/data-chart/bar-chart-single-source/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/bar-chart-single-source/webpack.config.js +++ b/samples/charts/data-chart/bar-chart-single-source/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/bar-chart-styling/sandbox.config.json b/samples/charts/data-chart/bar-chart-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/bar-chart-styling/sandbox.config.json +++ b/samples/charts/data-chart/bar-chart-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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/bar-chart-styling/src/index.css b/samples/charts/data-chart/bar-chart-styling/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/bar-chart-styling/src/index.css +++ b/samples/charts/data-chart/bar-chart-styling/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/bar-chart-styling/src/index.ts b/samples/charts/data-chart/bar-chart-styling/src/index.ts index 75222ca3be..f0157363bc 100644 --- a/samples/charts/data-chart/bar-chart-styling/src/index.ts +++ b/samples/charts/data-chart/bar-chart-styling/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartCategoryCoreModule, IgcDataChartInteractivityModule, IgcDataChartVerticalCategoryModule, IgcAnnotationLayerProxyModule, IgcCalloutLayerModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; import { IgcDataChartComponent, IgcCategoryYAxisComponent, IgcNumericXAxisComponent, IgcCategoryHighlightLayerComponent, IgcBarSeriesComponent, IgcCalloutLayerComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { OnlineShoppingSearchesItem, OnlineShoppingSearches } from './OnlineShoppingSearches'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataChartCoreModule, @@ -44,6 +45,7 @@ export class Sample { calloutLayer1.dataSource = this.onlineShoppingSearches; } this._bind(); + } private _onlineShoppingSearches: OnlineShoppingSearches = null; diff --git a/samples/charts/data-chart/bar-chart-styling/tsconfig.json b/samples/charts/data-chart/bar-chart-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/bar-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/bar-chart-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/bar-chart-styling/webpack.config.js b/samples/charts/data-chart/bar-chart-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/bar-chart-styling/webpack.config.js +++ b/samples/charts/data-chart/bar-chart-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/callout-layer-styling/sandbox.config.json b/samples/charts/data-chart/callout-layer-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/callout-layer-styling/sandbox.config.json +++ b/samples/charts/data-chart/callout-layer-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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/callout-layer-styling/src/index.css b/samples/charts/data-chart/callout-layer-styling/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/callout-layer-styling/src/index.css +++ b/samples/charts/data-chart/callout-layer-styling/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/callout-layer-styling/src/index.ts b/samples/charts/data-chart/callout-layer-styling/src/index.ts index 2d8bb800c4..bebfb31b19 100644 --- a/samples/charts/data-chart/callout-layer-styling/src/index.ts +++ b/samples/charts/data-chart/callout-layer-styling/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartAnnotationModule, IgcDataChartInteractivityModule, IgcAnnotationLayerProxyModule } from 'igniteui-webcomponents-charts'; import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcLineSeriesComponent, IgcCalloutLayerComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataChartCoreModule, @@ -36,6 +37,7 @@ export class Sample { lineSeries1.dataSource = this.countryRenewableElectricity; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/data-chart/callout-layer-styling/tsconfig.json b/samples/charts/data-chart/callout-layer-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/callout-layer-styling/tsconfig.json +++ b/samples/charts/data-chart/callout-layer-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/callout-layer-styling/webpack.config.js b/samples/charts/data-chart/callout-layer-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/callout-layer-styling/webpack.config.js +++ b/samples/charts/data-chart/callout-layer-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/sandbox.config.json b/samples/charts/data-chart/chart-highlight-filter-datasource/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/sandbox.config.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/sandbox.config.json @@ -3,5 +3,4 @@ "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/chart-highlight-filter-datasource/src/index.css b/samples/charts/data-chart/chart-highlight-filter-datasource/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/src/index.css +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/src/index.ts b/samples/charts/data-chart/chart-highlight-filter-datasource/src/index.ts index 5e5fb3e3ab..dd266ebb70 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/src/index.ts +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/src/index.ts @@ -5,10 +5,10 @@ import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionCo import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcColumnSeriesComponent } from 'igniteui-webcomponents-charts'; import { OnlineTrafficHighlightTotalsItem, OnlineTrafficHighlightTotals } from './OnlineTrafficHighlightTotals'; import { OnlineTrafficHighlightDesktopOnlyItem, OnlineTrafficHighlightDesktopOnly } from './OnlineTrafficHighlightDesktopOnly'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -48,6 +48,7 @@ export class Sample { columnSeries1.highlightedDataSource = this.onlineTrafficHighlightDesktopOnly; } this._bind(); + } private _onlineTrafficHighlightTotals: OnlineTrafficHighlightTotals = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/webpack.config.js b/samples/charts/data-chart/chart-highlight-filter-datasource/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/webpack.config.js +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/sandbox.config.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/sandbox.config.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/sandbox.config.json @@ -3,5 +3,4 @@ "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/chart-highlight-filter-multiple-series/src/index.css b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/index.css +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/index.ts b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/index.ts index eb3763dff7..2bc49cce33 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/index.ts +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/src/index.ts @@ -5,10 +5,10 @@ import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionCo import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcColumnSeriesComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; import { CountryRenewableElectricityFilteredItem, CountryRenewableElectricityFiltered } from './CountryRenewableElectricityFiltered'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -60,6 +60,7 @@ export class Sample { columnSeries3.highlightedDataSource = this.countryRenewableElectricityFiltered; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/webpack.config.js b/samples/charts/data-chart/chart-highlight-filter-multiple-series/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/webpack.config.js +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/chart-highlight-filter/sandbox.config.json b/samples/charts/data-chart/chart-highlight-filter/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/chart-highlight-filter/sandbox.config.json +++ b/samples/charts/data-chart/chart-highlight-filter/sandbox.config.json @@ -3,5 +3,4 @@ "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/chart-highlight-filter/src/index.css b/samples/charts/data-chart/chart-highlight-filter/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/chart-highlight-filter/src/index.css +++ b/samples/charts/data-chart/chart-highlight-filter/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/chart-highlight-filter/src/index.ts b/samples/charts/data-chart/chart-highlight-filter/src/index.ts index 5b38ba49f9..30a6c4747d 100644 --- a/samples/charts/data-chart/chart-highlight-filter/src/index.ts +++ b/samples/charts/data-chart/chart-highlight-filter/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataChartCoreD import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcColumnSeriesComponent } from 'igniteui-webcomponents-charts'; import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithTotals } from './OlympicMedalsTopCountriesWithTotals'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -46,6 +46,7 @@ export class Sample { columnSeries1.dataSource = this.olympicMedalsTopCountriesWithTotals; } this._bind(); + } private _olympicMedalsTopCountriesWithTotals: OlympicMedalsTopCountriesWithTotals = null; diff --git a/samples/charts/data-chart/chart-highlight-filter/tsconfig.json b/samples/charts/data-chart/chart-highlight-filter/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/chart-highlight-filter/tsconfig.json +++ b/samples/charts/data-chart/chart-highlight-filter/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/chart-highlight-filter/webpack.config.js b/samples/charts/data-chart/chart-highlight-filter/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/chart-highlight-filter/webpack.config.js +++ b/samples/charts/data-chart/chart-highlight-filter/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/sandbox.config.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/sandbox.config.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/sandbox.config.json @@ -3,5 +3,4 @@ "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/data-legend-grouping-and-highlighting/src/index.css b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/index.css +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/index.ts b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/index.ts index fb07a32c60..d7992b3fd0 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/index.ts +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/src/index.ts @@ -2,9 +2,10 @@ import { IgcLegendModule, IgcNumberAbbreviatorModule, IgcDataChartCoreModule, Ig import { ComponentRenderer, LegendDescriptionModule, NumberAbbreviatorDescriptionModule, DataChartCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartInteractivityDescriptionModule, DataLegendDescriptionModule, DataChartAnnotationDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcDataLegendComponent, IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcColumnSeriesComponent } from 'igniteui-webcomponents-charts'; import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithTotals } from './OlympicMedalsTopCountriesWithTotals'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -50,6 +51,7 @@ export class Sample { columnSeries3.dataSource = this.olympicMedalsTopCountriesWithTotals; } this._bind(); + } private _olympicMedalsTopCountriesWithTotals: OlympicMedalsTopCountriesWithTotals = null; diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/tsconfig.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/tsconfig.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/webpack.config.js b/samples/charts/data-chart/data-legend-grouping-and-highlighting/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/webpack.config.js +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/data-legend-grouping/sandbox.config.json b/samples/charts/data-chart/data-legend-grouping/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/data-legend-grouping/sandbox.config.json +++ b/samples/charts/data-chart/data-legend-grouping/sandbox.config.json @@ -3,5 +3,4 @@ "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/data-legend-grouping/src/index.css b/samples/charts/data-chart/data-legend-grouping/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/data-legend-grouping/src/index.css +++ b/samples/charts/data-chart/data-legend-grouping/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/data-legend-grouping/src/index.ts b/samples/charts/data-chart/data-legend-grouping/src/index.ts index fb07a32c60..d7992b3fd0 100644 --- a/samples/charts/data-chart/data-legend-grouping/src/index.ts +++ b/samples/charts/data-chart/data-legend-grouping/src/index.ts @@ -2,9 +2,10 @@ import { IgcLegendModule, IgcNumberAbbreviatorModule, IgcDataChartCoreModule, Ig import { ComponentRenderer, LegendDescriptionModule, NumberAbbreviatorDescriptionModule, DataChartCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartInteractivityDescriptionModule, DataLegendDescriptionModule, DataChartAnnotationDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcDataLegendComponent, IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcColumnSeriesComponent } from 'igniteui-webcomponents-charts'; import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithTotals } from './OlympicMedalsTopCountriesWithTotals'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -50,6 +51,7 @@ export class Sample { columnSeries3.dataSource = this.olympicMedalsTopCountriesWithTotals; } this._bind(); + } private _olympicMedalsTopCountriesWithTotals: OlympicMedalsTopCountriesWithTotals = null; diff --git a/samples/charts/data-chart/data-legend-grouping/tsconfig.json b/samples/charts/data-chart/data-legend-grouping/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/data-legend-grouping/tsconfig.json +++ b/samples/charts/data-chart/data-legend-grouping/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/data-legend-grouping/webpack.config.js b/samples/charts/data-chart/data-legend-grouping/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/data-legend-grouping/webpack.config.js +++ b/samples/charts/data-chart/data-legend-grouping/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/data-legend-styling/sandbox.config.json b/samples/charts/data-chart/data-legend-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/data-legend-styling/sandbox.config.json +++ b/samples/charts/data-chart/data-legend-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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/data-legend-styling/src/index.css b/samples/charts/data-chart/data-legend-styling/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/data-legend-styling/src/index.css +++ b/samples/charts/data-chart/data-legend-styling/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/data-legend-styling/src/index.ts b/samples/charts/data-chart/data-legend-styling/src/index.ts index 391f31345b..87c696b8e5 100644 --- a/samples/charts/data-chart/data-legend-styling/src/index.ts +++ b/samples/charts/data-chart/data-legend-styling/src/index.ts @@ -2,9 +2,10 @@ import { IgcLegendModule, IgcNumberAbbreviatorModule, IgcDataChartCoreModule, Ig import { ComponentRenderer, LegendDescriptionModule, NumberAbbreviatorDescriptionModule, DataChartCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartInteractivityDescriptionModule, DataLegendDescriptionModule, DataChartAnnotationDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcDataLegendComponent, IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcColumnSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithTotals } from './OlympicMedalsTopCountriesWithTotals'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -42,6 +43,7 @@ export class Sample { columnSeries1.dataSource = this.olympicMedalsTopCountriesWithTotals; } this._bind(); + } private _olympicMedalsTopCountriesWithTotals: OlympicMedalsTopCountriesWithTotals = null; diff --git a/samples/charts/data-chart/data-legend-styling/tsconfig.json b/samples/charts/data-chart/data-legend-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/data-legend-styling/tsconfig.json +++ b/samples/charts/data-chart/data-legend-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/data-legend-styling/webpack.config.js b/samples/charts/data-chart/data-legend-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/data-legend-styling/webpack.config.js +++ b/samples/charts/data-chart/data-legend-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/data-legend/sandbox.config.json b/samples/charts/data-chart/data-legend/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/data-legend/sandbox.config.json +++ b/samples/charts/data-chart/data-legend/sandbox.config.json @@ -3,5 +3,4 @@ "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/data-legend/src/index.css b/samples/charts/data-chart/data-legend/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/data-legend/src/index.css +++ b/samples/charts/data-chart/data-legend/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/data-legend/src/index.ts b/samples/charts/data-chart/data-legend/src/index.ts index 0b514575a7..c4b9f61fd0 100644 --- a/samples/charts/data-chart/data-legend/src/index.ts +++ b/samples/charts/data-chart/data-legend/src/index.ts @@ -2,9 +2,10 @@ import { IgcLegendModule, IgcNumberAbbreviatorModule, IgcDataChartCoreModule, Ig import { IgcDataLegendComponent, IgcDataChartComponent, IgcNumericYAxisComponent, IgcNumericXAxisComponent, IgcBubbleSeriesComponent, IgcSizeScaleComponent, IgcCrosshairLayerComponent } from 'igniteui-webcomponents-charts'; import { CountryDemographicAfricanItem, CountryDemographicAfrican } from './CountryDemographicAfrican'; import { CountryDemographicEuropeItem, CountryDemographicEurope } from './CountryDemographicEurope'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -37,7 +38,6 @@ export class Sample { } return this._sizeScale1; } - private bubbleSeries2: IgcBubbleSeriesComponent private _sizeScale2: IgcSizeScaleComponent | null = null; public get sizeScale2(): IgcSizeScaleComponent { @@ -52,7 +52,6 @@ export class Sample { } return this._sizeScale2; } - private crosshairLayer: IgcCrosshairLayerComponent private _bind: () => void; @@ -77,6 +76,7 @@ export class Sample { bubbleSeries2.radiusScale = this.sizeScale2; } this._bind(); + } private _countryDemographicAfrican: CountryDemographicAfrican = null; diff --git a/samples/charts/data-chart/data-legend/tsconfig.json b/samples/charts/data-chart/data-legend/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/data-legend/tsconfig.json +++ b/samples/charts/data-chart/data-legend/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/data-legend/webpack.config.js b/samples/charts/data-chart/data-legend/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/data-legend/webpack.config.js +++ b/samples/charts/data-chart/data-legend/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/sandbox.config.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/sandbox.config.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/sandbox.config.json @@ -3,5 +3,4 @@ "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/data-tooltip-grouping-and-highlighting/src/index.css b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/index.css +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/index.ts b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/index.ts index e958d22d14..71f134cc7e 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/index.ts +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/src/index.ts @@ -3,9 +3,10 @@ import { IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartInterac import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataChartCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartInteractivityDescriptionModule, DataChartAnnotationDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcColumnSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithTotals } from './OlympicMedalsTopCountriesWithTotals'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule, @@ -48,6 +49,7 @@ export class Sample { columnSeries3.dataSource = this.olympicMedalsTopCountriesWithTotals; } this._bind(); + } private _olympicMedalsTopCountriesWithTotals: OlympicMedalsTopCountriesWithTotals = null; diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tsconfig.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tsconfig.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/webpack.config.js b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/webpack.config.js +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/data-tooltip-grouping/sandbox.config.json b/samples/charts/data-chart/data-tooltip-grouping/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/sandbox.config.json +++ b/samples/charts/data-chart/data-tooltip-grouping/sandbox.config.json @@ -3,5 +3,4 @@ "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/data-tooltip-grouping/src/index.css b/samples/charts/data-chart/data-tooltip-grouping/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/src/index.css +++ b/samples/charts/data-chart/data-tooltip-grouping/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/data-tooltip-grouping/src/index.ts b/samples/charts/data-chart/data-tooltip-grouping/src/index.ts index e958d22d14..71f134cc7e 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/src/index.ts +++ b/samples/charts/data-chart/data-tooltip-grouping/src/index.ts @@ -3,9 +3,10 @@ import { IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartInterac import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataChartCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartInteractivityDescriptionModule, DataChartAnnotationDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcColumnSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithTotals } from './OlympicMedalsTopCountriesWithTotals'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule, @@ -48,6 +49,7 @@ export class Sample { columnSeries3.dataSource = this.olympicMedalsTopCountriesWithTotals; } this._bind(); + } private _olympicMedalsTopCountriesWithTotals: OlympicMedalsTopCountriesWithTotals = null; diff --git a/samples/charts/data-chart/data-tooltip-grouping/tsconfig.json b/samples/charts/data-chart/data-tooltip-grouping/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/tsconfig.json +++ b/samples/charts/data-chart/data-tooltip-grouping/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/data-tooltip-grouping/webpack.config.js b/samples/charts/data-chart/data-tooltip-grouping/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/webpack.config.js +++ b/samples/charts/data-chart/data-tooltip-grouping/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/data-tooltip-styling/sandbox.config.json b/samples/charts/data-chart/data-tooltip-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/data-tooltip-styling/sandbox.config.json +++ b/samples/charts/data-chart/data-tooltip-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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/data-tooltip-styling/src/index.css b/samples/charts/data-chart/data-tooltip-styling/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/data-tooltip-styling/src/index.css +++ b/samples/charts/data-chart/data-tooltip-styling/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/data-tooltip-styling/src/index.ts b/samples/charts/data-chart/data-tooltip-styling/src/index.ts index 4d2a5a706f..c2eafd9172 100644 --- a/samples/charts/data-chart/data-tooltip-styling/src/index.ts +++ b/samples/charts/data-chart/data-tooltip-styling/src/index.ts @@ -3,9 +3,10 @@ import { IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartInterac import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataChartCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartInteractivityDescriptionModule, DataChartAnnotationDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcColumnSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { OlympicMedalsTopCountriesWithTotalsItem, OlympicMedalsTopCountriesWithTotals } from './OlympicMedalsTopCountriesWithTotals'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule, @@ -38,6 +39,7 @@ export class Sample { columnSeries1.dataSource = this.olympicMedalsTopCountriesWithTotals; } this._bind(); + } private _olympicMedalsTopCountriesWithTotals: OlympicMedalsTopCountriesWithTotals = null; diff --git a/samples/charts/data-chart/data-tooltip-styling/tsconfig.json b/samples/charts/data-chart/data-tooltip-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/data-tooltip-styling/tsconfig.json +++ b/samples/charts/data-chart/data-tooltip-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/data-tooltip-styling/webpack.config.js b/samples/charts/data-chart/data-tooltip-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/data-tooltip-styling/webpack.config.js +++ b/samples/charts/data-chart/data-tooltip-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/data-tooltip/sandbox.config.json b/samples/charts/data-chart/data-tooltip/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/data-tooltip/sandbox.config.json +++ b/samples/charts/data-chart/data-tooltip/sandbox.config.json @@ -3,5 +3,4 @@ "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/data-tooltip/src/index.css b/samples/charts/data-chart/data-tooltip/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/data-tooltip/src/index.css +++ b/samples/charts/data-chart/data-tooltip/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/data-tooltip/src/index.ts b/samples/charts/data-chart/data-tooltip/src/index.ts index a8abc30b6d..8d34a0bbc1 100644 --- a/samples/charts/data-chart/data-tooltip/src/index.ts +++ b/samples/charts/data-chart/data-tooltip/src/index.ts @@ -2,9 +2,10 @@ import { IgcLegendModule, IgcNumberAbbreviatorModule, IgcDataChartCoreModule, Ig import { IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcBubbleSeriesComponent, IgcSizeScaleComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { CountryDemographicAfricanItem, CountryDemographicAfrican } from './CountryDemographicAfrican'; import { CountryDemographicEuropeItem, CountryDemographicEurope } from './CountryDemographicEurope'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -35,7 +36,6 @@ export class Sample { } return this._sizeScale1; } - private bubbleSeries2: IgcBubbleSeriesComponent private _sizeScale2: IgcSizeScaleComponent | null = null; public get sizeScale2(): IgcSizeScaleComponent { @@ -50,7 +50,6 @@ export class Sample { } return this._sizeScale2; } - private dataToolTipLayer: IgcDataToolTipLayerComponent private _bind: () => void; @@ -73,6 +72,7 @@ export class Sample { bubbleSeries2.radiusScale = this.sizeScale2; } this._bind(); + } private _countryDemographicAfrican: CountryDemographicAfrican = null; diff --git a/samples/charts/data-chart/data-tooltip/tsconfig.json b/samples/charts/data-chart/data-tooltip/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/data-tooltip/tsconfig.json +++ b/samples/charts/data-chart/data-tooltip/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/data-tooltip/webpack.config.js b/samples/charts/data-chart/data-tooltip/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/data-tooltip/webpack.config.js +++ b/samples/charts/data-chart/data-tooltip/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/financial-price-series/sandbox.config.json b/samples/charts/data-chart/financial-price-series/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/financial-price-series/sandbox.config.json +++ b/samples/charts/data-chart/financial-price-series/sandbox.config.json @@ -3,5 +3,4 @@ "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/financial-price-series/src/index.css b/samples/charts/data-chart/financial-price-series/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/financial-price-series/src/index.css +++ b/samples/charts/data-chart/financial-price-series/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/financial-price-series/src/index.ts b/samples/charts/data-chart/financial-price-series/src/index.ts index dd7949c595..b95565cb49 100644 --- a/samples/charts/data-chart/financial-price-series/src/index.ts +++ b/samples/charts/data-chart/financial-price-series/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartCategoryCoreModule, IgcDataChartFinancialCoreModule, IgcDataChartFinancialModule, IgcDataChartFinancialOverlaysModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcFinancialPriceSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { Stock2YearsItem, Stock2Years } from './Stock2Years'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataChartCoreModule, @@ -39,6 +40,7 @@ export class Sample { series1.dataSource = this.stock2Years; } this._bind(); + } private _stock2Years: Stock2Years = null; diff --git a/samples/charts/data-chart/financial-price-series/tsconfig.json b/samples/charts/data-chart/financial-price-series/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/financial-price-series/tsconfig.json +++ b/samples/charts/data-chart/financial-price-series/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/financial-price-series/webpack.config.js b/samples/charts/data-chart/financial-price-series/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/financial-price-series/webpack.config.js +++ b/samples/charts/data-chart/financial-price-series/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/polar-area-chart-styling/sandbox.config.json b/samples/charts/data-chart/polar-area-chart-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/sandbox.config.json +++ b/samples/charts/data-chart/polar-area-chart-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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/polar-area-chart-styling/src/index.css b/samples/charts/data-chart/polar-area-chart-styling/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/src/index.css +++ b/samples/charts/data-chart/polar-area-chart-styling/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/polar-area-chart-styling/src/index.ts b/samples/charts/data-chart/polar-area-chart-styling/src/index.ts index f42289a76d..ed30a4bf3d 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/src/index.ts +++ b/samples/charts/data-chart/polar-area-chart-styling/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataChartCoreModule, IgcDataChartPolarModule, IgcDataChartPolarCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule, IgcLegendModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcNumericAngleAxisComponent, IgcNumericRadiusAxisComponent, IgcPolarAreaSeriesComponent } from 'igniteui-webcomponents-charts'; import { BoatSailingDataItem, BoatSailingData } from './BoatSailingData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataChartCoreModule, @@ -42,6 +43,7 @@ export class Sample { polarAreaSeries2.radiusAxis = this.radiusAxis; } this._bind(); + } private _boatSailingData: BoatSailingData = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/polar-area-chart-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/polar-area-chart-styling/webpack.config.js b/samples/charts/data-chart/polar-area-chart-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/webpack.config.js +++ b/samples/charts/data-chart/polar-area-chart-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/polar-area-chart/sandbox.config.json b/samples/charts/data-chart/polar-area-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/polar-area-chart/sandbox.config.json +++ b/samples/charts/data-chart/polar-area-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/polar-area-chart/src/index.css b/samples/charts/data-chart/polar-area-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/polar-area-chart/src/index.css +++ b/samples/charts/data-chart/polar-area-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/polar-area-chart/src/index.ts b/samples/charts/data-chart/polar-area-chart/src/index.ts index bdc63e9d42..0206c04abb 100644 --- a/samples/charts/data-chart/polar-area-chart/src/index.ts +++ b/samples/charts/data-chart/polar-area-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartPolarModule, IgcDataChartPolarCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcNumericAngleAxisComponent, IgcNumericRadiusAxisComponent, IgcPolarAreaSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { BoatSailingDataItem, BoatSailingData } from './BoatSailingData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -44,6 +45,7 @@ export class Sample { polarAreaSeries2.radiusAxis = this.radiusAxis; } this._bind(); + } private _boatSailingData: BoatSailingData = null; diff --git a/samples/charts/data-chart/polar-area-chart/tsconfig.json b/samples/charts/data-chart/polar-area-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/polar-area-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-area-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/polar-area-chart/webpack.config.js b/samples/charts/data-chart/polar-area-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/polar-area-chart/webpack.config.js +++ b/samples/charts/data-chart/polar-area-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/polar-line-chart/sandbox.config.json b/samples/charts/data-chart/polar-line-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/polar-line-chart/sandbox.config.json +++ b/samples/charts/data-chart/polar-line-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/polar-line-chart/src/index.css b/samples/charts/data-chart/polar-line-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/polar-line-chart/src/index.css +++ b/samples/charts/data-chart/polar-line-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/polar-line-chart/src/index.ts b/samples/charts/data-chart/polar-line-chart/src/index.ts index 7000256b3d..b6d8de8f4d 100644 --- a/samples/charts/data-chart/polar-line-chart/src/index.ts +++ b/samples/charts/data-chart/polar-line-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartPolarModule, IgcDataChartPolarCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcNumericAngleAxisComponent, IgcNumericRadiusAxisComponent, IgcPolarLineSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { BoatSailingDataItem, BoatSailingData } from './BoatSailingData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -44,6 +45,7 @@ export class Sample { polarLineSeries2.radiusAxis = this.radiusAxis; } this._bind(); + } private _boatSailingData: BoatSailingData = null; diff --git a/samples/charts/data-chart/polar-line-chart/tsconfig.json b/samples/charts/data-chart/polar-line-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/polar-line-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-line-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/polar-line-chart/webpack.config.js b/samples/charts/data-chart/polar-line-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/polar-line-chart/webpack.config.js +++ b/samples/charts/data-chart/polar-line-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/polar-scatter-chart/sandbox.config.json b/samples/charts/data-chart/polar-scatter-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/polar-scatter-chart/sandbox.config.json +++ b/samples/charts/data-chart/polar-scatter-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/polar-scatter-chart/src/index.css b/samples/charts/data-chart/polar-scatter-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/polar-scatter-chart/src/index.css +++ b/samples/charts/data-chart/polar-scatter-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/polar-scatter-chart/src/index.ts b/samples/charts/data-chart/polar-scatter-chart/src/index.ts index 443f9d729f..29e5b32650 100644 --- a/samples/charts/data-chart/polar-scatter-chart/src/index.ts +++ b/samples/charts/data-chart/polar-scatter-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataChartCoreModule, IgcDataChartPolarModule, IgcDataChartPolarCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; import { IgcDataChartComponent, IgcNumericAngleAxisComponent, IgcNumericRadiusAxisComponent, IgcPolarScatterSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { BoatSailingDataItem, BoatSailingData } from './BoatSailingData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataChartCoreModule, @@ -40,6 +41,7 @@ export class Sample { polarScatterSeries2.radiusAxis = this.radiusAxis; } this._bind(); + } private _boatSailingData: BoatSailingData = null; diff --git a/samples/charts/data-chart/polar-scatter-chart/tsconfig.json b/samples/charts/data-chart/polar-scatter-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/polar-scatter-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-scatter-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/polar-scatter-chart/webpack.config.js b/samples/charts/data-chart/polar-scatter-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/polar-scatter-chart/webpack.config.js +++ b/samples/charts/data-chart/polar-scatter-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/polar-spline-area-chart/sandbox.config.json b/samples/charts/data-chart/polar-spline-area-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/sandbox.config.json +++ b/samples/charts/data-chart/polar-spline-area-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/polar-spline-area-chart/src/index.css b/samples/charts/data-chart/polar-spline-area-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/src/index.css +++ b/samples/charts/data-chart/polar-spline-area-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/polar-spline-area-chart/src/index.ts b/samples/charts/data-chart/polar-spline-area-chart/src/index.ts index 0755b1f2a6..53862805fe 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/src/index.ts +++ b/samples/charts/data-chart/polar-spline-area-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataChartCoreModule, IgcDataChartPolarModule, IgcDataChartPolarCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; import { IgcDataChartComponent, IgcNumericAngleAxisComponent, IgcNumericRadiusAxisComponent, IgcPolarSplineAreaSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { BoatSailingDataItem, BoatSailingData } from './BoatSailingData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataChartCoreModule, @@ -40,6 +41,7 @@ export class Sample { polarSplineAreaSeries2.radiusAxis = this.radiusAxis; } this._bind(); + } private _boatSailingData: BoatSailingData = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-spline-area-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/polar-spline-area-chart/webpack.config.js b/samples/charts/data-chart/polar-spline-area-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/webpack.config.js +++ b/samples/charts/data-chart/polar-spline-area-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/polar-spline-chart/sandbox.config.json b/samples/charts/data-chart/polar-spline-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/polar-spline-chart/sandbox.config.json +++ b/samples/charts/data-chart/polar-spline-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/polar-spline-chart/src/index.css b/samples/charts/data-chart/polar-spline-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/polar-spline-chart/src/index.css +++ b/samples/charts/data-chart/polar-spline-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/polar-spline-chart/src/index.ts b/samples/charts/data-chart/polar-spline-chart/src/index.ts index 9c728ea475..b07965779f 100644 --- a/samples/charts/data-chart/polar-spline-chart/src/index.ts +++ b/samples/charts/data-chart/polar-spline-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataChartCoreModule, IgcDataChartPolarModule, IgcDataChartPolarCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; import { IgcDataChartComponent, IgcNumericAngleAxisComponent, IgcNumericRadiusAxisComponent, IgcPolarSplineSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { BoatSailingDataItem, BoatSailingData } from './BoatSailingData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataChartCoreModule, @@ -40,6 +41,7 @@ export class Sample { polarSplineSeries2.radiusAxis = this.radiusAxis; } this._bind(); + } private _boatSailingData: BoatSailingData = null; diff --git a/samples/charts/data-chart/polar-spline-chart/tsconfig.json b/samples/charts/data-chart/polar-spline-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/polar-spline-chart/tsconfig.json +++ b/samples/charts/data-chart/polar-spline-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/polar-spline-chart/webpack.config.js b/samples/charts/data-chart/polar-spline-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/polar-spline-chart/webpack.config.js +++ b/samples/charts/data-chart/polar-spline-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/radial-area-chart-styling/sandbox.config.json b/samples/charts/data-chart/radial-area-chart-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/sandbox.config.json +++ b/samples/charts/data-chart/radial-area-chart-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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/radial-area-chart-styling/src/index.css b/samples/charts/data-chart/radial-area-chart-styling/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/src/index.css +++ b/samples/charts/data-chart/radial-area-chart-styling/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/radial-area-chart-styling/src/index.ts b/samples/charts/data-chart/radial-area-chart-styling/src/index.ts index 8156162d87..a9a21c1dd7 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/src/index.ts +++ b/samples/charts/data-chart/radial-area-chart-styling/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartRadialModule, IgcDataChartRadialCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryAngleAxisComponent, IgcNumericRadiusAxisComponent, IgcRadialAreaSeriesComponent } from 'igniteui-webcomponents-charts'; import { FootballPlayerStatsItem, FootballPlayerStats } from './FootballPlayerStats'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -43,6 +44,7 @@ export class Sample { radialAreaSeries2.valueAxis = this.radiusAxis; } this._bind(); + } private _footballPlayerStats: FootballPlayerStats = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/radial-area-chart-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/radial-area-chart-styling/webpack.config.js b/samples/charts/data-chart/radial-area-chart-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/webpack.config.js +++ b/samples/charts/data-chart/radial-area-chart-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/radial-area-chart/sandbox.config.json b/samples/charts/data-chart/radial-area-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/radial-area-chart/sandbox.config.json +++ b/samples/charts/data-chart/radial-area-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/radial-area-chart/src/index.css b/samples/charts/data-chart/radial-area-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/radial-area-chart/src/index.css +++ b/samples/charts/data-chart/radial-area-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/radial-area-chart/src/index.ts b/samples/charts/data-chart/radial-area-chart/src/index.ts index c191c219b9..82d99f53dd 100644 --- a/samples/charts/data-chart/radial-area-chart/src/index.ts +++ b/samples/charts/data-chart/radial-area-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartRadialModule, IgcDataChartRadialCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryAngleAxisComponent, IgcNumericRadiusAxisComponent, IgcRadialAreaSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { FootballPlayerStatsItem, FootballPlayerStats } from './FootballPlayerStats'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -45,6 +46,7 @@ export class Sample { radialAreaSeries2.valueAxis = this.radiusAxis; } this._bind(); + } private _footballPlayerStats: FootballPlayerStats = null; diff --git a/samples/charts/data-chart/radial-area-chart/tsconfig.json b/samples/charts/data-chart/radial-area-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/radial-area-chart/tsconfig.json +++ b/samples/charts/data-chart/radial-area-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/radial-area-chart/webpack.config.js b/samples/charts/data-chart/radial-area-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/radial-area-chart/webpack.config.js +++ b/samples/charts/data-chart/radial-area-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/radial-column-chart-selection/sandbox.config.json b/samples/charts/data-chart/radial-column-chart-selection/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/sandbox.config.json +++ b/samples/charts/data-chart/radial-column-chart-selection/sandbox.config.json @@ -3,5 +3,4 @@ "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/radial-column-chart-selection/src/index.css b/samples/charts/data-chart/radial-column-chart-selection/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/src/index.css +++ b/samples/charts/data-chart/radial-column-chart-selection/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/radial-column-chart-selection/src/index.ts b/samples/charts/data-chart/radial-column-chart-selection/src/index.ts index 106d07a7e3..33657d0a6c 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/src/index.ts +++ b/samples/charts/data-chart/radial-column-chart-selection/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataChartCoreModule, IgcDataChartRadialModule, IgcDataChartRadialCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule, IgcLegendModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryAngleAxisComponent, IgcNumericRadiusAxisComponent, IgcRadialColumnSeriesComponent } from 'igniteui-webcomponents-charts'; import { FootballPlayerStatsItem, FootballPlayerStats } from './FootballPlayerStats'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataChartCoreModule, @@ -43,6 +44,7 @@ export class Sample { radialColumnSeries2.valueAxis = this.radiusAxis; } this._bind(); + } private _footballPlayerStats: FootballPlayerStats = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/tsconfig.json +++ b/samples/charts/data-chart/radial-column-chart-selection/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/radial-column-chart-selection/webpack.config.js b/samples/charts/data-chart/radial-column-chart-selection/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/webpack.config.js +++ b/samples/charts/data-chart/radial-column-chart-selection/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/radial-column-chart/sandbox.config.json b/samples/charts/data-chart/radial-column-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/radial-column-chart/sandbox.config.json +++ b/samples/charts/data-chart/radial-column-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/radial-column-chart/src/index.css b/samples/charts/data-chart/radial-column-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/radial-column-chart/src/index.css +++ b/samples/charts/data-chart/radial-column-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/radial-column-chart/src/index.ts b/samples/charts/data-chart/radial-column-chart/src/index.ts index 516847f2e6..17ec6deb19 100644 --- a/samples/charts/data-chart/radial-column-chart/src/index.ts +++ b/samples/charts/data-chart/radial-column-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataChartCoreModule, IgcDataChartRadialModule, IgcDataChartRadialCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule, IgcLegendModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryAngleAxisComponent, IgcNumericRadiusAxisComponent, IgcRadialColumnSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { FootballPlayerStatsItem, FootballPlayerStats } from './FootballPlayerStats'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataChartCoreModule, @@ -45,6 +46,7 @@ export class Sample { radialColumnSeries2.valueAxis = this.radiusAxis; } this._bind(); + } private _footballPlayerStats: FootballPlayerStats = null; diff --git a/samples/charts/data-chart/radial-column-chart/tsconfig.json b/samples/charts/data-chart/radial-column-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/radial-column-chart/tsconfig.json +++ b/samples/charts/data-chart/radial-column-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/radial-column-chart/webpack.config.js b/samples/charts/data-chart/radial-column-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/radial-column-chart/webpack.config.js +++ b/samples/charts/data-chart/radial-column-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/radial-label-mode/sandbox.config.json b/samples/charts/data-chart/radial-label-mode/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/radial-label-mode/sandbox.config.json +++ b/samples/charts/data-chart/radial-label-mode/sandbox.config.json @@ -3,5 +3,4 @@ "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/radial-label-mode/src/index.css b/samples/charts/data-chart/radial-label-mode/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/radial-label-mode/src/index.css +++ b/samples/charts/data-chart/radial-label-mode/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/radial-label-mode/src/index.ts b/samples/charts/data-chart/radial-label-mode/src/index.ts index 9cdc0c198f..9fa6b16a70 100644 --- a/samples/charts/data-chart/radial-label-mode/src/index.ts +++ b/samples/charts/data-chart/radial-label-mode/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataChartCoreD import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryAngleAxisComponent, IgcNumericRadiusAxisComponent, IgcRadialColumnSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { FootballPlayerStatsItem, FootballPlayerStats } from './FootballPlayerStats'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -61,6 +61,7 @@ export class Sample { radialColumnSeries2.valueAxis = this.radiusAxis; } this._bind(); + } private _footballPlayerStats: FootballPlayerStats = null; diff --git a/samples/charts/data-chart/radial-label-mode/tsconfig.json b/samples/charts/data-chart/radial-label-mode/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/radial-label-mode/tsconfig.json +++ b/samples/charts/data-chart/radial-label-mode/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/radial-label-mode/webpack.config.js b/samples/charts/data-chart/radial-label-mode/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/radial-label-mode/webpack.config.js +++ b/samples/charts/data-chart/radial-label-mode/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/radial-line-chart/sandbox.config.json b/samples/charts/data-chart/radial-line-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/radial-line-chart/sandbox.config.json +++ b/samples/charts/data-chart/radial-line-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/radial-line-chart/src/index.css b/samples/charts/data-chart/radial-line-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/radial-line-chart/src/index.css +++ b/samples/charts/data-chart/radial-line-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/radial-line-chart/src/index.ts b/samples/charts/data-chart/radial-line-chart/src/index.ts index 076e5d2bc7..9e43782cc1 100644 --- a/samples/charts/data-chart/radial-line-chart/src/index.ts +++ b/samples/charts/data-chart/radial-line-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartRadialModule, IgcDataChartRadialCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryAngleAxisComponent, IgcNumericRadiusAxisComponent, IgcRadialLineSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { FootballPlayerStatsItem, FootballPlayerStats } from './FootballPlayerStats'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -45,6 +46,7 @@ export class Sample { radialLineSeries2.valueAxis = this.radiusAxis; } this._bind(); + } private _footballPlayerStats: FootballPlayerStats = null; diff --git a/samples/charts/data-chart/radial-line-chart/tsconfig.json b/samples/charts/data-chart/radial-line-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/radial-line-chart/tsconfig.json +++ b/samples/charts/data-chart/radial-line-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/radial-line-chart/webpack.config.js b/samples/charts/data-chart/radial-line-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/radial-line-chart/webpack.config.js +++ b/samples/charts/data-chart/radial-line-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/radial-pie-chart/sandbox.config.json b/samples/charts/data-chart/radial-pie-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/radial-pie-chart/sandbox.config.json +++ b/samples/charts/data-chart/radial-pie-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/radial-pie-chart/src/index.css b/samples/charts/data-chart/radial-pie-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/radial-pie-chart/src/index.css +++ b/samples/charts/data-chart/radial-pie-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/radial-pie-chart/src/index.ts b/samples/charts/data-chart/radial-pie-chart/src/index.ts index 0bb247d84f..9ddf3f32ef 100644 --- a/samples/charts/data-chart/radial-pie-chart/src/index.ts +++ b/samples/charts/data-chart/radial-pie-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartRadialModule, IgcDataChartRadialCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryAngleAxisComponent, IgcNumericRadiusAxisComponent, IgcRadialPieSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { FootballPlayerStatsItem, FootballPlayerStats } from './FootballPlayerStats'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -45,6 +46,7 @@ export class Sample { radialPieSeries2.valueAxis = this.radiusAxis; } this._bind(); + } private _footballPlayerStats: FootballPlayerStats = null; diff --git a/samples/charts/data-chart/radial-pie-chart/tsconfig.json b/samples/charts/data-chart/radial-pie-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/radial-pie-chart/tsconfig.json +++ b/samples/charts/data-chart/radial-pie-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/radial-pie-chart/webpack.config.js b/samples/charts/data-chart/radial-pie-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/radial-pie-chart/webpack.config.js +++ b/samples/charts/data-chart/radial-pie-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/sandbox.config.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/sandbox.config.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/sandbox.config.json @@ -3,5 +3,4 @@ "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/radial-pie-proportional-category-angle-axis/src/index.css b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/index.css +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/index.ts b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/index.ts index 172eee7ab6..87b1b5a8fd 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/index.ts +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataPieChartCoreModule, IgcDataChartCoreModule, IgcDataChartRadialModule, IgcDataChartRadialCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; import { IgcDataChartComponent, IgcProportionalCategoryAngleAxisComponent, IgcNumericRadiusAxisComponent, IgcRadialPieSeriesComponent } from 'igniteui-webcomponents-charts'; import { RadialProportionalDataItem, RadialProportionalData } from './RadialProportionalData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataPieChartCoreModule, @@ -35,6 +36,7 @@ export class Sample { radialPieSeries1.valueAxis = this.radiusAxis; } this._bind(); + } private _radialProportionalData: RadialProportionalData = null; 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 de23257dd8..a15284fdc2 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 @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/webpack.config.js b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/webpack.config.js +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/sandbox.config.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/sandbox.config.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/sandbox.config.json @@ -3,5 +3,4 @@ "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/radial-proportional-radial-angle-axis/src/index.css b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/index.css +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/index.ts b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/index.ts index 47445935d9..756461fe98 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/index.ts +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataPieChartModule, IgcDataChartCoreModule, IgcDataChartRadialModule, IgcDataChartRadialCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcProportionalCategoryAngleAxisComponent, IgcNumericRadiusAxisComponent, IgcRadialPieSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { EnergyRenewableConsumptionItem, EnergyRenewableConsumption } from './EnergyRenewableConsumption'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -41,6 +42,7 @@ export class Sample { radialPieSeries1.valueAxis = this.radiusAxis; } this._bind(); + } private _energyRenewableConsumption: EnergyRenewableConsumption = null; 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 de23257dd8..a15284fdc2 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 @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/webpack.config.js b/samples/charts/data-chart/radial-proportional-radial-angle-axis/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/webpack.config.js +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/range-area-chart/sandbox.config.json b/samples/charts/data-chart/range-area-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/range-area-chart/sandbox.config.json +++ b/samples/charts/data-chart/range-area-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/range-area-chart/src/index.css b/samples/charts/data-chart/range-area-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/range-area-chart/src/index.css +++ b/samples/charts/data-chart/range-area-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/range-area-chart/src/index.ts b/samples/charts/data-chart/range-area-chart/src/index.ts index f870045e20..55f1df94bf 100644 --- a/samples/charts/data-chart/range-area-chart/src/index.ts +++ b/samples/charts/data-chart/range-area-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule, IgcLegendModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcRangeAreaSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { TemperatureRangeDataItem, TemperatureRangeData } from './TemperatureRangeData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataChartCoreModule, @@ -44,6 +45,7 @@ export class Sample { rangeAreaSeries2.dataSource = this.temperatureRangeData; } this._bind(); + } private _temperatureRangeData: TemperatureRangeData = null; diff --git a/samples/charts/data-chart/range-area-chart/tsconfig.json b/samples/charts/data-chart/range-area-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/range-area-chart/tsconfig.json +++ b/samples/charts/data-chart/range-area-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/range-area-chart/webpack.config.js b/samples/charts/data-chart/range-area-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/range-area-chart/webpack.config.js +++ b/samples/charts/data-chart/range-area-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/range-column-chart/sandbox.config.json b/samples/charts/data-chart/range-column-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/range-column-chart/sandbox.config.json +++ b/samples/charts/data-chart/range-column-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/range-column-chart/src/index.css b/samples/charts/data-chart/range-column-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/range-column-chart/src/index.css +++ b/samples/charts/data-chart/range-column-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/range-column-chart/src/index.ts b/samples/charts/data-chart/range-column-chart/src/index.ts index 0edfa175b7..536ed88675 100644 --- a/samples/charts/data-chart/range-column-chart/src/index.ts +++ b/samples/charts/data-chart/range-column-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule, IgcLegendModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcRangeColumnSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { TemperatureRangeDataItem, TemperatureRangeData } from './TemperatureRangeData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataChartCoreModule, @@ -44,6 +45,7 @@ export class Sample { rangeColumnSeries2.dataSource = this.temperatureRangeData; } this._bind(); + } private _temperatureRangeData: TemperatureRangeData = null; diff --git a/samples/charts/data-chart/range-column-chart/tsconfig.json b/samples/charts/data-chart/range-column-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/range-column-chart/tsconfig.json +++ b/samples/charts/data-chart/range-column-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/range-column-chart/webpack.config.js b/samples/charts/data-chart/range-column-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/range-column-chart/webpack.config.js +++ b/samples/charts/data-chart/range-column-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/sandbox.config.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/sandbox.config.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/sandbox.config.json @@ -3,5 +3,4 @@ "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/scatter-bubble-chart-fill-scale/src/index.css b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/index.css +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/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 c7b2100098..78606afebc 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 @@ -2,9 +2,10 @@ import { IgcNumberAbbreviatorModule, IgcDataChartCoreModule, IgcDataChartScatter import { ComponentRenderer, NumberAbbreviatorDescriptionModule, DataChartCoreDescriptionModule, DataChartScatterDescriptionModule, DataChartScatterCoreDescriptionModule, DataChartInteractivityDescriptionModule, DataChartAnnotationDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcBubbleSeriesComponent, IgcSizeScaleComponent, IgcValueBrushScaleComponent } from 'igniteui-webcomponents-charts'; import { WorldStatsItem, WorldStats } from './WorldStats'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcNumberAbbreviatorModule, @@ -34,7 +35,6 @@ export class Sample { } return this._sizeScale1; } - private _valueBrushScale1: IgcValueBrushScaleComponent | null = null; public get valueBrushScale1(): IgcValueBrushScaleComponent { if (this._valueBrushScale1 == null) @@ -49,7 +49,6 @@ export class Sample { } return this._valueBrushScale1; } - private _bind: () => void; constructor() { @@ -66,6 +65,7 @@ export class Sample { bubbleSeries1.fillScale = this.valueBrushScale1; } this._bind(); + } private _worldStats: WorldStats = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/webpack.config.js b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/webpack.config.js +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/sandbox.config.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/sandbox.config.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/sandbox.config.json @@ -3,5 +3,4 @@ "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/scatter-bubble-chart-multiple-sources/src/index.css b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.css +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/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 4c3efc3087..4640b54a4c 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 @@ -2,9 +2,10 @@ import { IgcLegendModule, IgcNumberAbbreviatorModule, IgcDataChartCoreModule, Ig import { IgcLegendComponent, IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcBubbleSeriesComponent, IgcSizeScaleComponent } from 'igniteui-webcomponents-charts'; import { CountryStatsAfricaItem, CountryStatsAfrica } from './CountryStatsAfrica'; import { CountryStatsEuropeItem, CountryStatsEurope } from './CountryStatsEurope'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -35,7 +36,6 @@ export class Sample { } return this._sizeScale1; } - private bubbleSeries2: IgcBubbleSeriesComponent private _sizeScale2: IgcSizeScaleComponent | null = null; public get sizeScale2(): IgcSizeScaleComponent { @@ -50,7 +50,6 @@ export class Sample { } return this._sizeScale2; } - private _bind: () => void; constructor() { @@ -73,6 +72,7 @@ export class Sample { bubbleSeries2.radiusScale = this.sizeScale2; } this._bind(); + } private _countryStatsAfrica: CountryStatsAfrica = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tsconfig.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/webpack.config.js b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/webpack.config.js +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/sandbox.config.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/sandbox.config.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/sandbox.config.json @@ -3,5 +3,4 @@ "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/scatter-bubble-chart-single-source/src/index.css b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/index.css +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/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 7018409b55..f253007057 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 @@ -1,9 +1,10 @@ import { IgcNumberAbbreviatorModule, IgcDataChartCoreModule, IgcDataChartScatterModule, IgcDataChartScatterCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; import { IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcBubbleSeriesComponent, IgcSizeScaleComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { WorldStatsItem, WorldStats } from './WorldStats'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcNumberAbbreviatorModule, @@ -33,7 +34,6 @@ export class Sample { } return this._sizeScale1; } - private dataToolTipLayer: IgcDataToolTipLayerComponent private _bind: () => void; @@ -51,6 +51,7 @@ export class Sample { bubbleSeries1.dataSource = this.worldStats; } this._bind(); + } private _worldStats: WorldStats = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/tsconfig.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/webpack.config.js b/samples/charts/data-chart/scatter-bubble-chart-single-source/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/webpack.config.js +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/sandbox.config.json b/samples/charts/data-chart/scatter-bubble-chart-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/sandbox.config.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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/scatter-bubble-chart-styling/src/index.css b/samples/charts/data-chart/scatter-bubble-chart-styling/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/index.css +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/index.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/index.ts index 4c8c4d74b1..3985fa6fab 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 @@ -2,9 +2,10 @@ import { IgcLegendModule, IgcNumberAbbreviatorModule, IgcDataChartCoreModule, Ig import { IgcLegendComponent, IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcBubbleSeriesComponent, IgcSizeScaleComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { CountryStatsAfricaItem, CountryStatsAfrica } from './CountryStatsAfrica'; import { CountryStatsEuropeItem, CountryStatsEurope } from './CountryStatsEurope'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -36,7 +37,6 @@ export class Sample { } return this._sizeScale1; } - private bubbleSeries2: IgcBubbleSeriesComponent private _sizeScale2: IgcSizeScaleComponent | null = null; public get sizeScale2(): IgcSizeScaleComponent { @@ -51,7 +51,6 @@ export class Sample { } return this._sizeScale2; } - private dataToolTipLayer: IgcDataToolTipLayerComponent private _bind: () => void; @@ -76,6 +75,7 @@ export class Sample { bubbleSeries2.radiusScale = this.sizeScale2; } this._bind(); + } private _countryStatsAfrica: CountryStatsAfrica = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/tsconfig.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/webpack.config.js b/samples/charts/data-chart/scatter-bubble-chart-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/webpack.config.js +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/scatter-line-chart/sandbox.config.json b/samples/charts/data-chart/scatter-line-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/scatter-line-chart/sandbox.config.json +++ b/samples/charts/data-chart/scatter-line-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/scatter-line-chart/src/index.css b/samples/charts/data-chart/scatter-line-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/scatter-line-chart/src/index.css +++ b/samples/charts/data-chart/scatter-line-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/scatter-line-chart/src/index.ts b/samples/charts/data-chart/scatter-line-chart/src/index.ts index 4ed372ce07..11e56dfbe3 100644 --- a/samples/charts/data-chart/scatter-line-chart/src/index.ts +++ b/samples/charts/data-chart/scatter-line-chart/src/index.ts @@ -2,9 +2,10 @@ import { IgcLegendModule, IgcNumberAbbreviatorModule, IgcDataChartCoreModule, Ig import { IgcLegendComponent, IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcScatterLineSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { HealthDataForGermanyItem, HealthDataForGermany } from './HealthDataForGermany'; import { HealthDataForFranceItem, HealthDataForFrance } from './HealthDataForFrance'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -46,6 +47,7 @@ export class Sample { scatterLineSeries2.dataSource = this.healthDataForFrance; } this._bind(); + } private _healthDataForGermany: HealthDataForGermany = null; diff --git a/samples/charts/data-chart/scatter-line-chart/tsconfig.json b/samples/charts/data-chart/scatter-line-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/scatter-line-chart/tsconfig.json +++ b/samples/charts/data-chart/scatter-line-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/scatter-line-chart/webpack.config.js b/samples/charts/data-chart/scatter-line-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/scatter-line-chart/webpack.config.js +++ b/samples/charts/data-chart/scatter-line-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/scatter-point-chart/sandbox.config.json b/samples/charts/data-chart/scatter-point-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/scatter-point-chart/sandbox.config.json +++ b/samples/charts/data-chart/scatter-point-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/scatter-point-chart/src/index.css b/samples/charts/data-chart/scatter-point-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/scatter-point-chart/src/index.css +++ b/samples/charts/data-chart/scatter-point-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/scatter-point-chart/src/index.ts b/samples/charts/data-chart/scatter-point-chart/src/index.ts index 8fa1350327..b174881275 100644 --- a/samples/charts/data-chart/scatter-point-chart/src/index.ts +++ b/samples/charts/data-chart/scatter-point-chart/src/index.ts @@ -2,9 +2,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartScatterModule, Igc import { IgcLegendComponent, IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcScatterSeriesComponent } from 'igniteui-webcomponents-charts'; import { CountryDemographicEuropeItem, CountryDemographicEurope } from './CountryDemographicEurope'; import { CountryDemographicAfricanItem, CountryDemographicAfrican } from './CountryDemographicAfrican'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -43,6 +44,7 @@ export class Sample { scatterSeries2.dataSource = this.countryDemographicAfrican; } this._bind(); + } private _countryDemographicEurope: CountryDemographicEurope = null; diff --git a/samples/charts/data-chart/scatter-point-chart/tsconfig.json b/samples/charts/data-chart/scatter-point-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/scatter-point-chart/tsconfig.json +++ b/samples/charts/data-chart/scatter-point-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/scatter-point-chart/webpack.config.js b/samples/charts/data-chart/scatter-point-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/scatter-point-chart/webpack.config.js +++ b/samples/charts/data-chart/scatter-point-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/scatter-spline-chart/sandbox.config.json b/samples/charts/data-chart/scatter-spline-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/scatter-spline-chart/sandbox.config.json +++ b/samples/charts/data-chart/scatter-spline-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/scatter-spline-chart/src/index.css b/samples/charts/data-chart/scatter-spline-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/scatter-spline-chart/src/index.css +++ b/samples/charts/data-chart/scatter-spline-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/scatter-spline-chart/src/index.ts b/samples/charts/data-chart/scatter-spline-chart/src/index.ts index 176a468c44..e5cb0367cb 100644 --- a/samples/charts/data-chart/scatter-spline-chart/src/index.ts +++ b/samples/charts/data-chart/scatter-spline-chart/src/index.ts @@ -2,9 +2,10 @@ import { IgcLegendModule, IgcNumberAbbreviatorModule, IgcDataChartCoreModule, Ig import { IgcLegendComponent, IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcScatterSplineSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { HealthDataForGermanyItem, HealthDataForGermany } from './HealthDataForGermany'; import { HealthDataForFranceItem, HealthDataForFrance } from './HealthDataForFrance'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -46,6 +47,7 @@ export class Sample { scatterSplineSeries2.dataSource = this.healthDataForFrance; } this._bind(); + } private _healthDataForGermany: HealthDataForGermany = null; diff --git a/samples/charts/data-chart/scatter-spline-chart/tsconfig.json b/samples/charts/data-chart/scatter-spline-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/scatter-spline-chart/tsconfig.json +++ b/samples/charts/data-chart/scatter-spline-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/scatter-spline-chart/webpack.config.js b/samples/charts/data-chart/scatter-spline-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/scatter-spline-chart/webpack.config.js +++ b/samples/charts/data-chart/scatter-spline-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/stacked-100-area-chart/sandbox.config.json b/samples/charts/data-chart/stacked-100-area-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/sandbox.config.json +++ b/samples/charts/data-chart/stacked-100-area-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/stacked-100-area-chart/src/index.css b/samples/charts/data-chart/stacked-100-area-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/src/index.css +++ b/samples/charts/data-chart/stacked-100-area-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/stacked-100-area-chart/src/index.ts b/samples/charts/data-chart/stacked-100-area-chart/src/index.ts index 7090ff3b5a..4a858e4fd5 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/src/index.ts +++ b/samples/charts/data-chart/stacked-100-area-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartCategoryCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule, IgcDataChartStackedModule, IgcStackedFragmentSeriesModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcStacked100AreaSeriesComponent, IgcStackedFragmentSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthRate'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -52,6 +53,7 @@ export class Sample { stacked100AreaSeries.yAxis = this.yAxis; } this._bind(); + } private _continentsBirthRate: ContinentsBirthRate = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-area-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/stacked-100-area-chart/webpack.config.js b/samples/charts/data-chart/stacked-100-area-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/webpack.config.js +++ b/samples/charts/data-chart/stacked-100-area-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/stacked-100-bar-chart/sandbox.config.json b/samples/charts/data-chart/stacked-100-bar-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/sandbox.config.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/stacked-100-bar-chart/src/index.css b/samples/charts/data-chart/stacked-100-bar-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/src/index.css +++ b/samples/charts/data-chart/stacked-100-bar-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/stacked-100-bar-chart/src/index.ts b/samples/charts/data-chart/stacked-100-bar-chart/src/index.ts index 2bbff7f479..6714475a2f 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/src/index.ts +++ b/samples/charts/data-chart/stacked-100-bar-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartCategoryCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule, IgcDataChartStackedModule, IgcStackedFragmentSeriesModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryYAxisComponent, IgcNumericXAxisComponent, IgcStacked100BarSeriesComponent, IgcStackedFragmentSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { EnergyRenewableConsumptionItem, EnergyRenewableConsumption } from './EnergyRenewableConsumption'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -50,6 +51,7 @@ export class Sample { stacked100BarSeries.yAxis = this.yAxis; } this._bind(); + } private _energyRenewableConsumption: EnergyRenewableConsumption = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/stacked-100-bar-chart/webpack.config.js b/samples/charts/data-chart/stacked-100-bar-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/webpack.config.js +++ b/samples/charts/data-chart/stacked-100-bar-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/stacked-100-column-chart/sandbox.config.json b/samples/charts/data-chart/stacked-100-column-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/sandbox.config.json +++ b/samples/charts/data-chart/stacked-100-column-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/stacked-100-column-chart/src/index.css b/samples/charts/data-chart/stacked-100-column-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/src/index.css +++ b/samples/charts/data-chart/stacked-100-column-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/stacked-100-column-chart/src/index.ts b/samples/charts/data-chart/stacked-100-column-chart/src/index.ts index 307eda79a7..abfabc5042 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/src/index.ts +++ b/samples/charts/data-chart/stacked-100-column-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartCategoryCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule, IgcDataChartStackedModule, IgcStackedFragmentSeriesModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcStacked100ColumnSeriesComponent, IgcStackedFragmentSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { OnlineTrafficByDeviceItem, OnlineTrafficByDevice } from './OnlineTrafficByDevice'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -48,6 +49,7 @@ export class Sample { stacked100ColumnSeries.yAxis = this.yAxis; } this._bind(); + } private _onlineTrafficByDevice: OnlineTrafficByDevice = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-column-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/stacked-100-column-chart/webpack.config.js b/samples/charts/data-chart/stacked-100-column-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/webpack.config.js +++ b/samples/charts/data-chart/stacked-100-column-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/stacked-100-line-chart/sandbox.config.json b/samples/charts/data-chart/stacked-100-line-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/sandbox.config.json +++ b/samples/charts/data-chart/stacked-100-line-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/stacked-100-line-chart/src/index.css b/samples/charts/data-chart/stacked-100-line-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/src/index.css +++ b/samples/charts/data-chart/stacked-100-line-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/stacked-100-line-chart/src/index.ts b/samples/charts/data-chart/stacked-100-line-chart/src/index.ts index ed2a5258dd..2d8fb47799 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/src/index.ts +++ b/samples/charts/data-chart/stacked-100-line-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartCategoryCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule, IgcDataChartStackedModule, IgcStackedFragmentSeriesModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcStacked100LineSeriesComponent, IgcStackedFragmentSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthRate'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -52,6 +53,7 @@ export class Sample { stacked100LineSeries.yAxis = this.yAxis; } this._bind(); + } private _continentsBirthRate: ContinentsBirthRate = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-line-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/stacked-100-line-chart/webpack.config.js b/samples/charts/data-chart/stacked-100-line-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/webpack.config.js +++ b/samples/charts/data-chart/stacked-100-line-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/sandbox.config.json b/samples/charts/data-chart/stacked-100-spline-area-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/sandbox.config.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/stacked-100-spline-area-chart/src/index.css b/samples/charts/data-chart/stacked-100-spline-area-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/src/index.css +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/src/index.ts b/samples/charts/data-chart/stacked-100-spline-area-chart/src/index.ts index 0ff0854d08..11724d9453 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/src/index.ts +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartCategoryCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule, IgcDataChartStackedModule, IgcStackedFragmentSeriesModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcStacked100SplineAreaSeriesComponent, IgcStackedFragmentSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthRate'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -52,6 +53,7 @@ export class Sample { stacked100SplineAreaSeries.yAxis = this.yAxis; } this._bind(); + } private _continentsBirthRate: ContinentsBirthRate = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/webpack.config.js b/samples/charts/data-chart/stacked-100-spline-area-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/webpack.config.js +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/stacked-100-spline-chart/sandbox.config.json b/samples/charts/data-chart/stacked-100-spline-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/sandbox.config.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/stacked-100-spline-chart/src/index.css b/samples/charts/data-chart/stacked-100-spline-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/src/index.css +++ b/samples/charts/data-chart/stacked-100-spline-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/stacked-100-spline-chart/src/index.ts b/samples/charts/data-chart/stacked-100-spline-chart/src/index.ts index 98d9f3c1c4..f862806b36 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/src/index.ts +++ b/samples/charts/data-chart/stacked-100-spline-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartCategoryCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule, IgcDataChartStackedModule, IgcStackedFragmentSeriesModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcStacked100SplineSeriesComponent, IgcStackedFragmentSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthRate'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -52,6 +53,7 @@ export class Sample { stacked100SplineSeries.yAxis = this.yAxis; } this._bind(); + } private _continentsBirthRate: ContinentsBirthRate = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/stacked-100-spline-chart/webpack.config.js b/samples/charts/data-chart/stacked-100-spline-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/webpack.config.js +++ b/samples/charts/data-chart/stacked-100-spline-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/stacked-area-chart/sandbox.config.json b/samples/charts/data-chart/stacked-area-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/stacked-area-chart/sandbox.config.json +++ b/samples/charts/data-chart/stacked-area-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/stacked-area-chart/src/index.css b/samples/charts/data-chart/stacked-area-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/stacked-area-chart/src/index.css +++ b/samples/charts/data-chart/stacked-area-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/stacked-area-chart/src/index.ts b/samples/charts/data-chart/stacked-area-chart/src/index.ts index 3c1f7848cf..809b318cf2 100644 --- a/samples/charts/data-chart/stacked-area-chart/src/index.ts +++ b/samples/charts/data-chart/stacked-area-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartCategoryCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule, IgcDataChartStackedModule, IgcStackedFragmentSeriesModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcStackedAreaSeriesComponent, IgcStackedFragmentSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthRate'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -52,6 +53,7 @@ export class Sample { stackedAreaSeries.yAxis = this.yAxis; } this._bind(); + } private _continentsBirthRate: ContinentsBirthRate = null; diff --git a/samples/charts/data-chart/stacked-area-chart/tsconfig.json b/samples/charts/data-chart/stacked-area-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/stacked-area-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-area-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/stacked-area-chart/webpack.config.js b/samples/charts/data-chart/stacked-area-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/stacked-area-chart/webpack.config.js +++ b/samples/charts/data-chart/stacked-area-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/stacked-bar-chart/sandbox.config.json b/samples/charts/data-chart/stacked-bar-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/stacked-bar-chart/sandbox.config.json +++ b/samples/charts/data-chart/stacked-bar-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/stacked-bar-chart/src/index.css b/samples/charts/data-chart/stacked-bar-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/stacked-bar-chart/src/index.css +++ b/samples/charts/data-chart/stacked-bar-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/stacked-bar-chart/src/index.ts b/samples/charts/data-chart/stacked-bar-chart/src/index.ts index 27b260dff3..d831a79b86 100644 --- a/samples/charts/data-chart/stacked-bar-chart/src/index.ts +++ b/samples/charts/data-chart/stacked-bar-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartCategoryCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule, IgcDataChartStackedModule, IgcStackedFragmentSeriesModule, IgcCalloutLayerModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryYAxisComponent, IgcNumericXAxisComponent, IgcStackedBarSeriesComponent, IgcStackedFragmentSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { EnergyRenewableConsumptionItem, EnergyRenewableConsumption } from './EnergyRenewableConsumption'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -51,6 +52,7 @@ export class Sample { stackedBarSeries.yAxis = this.yAxis; } this._bind(); + } private _energyRenewableConsumption: EnergyRenewableConsumption = null; diff --git a/samples/charts/data-chart/stacked-bar-chart/tsconfig.json b/samples/charts/data-chart/stacked-bar-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/stacked-bar-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-bar-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/stacked-bar-chart/webpack.config.js b/samples/charts/data-chart/stacked-bar-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/stacked-bar-chart/webpack.config.js +++ b/samples/charts/data-chart/stacked-bar-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/stacked-column-chart/sandbox.config.json b/samples/charts/data-chart/stacked-column-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/stacked-column-chart/sandbox.config.json +++ b/samples/charts/data-chart/stacked-column-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/stacked-column-chart/src/index.css b/samples/charts/data-chart/stacked-column-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/stacked-column-chart/src/index.css +++ b/samples/charts/data-chart/stacked-column-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/stacked-column-chart/src/index.ts b/samples/charts/data-chart/stacked-column-chart/src/index.ts index b101e36d88..8e7616554d 100644 --- a/samples/charts/data-chart/stacked-column-chart/src/index.ts +++ b/samples/charts/data-chart/stacked-column-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartCategoryCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule, IgcDataChartStackedModule, IgcStackedFragmentSeriesModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcStackedColumnSeriesComponent, IgcStackedFragmentSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthRate'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -52,6 +53,7 @@ export class Sample { stackedColumnSeries.yAxis = this.yAxis; } this._bind(); + } private _continentsBirthRate: ContinentsBirthRate = null; diff --git a/samples/charts/data-chart/stacked-column-chart/tsconfig.json b/samples/charts/data-chart/stacked-column-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/stacked-column-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-column-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/stacked-column-chart/webpack.config.js b/samples/charts/data-chart/stacked-column-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/stacked-column-chart/webpack.config.js +++ b/samples/charts/data-chart/stacked-column-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/stacked-line-chart/sandbox.config.json b/samples/charts/data-chart/stacked-line-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/stacked-line-chart/sandbox.config.json +++ b/samples/charts/data-chart/stacked-line-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/stacked-line-chart/src/index.css b/samples/charts/data-chart/stacked-line-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/stacked-line-chart/src/index.css +++ b/samples/charts/data-chart/stacked-line-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/stacked-line-chart/src/index.ts b/samples/charts/data-chart/stacked-line-chart/src/index.ts index f7e5a2d369..4b84312945 100644 --- a/samples/charts/data-chart/stacked-line-chart/src/index.ts +++ b/samples/charts/data-chart/stacked-line-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartCategoryCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule, IgcDataChartStackedModule, IgcStackedFragmentSeriesModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcStackedLineSeriesComponent, IgcStackedFragmentSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthRate'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -52,6 +53,7 @@ export class Sample { stackedLineSeries.yAxis = this.yAxis; } this._bind(); + } private _continentsBirthRate: ContinentsBirthRate = null; diff --git a/samples/charts/data-chart/stacked-line-chart/tsconfig.json b/samples/charts/data-chart/stacked-line-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/stacked-line-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-line-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/stacked-line-chart/webpack.config.js b/samples/charts/data-chart/stacked-line-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/stacked-line-chart/webpack.config.js +++ b/samples/charts/data-chart/stacked-line-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/stacked-spline-area-chart/sandbox.config.json b/samples/charts/data-chart/stacked-spline-area-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/sandbox.config.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/stacked-spline-area-chart/src/index.css b/samples/charts/data-chart/stacked-spline-area-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/src/index.css +++ b/samples/charts/data-chart/stacked-spline-area-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/stacked-spline-area-chart/src/index.ts b/samples/charts/data-chart/stacked-spline-area-chart/src/index.ts index 26ce8aee66..063f5c24eb 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/src/index.ts +++ b/samples/charts/data-chart/stacked-spline-area-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartCategoryCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule, IgcDataChartStackedModule, IgcStackedFragmentSeriesModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcStackedSplineAreaSeriesComponent, IgcStackedFragmentSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthRate'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -52,6 +53,7 @@ export class Sample { stackedSplineAreaSeries.yAxis = this.yAxis; } this._bind(); + } private _continentsBirthRate: ContinentsBirthRate = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/stacked-spline-area-chart/webpack.config.js b/samples/charts/data-chart/stacked-spline-area-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/webpack.config.js +++ b/samples/charts/data-chart/stacked-spline-area-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/stacked-spline-chart/sandbox.config.json b/samples/charts/data-chart/stacked-spline-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/stacked-spline-chart/sandbox.config.json +++ b/samples/charts/data-chart/stacked-spline-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/stacked-spline-chart/src/index.css b/samples/charts/data-chart/stacked-spline-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/stacked-spline-chart/src/index.css +++ b/samples/charts/data-chart/stacked-spline-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/stacked-spline-chart/src/index.ts b/samples/charts/data-chart/stacked-spline-chart/src/index.ts index 6fa5b606bf..e75eb0d7bf 100644 --- a/samples/charts/data-chart/stacked-spline-chart/src/index.ts +++ b/samples/charts/data-chart/stacked-spline-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartCategoryCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule, IgcDataChartStackedModule, IgcStackedFragmentSeriesModule } from 'igniteui-webcomponents-charts'; import { IgcLegendComponent, IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcStackedSplineSeriesComponent, IgcStackedFragmentSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { ContinentsBirthRateItem, ContinentsBirthRate } from './ContinentsBirthRate'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -52,6 +53,7 @@ export class Sample { stackedSplineSeries.yAxis = this.yAxis; } this._bind(); + } private _continentsBirthRate: ContinentsBirthRate = null; diff --git a/samples/charts/data-chart/stacked-spline-chart/tsconfig.json b/samples/charts/data-chart/stacked-spline-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/stacked-spline-chart/tsconfig.json +++ b/samples/charts/data-chart/stacked-spline-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/stacked-spline-chart/webpack.config.js b/samples/charts/data-chart/stacked-spline-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/stacked-spline-chart/webpack.config.js +++ b/samples/charts/data-chart/stacked-spline-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/transition-event/sandbox.config.json b/samples/charts/data-chart/transition-event/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/transition-event/sandbox.config.json +++ b/samples/charts/data-chart/transition-event/sandbox.config.json @@ -3,5 +3,4 @@ "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/transition-event/src/index.css b/samples/charts/data-chart/transition-event/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/transition-event/src/index.css +++ b/samples/charts/data-chart/transition-event/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/transition-event/src/index.ts b/samples/charts/data-chart/transition-event/src/index.ts index a203edb83e..2c0e43521b 100644 --- a/samples/charts/data-chart/transition-event/src/index.ts +++ b/samples/charts/data-chart/transition-event/src/index.ts @@ -5,10 +5,10 @@ import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionCo import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcWaterfallSeriesComponent } from 'igniteui-webcomponents-charts'; import { CompanyIncomeDataItem, CompanyIncomeData } from './CompanyIncomeData'; import { IgcPropertyEditorPropertyDescriptionButtonClickEventArgs } from 'igniteui-webcomponents-layouts'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -53,6 +53,7 @@ export class Sample { waterfallSeries2.dataSource = this.companyIncomeData; } this._bind(); + } private _companyIncomeData: CompanyIncomeData = null; diff --git a/samples/charts/data-chart/transition-event/tsconfig.json b/samples/charts/data-chart/transition-event/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/transition-event/tsconfig.json +++ b/samples/charts/data-chart/transition-event/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/transition-event/webpack.config.js b/samples/charts/data-chart/transition-event/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/transition-event/webpack.config.js +++ b/samples/charts/data-chart/transition-event/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-chart/waterfall-chart/sandbox.config.json b/samples/charts/data-chart/waterfall-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-chart/waterfall-chart/sandbox.config.json +++ b/samples/charts/data-chart/waterfall-chart/sandbox.config.json @@ -3,5 +3,4 @@ "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/waterfall-chart/src/index.css b/samples/charts/data-chart/waterfall-chart/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-chart/waterfall-chart/src/index.css +++ b/samples/charts/data-chart/waterfall-chart/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/waterfall-chart/src/index.ts b/samples/charts/data-chart/waterfall-chart/src/index.ts index 33a114da78..c40ffc1c5c 100644 --- a/samples/charts/data-chart/waterfall-chart/src/index.ts +++ b/samples/charts/data-chart/waterfall-chart/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataChartCoreModule, IgcDataChartCategoryModule } from 'igniteui-webcomponents-charts'; import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcWaterfallSeriesComponent } from 'igniteui-webcomponents-charts'; import { CompanyIncomeDataItem, CompanyIncomeData } from './CompanyIncomeData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataChartCoreModule, @@ -36,6 +37,7 @@ export class Sample { waterfallSeries2.dataSource = this.companyIncomeData; } this._bind(); + } private _companyIncomeData: CompanyIncomeData = null; diff --git a/samples/charts/data-chart/waterfall-chart/tsconfig.json b/samples/charts/data-chart/waterfall-chart/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-chart/waterfall-chart/tsconfig.json +++ b/samples/charts/data-chart/waterfall-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-chart/waterfall-chart/webpack.config.js b/samples/charts/data-chart/waterfall-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-chart/waterfall-chart/webpack.config.js +++ b/samples/charts/data-chart/waterfall-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-pie-chart/animation/sandbox.config.json b/samples/charts/data-pie-chart/animation/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-pie-chart/animation/sandbox.config.json +++ b/samples/charts/data-pie-chart/animation/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation/src/index.css b/samples/charts/data-pie-chart/animation/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-pie-chart/animation/src/index.css +++ b/samples/charts/data-pie-chart/animation/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-pie-chart/animation/src/index.ts b/samples/charts/data-pie-chart/animation/src/index.ts index 41e8506e5c..617c10eb3d 100644 --- a/samples/charts/data-pie-chart/animation/src/index.ts +++ b/samples/charts/data-pie-chart/animation/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDe import { IgcPropertyEditorPanelComponent } from 'igniteui-webcomponents-layouts'; import { IgcDataPieChartComponent } from 'igniteui-webcomponents-charts'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -34,6 +34,7 @@ export class Sample { chart.dataSource = this.energyGlobalDemand; } this._bind(); + } private _energyGlobalDemand: EnergyGlobalDemand = null; diff --git a/samples/charts/data-pie-chart/animation/tsconfig.json b/samples/charts/data-pie-chart/animation/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-pie-chart/animation/tsconfig.json +++ b/samples/charts/data-pie-chart/animation/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-pie-chart/animation/webpack.config.js b/samples/charts/data-pie-chart/animation/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-pie-chart/animation/webpack.config.js +++ b/samples/charts/data-pie-chart/animation/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-pie-chart/highlight-filter/sandbox.config.json b/samples/charts/data-pie-chart/highlight-filter/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-pie-chart/highlight-filter/sandbox.config.json +++ b/samples/charts/data-pie-chart/highlight-filter/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/highlight-filter/src/index.css b/samples/charts/data-pie-chart/highlight-filter/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-pie-chart/highlight-filter/src/index.css +++ b/samples/charts/data-pie-chart/highlight-filter/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-pie-chart/highlight-filter/src/index.ts b/samples/charts/data-pie-chart/highlight-filter/src/index.ts index 6d817dc715..c019c51f05 100644 --- a/samples/charts/data-pie-chart/highlight-filter/src/index.ts +++ b/samples/charts/data-pie-chart/highlight-filter/src/index.ts @@ -3,9 +3,10 @@ import { ComponentRenderer, DataPieChartDescriptionModule } from 'igniteui-webco import { IgcDataPieChartComponent } from 'igniteui-webcomponents-charts'; import { OnlineTrafficHighlightTotalsItem, OnlineTrafficHighlightTotals } from './OnlineTrafficHighlightTotals'; import { OnlineTrafficHighlightDesktopOnlyItem, OnlineTrafficHighlightDesktopOnly } from './OnlineTrafficHighlightDesktopOnly'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataPieChartModule @@ -24,6 +25,7 @@ export class Sample { chart.highlightedDataSource = this.onlineTrafficHighlightDesktopOnly; } this._bind(); + } private _onlineTrafficHighlightTotals: OnlineTrafficHighlightTotals = null; diff --git a/samples/charts/data-pie-chart/highlight-filter/tsconfig.json b/samples/charts/data-pie-chart/highlight-filter/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-pie-chart/highlight-filter/tsconfig.json +++ b/samples/charts/data-pie-chart/highlight-filter/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-pie-chart/highlight-filter/webpack.config.js b/samples/charts/data-pie-chart/highlight-filter/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-pie-chart/highlight-filter/webpack.config.js +++ b/samples/charts/data-pie-chart/highlight-filter/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-pie-chart/highlighting/sandbox.config.json b/samples/charts/data-pie-chart/highlighting/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-pie-chart/highlighting/sandbox.config.json +++ b/samples/charts/data-pie-chart/highlighting/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/highlighting/src/index.css b/samples/charts/data-pie-chart/highlighting/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-pie-chart/highlighting/src/index.css +++ b/samples/charts/data-pie-chart/highlighting/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-pie-chart/highlighting/src/index.ts b/samples/charts/data-pie-chart/highlighting/src/index.ts index 41e8506e5c..617c10eb3d 100644 --- a/samples/charts/data-pie-chart/highlighting/src/index.ts +++ b/samples/charts/data-pie-chart/highlighting/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDe import { IgcPropertyEditorPanelComponent } from 'igniteui-webcomponents-layouts'; import { IgcDataPieChartComponent } from 'igniteui-webcomponents-charts'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -34,6 +34,7 @@ export class Sample { chart.dataSource = this.energyGlobalDemand; } this._bind(); + } private _energyGlobalDemand: EnergyGlobalDemand = null; diff --git a/samples/charts/data-pie-chart/highlighting/tsconfig.json b/samples/charts/data-pie-chart/highlighting/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-pie-chart/highlighting/tsconfig.json +++ b/samples/charts/data-pie-chart/highlighting/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-pie-chart/highlighting/webpack.config.js b/samples/charts/data-pie-chart/highlighting/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-pie-chart/highlighting/webpack.config.js +++ b/samples/charts/data-pie-chart/highlighting/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-pie-chart/legend/sandbox.config.json b/samples/charts/data-pie-chart/legend/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-pie-chart/legend/sandbox.config.json +++ b/samples/charts/data-pie-chart/legend/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/legend/src/index.css b/samples/charts/data-pie-chart/legend/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-pie-chart/legend/src/index.css +++ b/samples/charts/data-pie-chart/legend/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-pie-chart/legend/src/index.ts b/samples/charts/data-pie-chart/legend/src/index.ts index cc8daa8d04..856fa8af94 100644 --- a/samples/charts/data-pie-chart/legend/src/index.ts +++ b/samples/charts/data-pie-chart/legend/src/index.ts @@ -3,9 +3,10 @@ import { IgcDataPieChartModule, IgcItemLegendModule } from 'igniteui-webcomponen import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcItemLegendComponent, IgcDataPieChartComponent } from 'igniteui-webcomponents-charts'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule, @@ -28,6 +29,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _energyGlobalDemand: EnergyGlobalDemand = null; diff --git a/samples/charts/data-pie-chart/legend/tsconfig.json b/samples/charts/data-pie-chart/legend/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-pie-chart/legend/tsconfig.json +++ b/samples/charts/data-pie-chart/legend/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-pie-chart/legend/webpack.config.js b/samples/charts/data-pie-chart/legend/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-pie-chart/legend/webpack.config.js +++ b/samples/charts/data-pie-chart/legend/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-pie-chart/others/sandbox.config.json b/samples/charts/data-pie-chart/others/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-pie-chart/others/sandbox.config.json +++ b/samples/charts/data-pie-chart/others/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/others/src/index.css b/samples/charts/data-pie-chart/others/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-pie-chart/others/src/index.css +++ b/samples/charts/data-pie-chart/others/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-pie-chart/others/src/index.ts b/samples/charts/data-pie-chart/others/src/index.ts index 41e8506e5c..617c10eb3d 100644 --- a/samples/charts/data-pie-chart/others/src/index.ts +++ b/samples/charts/data-pie-chart/others/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDe import { IgcPropertyEditorPanelComponent } from 'igniteui-webcomponents-layouts'; import { IgcDataPieChartComponent } from 'igniteui-webcomponents-charts'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -34,6 +34,7 @@ export class Sample { chart.dataSource = this.energyGlobalDemand; } this._bind(); + } private _energyGlobalDemand: EnergyGlobalDemand = null; diff --git a/samples/charts/data-pie-chart/others/tsconfig.json b/samples/charts/data-pie-chart/others/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-pie-chart/others/tsconfig.json +++ b/samples/charts/data-pie-chart/others/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-pie-chart/others/webpack.config.js b/samples/charts/data-pie-chart/others/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-pie-chart/others/webpack.config.js +++ b/samples/charts/data-pie-chart/others/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-pie-chart/overview/sandbox.config.json b/samples/charts/data-pie-chart/overview/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-pie-chart/overview/sandbox.config.json +++ b/samples/charts/data-pie-chart/overview/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/overview/src/index.css b/samples/charts/data-pie-chart/overview/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-pie-chart/overview/src/index.css +++ b/samples/charts/data-pie-chart/overview/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-pie-chart/overview/src/index.ts b/samples/charts/data-pie-chart/overview/src/index.ts index f8106e4b05..1487c57533 100644 --- a/samples/charts/data-pie-chart/overview/src/index.ts +++ b/samples/charts/data-pie-chart/overview/src/index.ts @@ -1,9 +1,10 @@ import { IgcDataPieChartModule, IgcItemLegendModule } from 'igniteui-webcomponents-charts'; import { IgcDataPieChartComponent } from 'igniteui-webcomponents-charts'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcDataPieChartModule, @@ -22,6 +23,7 @@ export class Sample { chart.dataSource = this.energyGlobalDemand; } this._bind(); + } private _energyGlobalDemand: EnergyGlobalDemand = null; diff --git a/samples/charts/data-pie-chart/overview/tsconfig.json b/samples/charts/data-pie-chart/overview/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-pie-chart/overview/tsconfig.json +++ b/samples/charts/data-pie-chart/overview/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-pie-chart/overview/webpack.config.js b/samples/charts/data-pie-chart/overview/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-pie-chart/overview/webpack.config.js +++ b/samples/charts/data-pie-chart/overview/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/data-pie-chart/selection/sandbox.config.json b/samples/charts/data-pie-chart/selection/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/data-pie-chart/selection/sandbox.config.json +++ b/samples/charts/data-pie-chart/selection/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/selection/src/index.css b/samples/charts/data-pie-chart/selection/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/data-pie-chart/selection/src/index.css +++ b/samples/charts/data-pie-chart/selection/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-pie-chart/selection/src/index.ts b/samples/charts/data-pie-chart/selection/src/index.ts index 41e8506e5c..617c10eb3d 100644 --- a/samples/charts/data-pie-chart/selection/src/index.ts +++ b/samples/charts/data-pie-chart/selection/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDe import { IgcPropertyEditorPanelComponent } from 'igniteui-webcomponents-layouts'; import { IgcDataPieChartComponent } from 'igniteui-webcomponents-charts'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -34,6 +34,7 @@ export class Sample { chart.dataSource = this.energyGlobalDemand; } this._bind(); + } private _energyGlobalDemand: EnergyGlobalDemand = null; diff --git a/samples/charts/data-pie-chart/selection/tsconfig.json b/samples/charts/data-pie-chart/selection/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/data-pie-chart/selection/tsconfig.json +++ b/samples/charts/data-pie-chart/selection/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/data-pie-chart/selection/webpack.config.js b/samples/charts/data-pie-chart/selection/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/data-pie-chart/selection/webpack.config.js +++ b/samples/charts/data-pie-chart/selection/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/doughnut-chart/legend/sandbox.config.json b/samples/charts/doughnut-chart/legend/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/doughnut-chart/legend/sandbox.config.json +++ b/samples/charts/doughnut-chart/legend/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/legend/src/index.css b/samples/charts/doughnut-chart/legend/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/doughnut-chart/legend/src/index.css +++ b/samples/charts/doughnut-chart/legend/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/doughnut-chart/legend/src/index.ts b/samples/charts/doughnut-chart/legend/src/index.ts index 5fcf272c23..3712184ee2 100644 --- a/samples/charts/doughnut-chart/legend/src/index.ts +++ b/samples/charts/doughnut-chart/legend/src/index.ts @@ -1,9 +1,10 @@ import { IgcItemLegendModule, IgcDoughnutChartModule } from 'igniteui-webcomponents-charts'; import { IgcItemLegendComponent, IgcDoughnutChartComponent, IgcRingSeriesComponent } from 'igniteui-webcomponents-charts'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcItemLegendModule, @@ -27,6 +28,7 @@ export class Sample { series.legend = this.legend; } this._bind(); + } private _energyGlobalDemand: EnergyGlobalDemand = null; diff --git a/samples/charts/doughnut-chart/legend/tsconfig.json b/samples/charts/doughnut-chart/legend/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/doughnut-chart/legend/tsconfig.json +++ b/samples/charts/doughnut-chart/legend/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/doughnut-chart/legend/webpack.config.js b/samples/charts/doughnut-chart/legend/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/doughnut-chart/legend/webpack.config.js +++ b/samples/charts/doughnut-chart/legend/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/doughnut-chart/overview/sandbox.config.json b/samples/charts/doughnut-chart/overview/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/doughnut-chart/overview/sandbox.config.json +++ b/samples/charts/doughnut-chart/overview/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/overview/src/index.css b/samples/charts/doughnut-chart/overview/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/doughnut-chart/overview/src/index.css +++ b/samples/charts/doughnut-chart/overview/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/doughnut-chart/overview/src/index.ts b/samples/charts/doughnut-chart/overview/src/index.ts index 62498f0423..9f01e5d811 100644 --- a/samples/charts/doughnut-chart/overview/src/index.ts +++ b/samples/charts/doughnut-chart/overview/src/index.ts @@ -1,9 +1,10 @@ import { IgcLegendModule, IgcDoughnutChartModule } from 'igniteui-webcomponents-charts'; import { IgcDoughnutChartComponent, IgcRingSeriesComponent } from 'igniteui-webcomponents-charts'; import { CompanyMarketSharesItem, CompanyMarketShares } from './CompanyMarketShares'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -24,6 +25,7 @@ export class Sample { series.dataSource = this.companyMarketShares; } this._bind(); + } private _companyMarketShares: CompanyMarketShares = null; diff --git a/samples/charts/doughnut-chart/overview/tsconfig.json b/samples/charts/doughnut-chart/overview/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/doughnut-chart/overview/tsconfig.json +++ b/samples/charts/doughnut-chart/overview/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/doughnut-chart/overview/webpack.config.js b/samples/charts/doughnut-chart/overview/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/doughnut-chart/overview/webpack.config.js +++ b/samples/charts/doughnut-chart/overview/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/doughnut-chart/rings/sandbox.config.json b/samples/charts/doughnut-chart/rings/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/doughnut-chart/rings/sandbox.config.json +++ b/samples/charts/doughnut-chart/rings/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/doughnut-chart/rings/src/index.css b/samples/charts/doughnut-chart/rings/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/doughnut-chart/rings/src/index.css +++ b/samples/charts/doughnut-chart/rings/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/doughnut-chart/rings/src/index.ts b/samples/charts/doughnut-chart/rings/src/index.ts index dbc5355489..d19dab9e2f 100644 --- a/samples/charts/doughnut-chart/rings/src/index.ts +++ b/samples/charts/doughnut-chart/rings/src/index.ts @@ -2,9 +2,10 @@ import { IgcLegendModule, IgcDoughnutChartModule } from 'igniteui-webcomponents- import { IgcDoughnutChartComponent, IgcRingSeriesComponent } from 'igniteui-webcomponents-charts'; import { CalendarSeasonsItem, CalendarSeasons } from './CalendarSeasons'; import { CalendarMonthsItem, CalendarMonths } from './CalendarMonths'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -28,6 +29,7 @@ export class Sample { series2.dataSource = this.calendarMonths; } this._bind(); + } private _calendarSeasons: CalendarSeasons = null; diff --git a/samples/charts/doughnut-chart/rings/tsconfig.json b/samples/charts/doughnut-chart/rings/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/doughnut-chart/rings/tsconfig.json +++ b/samples/charts/doughnut-chart/rings/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/doughnut-chart/rings/webpack.config.js b/samples/charts/doughnut-chart/rings/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/doughnut-chart/rings/webpack.config.js +++ b/samples/charts/doughnut-chart/rings/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/sandbox.config.json b/samples/charts/financial-chart/data-legend-formatting-currency/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/sandbox.config.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/src/index.css b/samples/charts/financial-chart/data-legend-formatting-currency/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/src/index.css +++ b/samples/charts/financial-chart/data-legend-formatting-currency/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/src/index.ts b/samples/charts/financial-chart/data-legend-formatting-currency/src/index.ts index 03bb8e28e7..c939de576a 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/src/index.ts +++ b/samples/charts/financial-chart/data-legend-formatting-currency/src/index.ts @@ -1,9 +1,10 @@ import { IgcFinancialChartModule, IgcDataChartInteractivityModule, IgcDataLegendModule } from 'igniteui-webcomponents-charts'; import { IgcDataLegendComponent, IgcFinancialChartComponent } from 'igniteui-webcomponents-charts'; import { MultipleStocks } from './MultipleStocks'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcFinancialChartModule, @@ -26,6 +27,7 @@ export class Sample { chart.dataSource = this.multipleStocks; } this._bind(); + } private _multipleStocks: MultipleStocks = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/tsconfig.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/webpack.config.js b/samples/charts/financial-chart/data-legend-formatting-currency/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/webpack.config.js +++ b/samples/charts/financial-chart/data-legend-formatting-currency/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/financial-chart/data-legend-styling-props/sandbox.config.json b/samples/charts/financial-chart/data-legend-styling-props/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/sandbox.config.json +++ b/samples/charts/financial-chart/data-legend-styling-props/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend-styling-props/src/index.css b/samples/charts/financial-chart/data-legend-styling-props/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/src/index.css +++ b/samples/charts/financial-chart/data-legend-styling-props/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/financial-chart/data-legend-styling-props/src/index.ts b/samples/charts/financial-chart/data-legend-styling-props/src/index.ts index ec110c6917..920e2b95fd 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/src/index.ts +++ b/samples/charts/financial-chart/data-legend-styling-props/src/index.ts @@ -1,9 +1,10 @@ import { IgcFinancialChartModule, IgcDataChartInteractivityModule, IgcDataLegendModule } from 'igniteui-webcomponents-charts'; import { IgcDataLegendComponent, IgcFinancialChartComponent } from 'igniteui-webcomponents-charts'; import { StockGoogleItem, StockGoogle } from './StockGoogle'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcFinancialChartModule, @@ -26,6 +27,7 @@ export class Sample { chart.dataSource = this.stockGoogle; } this._bind(); + } private _stockGoogle: StockGoogle = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/tsconfig.json +++ b/samples/charts/financial-chart/data-legend-styling-props/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/financial-chart/data-legend-styling-props/webpack.config.js b/samples/charts/financial-chart/data-legend-styling-props/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/webpack.config.js +++ b/samples/charts/financial-chart/data-legend-styling-props/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/financial-chart/data-legend/sandbox.config.json b/samples/charts/financial-chart/data-legend/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/financial-chart/data-legend/sandbox.config.json +++ b/samples/charts/financial-chart/data-legend/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend/src/index.css b/samples/charts/financial-chart/data-legend/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/financial-chart/data-legend/src/index.css +++ b/samples/charts/financial-chart/data-legend/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/financial-chart/data-legend/src/index.ts b/samples/charts/financial-chart/data-legend/src/index.ts index 03bb8e28e7..c939de576a 100644 --- a/samples/charts/financial-chart/data-legend/src/index.ts +++ b/samples/charts/financial-chart/data-legend/src/index.ts @@ -1,9 +1,10 @@ import { IgcFinancialChartModule, IgcDataChartInteractivityModule, IgcDataLegendModule } from 'igniteui-webcomponents-charts'; import { IgcDataLegendComponent, IgcFinancialChartComponent } from 'igniteui-webcomponents-charts'; import { MultipleStocks } from './MultipleStocks'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcFinancialChartModule, @@ -26,6 +27,7 @@ export class Sample { chart.dataSource = this.multipleStocks; } this._bind(); + } private _multipleStocks: MultipleStocks = null; diff --git a/samples/charts/financial-chart/data-legend/tsconfig.json b/samples/charts/financial-chart/data-legend/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/financial-chart/data-legend/tsconfig.json +++ b/samples/charts/financial-chart/data-legend/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/financial-chart/data-legend/webpack.config.js b/samples/charts/financial-chart/data-legend/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/financial-chart/data-legend/webpack.config.js +++ b/samples/charts/financial-chart/data-legend/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/sandbox.config.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/sandbox.config.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/index.css b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/index.css +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/index.ts b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/index.ts index ac6956c487..5bd5ec0302 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/index.ts +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/index.ts @@ -1,9 +1,10 @@ import { IgcFinancialChartModule, IgcDataChartInteractivityModule, IgcLegendModule } from 'igniteui-webcomponents-charts'; import { IgcFinancialChartComponent } from 'igniteui-webcomponents-charts'; import { MultipleStocks } from './MultipleStocks'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcFinancialChartModule, @@ -23,6 +24,7 @@ export class Sample { chart.dataSource = this.multipleStocks; } this._bind(); + } private _multipleStocks: MultipleStocks = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/tsconfig.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/webpack.config.js b/samples/charts/financial-chart/data-tooltip-formatting-currency/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/webpack.config.js +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/sandbox.config.json b/samples/charts/financial-chart/data-tooltip-styling-props/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/sandbox.config.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/src/index.css b/samples/charts/financial-chart/data-tooltip-styling-props/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/src/index.css +++ b/samples/charts/financial-chart/data-tooltip-styling-props/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/src/index.ts b/samples/charts/financial-chart/data-tooltip-styling-props/src/index.ts index f36deb72d2..869daf4f7d 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/src/index.ts +++ b/samples/charts/financial-chart/data-tooltip-styling-props/src/index.ts @@ -1,9 +1,10 @@ import { IgcFinancialChartModule, IgcDataChartInteractivityModule, IgcDataLegendModule } from 'igniteui-webcomponents-charts'; import { IgcFinancialChartComponent } from 'igniteui-webcomponents-charts'; import { StockGoogleItem, StockGoogle } from './StockGoogle'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcFinancialChartModule, @@ -23,6 +24,7 @@ export class Sample { chart.dataSource = this.stockGoogle; } this._bind(); + } private _stockGoogle: StockGoogle = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/tsconfig.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/webpack.config.js b/samples/charts/financial-chart/data-tooltip-styling-props/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/webpack.config.js +++ b/samples/charts/financial-chart/data-tooltip-styling-props/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/financial-chart/data-tooltip/sandbox.config.json b/samples/charts/financial-chart/data-tooltip/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/financial-chart/data-tooltip/sandbox.config.json +++ b/samples/charts/financial-chart/data-tooltip/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip/src/index.css b/samples/charts/financial-chart/data-tooltip/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/financial-chart/data-tooltip/src/index.css +++ b/samples/charts/financial-chart/data-tooltip/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/financial-chart/data-tooltip/src/index.ts b/samples/charts/financial-chart/data-tooltip/src/index.ts index 976f69753e..d4cfc299a2 100644 --- a/samples/charts/financial-chart/data-tooltip/src/index.ts +++ b/samples/charts/financial-chart/data-tooltip/src/index.ts @@ -1,9 +1,10 @@ import { IgcFinancialChartModule, IgcDataChartInteractivityModule, IgcDataLegendModule } from 'igniteui-webcomponents-charts'; import { IgcFinancialChartComponent } from 'igniteui-webcomponents-charts'; import { MultipleStocks } from './MultipleStocks'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcFinancialChartModule, @@ -23,6 +24,7 @@ export class Sample { chart.dataSource = this.multipleStocks; } this._bind(); + } private _multipleStocks: MultipleStocks = null; diff --git a/samples/charts/financial-chart/data-tooltip/tsconfig.json b/samples/charts/financial-chart/data-tooltip/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/financial-chart/data-tooltip/tsconfig.json +++ b/samples/charts/financial-chart/data-tooltip/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/financial-chart/data-tooltip/webpack.config.js b/samples/charts/financial-chart/data-tooltip/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/financial-chart/data-tooltip/webpack.config.js +++ b/samples/charts/financial-chart/data-tooltip/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/financial-chart/format-specifiers/sandbox.config.json b/samples/charts/financial-chart/format-specifiers/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/financial-chart/format-specifiers/sandbox.config.json +++ b/samples/charts/financial-chart/format-specifiers/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/financial-chart/format-specifiers/src/index.css b/samples/charts/financial-chart/format-specifiers/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/financial-chart/format-specifiers/src/index.css +++ b/samples/charts/financial-chart/format-specifiers/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/financial-chart/format-specifiers/src/index.ts b/samples/charts/financial-chart/format-specifiers/src/index.ts index 6ec5fa8f59..5c33a53fdf 100644 --- a/samples/charts/financial-chart/format-specifiers/src/index.ts +++ b/samples/charts/financial-chart/format-specifiers/src/index.ts @@ -3,9 +3,10 @@ import { IgcNumberFormatSpecifierModule, IgcDateTimeFormatSpecifierModule } from import { IgcDataLegendComponent, IgcFinancialChartComponent } from 'igniteui-webcomponents-charts'; import { IgcNumberFormatSpecifier, IgcDateTimeFormatSpecifier } from 'igniteui-webcomponents-core'; import { MultipleStocks } from './MultipleStocks'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcFinancialChartModule, @@ -35,7 +36,6 @@ export class Sample { } return this._numberFormatSpecifier1; } - private chart: IgcFinancialChartComponent private _numberFormatSpecifier3: IgcNumberFormatSpecifier[] | null = null; public get numberFormatSpecifier3(): IgcNumberFormatSpecifier[] { @@ -54,7 +54,6 @@ export class Sample { } return this._numberFormatSpecifier3; } - private _numberFormatSpecifier5: IgcNumberFormatSpecifier[] | null = null; public get numberFormatSpecifier5(): IgcNumberFormatSpecifier[] { if (this._numberFormatSpecifier5 == null) @@ -71,7 +70,6 @@ export class Sample { } return this._numberFormatSpecifier5; } - private _dateTimeFormatSpecifier1: IgcDateTimeFormatSpecifier[] | null = null; public get dateTimeFormatSpecifier1(): IgcDateTimeFormatSpecifier[] { if (this._dateTimeFormatSpecifier1 == null) @@ -86,7 +84,6 @@ export class Sample { } return this._dateTimeFormatSpecifier1; } - private _bind: () => void; constructor() { @@ -102,6 +99,7 @@ export class Sample { chart.xAxisLabelFormatSpecifiers = this.dateTimeFormatSpecifier1; } this._bind(); + } private _multipleStocks: MultipleStocks = null; diff --git a/samples/charts/financial-chart/format-specifiers/tsconfig.json b/samples/charts/financial-chart/format-specifiers/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/financial-chart/format-specifiers/tsconfig.json +++ b/samples/charts/financial-chart/format-specifiers/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/financial-chart/format-specifiers/webpack.config.js b/samples/charts/financial-chart/format-specifiers/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/financial-chart/format-specifiers/webpack.config.js +++ b/samples/charts/financial-chart/format-specifiers/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/financial-chart/scrollbars/sandbox.config.json b/samples/charts/financial-chart/scrollbars/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/financial-chart/scrollbars/sandbox.config.json +++ b/samples/charts/financial-chart/scrollbars/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/financial-chart/scrollbars/src/index.css b/samples/charts/financial-chart/scrollbars/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/financial-chart/scrollbars/src/index.css +++ b/samples/charts/financial-chart/scrollbars/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/financial-chart/scrollbars/src/index.ts b/samples/charts/financial-chart/scrollbars/src/index.ts index ac6956c487..5bd5ec0302 100644 --- a/samples/charts/financial-chart/scrollbars/src/index.ts +++ b/samples/charts/financial-chart/scrollbars/src/index.ts @@ -1,9 +1,10 @@ import { IgcFinancialChartModule, IgcDataChartInteractivityModule, IgcLegendModule } from 'igniteui-webcomponents-charts'; import { IgcFinancialChartComponent } from 'igniteui-webcomponents-charts'; import { MultipleStocks } from './MultipleStocks'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcFinancialChartModule, @@ -23,6 +24,7 @@ export class Sample { chart.dataSource = this.multipleStocks; } this._bind(); + } private _multipleStocks: MultipleStocks = null; diff --git a/samples/charts/financial-chart/scrollbars/tsconfig.json b/samples/charts/financial-chart/scrollbars/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/financial-chart/scrollbars/tsconfig.json +++ b/samples/charts/financial-chart/scrollbars/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/financial-chart/scrollbars/webpack.config.js b/samples/charts/financial-chart/scrollbars/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/financial-chart/scrollbars/webpack.config.js +++ b/samples/charts/financial-chart/scrollbars/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/pie-chart/legend/sandbox.config.json b/samples/charts/pie-chart/legend/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/pie-chart/legend/sandbox.config.json +++ b/samples/charts/pie-chart/legend/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/pie-chart/legend/src/index.css b/samples/charts/pie-chart/legend/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/pie-chart/legend/src/index.css +++ b/samples/charts/pie-chart/legend/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/pie-chart/legend/src/index.ts b/samples/charts/pie-chart/legend/src/index.ts index d567740d14..542c0a0e66 100644 --- a/samples/charts/pie-chart/legend/src/index.ts +++ b/samples/charts/pie-chart/legend/src/index.ts @@ -1,9 +1,10 @@ import { IgcItemLegendModule, IgcPieChartModule } from 'igniteui-webcomponents-charts'; import { IgcItemLegendComponent, IgcPieChartComponent } from 'igniteui-webcomponents-charts'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcItemLegendModule, @@ -25,6 +26,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _energyGlobalDemand: EnergyGlobalDemand = null; diff --git a/samples/charts/pie-chart/legend/tsconfig.json b/samples/charts/pie-chart/legend/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/pie-chart/legend/tsconfig.json +++ b/samples/charts/pie-chart/legend/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/pie-chart/legend/webpack.config.js b/samples/charts/pie-chart/legend/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/pie-chart/legend/webpack.config.js +++ b/samples/charts/pie-chart/legend/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/pie-chart/others/sandbox.config.json b/samples/charts/pie-chart/others/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/pie-chart/others/sandbox.config.json +++ b/samples/charts/pie-chart/others/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/pie-chart/others/src/index.css b/samples/charts/pie-chart/others/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/pie-chart/others/src/index.css +++ b/samples/charts/pie-chart/others/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/pie-chart/others/src/index.ts b/samples/charts/pie-chart/others/src/index.ts index d567740d14..542c0a0e66 100644 --- a/samples/charts/pie-chart/others/src/index.ts +++ b/samples/charts/pie-chart/others/src/index.ts @@ -1,9 +1,10 @@ import { IgcItemLegendModule, IgcPieChartModule } from 'igniteui-webcomponents-charts'; import { IgcItemLegendComponent, IgcPieChartComponent } from 'igniteui-webcomponents-charts'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcItemLegendModule, @@ -25,6 +26,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _energyGlobalDemand: EnergyGlobalDemand = null; diff --git a/samples/charts/pie-chart/others/tsconfig.json b/samples/charts/pie-chart/others/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/pie-chart/others/tsconfig.json +++ b/samples/charts/pie-chart/others/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/pie-chart/others/webpack.config.js b/samples/charts/pie-chart/others/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/pie-chart/others/webpack.config.js +++ b/samples/charts/pie-chart/others/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/pie-chart/overview/sandbox.config.json b/samples/charts/pie-chart/overview/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/pie-chart/overview/sandbox.config.json +++ b/samples/charts/pie-chart/overview/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/pie-chart/overview/src/index.css b/samples/charts/pie-chart/overview/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/pie-chart/overview/src/index.css +++ b/samples/charts/pie-chart/overview/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/pie-chart/overview/src/index.ts b/samples/charts/pie-chart/overview/src/index.ts index d567740d14..542c0a0e66 100644 --- a/samples/charts/pie-chart/overview/src/index.ts +++ b/samples/charts/pie-chart/overview/src/index.ts @@ -1,9 +1,10 @@ import { IgcItemLegendModule, IgcPieChartModule } from 'igniteui-webcomponents-charts'; import { IgcItemLegendComponent, IgcPieChartComponent } from 'igniteui-webcomponents-charts'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcItemLegendModule, @@ -25,6 +26,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _energyGlobalDemand: EnergyGlobalDemand = null; diff --git a/samples/charts/pie-chart/overview/tsconfig.json b/samples/charts/pie-chart/overview/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/pie-chart/overview/tsconfig.json +++ b/samples/charts/pie-chart/overview/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/pie-chart/overview/webpack.config.js b/samples/charts/pie-chart/overview/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/pie-chart/overview/webpack.config.js +++ b/samples/charts/pie-chart/overview/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/pie-chart/styling/sandbox.config.json b/samples/charts/pie-chart/styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/pie-chart/styling/sandbox.config.json +++ b/samples/charts/pie-chart/styling/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/pie-chart/styling/src/index.css b/samples/charts/pie-chart/styling/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/pie-chart/styling/src/index.css +++ b/samples/charts/pie-chart/styling/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/pie-chart/styling/src/index.ts b/samples/charts/pie-chart/styling/src/index.ts index f006471983..07a95b168a 100644 --- a/samples/charts/pie-chart/styling/src/index.ts +++ b/samples/charts/pie-chart/styling/src/index.ts @@ -1,9 +1,10 @@ import { IgcPieChartModule, IgcItemLegendModule } from 'igniteui-webcomponents-charts'; import { IgcItemLegendComponent, IgcPieChartComponent } from 'igniteui-webcomponents-charts'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcPieChartModule, @@ -25,6 +26,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _energyGlobalDemand: EnergyGlobalDemand = null; diff --git a/samples/charts/pie-chart/styling/tsconfig.json b/samples/charts/pie-chart/styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/pie-chart/styling/tsconfig.json +++ b/samples/charts/pie-chart/styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/pie-chart/styling/webpack.config.js b/samples/charts/pie-chart/styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/pie-chart/styling/webpack.config.js +++ b/samples/charts/pie-chart/styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/sparkline/display-area/sandbox.config.json b/samples/charts/sparkline/display-area/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/sparkline/display-area/sandbox.config.json +++ b/samples/charts/sparkline/display-area/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/sparkline/display-area/src/index.css b/samples/charts/sparkline/display-area/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/sparkline/display-area/src/index.css +++ b/samples/charts/sparkline/display-area/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/sparkline/display-area/src/index.ts b/samples/charts/sparkline/display-area/src/index.ts index 0e25ce14bd..9c1fe4cbaf 100644 --- a/samples/charts/sparkline/display-area/src/index.ts +++ b/samples/charts/sparkline/display-area/src/index.ts @@ -1,9 +1,10 @@ import { IgcSparklineModule } from 'igniteui-webcomponents-charts'; import { IgcSparklineComponent } from 'igniteui-webcomponents-charts'; import { SparklineMixedDataItem, SparklineMixedData } from './SparklineMixedData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcSparklineModule @@ -21,6 +22,7 @@ export class Sample { chart.dataSource = this.sparklineMixedData; } this._bind(); + } private _sparklineMixedData: SparklineMixedData = null; diff --git a/samples/charts/sparkline/display-area/tsconfig.json b/samples/charts/sparkline/display-area/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/sparkline/display-area/tsconfig.json +++ b/samples/charts/sparkline/display-area/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/sparkline/display-area/webpack.config.js b/samples/charts/sparkline/display-area/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/sparkline/display-area/webpack.config.js +++ b/samples/charts/sparkline/display-area/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/sparkline/display-column/sandbox.config.json b/samples/charts/sparkline/display-column/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/sparkline/display-column/sandbox.config.json +++ b/samples/charts/sparkline/display-column/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/sparkline/display-column/src/index.css b/samples/charts/sparkline/display-column/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/sparkline/display-column/src/index.css +++ b/samples/charts/sparkline/display-column/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/sparkline/display-column/src/index.ts b/samples/charts/sparkline/display-column/src/index.ts index 0e25ce14bd..9c1fe4cbaf 100644 --- a/samples/charts/sparkline/display-column/src/index.ts +++ b/samples/charts/sparkline/display-column/src/index.ts @@ -1,9 +1,10 @@ import { IgcSparklineModule } from 'igniteui-webcomponents-charts'; import { IgcSparklineComponent } from 'igniteui-webcomponents-charts'; import { SparklineMixedDataItem, SparklineMixedData } from './SparklineMixedData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcSparklineModule @@ -21,6 +22,7 @@ export class Sample { chart.dataSource = this.sparklineMixedData; } this._bind(); + } private _sparklineMixedData: SparklineMixedData = null; diff --git a/samples/charts/sparkline/display-column/tsconfig.json b/samples/charts/sparkline/display-column/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/sparkline/display-column/tsconfig.json +++ b/samples/charts/sparkline/display-column/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/sparkline/display-column/webpack.config.js b/samples/charts/sparkline/display-column/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/sparkline/display-column/webpack.config.js +++ b/samples/charts/sparkline/display-column/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/sparkline/display-lines/sandbox.config.json b/samples/charts/sparkline/display-lines/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/sparkline/display-lines/sandbox.config.json +++ b/samples/charts/sparkline/display-lines/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/sparkline/display-lines/src/index.css b/samples/charts/sparkline/display-lines/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/sparkline/display-lines/src/index.css +++ b/samples/charts/sparkline/display-lines/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/sparkline/display-lines/src/index.ts b/samples/charts/sparkline/display-lines/src/index.ts index b2f8e31a8f..94a935f036 100644 --- a/samples/charts/sparkline/display-lines/src/index.ts +++ b/samples/charts/sparkline/display-lines/src/index.ts @@ -3,9 +3,10 @@ import { IgcSparklineModule } from 'igniteui-webcomponents-charts'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, SparklineDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcSparklineComponent } from 'igniteui-webcomponents-charts'; import { SparklineMixedDataItem, SparklineMixedData } from './SparklineMixedData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule, @@ -24,6 +25,7 @@ export class Sample { chart.dataSource = this.sparklineMixedData; } this._bind(); + } private _sparklineMixedData: SparklineMixedData = null; diff --git a/samples/charts/sparkline/display-lines/tsconfig.json b/samples/charts/sparkline/display-lines/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/sparkline/display-lines/tsconfig.json +++ b/samples/charts/sparkline/display-lines/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/sparkline/display-lines/webpack.config.js b/samples/charts/sparkline/display-lines/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/sparkline/display-lines/webpack.config.js +++ b/samples/charts/sparkline/display-lines/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/sparkline/display-winloss/sandbox.config.json b/samples/charts/sparkline/display-winloss/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/sparkline/display-winloss/sandbox.config.json +++ b/samples/charts/sparkline/display-winloss/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/sparkline/display-winloss/src/index.css b/samples/charts/sparkline/display-winloss/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/sparkline/display-winloss/src/index.css +++ b/samples/charts/sparkline/display-winloss/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/sparkline/display-winloss/src/index.ts b/samples/charts/sparkline/display-winloss/src/index.ts index 0e25ce14bd..9c1fe4cbaf 100644 --- a/samples/charts/sparkline/display-winloss/src/index.ts +++ b/samples/charts/sparkline/display-winloss/src/index.ts @@ -1,9 +1,10 @@ import { IgcSparklineModule } from 'igniteui-webcomponents-charts'; import { IgcSparklineComponent } from 'igniteui-webcomponents-charts'; import { SparklineMixedDataItem, SparklineMixedData } from './SparklineMixedData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcSparklineModule @@ -21,6 +22,7 @@ export class Sample { chart.dataSource = this.sparklineMixedData; } this._bind(); + } private _sparklineMixedData: SparklineMixedData = null; diff --git a/samples/charts/sparkline/display-winloss/tsconfig.json b/samples/charts/sparkline/display-winloss/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/sparkline/display-winloss/tsconfig.json +++ b/samples/charts/sparkline/display-winloss/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/sparkline/display-winloss/webpack.config.js b/samples/charts/sparkline/display-winloss/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/sparkline/display-winloss/webpack.config.js +++ b/samples/charts/sparkline/display-winloss/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/sparkline/markers/sandbox.config.json b/samples/charts/sparkline/markers/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/sparkline/markers/sandbox.config.json +++ b/samples/charts/sparkline/markers/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/sparkline/markers/src/index.css b/samples/charts/sparkline/markers/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/sparkline/markers/src/index.css +++ b/samples/charts/sparkline/markers/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/sparkline/markers/src/index.ts b/samples/charts/sparkline/markers/src/index.ts index 14983317ae..64fedadef4 100644 --- a/samples/charts/sparkline/markers/src/index.ts +++ b/samples/charts/sparkline/markers/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, SparklineDescr import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcSparklineComponent } from 'igniteui-webcomponents-charts'; import { SparklineProfitDataItem, SparklineProfitData } from './SparklineProfitData'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -45,6 +45,7 @@ export class Sample { chart.dataSource = this.sparklineProfitData; } this._bind(); + } private _sparklineProfitData: SparklineProfitData = null; diff --git a/samples/charts/sparkline/markers/tsconfig.json b/samples/charts/sparkline/markers/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/sparkline/markers/tsconfig.json +++ b/samples/charts/sparkline/markers/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/sparkline/markers/webpack.config.js b/samples/charts/sparkline/markers/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/sparkline/markers/webpack.config.js +++ b/samples/charts/sparkline/markers/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/sparkline/normal-range/sandbox.config.json b/samples/charts/sparkline/normal-range/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/sparkline/normal-range/sandbox.config.json +++ b/samples/charts/sparkline/normal-range/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/sparkline/normal-range/src/index.css b/samples/charts/sparkline/normal-range/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/sparkline/normal-range/src/index.css +++ b/samples/charts/sparkline/normal-range/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/sparkline/normal-range/src/index.ts b/samples/charts/sparkline/normal-range/src/index.ts index 80d153c2d6..1fa66fb5c4 100644 --- a/samples/charts/sparkline/normal-range/src/index.ts +++ b/samples/charts/sparkline/normal-range/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, SparklineDescr import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcSparklineComponent } from 'igniteui-webcomponents-charts'; import { SparklineMixedDataItem, SparklineMixedData } from './SparklineMixedData'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -39,6 +39,7 @@ export class Sample { chart.dataSource = this.sparklineMixedData; } this._bind(); + } private _sparklineMixedData: SparklineMixedData = null; diff --git a/samples/charts/sparkline/normal-range/tsconfig.json b/samples/charts/sparkline/normal-range/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/sparkline/normal-range/tsconfig.json +++ b/samples/charts/sparkline/normal-range/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/sparkline/normal-range/webpack.config.js b/samples/charts/sparkline/normal-range/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/sparkline/normal-range/webpack.config.js +++ b/samples/charts/sparkline/normal-range/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/sparkline/trendlines/sandbox.config.json b/samples/charts/sparkline/trendlines/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/sparkline/trendlines/sandbox.config.json +++ b/samples/charts/sparkline/trendlines/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/sparkline/trendlines/src/index.css b/samples/charts/sparkline/trendlines/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/sparkline/trendlines/src/index.css +++ b/samples/charts/sparkline/trendlines/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/sparkline/trendlines/src/index.ts b/samples/charts/sparkline/trendlines/src/index.ts index f7bfccb913..8609202583 100644 --- a/samples/charts/sparkline/trendlines/src/index.ts +++ b/samples/charts/sparkline/trendlines/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, SparklineDescr import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcSparklineComponent } from 'igniteui-webcomponents-charts'; import { SparklineMixedDataItem, SparklineMixedData } from './SparklineMixedData'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -35,6 +35,7 @@ export class Sample { chart.dataSource = this.sparklineMixedData; } this._bind(); + } private _sparklineMixedData: SparklineMixedData = null; diff --git a/samples/charts/sparkline/trendlines/tsconfig.json b/samples/charts/sparkline/trendlines/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/sparkline/trendlines/tsconfig.json +++ b/samples/charts/sparkline/trendlines/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/sparkline/trendlines/webpack.config.js b/samples/charts/sparkline/trendlines/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/sparkline/trendlines/webpack.config.js +++ b/samples/charts/sparkline/trendlines/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/sparkline/unknown-values/sandbox.config.json b/samples/charts/sparkline/unknown-values/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/sparkline/unknown-values/sandbox.config.json +++ b/samples/charts/sparkline/unknown-values/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/sparkline/unknown-values/src/index.css b/samples/charts/sparkline/unknown-values/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/sparkline/unknown-values/src/index.css +++ b/samples/charts/sparkline/unknown-values/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/sparkline/unknown-values/src/index.ts b/samples/charts/sparkline/unknown-values/src/index.ts index 9da3df7ace..18cd52e386 100644 --- a/samples/charts/sparkline/unknown-values/src/index.ts +++ b/samples/charts/sparkline/unknown-values/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, SparklineDescr import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcSparklineComponent } from 'igniteui-webcomponents-charts'; import { SparklineUnknownDataItem, SparklineUnknownData } from './SparklineUnknownData'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -35,6 +35,7 @@ export class Sample { chart.dataSource = this.sparklineUnknownData; } this._bind(); + } private _sparklineUnknownData: SparklineUnknownData = null; diff --git a/samples/charts/sparkline/unknown-values/tsconfig.json b/samples/charts/sparkline/unknown-values/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/sparkline/unknown-values/tsconfig.json +++ b/samples/charts/sparkline/unknown-values/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/sparkline/unknown-values/webpack.config.js b/samples/charts/sparkline/unknown-values/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/sparkline/unknown-values/webpack.config.js +++ b/samples/charts/sparkline/unknown-values/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/toolbar/actions-built-in-category-chart/sandbox.config.json b/samples/charts/toolbar/actions-built-in-category-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/sandbox.config.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/index.css b/samples/charts/toolbar/actions-built-in-category-chart/src/index.css index 0fe9368715..d2c1cccd43 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/index.css +++ b/samples/charts/toolbar/actions-built-in-category-chart/src/index.css @@ -1,2 +1,21 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.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/actions-built-in-category-chart/src/index.ts b/samples/charts/toolbar/actions-built-in-category-chart/src/index.ts index e09601d043..d0f1b6b040 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/src/index.ts +++ b/samples/charts/toolbar/actions-built-in-category-chart/src/index.ts @@ -3,9 +3,10 @@ import { IgcToolbarModule } from 'igniteui-webcomponents-layouts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { IgcToolbarComponent } from 'igniteui-webcomponents-layouts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -32,6 +33,7 @@ export class Sample { chart.legend = this.legend; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/toolbar/actions-built-in-category-chart/webpack.config.js b/samples/charts/toolbar/actions-built-in-category-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/webpack.config.js +++ b/samples/charts/toolbar/actions-built-in-category-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/toolbar/actions-built-in-data-chart/sandbox.config.json b/samples/charts/toolbar/actions-built-in-data-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/sandbox.config.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/toolbar/actions-built-in-data-chart/src/index.css b/samples/charts/toolbar/actions-built-in-data-chart/src/index.css index 0fe9368715..d2c1cccd43 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/src/index.css +++ b/samples/charts/toolbar/actions-built-in-data-chart/src/index.css @@ -1,2 +1,21 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.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/actions-built-in-data-chart/src/index.ts b/samples/charts/toolbar/actions-built-in-data-chart/src/index.ts index d709f2a636..dc77769bcb 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/src/index.ts +++ b/samples/charts/toolbar/actions-built-in-data-chart/src/index.ts @@ -3,9 +3,10 @@ import { IgcDataChartToolbarModule, IgcDataChartCoreModule, IgcDataChartCategory import { IgcToolbarComponent } from 'igniteui-webcomponents-layouts'; import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcLineSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcToolbarModule, @@ -54,6 +55,7 @@ export class Sample { lineSeries3.dataSource = this.countryRenewableElectricity; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/toolbar/actions-built-in-data-chart/webpack.config.js b/samples/charts/toolbar/actions-built-in-data-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/webpack.config.js +++ b/samples/charts/toolbar/actions-built-in-data-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/toolbar/custom-tool/sandbox.config.json b/samples/charts/toolbar/custom-tool/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/toolbar/custom-tool/sandbox.config.json +++ b/samples/charts/toolbar/custom-tool/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/toolbar/custom-tool/src/index.css b/samples/charts/toolbar/custom-tool/src/index.css index 0fe9368715..d2c1cccd43 100644 --- a/samples/charts/toolbar/custom-tool/src/index.css +++ b/samples/charts/toolbar/custom-tool/src/index.css @@ -1,2 +1,21 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.aboveContentSplit { + display: flex; + flex-direction: row; +} +.aboveContentLeftContainer { + margin-left: 1.25rem; + display: flex; + flex-grow: 1; + justify-content: flex-start; + align-items: flex-end; +} +.aboveContentRightContainer { + margin-right: 1.25rem; + display: flex; + flex-grow: 1; + justify-content: flex-end; + align-items: flex-end; +} diff --git a/samples/charts/toolbar/custom-tool/src/index.ts b/samples/charts/toolbar/custom-tool/src/index.ts index 59c069cb34..89ac6d283c 100644 --- a/samples/charts/toolbar/custom-tool/src/index.ts +++ b/samples/charts/toolbar/custom-tool/src/index.ts @@ -4,9 +4,10 @@ import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcompo import { IgcToolbarComponent } from 'igniteui-webcomponents-layouts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; import { IgcToolActionLabelComponent, IgcToolActionComponent, IgcToolCommandEventArgs } from 'igniteui-webcomponents-layouts'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -46,10 +47,12 @@ export class Sample { return this._countryRenewableElectricity; } + public toolbarCustomIconOnViewInit(): void { var toolbar = this.toolbar; const icon = ''; toolbar.registerIconFromText("CustomCollection", "CustomIcon", icon); + } } diff --git a/samples/charts/toolbar/custom-tool/tsconfig.json b/samples/charts/toolbar/custom-tool/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/toolbar/custom-tool/tsconfig.json +++ b/samples/charts/toolbar/custom-tool/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/toolbar/custom-tool/webpack.config.js b/samples/charts/toolbar/custom-tool/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/toolbar/custom-tool/webpack.config.js +++ b/samples/charts/toolbar/custom-tool/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/sandbox.config.json b/samples/charts/toolbar/layout-actions-for-data-chart/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/sandbox.config.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/src/index.css b/samples/charts/toolbar/layout-actions-for-data-chart/src/index.css index 0fe9368715..d2c1cccd43 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/index.css +++ b/samples/charts/toolbar/layout-actions-for-data-chart/src/index.css @@ -1,2 +1,21 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.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/layout-actions-for-data-chart/src/index.ts b/samples/charts/toolbar/layout-actions-for-data-chart/src/index.ts index 1af0dcb55f..dd4c785d56 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/src/index.ts +++ b/samples/charts/toolbar/layout-actions-for-data-chart/src/index.ts @@ -5,9 +5,10 @@ import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisCompon import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; import { IgcToolCommandEventArgs } from 'igniteui-webcomponents-layouts'; import { IgcSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcToolbarModule, @@ -63,6 +64,7 @@ export class Sample { lineSeries3.dataSource = this.countryRenewableElectricity; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; @@ -74,6 +76,7 @@ export class Sample { return this._countryRenewableElectricity; } + public toolbarToggleTooltip(sender: any, args: IgcToolCommandEventArgs): void { var target = this.chart; switch (args.command.commandId) 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 de23257dd8..a15284fdc2 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/webpack.config.js b/samples/charts/toolbar/layout-actions-for-data-chart/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/webpack.config.js +++ b/samples/charts/toolbar/layout-actions-for-data-chart/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/sandbox.config.json b/samples/charts/toolbar/layout-in-vertical-orientation/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/sandbox.config.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/src/index.css b/samples/charts/toolbar/layout-in-vertical-orientation/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/src/index.css +++ b/samples/charts/toolbar/layout-in-vertical-orientation/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/src/index.ts b/samples/charts/toolbar/layout-in-vertical-orientation/src/index.ts index 9451c5b6ca..a696c63d90 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/src/index.ts +++ b/samples/charts/toolbar/layout-in-vertical-orientation/src/index.ts @@ -3,9 +3,10 @@ import { IgcDataChartToolbarModule, IgcDataChartCoreModule, IgcDataChartCategory import { IgcToolbarComponent } from 'igniteui-webcomponents-layouts'; import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcLineSeriesComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcToolbarModule, @@ -42,6 +43,7 @@ export class Sample { lineSeries1.dataSource = this.countryRenewableElectricity; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json b/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/webpack.config.js b/samples/charts/toolbar/layout-in-vertical-orientation/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/webpack.config.js +++ b/samples/charts/toolbar/layout-in-vertical-orientation/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/toolbar/theming/sandbox.config.json b/samples/charts/toolbar/theming/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/toolbar/theming/sandbox.config.json +++ b/samples/charts/toolbar/theming/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/toolbar/theming/src/index.css b/samples/charts/toolbar/theming/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/toolbar/theming/src/index.css +++ b/samples/charts/toolbar/theming/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/toolbar/theming/src/index.ts b/samples/charts/toolbar/theming/src/index.ts index 4040359104..984ef3ecc5 100644 --- a/samples/charts/toolbar/theming/src/index.ts +++ b/samples/charts/toolbar/theming/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, ToolbarDescrip import { IgcPropertyEditorPanelComponent, IgcToolbarComponent } from 'igniteui-webcomponents-layouts'; import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcLineSeriesComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -52,6 +52,7 @@ export class Sample { lineSeries1.dataSource = this.countryRenewableElectricity; } this._bind(); + } private _countryRenewableElectricity: CountryRenewableElectricity = null; diff --git a/samples/charts/toolbar/theming/tsconfig.json b/samples/charts/toolbar/theming/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/toolbar/theming/tsconfig.json +++ b/samples/charts/toolbar/theming/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/toolbar/theming/webpack.config.js b/samples/charts/toolbar/theming/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/toolbar/theming/webpack.config.js +++ b/samples/charts/toolbar/theming/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/tree-map/highlighting-percent-based/sandbox.config.json b/samples/charts/tree-map/highlighting-percent-based/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/tree-map/highlighting-percent-based/sandbox.config.json +++ b/samples/charts/tree-map/highlighting-percent-based/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting-percent-based/src/index.css b/samples/charts/tree-map/highlighting-percent-based/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/tree-map/highlighting-percent-based/src/index.css +++ b/samples/charts/tree-map/highlighting-percent-based/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/tree-map/highlighting-percent-based/src/index.ts b/samples/charts/tree-map/highlighting-percent-based/src/index.ts index 337cb6cc02..cda2021509 100644 --- a/samples/charts/tree-map/highlighting-percent-based/src/index.ts +++ b/samples/charts/tree-map/highlighting-percent-based/src/index.ts @@ -2,9 +2,10 @@ import { IgcTreemapModule } from 'igniteui-webcomponents-charts'; import { ComponentRenderer, TreemapDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreemapComponent } from 'igniteui-webcomponents-charts'; import { CountryTopUrbanPopDataItem, CountryTopUrbanPopData } from './CountryTopUrbanPopData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcTreemapModule @@ -22,6 +23,7 @@ export class Sample { treemap.dataSource = this.countryTopUrbanPopData; } this._bind(); + } private _countryTopUrbanPopData: CountryTopUrbanPopData = null; diff --git a/samples/charts/tree-map/highlighting-percent-based/tsconfig.json b/samples/charts/tree-map/highlighting-percent-based/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/tree-map/highlighting-percent-based/tsconfig.json +++ b/samples/charts/tree-map/highlighting-percent-based/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/tree-map/highlighting-percent-based/webpack.config.js b/samples/charts/tree-map/highlighting-percent-based/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/tree-map/highlighting-percent-based/webpack.config.js +++ b/samples/charts/tree-map/highlighting-percent-based/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/tree-map/highlighting/sandbox.config.json b/samples/charts/tree-map/highlighting/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/tree-map/highlighting/sandbox.config.json +++ b/samples/charts/tree-map/highlighting/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/tree-map/highlighting/src/index.css b/samples/charts/tree-map/highlighting/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/tree-map/highlighting/src/index.css +++ b/samples/charts/tree-map/highlighting/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/tree-map/highlighting/src/index.ts b/samples/charts/tree-map/highlighting/src/index.ts index 92aba1717f..b98b95e226 100644 --- a/samples/charts/tree-map/highlighting/src/index.ts +++ b/samples/charts/tree-map/highlighting/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, TreemapDescrip import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcTreemapComponent } from 'igniteui-webcomponents-charts'; import { CountyHierarchicalDataItem, CountyHierarchicalData } from './CountyHierarchicalData'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -35,6 +35,7 @@ export class Sample { treemap.dataSource = this.countyHierarchicalData; } this._bind(); + } private _countyHierarchicalData: CountyHierarchicalData = null; diff --git a/samples/charts/tree-map/highlighting/tsconfig.json b/samples/charts/tree-map/highlighting/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/tree-map/highlighting/tsconfig.json +++ b/samples/charts/tree-map/highlighting/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/tree-map/highlighting/webpack.config.js b/samples/charts/tree-map/highlighting/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/tree-map/highlighting/webpack.config.js +++ b/samples/charts/tree-map/highlighting/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/tree-map/layout/sandbox.config.json b/samples/charts/tree-map/layout/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/tree-map/layout/sandbox.config.json +++ b/samples/charts/tree-map/layout/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/tree-map/layout/src/index.css b/samples/charts/tree-map/layout/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/tree-map/layout/src/index.css +++ b/samples/charts/tree-map/layout/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/tree-map/layout/src/index.ts b/samples/charts/tree-map/layout/src/index.ts index c309cde42d..6269db32e8 100644 --- a/samples/charts/tree-map/layout/src/index.ts +++ b/samples/charts/tree-map/layout/src/index.ts @@ -4,10 +4,10 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, TreemapDescrip import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcTreemapComponent } from 'igniteui-webcomponents-charts'; import { CountyHierarchicalDataItem, CountyHierarchicalData } from './CountyHierarchicalData'; + import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -41,6 +41,7 @@ export class Sample { treemap.dataSource = this.countyHierarchicalData; } this._bind(); + } private _countyHierarchicalData: CountyHierarchicalData = null; diff --git a/samples/charts/tree-map/layout/tsconfig.json b/samples/charts/tree-map/layout/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/tree-map/layout/tsconfig.json +++ b/samples/charts/tree-map/layout/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/tree-map/layout/webpack.config.js b/samples/charts/tree-map/layout/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/tree-map/layout/webpack.config.js +++ b/samples/charts/tree-map/layout/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/tree-map/overview/sandbox.config.json b/samples/charts/tree-map/overview/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/tree-map/overview/sandbox.config.json +++ b/samples/charts/tree-map/overview/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/tree-map/overview/src/index.css b/samples/charts/tree-map/overview/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/tree-map/overview/src/index.css +++ b/samples/charts/tree-map/overview/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/tree-map/overview/src/index.ts b/samples/charts/tree-map/overview/src/index.ts index ccf4b75473..2754280abc 100644 --- a/samples/charts/tree-map/overview/src/index.ts +++ b/samples/charts/tree-map/overview/src/index.ts @@ -1,9 +1,10 @@ import { IgcTreemapModule } from 'igniteui-webcomponents-charts'; import { IgcTreemapComponent } from 'igniteui-webcomponents-charts'; import { CountyHierarchicalDataItem, CountyHierarchicalData } from './CountyHierarchicalData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcTreemapModule @@ -21,6 +22,7 @@ export class Sample { treemap.dataSource = this.countyHierarchicalData; } this._bind(); + } private _countyHierarchicalData: CountyHierarchicalData = null; diff --git a/samples/charts/tree-map/overview/tsconfig.json b/samples/charts/tree-map/overview/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/tree-map/overview/tsconfig.json +++ b/samples/charts/tree-map/overview/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/tree-map/overview/webpack.config.js b/samples/charts/tree-map/overview/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/tree-map/overview/webpack.config.js +++ b/samples/charts/tree-map/overview/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/charts/tree-map/styling/sandbox.config.json b/samples/charts/tree-map/styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/charts/tree-map/styling/sandbox.config.json +++ b/samples/charts/tree-map/styling/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/charts/tree-map/styling/src/index.css b/samples/charts/tree-map/styling/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/charts/tree-map/styling/src/index.css +++ b/samples/charts/tree-map/styling/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/tree-map/styling/src/index.ts b/samples/charts/tree-map/styling/src/index.ts index eda4fe17e0..67476c1dba 100644 --- a/samples/charts/tree-map/styling/src/index.ts +++ b/samples/charts/tree-map/styling/src/index.ts @@ -1,9 +1,10 @@ import { IgcTreemapModule } from 'igniteui-webcomponents-charts'; import { IgcTreemapComponent, IgcTreemapNodeStyleMappingComponent } from 'igniteui-webcomponents-charts'; import { CountyHierarchicalDataItem, CountyHierarchicalData } from './CountyHierarchicalData'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcTreemapModule @@ -37,6 +38,7 @@ export class Sample { treemap.dataSource = this.countyHierarchicalData; } this._bind(); + } private _countyHierarchicalData: CountyHierarchicalData = null; diff --git a/samples/charts/tree-map/styling/tsconfig.json b/samples/charts/tree-map/styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/charts/tree-map/styling/tsconfig.json +++ b/samples/charts/tree-map/styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/charts/tree-map/styling/webpack.config.js b/samples/charts/tree-map/styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/charts/tree-map/styling/webpack.config.js +++ b/samples/charts/tree-map/styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/action-strip/sandbox.config.json b/samples/grids/grid/action-strip/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/action-strip/sandbox.config.json +++ b/samples/grids/grid/action-strip/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/action-strip/src/index.css b/samples/grids/grid/action-strip/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/action-strip/src/index.css +++ b/samples/grids/grid/action-strip/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/action-strip/src/index.ts b/samples/grids/grid/action-strip/src/index.ts index d5e80e3cff..46b8ac990d 100644 --- a/samples/grids/grid/action-strip/src/index.ts +++ b/samples/grids/grid/action-strip/src/index.ts @@ -3,11 +3,11 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent, IgcPinningConfig, RowPinningPosition, IgcActionStripComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; - +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule @@ -27,7 +27,6 @@ export class Sample { } return this._pinningConfig1; } - private actionStrip: IgcActionStripComponent private productName: IgcColumnComponent private unitPrice: IgcColumnComponent @@ -54,6 +53,7 @@ export class Sample { grid.pinning = this.pinningConfig1; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/action-strip/tsconfig.json b/samples/grids/grid/action-strip/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/action-strip/tsconfig.json +++ b/samples/grids/grid/action-strip/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/action-strip/webpack.config.js b/samples/grids/grid/action-strip/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/action-strip/webpack.config.js +++ b/samples/grids/grid/action-strip/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/advanced-filtering-options/sandbox.config.json b/samples/grids/grid/advanced-filtering-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/advanced-filtering-options/sandbox.config.json +++ b/samples/grids/grid/advanced-filtering-options/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/advanced-filtering-options/src/index.css b/samples/grids/grid/advanced-filtering-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/advanced-filtering-options/src/index.css +++ b/samples/grids/grid/advanced-filtering-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/advanced-filtering-options/src/index.ts b/samples/grids/grid/advanced-filtering-options/src/index.ts index 945ac3f54e..eda73fd819 100644 --- a/samples/grids/grid/advanced-filtering-options/src/index.ts +++ b/samples/grids/grid/advanced-filtering-options/src/index.ts @@ -4,10 +4,10 @@ import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-gri import NwindData from './NwindData.json'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -24,6 +24,7 @@ export class Sample { column1.bodyTemplate = this.webGridDiscontinuedCellTemplate; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/advanced-filtering-options/tsconfig.json b/samples/grids/grid/advanced-filtering-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/advanced-filtering-options/tsconfig.json +++ b/samples/grids/grid/advanced-filtering-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/advanced-filtering-options/webpack.config.js b/samples/grids/grid/advanced-filtering-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/advanced-filtering-options/webpack.config.js +++ b/samples/grids/grid/advanced-filtering-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/advanced-filtering-style/sandbox.config.json b/samples/grids/grid/advanced-filtering-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/advanced-filtering-style/sandbox.config.json +++ b/samples/grids/grid/advanced-filtering-style/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/advanced-filtering-style/src/index.css b/samples/grids/grid/advanced-filtering-style/src/index.css index 0fe9368715..397fba0990 100644 --- a/samples/grids/grid/advanced-filtering-style/src/index.css +++ b/samples/grids/grid/advanced-filtering-style/src/index.css @@ -1,2 +1,8 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-grid-filtering-row-background: #ffcd0f; + --ig-grid-filtering-background-or: #d83434; +} + diff --git a/samples/grids/grid/advanced-filtering-style/src/index.ts b/samples/grids/grid/advanced-filtering-style/src/index.ts index 945ac3f54e..eda73fd819 100644 --- a/samples/grids/grid/advanced-filtering-style/src/index.ts +++ b/samples/grids/grid/advanced-filtering-style/src/index.ts @@ -4,10 +4,10 @@ import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-gri import NwindData from './NwindData.json'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -24,6 +24,7 @@ export class Sample { column1.bodyTemplate = this.webGridDiscontinuedCellTemplate; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/advanced-filtering-style/tsconfig.json b/samples/grids/grid/advanced-filtering-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/advanced-filtering-style/tsconfig.json +++ b/samples/grids/grid/advanced-filtering-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/advanced-filtering-style/webpack.config.js b/samples/grids/grid/advanced-filtering-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/advanced-filtering-style/webpack.config.js +++ b/samples/grids/grid/advanced-filtering-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/binding-composite-data/sandbox.config.json b/samples/grids/grid/binding-composite-data/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/binding-composite-data/sandbox.config.json +++ b/samples/grids/grid/binding-composite-data/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/binding-composite-data/src/index.css b/samples/grids/grid/binding-composite-data/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/binding-composite-data/src/index.css +++ b/samples/grids/grid/binding-composite-data/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/binding-composite-data/src/index.ts b/samples/grids/grid/binding-composite-data/src/index.ts index 3093a73a11..ef5acf29f1 100644 --- a/samples/grids/grid/binding-composite-data/src/index.ts +++ b/samples/grids/grid/binding-composite-data/src/index.ts @@ -4,10 +4,10 @@ import { CustomersDataItem, CustomersData } from './CustomersData'; import { IgcPropertyEditorPropertyDescriptionButtonClickEventArgs } from 'igniteui-webcomponents-layouts'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; - defineAllComponents(); import "./index.css"; @@ -32,6 +32,7 @@ export class Sample { column2.inlineEditorTemplate = this.webGridCompositeAddressEditCellTemplate; } this._bind(); + } private _customersData: CustomersData = null; @@ -43,6 +44,7 @@ export class Sample { return this._customersData; } + public webGridCompositeContactCellTemplate = (ctx: IgcCellTemplateContext) => { var cell = ctx.cell as any; if (cell === undefined || cell.row === undefined || cell.row.data === undefined) { diff --git a/samples/grids/grid/binding-composite-data/tsconfig.json b/samples/grids/grid/binding-composite-data/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/binding-composite-data/tsconfig.json +++ b/samples/grids/grid/binding-composite-data/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/binding-composite-data/webpack.config.js b/samples/grids/grid/binding-composite-data/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/binding-composite-data/webpack.config.js +++ b/samples/grids/grid/binding-composite-data/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/binding-crud-data/sandbox.config.json b/samples/grids/grid/binding-crud-data/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/binding-crud-data/sandbox.config.json +++ b/samples/grids/grid/binding-crud-data/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/binding-crud-data/src/index.css b/samples/grids/grid/binding-crud-data/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/binding-crud-data/src/index.css +++ b/samples/grids/grid/binding-crud-data/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/binding-crud-data/src/index.ts b/samples/grids/grid/binding-crud-data/src/index.ts index cb69a7bd62..af9695c0ea 100644 --- a/samples/grids/grid/binding-crud-data/src/index.ts +++ b/samples/grids/grid/binding-crud-data/src/index.ts @@ -3,11 +3,11 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; - +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule @@ -35,6 +35,7 @@ export class Sample { grid.data = this.nwindData; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/binding-crud-data/tsconfig.json b/samples/grids/grid/binding-crud-data/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/binding-crud-data/tsconfig.json +++ b/samples/grids/grid/binding-crud-data/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/binding-crud-data/webpack.config.js b/samples/grids/grid/binding-crud-data/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/binding-crud-data/webpack.config.js +++ b/samples/grids/grid/binding-crud-data/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/binding-nested-data-1/sandbox.config.json b/samples/grids/grid/binding-nested-data-1/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/binding-nested-data-1/sandbox.config.json +++ b/samples/grids/grid/binding-nested-data-1/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/binding-nested-data-1/src/index.css b/samples/grids/grid/binding-nested-data-1/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/binding-nested-data-1/src/index.css +++ b/samples/grids/grid/binding-nested-data-1/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/binding-nested-data-1/src/index.ts b/samples/grids/grid/binding-nested-data-1/src/index.ts index 297e5f989d..21d40943ee 100644 --- a/samples/grids/grid/binding-nested-data-1/src/index.ts +++ b/samples/grids/grid/binding-nested-data-1/src/index.ts @@ -3,10 +3,10 @@ import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-gri import { EmployeesNestedDataItem, EmployeesNestedDataItem_EmployeesItem, EmployeesNestedData } from './EmployeesNestedData'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; - defineAllComponents(); import "./index.css"; @@ -26,6 +26,7 @@ export class Sample { column1.bodyTemplate = this.webGridNestedDataCellTemplate; } this._bind(); + } private _employeesNestedData: EmployeesNestedData = null; @@ -37,6 +38,7 @@ export class Sample { return this._employeesNestedData; } + public webGridNestedDataCellTemplate = (ctx: IgcCellTemplateContext) => { if (ctx.cell.value != null) { if (ctx.cell.value.length === 0) return html``; diff --git a/samples/grids/grid/binding-nested-data-1/tsconfig.json b/samples/grids/grid/binding-nested-data-1/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/binding-nested-data-1/tsconfig.json +++ b/samples/grids/grid/binding-nested-data-1/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/binding-nested-data-1/webpack.config.js b/samples/grids/grid/binding-nested-data-1/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/binding-nested-data-1/webpack.config.js +++ b/samples/grids/grid/binding-nested-data-1/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/cascading-combo/sandbox.config.json b/samples/grids/grid/cascading-combo/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/cascading-combo/sandbox.config.json +++ b/samples/grids/grid/cascading-combo/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/cascading-combo/src/index.css b/samples/grids/grid/cascading-combo/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/cascading-combo/src/index.css +++ b/samples/grids/grid/cascading-combo/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/cascading-combo/src/index.ts b/samples/grids/grid/cascading-combo/src/index.ts index 49cdd21dfe..daf09fa003 100644 --- a/samples/grids/grid/cascading-combo/src/index.ts +++ b/samples/grids/grid/cascading-combo/src/index.ts @@ -4,10 +4,10 @@ import { WorldCitiesAbove500KItem, WorldCitiesAbove500K } from './WorldCitiesAbo import { IgcComboComponent, IgcLinearProgressComponent } from 'igniteui-webcomponents'; import { IgcCellTemplateContext, IgcRenderFunction } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; - defineAllComponents(); import "./index.css"; @@ -35,6 +35,7 @@ export class Sample { column3.bodyTemplate = this.webGridCityDropDownTemplate; } this._bind(); + } private _worldCitiesAbove500K: WorldCitiesAbove500K = null; @@ -46,6 +47,7 @@ export class Sample { return this._worldCitiesAbove500K; } + public countryNames = [ 'United States', 'Japan', diff --git a/samples/grids/grid/cascading-combo/tsconfig.json b/samples/grids/grid/cascading-combo/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/cascading-combo/tsconfig.json +++ b/samples/grids/grid/cascading-combo/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/cascading-combo/webpack.config.js b/samples/grids/grid/cascading-combo/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/cascading-combo/webpack.config.js +++ b/samples/grids/grid/cascading-combo/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/cell-editing-sample/sandbox.config.json b/samples/grids/grid/cell-editing-sample/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/cell-editing-sample/sandbox.config.json +++ b/samples/grids/grid/cell-editing-sample/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/cell-editing-sample/src/index.css b/samples/grids/grid/cell-editing-sample/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/cell-editing-sample/src/index.css +++ b/samples/grids/grid/cell-editing-sample/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/cell-editing-sample/src/index.ts b/samples/grids/grid/cell-editing-sample/src/index.ts index baa124dd7a..313d95cbef 100644 --- a/samples/grids/grid/cell-editing-sample/src/index.ts +++ b/samples/grids/grid/cell-editing-sample/src/index.ts @@ -4,10 +4,10 @@ import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-gri import { RoleplayDataStatsItem, RoleplayDataStats } from './RoleplayDataStats'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; - defineAllComponents(); import "./index.css"; @@ -33,6 +33,7 @@ export class Sample { column3.inlineEditorTemplate = this.webGridCellEditCellTemplate; } this._bind(); + } private _roleplayDataStats: RoleplayDataStats = null; diff --git a/samples/grids/grid/cell-editing-sample/tsconfig.json b/samples/grids/grid/cell-editing-sample/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/cell-editing-sample/tsconfig.json +++ b/samples/grids/grid/cell-editing-sample/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/cell-editing-sample/webpack.config.js b/samples/grids/grid/cell-editing-sample/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/cell-editing-sample/webpack.config.js +++ b/samples/grids/grid/cell-editing-sample/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/cell-editing-styling/sandbox.config.json b/samples/grids/grid/cell-editing-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/cell-editing-styling/sandbox.config.json +++ b/samples/grids/grid/cell-editing-styling/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/cell-editing-styling/src/index.css b/samples/grids/grid/cell-editing-styling/src/index.css index 0fe9368715..aea51891e1 100644 --- a/samples/grids/grid/cell-editing-styling/src/index.css +++ b/samples/grids/grid/cell-editing-styling/src/index.css @@ -1,2 +1,13 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-size: var(--ig-size-medium); + } + + #grid { + --ig-grid-edit-mode-color: #FFA500; + --ig-grid-cell-active-border-color: #AAFF00; + --ig-grid-cell-editing-background: #ADD8E6; + } + diff --git a/samples/grids/grid/cell-editing-styling/src/index.ts b/samples/grids/grid/cell-editing-styling/src/index.ts index 87fef6fdbe..a8d57b898f 100644 --- a/samples/grids/grid/cell-editing-styling/src/index.ts +++ b/samples/grids/grid/cell-editing-styling/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridDescriptionModule, WebPaginatorDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { grid.data = this.nwindData; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/cell-editing-styling/tsconfig.json b/samples/grids/grid/cell-editing-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/cell-editing-styling/tsconfig.json +++ b/samples/grids/grid/cell-editing-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/cell-editing-styling/webpack.config.js b/samples/grids/grid/cell-editing-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/cell-editing-styling/webpack.config.js +++ b/samples/grids/grid/cell-editing-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/cell-selection-mode/sandbox.config.json b/samples/grids/grid/cell-selection-mode/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/cell-selection-mode/sandbox.config.json +++ b/samples/grids/grid/cell-selection-mode/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/cell-selection-mode/src/index.css b/samples/grids/grid/cell-selection-mode/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/cell-selection-mode/src/index.css +++ b/samples/grids/grid/cell-selection-mode/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/cell-selection-mode/src/index.ts b/samples/grids/grid/cell-selection-mode/src/index.ts index 71b3ae39d0..3fedfbddb8 100644 --- a/samples/grids/grid/cell-selection-mode/src/index.ts +++ b/samples/grids/grid/cell-selection-mode/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 NwindData from './NwindData.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,6 +35,7 @@ export class Sample { grid.data = this.nwindData; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/cell-selection-mode/tsconfig.json b/samples/grids/grid/cell-selection-mode/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/cell-selection-mode/tsconfig.json +++ b/samples/grids/grid/cell-selection-mode/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/cell-selection-mode/webpack.config.js b/samples/grids/grid/cell-selection-mode/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/cell-selection-mode/webpack.config.js +++ b/samples/grids/grid/cell-selection-mode/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/cell-selection-style/sandbox.config.json b/samples/grids/grid/cell-selection-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/cell-selection-style/sandbox.config.json +++ b/samples/grids/grid/cell-selection-style/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/cell-selection-style/src/index.css b/samples/grids/grid/cell-selection-style/src/index.css index 0fe9368715..85e1b336ac 100644 --- a/samples/grids/grid/cell-selection-style/src/index.css +++ b/samples/grids/grid/cell-selection-style/src/index.css @@ -1,2 +1,9 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --cell-selected-text-color: #FFFFFF; + --cell-active-border-color: #f2c43c; + --cell-selected-background: #0062a3; +} + diff --git a/samples/grids/grid/cell-selection-style/src/index.ts b/samples/grids/grid/cell-selection-style/src/index.ts index d11c648c6f..c114565657 100644 --- a/samples/grids/grid/cell-selection-style/src/index.ts +++ b/samples/grids/grid/cell-selection-style/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { CustomersDataItem, CustomersData } from './CustomersData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { grid.data = this.customersData; } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/cell-selection-style/tsconfig.json b/samples/grids/grid/cell-selection-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/cell-selection-style/tsconfig.json +++ b/samples/grids/grid/cell-selection-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/cell-selection-style/webpack.config.js b/samples/grids/grid/cell-selection-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/cell-selection-style/webpack.config.js +++ b/samples/grids/grid/cell-selection-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-auto-sizing/sandbox.config.json b/samples/grids/grid/column-auto-sizing/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-auto-sizing/sandbox.config.json +++ b/samples/grids/grid/column-auto-sizing/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-auto-sizing/src/index.css b/samples/grids/grid/column-auto-sizing/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/column-auto-sizing/src/index.css +++ b/samples/grids/grid/column-auto-sizing/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/column-auto-sizing/src/index.ts b/samples/grids/grid/column-auto-sizing/src/index.ts index d11c648c6f..c114565657 100644 --- a/samples/grids/grid/column-auto-sizing/src/index.ts +++ b/samples/grids/grid/column-auto-sizing/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { CustomersDataItem, CustomersData } from './CustomersData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { grid.data = this.customersData; } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/column-auto-sizing/tsconfig.json b/samples/grids/grid/column-auto-sizing/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-auto-sizing/tsconfig.json +++ b/samples/grids/grid/column-auto-sizing/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-auto-sizing/webpack.config.js b/samples/grids/grid/column-auto-sizing/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-auto-sizing/webpack.config.js +++ b/samples/grids/grid/column-auto-sizing/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-collapsible-groups/sandbox.config.json b/samples/grids/grid/column-collapsible-groups/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-collapsible-groups/sandbox.config.json +++ b/samples/grids/grid/column-collapsible-groups/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-collapsible-groups/src/index.css b/samples/grids/grid/column-collapsible-groups/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/column-collapsible-groups/src/index.css +++ b/samples/grids/grid/column-collapsible-groups/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/column-collapsible-groups/src/index.ts b/samples/grids/grid/column-collapsible-groups/src/index.ts index a1b802abe0..c58f1047ea 100644 --- a/samples/grids/grid/column-collapsible-groups/src/index.ts +++ b/samples/grids/grid/column-collapsible-groups/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { InvoicesDataItem, InvoicesData } from './InvoicesData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { grid.data = this.invoicesData; } this._bind(); + } private _invoicesData: InvoicesData = null; diff --git a/samples/grids/grid/column-collapsible-groups/tsconfig.json b/samples/grids/grid/column-collapsible-groups/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-collapsible-groups/tsconfig.json +++ b/samples/grids/grid/column-collapsible-groups/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-collapsible-groups/webpack.config.js b/samples/grids/grid/column-collapsible-groups/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-collapsible-groups/webpack.config.js +++ b/samples/grids/grid/column-collapsible-groups/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-data-types/sandbox.config.json b/samples/grids/grid/column-data-types/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-data-types/sandbox.config.json +++ b/samples/grids/grid/column-data-types/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-data-types/src/index.css b/samples/grids/grid/column-data-types/src/index.css index 0fe9368715..db87b63a60 100644 --- a/samples/grids/grid/column-data-types/src/index.css +++ b/samples/grids/grid/column-data-types/src/index.css @@ -1,2 +1,7 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-size: var(--ig-size-small); + } + diff --git a/samples/grids/grid/column-data-types/src/index.ts b/samples/grids/grid/column-data-types/src/index.ts index 9ea0fba33c..29576c437b 100644 --- a/samples/grids/grid/column-data-types/src/index.ts +++ b/samples/grids/grid/column-data-types/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteui-webcomponents-grids/grids'; import { InvoicesDataExtendedDates } from './InvoicesDataExtendedDates'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -22,7 +22,6 @@ export class Sample { } return this._columnPipeArgs1; } - private column2: IgcColumnComponent private _columnPipeArgs2: IgcColumnPipeArgs | null = null; public get columnPipeArgs2(): IgcColumnPipeArgs { @@ -36,7 +35,6 @@ export class Sample { } return this._columnPipeArgs2; } - private column3: IgcColumnComponent private _columnPipeArgs3: IgcColumnPipeArgs | null = null; public get columnPipeArgs3(): IgcColumnPipeArgs { @@ -49,7 +47,6 @@ export class Sample { } return this._columnPipeArgs3; } - private column4: IgcColumnComponent private _columnPipeArgs4: IgcColumnPipeArgs | null = null; public get columnPipeArgs4(): IgcColumnPipeArgs { @@ -63,7 +60,6 @@ export class Sample { } return this._columnPipeArgs4; } - private column5: IgcColumnComponent private _columnPipeArgs5: IgcColumnPipeArgs | null = null; public get columnPipeArgs5(): IgcColumnPipeArgs { @@ -77,7 +73,6 @@ export class Sample { } return this._columnPipeArgs5; } - private column6: IgcColumnComponent private _columnPipeArgs6: IgcColumnPipeArgs | null = null; public get columnPipeArgs6(): IgcColumnPipeArgs { @@ -91,7 +86,6 @@ export class Sample { } return this._columnPipeArgs6; } - private _bind: () => void; constructor() { @@ -113,6 +107,7 @@ export class Sample { column6.pipeArgs = this.columnPipeArgs6; } this._bind(); + } private _invoicesDataExtendedDates: InvoicesDataExtendedDates = null; diff --git a/samples/grids/grid/column-data-types/tsconfig.json b/samples/grids/grid/column-data-types/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-data-types/tsconfig.json +++ b/samples/grids/grid/column-data-types/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-data-types/webpack.config.js b/samples/grids/grid/column-data-types/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-data-types/webpack.config.js +++ b/samples/grids/grid/column-data-types/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-hiding-options/sandbox.config.json b/samples/grids/grid/column-hiding-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-hiding-options/sandbox.config.json +++ b/samples/grids/grid/column-hiding-options/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-hiding-options/src/index.css b/samples/grids/grid/column-hiding-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/column-hiding-options/src/index.css +++ b/samples/grids/grid/column-hiding-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/column-hiding-options/src/index.ts b/samples/grids/grid/column-hiding-options/src/index.ts index e022786cd4..f2b64236af 100644 --- a/samples/grids/grid/column-hiding-options/src/index.ts +++ b/samples/grids/grid/column-hiding-options/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import { CustomersDataItem, CustomersData } from './CustomersData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -39,6 +39,7 @@ export class Sample { grid.data = this.customersData; } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/column-hiding-options/tsconfig.json b/samples/grids/grid/column-hiding-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-hiding-options/tsconfig.json +++ b/samples/grids/grid/column-hiding-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-hiding-options/webpack.config.js b/samples/grids/grid/column-hiding-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-hiding-options/webpack.config.js +++ b/samples/grids/grid/column-hiding-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-hiding-toolbar-style/sandbox.config.json b/samples/grids/grid/column-hiding-toolbar-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/sandbox.config.json +++ b/samples/grids/grid/column-hiding-toolbar-style/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-hiding-toolbar-style/src/index.css b/samples/grids/grid/column-hiding-toolbar-style/src/index.css index 0fe9368715..fe0a4add53 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/src/index.css +++ b/samples/grids/grid/column-hiding-toolbar-style/src/index.css @@ -1,2 +1,26 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + .grid igc-grid-toolbar-actions, igx-column-actions { + --ig-column-actions-background-color: #292826; + --ig-column-actions-title-color: #ffcd0f; + --ig-checkbox-tick-color: #292826; + --ig-checkbox-label-color: #ffcd0f; + --ig-checkbox-empty-color: #ffcd0f; + --ig-checkbox-fill-color: #ffcd0f; + --ig-input-group-idle-text-color: white; + --ig-input-group-filled-text-color: #ffcd0f; + --ig-input-group-focused-text-color: #ffcd0f; + --ig-input-group-focused-border-color: #ffcd0f; + --ig-input-group-focused-secondary-color: #ffcd0f; + --igx-button-foreground: #292826; + --igx-button-background: #ffcd0f; + --igx-button-hover-background: #404040; + --igx-button-hover-foreground: #ffcd0f; + --igx-button-focus-background: #ffcd0f; + --igx-button-focus-foreground: black; + --igx-button-focus-visible-background: #ffcd0f; + --igx-button-focus-visible-foreground: black; + --igx-button-disabled-foreground: #ffcd0f; + } + diff --git a/samples/grids/grid/column-hiding-toolbar-style/src/index.ts b/samples/grids/grid/column-hiding-toolbar-style/src/index.ts index e022786cd4..f2b64236af 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/src/index.ts +++ b/samples/grids/grid/column-hiding-toolbar-style/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import { CustomersDataItem, CustomersData } from './CustomersData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -39,6 +39,7 @@ export class Sample { grid.data = this.customersData; } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/column-hiding-toolbar-style/tsconfig.json b/samples/grids/grid/column-hiding-toolbar-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/tsconfig.json +++ b/samples/grids/grid/column-hiding-toolbar-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-hiding-toolbar-style/webpack.config.js b/samples/grids/grid/column-hiding-toolbar-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/webpack.config.js +++ b/samples/grids/grid/column-hiding-toolbar-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-hiding-toolbar/sandbox.config.json b/samples/grids/grid/column-hiding-toolbar/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-hiding-toolbar/sandbox.config.json +++ b/samples/grids/grid/column-hiding-toolbar/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-hiding-toolbar/src/index.css b/samples/grids/grid/column-hiding-toolbar/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/column-hiding-toolbar/src/index.css +++ b/samples/grids/grid/column-hiding-toolbar/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/column-hiding-toolbar/src/index.ts b/samples/grids/grid/column-hiding-toolbar/src/index.ts index e022786cd4..f2b64236af 100644 --- a/samples/grids/grid/column-hiding-toolbar/src/index.ts +++ b/samples/grids/grid/column-hiding-toolbar/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import { CustomersDataItem, CustomersData } from './CustomersData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -39,6 +39,7 @@ export class Sample { grid.data = this.customersData; } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/column-hiding-toolbar/tsconfig.json b/samples/grids/grid/column-hiding-toolbar/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-hiding-toolbar/tsconfig.json +++ b/samples/grids/grid/column-hiding-toolbar/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-hiding-toolbar/webpack.config.js b/samples/grids/grid/column-hiding-toolbar/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-hiding-toolbar/webpack.config.js +++ b/samples/grids/grid/column-hiding-toolbar/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-moving-options/sandbox.config.json b/samples/grids/grid/column-moving-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-moving-options/sandbox.config.json +++ b/samples/grids/grid/column-moving-options/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-moving-options/src/index.css b/samples/grids/grid/column-moving-options/src/index.css index 0fe9368715..77958e8090 100644 --- a/samples/grids/grid/column-moving-options/src/index.css +++ b/samples/grids/grid/column-moving-options/src/index.css @@ -1,2 +1,26 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.cellAlignStyle { + text-align: right; + float:right; +} +.cellAlignStyle > span { + float:right; +} +.up { + color: green; +} +.down { + color: red; +} +.grid__wrapper { + padding: 16px; +} +.currency-badge-container { + width: 80px; + float: right; +} +.badge-left { + float: left; +} diff --git a/samples/grids/grid/column-moving-options/src/index.ts b/samples/grids/grid/column-moving-options/src/index.ts index c7827b8a9a..002ad91129 100644 --- a/samples/grids/grid/column-moving-options/src/index.ts +++ b/samples/grids/grid/column-moving-options/src/index.ts @@ -4,10 +4,10 @@ import { FinancialDataAllItem, FinancialDataAll } from './FinancialDataAll'; import { IgcColumnTemplateContext, IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; import { IgcBadgeComponent } from 'igniteui-webcomponents'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; - defineAllComponents(); import "./index.css"; @@ -30,7 +30,6 @@ export class Sample { } return this._columnPipeArgs1; } - private column4: IgcColumnComponent private _columnPipeArgs2: IgcColumnPipeArgs | null = null; public get columnPipeArgs2(): IgcColumnPipeArgs { @@ -44,7 +43,6 @@ export class Sample { } return this._columnPipeArgs2; } - private column5: IgcColumnComponent private _columnPipeArgs3: IgcColumnPipeArgs | null = null; public get columnPipeArgs3(): IgcColumnPipeArgs { @@ -58,7 +56,6 @@ export class Sample { } return this._columnPipeArgs3; } - private column6: IgcColumnComponent private column7: IgcColumnComponent private column8: IgcColumnComponent @@ -96,6 +93,7 @@ export class Sample { column9.headerTemplate = this.webGridPinHeaderTemplate; } this._bind(); + } private _financialDataAll: FinancialDataAll = null; @@ -107,6 +105,7 @@ export class Sample { return this._financialDataAll; } + public webGridPinHeaderTemplate = (ctx: IgcColumnTemplateContext) => { const column = (ctx as any).column; diff --git a/samples/grids/grid/column-moving-options/tsconfig.json b/samples/grids/grid/column-moving-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-moving-options/tsconfig.json +++ b/samples/grids/grid/column-moving-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-moving-options/webpack.config.js b/samples/grids/grid/column-moving-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-moving-options/webpack.config.js +++ b/samples/grids/grid/column-moving-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-moving-styles/sandbox.config.json b/samples/grids/grid/column-moving-styles/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-moving-styles/sandbox.config.json +++ b/samples/grids/grid/column-moving-styles/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-moving-styles/src/index.css b/samples/grids/grid/column-moving-styles/src/index.css index 0fe9368715..923fce7f0d 100644 --- a/samples/grids/grid/column-moving-styles/src/index.css +++ b/samples/grids/grid/column-moving-styles/src/index.css @@ -1,2 +1,33 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.cellAlignStyle { + text-align: right; + float:right; +} +.cellAlignStyle > span { + float:right; +} +.up { + color: green; +} +.down { + color: red; +} +.grid__wrapper { + padding: 16px; +} +.currency-badge-container { + width: 80px; + float: right; +} +.badge-left { + float: left; +} + +#grid { + --ig-grid-ghost-header-text-color: #f4d45c; + --ig-grid-ghost-header-background: #ad9d9d; + --ig-grid-ghost-header-icon-color: #f4d45c; +} + diff --git a/samples/grids/grid/column-moving-styles/src/index.ts b/samples/grids/grid/column-moving-styles/src/index.ts index c7827b8a9a..002ad91129 100644 --- a/samples/grids/grid/column-moving-styles/src/index.ts +++ b/samples/grids/grid/column-moving-styles/src/index.ts @@ -4,10 +4,10 @@ import { FinancialDataAllItem, FinancialDataAll } from './FinancialDataAll'; import { IgcColumnTemplateContext, IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; import { IgcBadgeComponent } from 'igniteui-webcomponents'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; - defineAllComponents(); import "./index.css"; @@ -30,7 +30,6 @@ export class Sample { } return this._columnPipeArgs1; } - private column4: IgcColumnComponent private _columnPipeArgs2: IgcColumnPipeArgs | null = null; public get columnPipeArgs2(): IgcColumnPipeArgs { @@ -44,7 +43,6 @@ export class Sample { } return this._columnPipeArgs2; } - private column5: IgcColumnComponent private _columnPipeArgs3: IgcColumnPipeArgs | null = null; public get columnPipeArgs3(): IgcColumnPipeArgs { @@ -58,7 +56,6 @@ export class Sample { } return this._columnPipeArgs3; } - private column6: IgcColumnComponent private column7: IgcColumnComponent private column8: IgcColumnComponent @@ -96,6 +93,7 @@ export class Sample { column9.headerTemplate = this.webGridPinHeaderTemplate; } this._bind(); + } private _financialDataAll: FinancialDataAll = null; @@ -107,6 +105,7 @@ export class Sample { return this._financialDataAll; } + public webGridPinHeaderTemplate = (ctx: IgcColumnTemplateContext) => { const column = (ctx as any).column; diff --git a/samples/grids/grid/column-moving-styles/tsconfig.json b/samples/grids/grid/column-moving-styles/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-moving-styles/tsconfig.json +++ b/samples/grids/grid/column-moving-styles/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-moving-styles/webpack.config.js b/samples/grids/grid/column-moving-styles/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-moving-styles/webpack.config.js +++ b/samples/grids/grid/column-moving-styles/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-pinning-options/sandbox.config.json b/samples/grids/grid/column-pinning-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-pinning-options/sandbox.config.json +++ b/samples/grids/grid/column-pinning-options/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-pinning-options/src/index.css b/samples/grids/grid/column-pinning-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/column-pinning-options/src/index.css +++ b/samples/grids/grid/column-pinning-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/column-pinning-options/src/index.ts b/samples/grids/grid/column-pinning-options/src/index.ts index 2e7379a0f7..b27fd7fd3c 100644 --- a/samples/grids/grid/column-pinning-options/src/index.ts +++ b/samples/grids/grid/column-pinning-options/src/index.ts @@ -3,10 +3,10 @@ import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-gri import { CustomersDataItem, CustomersData } from './CustomersData'; import { IgcColumnTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -47,6 +47,7 @@ export class Sample { column9.headerTemplate = this.webGridPinHeaderTemplate; } this._bind(); + } private _customersData: CustomersData = null; @@ -58,6 +59,7 @@ export class Sample { return this._customersData; } + public webGridPinHeaderTemplate = (ctx: IgcColumnTemplateContext) => { const column = (ctx as any).column; diff --git a/samples/grids/grid/column-pinning-options/tsconfig.json b/samples/grids/grid/column-pinning-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-pinning-options/tsconfig.json +++ b/samples/grids/grid/column-pinning-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-pinning-options/webpack.config.js b/samples/grids/grid/column-pinning-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-pinning-options/webpack.config.js +++ b/samples/grids/grid/column-pinning-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-pinning-right-side/sandbox.config.json b/samples/grids/grid/column-pinning-right-side/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-pinning-right-side/sandbox.config.json +++ b/samples/grids/grid/column-pinning-right-side/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-pinning-right-side/src/index.css b/samples/grids/grid/column-pinning-right-side/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/column-pinning-right-side/src/index.css +++ b/samples/grids/grid/column-pinning-right-side/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/column-pinning-right-side/src/index.ts b/samples/grids/grid/column-pinning-right-side/src/index.ts index f6b658b648..af169e4710 100644 --- a/samples/grids/grid/column-pinning-right-side/src/index.ts +++ b/samples/grids/grid/column-pinning-right-side/src/index.ts @@ -3,10 +3,10 @@ import { IgcGridComponent, IgcPinningConfig, ColumnPinningPosition, IgcColumnCom import { AthletesDataExtendedItem, AthletesDataExtended } from './AthletesDataExtended'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; - defineAllComponents(); import "./index.css"; @@ -25,7 +25,6 @@ export class Sample { } return this._pinningConfig1; } - private column1: IgcColumnComponent private column2: IgcColumnComponent private _bind: () => void; @@ -42,6 +41,7 @@ export class Sample { column2.bodyTemplate = this.webGridAvatarCellTemplate; } this._bind(); + } private _athletesDataExtended: AthletesDataExtended = null; @@ -53,6 +53,7 @@ export class Sample { return this._athletesDataExtended; } + public webGridImageCellTemplate = (ctx: IgcCellTemplateContext) => { return html`
{ 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', diff --git a/samples/grids/grid/column-pinning-styles/sandbox.config.json b/samples/grids/grid/column-pinning-styles/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-pinning-styles/sandbox.config.json +++ b/samples/grids/grid/column-pinning-styles/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-pinning-styles/src/index.css b/samples/grids/grid/column-pinning-styles/src/index.css index 0fe9368715..38c34c00bf 100644 --- a/samples/grids/grid/column-pinning-styles/src/index.css +++ b/samples/grids/grid/column-pinning-styles/src/index.css @@ -1,2 +1,10 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-grid-pinned-border-width: 5px; + --ig-grid-pinned-border-color: #FFCD0F; + --ig-grid-pinned-border-style: double; + --ig-grid-cell-active-border-color: #FFCD0F; +} + diff --git a/samples/grids/grid/column-pinning-styles/src/index.ts b/samples/grids/grid/column-pinning-styles/src/index.ts index d11c648c6f..c114565657 100644 --- a/samples/grids/grid/column-pinning-styles/src/index.ts +++ b/samples/grids/grid/column-pinning-styles/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { CustomersDataItem, CustomersData } from './CustomersData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { grid.data = this.customersData; } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/column-pinning-styles/tsconfig.json b/samples/grids/grid/column-pinning-styles/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-pinning-styles/tsconfig.json +++ b/samples/grids/grid/column-pinning-styles/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-pinning-styles/webpack.config.js b/samples/grids/grid/column-pinning-styles/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-pinning-styles/webpack.config.js +++ b/samples/grids/grid/column-pinning-styles/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-pinning/sandbox.config.json b/samples/grids/grid/column-pinning/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-pinning/sandbox.config.json +++ b/samples/grids/grid/column-pinning/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-pinning/src/index.css b/samples/grids/grid/column-pinning/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/column-pinning/src/index.css +++ b/samples/grids/grid/column-pinning/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/column-pinning/src/index.ts b/samples/grids/grid/column-pinning/src/index.ts index e8b7babf26..9478c6fd13 100644 --- a/samples/grids/grid/column-pinning/src/index.ts +++ b/samples/grids/grid/column-pinning/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import CustomersDataLocal from './CustomersDataLocal.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { grid.data = this.customersDataLocal; } this._bind(); + } private _customersDataLocal: any[] = CustomersDataLocal; diff --git a/samples/grids/grid/column-pinning/tsconfig.json b/samples/grids/grid/column-pinning/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-pinning/tsconfig.json +++ b/samples/grids/grid/column-pinning/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-pinning/webpack.config.js b/samples/grids/grid/column-pinning/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-pinning/webpack.config.js +++ b/samples/grids/grid/column-pinning/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-resize-styling/sandbox.config.json b/samples/grids/grid/column-resize-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-resize-styling/sandbox.config.json +++ b/samples/grids/grid/column-resize-styling/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-resize-styling/src/index.css b/samples/grids/grid/column-resize-styling/src/index.css index 0fe9368715..1203da6d95 100644 --- a/samples/grids/grid/column-resize-styling/src/index.css +++ b/samples/grids/grid/column-resize-styling/src/index.css @@ -1,2 +1,7 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-grid-resize-line-color: #f35b04; +} + diff --git a/samples/grids/grid/column-resize-styling/src/index.ts b/samples/grids/grid/column-resize-styling/src/index.ts index 4e09af215f..fa61408bf5 100644 --- a/samples/grids/grid/column-resize-styling/src/index.ts +++ b/samples/grids/grid/column-resize-styling/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { AthletesDataItem, AthletesData } from './AthletesData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { grid.data = this.athletesData; } this._bind(); + } private _athletesData: AthletesData = null; diff --git a/samples/grids/grid/column-resize-styling/tsconfig.json b/samples/grids/grid/column-resize-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-resize-styling/tsconfig.json +++ b/samples/grids/grid/column-resize-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-resize-styling/webpack.config.js b/samples/grids/grid/column-resize-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-resize-styling/webpack.config.js +++ b/samples/grids/grid/column-resize-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-resizing/sandbox.config.json b/samples/grids/grid/column-resizing/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-resizing/sandbox.config.json +++ b/samples/grids/grid/column-resizing/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-resizing/src/index.css b/samples/grids/grid/column-resizing/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/column-resizing/src/index.css +++ b/samples/grids/grid/column-resizing/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/column-resizing/src/index.ts b/samples/grids/grid/column-resizing/src/index.ts index 0af52866e0..0322d23f01 100644 --- a/samples/grids/grid/column-resizing/src/index.ts +++ b/samples/grids/grid/column-resizing/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import { CustomersDataItem, CustomersData } from './CustomersData'; import { IgcRowSelectionEventArgs } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -41,6 +41,7 @@ export class Sample { grid.addEventListener("columnResized", this.webGridColumnResized); } this._bind(); + } private _customersData: CustomersData = null; @@ -52,6 +53,7 @@ export class Sample { return this._customersData; } + public webGridColumnResized(args: CustomEvent): void { //var col = args.detail.column; //var pWidth = args.detail.prevWidth; diff --git a/samples/grids/grid/column-resizing/tsconfig.json b/samples/grids/grid/column-resizing/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-resizing/tsconfig.json +++ b/samples/grids/grid/column-resizing/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-resizing/webpack.config.js b/samples/grids/grid/column-resizing/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-resizing/webpack.config.js +++ b/samples/grids/grid/column-resizing/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-selection-group/sandbox.config.json b/samples/grids/grid/column-selection-group/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-selection-group/sandbox.config.json +++ b/samples/grids/grid/column-selection-group/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-selection-group/src/index.css b/samples/grids/grid/column-selection-group/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/column-selection-group/src/index.css +++ b/samples/grids/grid/column-selection-group/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/column-selection-group/src/index.ts b/samples/grids/grid/column-selection-group/src/index.ts index d11c648c6f..c114565657 100644 --- a/samples/grids/grid/column-selection-group/src/index.ts +++ b/samples/grids/grid/column-selection-group/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { CustomersDataItem, CustomersData } from './CustomersData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { grid.data = this.customersData; } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/column-selection-group/tsconfig.json b/samples/grids/grid/column-selection-group/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-selection-group/tsconfig.json +++ b/samples/grids/grid/column-selection-group/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-selection-group/webpack.config.js b/samples/grids/grid/column-selection-group/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-selection-group/webpack.config.js +++ b/samples/grids/grid/column-selection-group/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-selection-mode/sandbox.config.json b/samples/grids/grid/column-selection-mode/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-selection-mode/sandbox.config.json +++ b/samples/grids/grid/column-selection-mode/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-selection-mode/src/index.css b/samples/grids/grid/column-selection-mode/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/column-selection-mode/src/index.css +++ b/samples/grids/grid/column-selection-mode/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/column-selection-mode/src/index.ts b/samples/grids/grid/column-selection-mode/src/index.ts index 9a453794d6..c5edda1d58 100644 --- a/samples/grids/grid/column-selection-mode/src/index.ts +++ b/samples/grids/grid/column-selection-mode/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 { CustomersDataItem, CustomersData } from './CustomersData'; + 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,6 +35,7 @@ export class Sample { grid.data = this.customersData; } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/column-selection-mode/tsconfig.json b/samples/grids/grid/column-selection-mode/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-selection-mode/tsconfig.json +++ b/samples/grids/grid/column-selection-mode/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-selection-mode/webpack.config.js b/samples/grids/grid/column-selection-mode/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-selection-mode/webpack.config.js +++ b/samples/grids/grid/column-selection-mode/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-selection-styles/sandbox.config.json b/samples/grids/grid/column-selection-styles/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-selection-styles/sandbox.config.json +++ b/samples/grids/grid/column-selection-styles/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-selection-styles/src/index.css b/samples/grids/grid/column-selection-styles/src/index.css index 0fe9368715..d328109828 100644 --- a/samples/grids/grid/column-selection-styles/src/index.css +++ b/samples/grids/grid/column-selection-styles/src/index.css @@ -1,2 +1,13 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --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; +} + diff --git a/samples/grids/grid/column-selection-styles/src/index.ts b/samples/grids/grid/column-selection-styles/src/index.ts index d11c648c6f..c114565657 100644 --- a/samples/grids/grid/column-selection-styles/src/index.ts +++ b/samples/grids/grid/column-selection-styles/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { CustomersDataItem, CustomersData } from './CustomersData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { grid.data = this.customersData; } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/column-selection-styles/tsconfig.json b/samples/grids/grid/column-selection-styles/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-selection-styles/tsconfig.json +++ b/samples/grids/grid/column-selection-styles/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-selection-styles/webpack.config.js b/samples/grids/grid/column-selection-styles/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-selection-styles/webpack.config.js +++ b/samples/grids/grid/column-selection-styles/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-sorting-indicators/sandbox.config.json b/samples/grids/grid/column-sorting-indicators/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-sorting-indicators/sandbox.config.json +++ b/samples/grids/grid/column-sorting-indicators/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-sorting-indicators/src/index.css b/samples/grids/grid/column-sorting-indicators/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/column-sorting-indicators/src/index.css +++ b/samples/grids/grid/column-sorting-indicators/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/column-sorting-indicators/src/index.ts b/samples/grids/grid/column-sorting-indicators/src/index.ts index ef1e412876..4d8bfd0119 100644 --- a/samples/grids/grid/column-sorting-indicators/src/index.ts +++ b/samples/grids/grid/column-sorting-indicators/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent, IgcSortingExpression, SortingDirection } from 'igniteui-webcomponents-grids/grids'; import { FinancialDataAllItem, FinancialDataAll } from './FinancialDataAll'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -54,7 +54,6 @@ export class Sample { } return this._sortingExpression1; } - private _bind: () => void; constructor() { @@ -65,6 +64,7 @@ export class Sample { grid.sortingExpressions = this.sortingExpression1; } this._bind(); + } private _financialDataAll: FinancialDataAll = null; diff --git a/samples/grids/grid/column-sorting-indicators/tsconfig.json b/samples/grids/grid/column-sorting-indicators/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-sorting-indicators/tsconfig.json +++ b/samples/grids/grid/column-sorting-indicators/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-sorting-indicators/webpack.config.js b/samples/grids/grid/column-sorting-indicators/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-sorting-indicators/webpack.config.js +++ b/samples/grids/grid/column-sorting-indicators/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-sorting-options/sandbox.config.json b/samples/grids/grid/column-sorting-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-sorting-options/sandbox.config.json +++ b/samples/grids/grid/column-sorting-options/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-sorting-options/src/index.css b/samples/grids/grid/column-sorting-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/column-sorting-options/src/index.css +++ b/samples/grids/grid/column-sorting-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/column-sorting-options/src/index.ts b/samples/grids/grid/column-sorting-options/src/index.ts index 0efda97a2c..bd6b8b525f 100644 --- a/samples/grids/grid/column-sorting-options/src/index.ts +++ b/samples/grids/grid/column-sorting-options/src/index.ts @@ -5,11 +5,11 @@ import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionCo import { IgcGridComponent, IgcSortingExpression, SortingDirection, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteui-webcomponents-grids/grids'; import { ProductSalesItem, ProductSales } from './ProductSales'; 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(); import "./index.css"; @@ -40,7 +40,6 @@ export class Sample { } return this._sortingExpression1; } - private column1: IgcColumnComponent private _columnPipeArgs1: IgcColumnPipeArgs | null = null; public get columnPipeArgs1(): IgcColumnPipeArgs { @@ -54,7 +53,6 @@ export class Sample { } return this._columnPipeArgs1; } - private _bind: () => void; constructor() { @@ -77,6 +75,7 @@ export class Sample { column1.pipeArgs = this.columnPipeArgs1; } this._bind(); + } private _productSales: ProductSales = null; diff --git a/samples/grids/grid/column-sorting-options/tsconfig.json b/samples/grids/grid/column-sorting-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-sorting-options/tsconfig.json +++ b/samples/grids/grid/column-sorting-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-sorting-options/webpack.config.js b/samples/grids/grid/column-sorting-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-sorting-options/webpack.config.js +++ b/samples/grids/grid/column-sorting-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/column-sorting-style/sandbox.config.json b/samples/grids/grid/column-sorting-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/column-sorting-style/sandbox.config.json +++ b/samples/grids/grid/column-sorting-style/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/column-sorting-style/src/index.css b/samples/grids/grid/column-sorting-style/src/index.css index 0fe9368715..4c1b0d1952 100644 --- a/samples/grids/grid/column-sorting-style/src/index.css +++ b/samples/grids/grid/column-sorting-style/src/index.css @@ -1,2 +1,8 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-grid-sorted-header-icon-color: #ffb06a; + --ig-grid-sortable-header-icon-hover-color: black; +} + diff --git a/samples/grids/grid/column-sorting-style/src/index.ts b/samples/grids/grid/column-sorting-style/src/index.ts index e3e3862ddb..8dbd971400 100644 --- a/samples/grids/grid/column-sorting-style/src/index.ts +++ b/samples/grids/grid/column-sorting-style/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent, IgcSortingExpression, SortingDirection, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteui-webcomponents-grids/grids'; import { ProductSalesItem, ProductSales } from './ProductSales'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -25,7 +25,6 @@ export class Sample { } return this._sortingExpression1; } - private column1: IgcColumnComponent private _columnPipeArgs1: IgcColumnPipeArgs | null = null; public get columnPipeArgs1(): IgcColumnPipeArgs { @@ -39,7 +38,6 @@ export class Sample { } return this._columnPipeArgs1; } - private _bind: () => void; constructor() { @@ -52,6 +50,7 @@ export class Sample { column1.pipeArgs = this.columnPipeArgs1; } this._bind(); + } private _productSales: ProductSales = null; diff --git a/samples/grids/grid/column-sorting-style/tsconfig.json b/samples/grids/grid/column-sorting-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/column-sorting-style/tsconfig.json +++ b/samples/grids/grid/column-sorting-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/column-sorting-style/webpack.config.js b/samples/grids/grid/column-sorting-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/column-sorting-style/webpack.config.js +++ b/samples/grids/grid/column-sorting-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/conditional-cell-style-1/sandbox.config.json b/samples/grids/grid/conditional-cell-style-1/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/conditional-cell-style-1/sandbox.config.json +++ b/samples/grids/grid/conditional-cell-style-1/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/conditional-cell-style-1/src/index.css b/samples/grids/grid/conditional-cell-style-1/src/index.css index 0fe9368715..d07f385bc0 100644 --- a/samples/grids/grid/conditional-cell-style-1/src/index.css +++ b/samples/grids/grid/conditional-cell-style-1/src/index.css @@ -1,2 +1,15 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.upFont { + color: green !important; +} + +.downFont { + color: red !important; +} + +.topSpeed { + color: royalblue !important; +} + diff --git a/samples/grids/grid/conditional-cell-style-1/src/index.ts b/samples/grids/grid/conditional-cell-style-1/src/index.ts index f8f9d9d4e3..d31a2e34f9 100644 --- a/samples/grids/grid/conditional-cell-style-1/src/index.ts +++ b/samples/grids/grid/conditional-cell-style-1/src/index.ts @@ -4,11 +4,11 @@ import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-gri import { AthletesDataItem, AthletesData } from './AthletesData'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; - +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule @@ -35,6 +35,7 @@ export class Sample { column3.bodyTemplate = this.webGridImageCellTemplate; } this._bind(); + } private _athletesData: AthletesData = null; @@ -46,6 +47,7 @@ export class Sample { return this._athletesData; } + public webGridBeatsPerMinuteCellClassesHandler = { upFont: (rowData: any, columnKey: any): boolean => rowData[columnKey] > 95, downFont: (rowData: any, columnKey: any): boolean => rowData[columnKey] <= 95 diff --git a/samples/grids/grid/conditional-cell-style-1/tsconfig.json b/samples/grids/grid/conditional-cell-style-1/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/conditional-cell-style-1/tsconfig.json +++ b/samples/grids/grid/conditional-cell-style-1/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/conditional-cell-style-1/webpack.config.js b/samples/grids/grid/conditional-cell-style-1/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/conditional-cell-style-1/webpack.config.js +++ b/samples/grids/grid/conditional-cell-style-1/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/conditional-cell-style-2/sandbox.config.json b/samples/grids/grid/conditional-cell-style-2/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/conditional-cell-style-2/sandbox.config.json +++ b/samples/grids/grid/conditional-cell-style-2/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/conditional-cell-style-2/src/index.css b/samples/grids/grid/conditional-cell-style-2/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/conditional-cell-style-2/src/index.css +++ b/samples/grids/grid/conditional-cell-style-2/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/conditional-cell-style-2/src/index.ts b/samples/grids/grid/conditional-cell-style-2/src/index.ts index 08b8d58ff7..2a513e3466 100644 --- a/samples/grids/grid/conditional-cell-style-2/src/index.ts +++ b/samples/grids/grid/conditional-cell-style-2/src/index.ts @@ -4,10 +4,10 @@ import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-gri import { AthletesDataItem, AthletesData } from './AthletesData'; import { IgcPropertyEditorPropertyDescriptionButtonClickEventArgs } from 'igniteui-webcomponents-layouts'; import { IgcRowType } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -36,6 +36,7 @@ export class Sample { column5.cellStyles = this.webGridCellStylesHandler; } this._bind(); + } private _athletesData: AthletesData = null; diff --git a/samples/grids/grid/conditional-cell-style-2/tsconfig.json b/samples/grids/grid/conditional-cell-style-2/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/conditional-cell-style-2/tsconfig.json +++ b/samples/grids/grid/conditional-cell-style-2/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/conditional-cell-style-2/webpack.config.js b/samples/grids/grid/conditional-cell-style-2/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/conditional-cell-style-2/webpack.config.js +++ b/samples/grids/grid/conditional-cell-style-2/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/conditional-row-selectors/sandbox.config.json b/samples/grids/grid/conditional-row-selectors/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/conditional-row-selectors/sandbox.config.json +++ b/samples/grids/grid/conditional-row-selectors/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/conditional-row-selectors/src/index.css b/samples/grids/grid/conditional-row-selectors/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/conditional-row-selectors/src/index.css +++ b/samples/grids/grid/conditional-row-selectors/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/conditional-row-selectors/src/index.ts b/samples/grids/grid/conditional-row-selectors/src/index.ts index cda11ea2f3..141e4954b7 100644 --- a/samples/grids/grid/conditional-row-selectors/src/index.ts +++ b/samples/grids/grid/conditional-row-selectors/src/index.ts @@ -3,10 +3,10 @@ import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcompone import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { CustomersDataItem, CustomersData } from './CustomersData'; import { IgcRowSelectionEventArgs } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -22,6 +22,7 @@ export class Sample { grid.addEventListener("rowSelectionChanging", this.webGridRowSelectionConditional); } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/conditional-row-selectors/tsconfig.json b/samples/grids/grid/conditional-row-selectors/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/conditional-row-selectors/tsconfig.json +++ b/samples/grids/grid/conditional-row-selectors/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/conditional-row-selectors/webpack.config.js b/samples/grids/grid/conditional-row-selectors/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/conditional-row-selectors/webpack.config.js +++ b/samples/grids/grid/conditional-row-selectors/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/data-batch-editing-actions/sandbox.config.json b/samples/grids/grid/data-batch-editing-actions/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/data-batch-editing-actions/sandbox.config.json +++ b/samples/grids/grid/data-batch-editing-actions/sandbox.config.json @@ -3,5 +3,4 @@ "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-batch-editing-actions/src/index.css b/samples/grids/grid/data-batch-editing-actions/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/data-batch-editing-actions/src/index.css +++ b/samples/grids/grid/data-batch-editing-actions/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/data-batch-editing-actions/src/index.ts b/samples/grids/grid/data-batch-editing-actions/src/index.ts index 160c7a792a..448de571f5 100644 --- a/samples/grids/grid/data-batch-editing-actions/src/index.ts +++ b/samples/grids/grid/data-batch-editing-actions/src/index.ts @@ -8,11 +8,11 @@ import { IgcPropertyEditorPropertyDescriptionButtonClickEventArgs } from 'ignite import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; import { IgcButtonComponent } from 'igniteui-webcomponents'; + 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"; @@ -76,6 +76,7 @@ export class Sample { column1.bodyTemplate = this.webGridDeleteCellTemplate; } this._bind(); + } private _nwindData: any[] = NwindData; @@ -130,6 +131,7 @@ export class Sample { var grid = this.grid; //grid.endEdit(true); //grid.transactions.undo(); + } public webGridRedo(sender: any, args: IgcPropertyEditorPropertyDescriptionButtonClickEventArgs): void { @@ -139,6 +141,7 @@ export class Sample { //grid.endEdit(true); //grid.transactions.redo(); + } public webGridCommit(sender: any, args: IgcPropertyEditorPropertyDescriptionButtonClickEventArgs): void { diff --git a/samples/grids/grid/data-batch-editing-actions/tsconfig.json b/samples/grids/grid/data-batch-editing-actions/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/data-batch-editing-actions/tsconfig.json +++ b/samples/grids/grid/data-batch-editing-actions/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/data-batch-editing-actions/webpack.config.js b/samples/grids/grid/data-batch-editing-actions/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/data-batch-editing-actions/webpack.config.js +++ b/samples/grids/grid/data-batch-editing-actions/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/data-performance-virtualization/sandbox.config.json b/samples/grids/grid/data-performance-virtualization/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/data-performance-virtualization/sandbox.config.json +++ b/samples/grids/grid/data-performance-virtualization/sandbox.config.json @@ -3,5 +3,4 @@ "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-performance-virtualization/src/index.css b/samples/grids/grid/data-performance-virtualization/src/index.css index 0fe9368715..77958e8090 100644 --- a/samples/grids/grid/data-performance-virtualization/src/index.css +++ b/samples/grids/grid/data-performance-virtualization/src/index.css @@ -1,2 +1,26 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.cellAlignStyle { + text-align: right; + float:right; +} +.cellAlignStyle > span { + float:right; +} +.up { + color: green; +} +.down { + color: red; +} +.grid__wrapper { + padding: 16px; +} +.currency-badge-container { + width: 80px; + float: right; +} +.badge-left { + float: left; +} diff --git a/samples/grids/grid/data-performance-virtualization/src/index.ts b/samples/grids/grid/data-performance-virtualization/src/index.ts index 6b2db7e046..ee68a79c12 100644 --- a/samples/grids/grid/data-performance-virtualization/src/index.ts +++ b/samples/grids/grid/data-performance-virtualization/src/index.ts @@ -4,10 +4,10 @@ import { FinancialDataAllItem, FinancialDataAll } from './FinancialDataAll'; import { IgcBadgeComponent } from 'igniteui-webcomponents'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; - defineAllComponents(); import "./index.css"; @@ -33,6 +33,7 @@ export class Sample { column3.bodyTemplate = this.webGridCurrencyCellTemplate; } this._bind(); + } private _financialDataAll: FinancialDataAll = null; @@ -44,6 +45,7 @@ export class Sample { return this._financialDataAll; } + public webGridCurrencyCellTemplate = (ctx: IgcCellTemplateContext) => { if (ctx.cell.value > 0) { return html`
{ 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', diff --git a/samples/grids/grid/data-summary-options/sandbox.config.json b/samples/grids/grid/data-summary-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/data-summary-options/sandbox.config.json +++ b/samples/grids/grid/data-summary-options/sandbox.config.json @@ -3,5 +3,4 @@ "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-summary-options/src/index.css b/samples/grids/grid/data-summary-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/data-summary-options/src/index.css +++ b/samples/grids/grid/data-summary-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/data-summary-options/src/index.ts b/samples/grids/grid/data-summary-options/src/index.ts index 762578fc41..ed893717d6 100644 --- a/samples/grids/grid/data-summary-options/src/index.ts +++ b/samples/grids/grid/data-summary-options/src/index.ts @@ -3,10 +3,10 @@ import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcompone import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; import { IgcSummaryResult } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -34,6 +34,7 @@ export class Sample { grid.addEventListener("columnInit", this.webGridCustomSummary); } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/data-summary-options/tsconfig.json b/samples/grids/grid/data-summary-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/data-summary-options/tsconfig.json +++ b/samples/grids/grid/data-summary-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/data-summary-options/webpack.config.js b/samples/grids/grid/data-summary-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/data-summary-options/webpack.config.js +++ b/samples/grids/grid/data-summary-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/data-summary-template/sandbox.config.json b/samples/grids/grid/data-summary-template/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/data-summary-template/sandbox.config.json +++ b/samples/grids/grid/data-summary-template/sandbox.config.json @@ -3,5 +3,4 @@ "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-summary-template/src/index.css b/samples/grids/grid/data-summary-template/src/index.css index 0fe9368715..96988782c3 100644 --- a/samples/grids/grid/data-summary-template/src/index.css +++ b/samples/grids/grid/data-summary-template/src/index.css @@ -1,2 +1,43 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.summary-temp { + display: flex; + flex-direction: column; + margin: 0 1px; + font-size: 14px; + line-height: 24px; + height: 100%; + overflow-y: auto; + overflow-x: hidden; + > * { + padding: 8px 0; + line-height: 18px; + border-bottom: 1px dashed hsla(var(--igx-gray-400)); + &:last-child { + border-bottom: none; + } + } +} +.summary-temp span { + display: flex; + flex-wrap: wrap; + align-items: center; + gap: 4px; + justify-content: space-between; + color: hsla(var(--ig-gray-900)); +} +.summary-temp span span { + user-select: all; + max-width: 300px; + padding-right: 8px; +} +.summary-temp span strong { + font-size: 12px; + text-transform: uppercase; + min-width: 70px; + justify-self: flex-start; + text-align: left; + color: hsla(var(--ig-secondary-600)); + user-select: none; +} diff --git a/samples/grids/grid/data-summary-template/src/index.ts b/samples/grids/grid/data-summary-template/src/index.ts index 908f1fd98d..2348de082b 100644 --- a/samples/grids/grid/data-summary-template/src/index.ts +++ b/samples/grids/grid/data-summary-template/src/index.ts @@ -7,11 +7,11 @@ import NwindData from './NwindData.json'; import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } from 'igniteui-webcomponents-layouts'; import { IgcSummaryResult, IgcSummaryTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -52,6 +52,7 @@ export class Sample { column2.summaryTemplate = this.webGridOrderDateSummaryTemplate; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/data-summary-template/tsconfig.json b/samples/grids/grid/data-summary-template/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/data-summary-template/tsconfig.json +++ b/samples/grids/grid/data-summary-template/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/data-summary-template/webpack.config.js b/samples/grids/grid/data-summary-template/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/data-summary-template/webpack.config.js +++ b/samples/grids/grid/data-summary-template/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/data-validation-style/sandbox.config.json b/samples/grids/grid/data-validation-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/data-validation-style/sandbox.config.json +++ b/samples/grids/grid/data-validation-style/sandbox.config.json @@ -3,5 +3,4 @@ "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-validation-style/src/index.css b/samples/grids/grid/data-validation-style/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/data-validation-style/src/index.css +++ b/samples/grids/grid/data-validation-style/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/data-validation-style/src/index.ts b/samples/grids/grid/data-validation-style/src/index.ts index a8d87a38f5..dd2ec7e818 100644 --- a/samples/grids/grid/data-validation-style/src/index.ts +++ b/samples/grids/grid/data-validation-style/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { grid1.data = this.nwindData; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/data-validation-style/tsconfig.json b/samples/grids/grid/data-validation-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/data-validation-style/tsconfig.json +++ b/samples/grids/grid/data-validation-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/data-validation-style/webpack.config.js b/samples/grids/grid/data-validation-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/data-validation-style/webpack.config.js +++ b/samples/grids/grid/data-validation-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/data-validator-service-cross-field/sandbox.config.json b/samples/grids/grid/data-validator-service-cross-field/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/data-validator-service-cross-field/sandbox.config.json +++ b/samples/grids/grid/data-validator-service-cross-field/sandbox.config.json @@ -3,5 +3,4 @@ "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-validator-service-cross-field/src/index.css b/samples/grids/grid/data-validator-service-cross-field/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/data-validator-service-cross-field/src/index.css +++ b/samples/grids/grid/data-validator-service-cross-field/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/data-validator-service-cross-field/src/index.ts b/samples/grids/grid/data-validator-service-cross-field/src/index.ts index 7f13a6aecd..3c80bd88a5 100644 --- a/samples/grids/grid/data-validator-service-cross-field/src/index.ts +++ b/samples/grids/grid/data-validator-service-cross-field/src/index.ts @@ -3,11 +3,11 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; - +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule @@ -45,6 +45,7 @@ export class Sample { grid.data = this.nwindData; } this._bind(); + } private _nwindData: any[] = NwindData; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/data-validator-service-cross-field/tsconfig.json +++ b/samples/grids/grid/data-validator-service-cross-field/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/data-validator-service-cross-field/webpack.config.js b/samples/grids/grid/data-validator-service-cross-field/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/data-validator-service-cross-field/webpack.config.js +++ b/samples/grids/grid/data-validator-service-cross-field/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/data-validator-service-extended/sandbox.config.json b/samples/grids/grid/data-validator-service-extended/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/data-validator-service-extended/sandbox.config.json +++ b/samples/grids/grid/data-validator-service-extended/sandbox.config.json @@ -3,5 +3,4 @@ "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-validator-service-extended/src/index.css b/samples/grids/grid/data-validator-service-extended/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/data-validator-service-extended/src/index.css +++ b/samples/grids/grid/data-validator-service-extended/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/data-validator-service-extended/src/index.ts b/samples/grids/grid/data-validator-service-extended/src/index.ts index 6652dd266e..7ab2b5deb3 100644 --- a/samples/grids/grid/data-validator-service-extended/src/index.ts +++ b/samples/grids/grid/data-validator-service-extended/src/index.ts @@ -5,11 +5,11 @@ import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionCo import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; 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(); import "./index.css"; @@ -66,6 +66,7 @@ export class Sample { grid.data = this.nwindData; } this._bind(); + } private _nwindData: any[] = NwindData; @@ -90,6 +91,7 @@ export class Sample { var grid = this.grid; //grid.endEdit(true); //grid.transactions.undo(); + } public webGridRedo(sender: any, args: IgcPropertyEditorPropertyDescriptionButtonClickEventArgs): void { @@ -99,6 +101,7 @@ export class Sample { //grid.endEdit(true); //grid.transactions.redo(); + } public webGridCommit(sender: any, args: IgcPropertyEditorPropertyDescriptionButtonClickEventArgs): void { diff --git a/samples/grids/grid/data-validator-service-extended/tsconfig.json b/samples/grids/grid/data-validator-service-extended/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/data-validator-service-extended/tsconfig.json +++ b/samples/grids/grid/data-validator-service-extended/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/data-validator-service-extended/webpack.config.js b/samples/grids/grid/data-validator-service-extended/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/data-validator-service-extended/webpack.config.js +++ b/samples/grids/grid/data-validator-service-extended/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/data-validator-service/sandbox.config.json b/samples/grids/grid/data-validator-service/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/data-validator-service/sandbox.config.json +++ b/samples/grids/grid/data-validator-service/sandbox.config.json @@ -3,5 +3,4 @@ "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-validator-service/src/index.css b/samples/grids/grid/data-validator-service/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/data-validator-service/src/index.css +++ b/samples/grids/grid/data-validator-service/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/data-validator-service/src/index.ts b/samples/grids/grid/data-validator-service/src/index.ts index 343ca2899e..c1b2be974d 100644 --- a/samples/grids/grid/data-validator-service/src/index.ts +++ b/samples/grids/grid/data-validator-service/src/index.ts @@ -6,11 +6,11 @@ import { IgcGridComponent, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteu import { EmployeesDataItem, EmployeesData } from './EmployeesData'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -41,7 +41,6 @@ export class Sample { } return this._columnPipeArgs1; } - private lastActivity: IgcColumnComponent private estimatedSales: IgcColumnComponent private dealsLost: IgcColumnComponent @@ -73,6 +72,7 @@ export class Sample { createdOn.pipeArgs = this.columnPipeArgs1; } this._bind(); + } private _employeesData: EmployeesData = null; diff --git a/samples/grids/grid/data-validator-service/tsconfig.json b/samples/grids/grid/data-validator-service/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/data-validator-service/tsconfig.json +++ b/samples/grids/grid/data-validator-service/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/data-validator-service/webpack.config.js b/samples/grids/grid/data-validator-service/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/data-validator-service/webpack.config.js +++ b/samples/grids/grid/data-validator-service/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/editing-columns/sandbox.config.json b/samples/grids/grid/editing-columns/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/editing-columns/sandbox.config.json +++ b/samples/grids/grid/editing-columns/sandbox.config.json @@ -3,5 +3,4 @@ "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-columns/src/index.css b/samples/grids/grid/editing-columns/src/index.css index 0fe9368715..3b330b391d 100644 --- a/samples/grids/grid/editing-columns/src/index.css +++ b/samples/grids/grid/editing-columns/src/index.css @@ -1,2 +1,7 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-size: var(--ig-size-medium); + } + diff --git a/samples/grids/grid/editing-columns/src/index.ts b/samples/grids/grid/editing-columns/src/index.ts index 87fef6fdbe..a8d57b898f 100644 --- a/samples/grids/grid/editing-columns/src/index.ts +++ b/samples/grids/grid/editing-columns/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridDescriptionModule, WebPaginatorDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { grid.data = this.nwindData; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/editing-columns/tsconfig.json b/samples/grids/grid/editing-columns/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/editing-columns/tsconfig.json +++ b/samples/grids/grid/editing-columns/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/editing-columns/webpack.config.js b/samples/grids/grid/editing-columns/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/editing-columns/webpack.config.js +++ b/samples/grids/grid/editing-columns/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/editing-events/sandbox.config.json b/samples/grids/grid/editing-events/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/editing-events/sandbox.config.json +++ b/samples/grids/grid/editing-events/sandbox.config.json @@ -3,5 +3,4 @@ "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-events/src/index.css b/samples/grids/grid/editing-events/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/editing-events/src/index.css +++ b/samples/grids/grid/editing-events/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/editing-events/src/index.ts b/samples/grids/grid/editing-events/src/index.ts index d2f00d6b9d..f36742b6e9 100644 --- a/samples/grids/grid/editing-events/src/index.ts +++ b/samples/grids/grid/editing-events/src/index.ts @@ -3,10 +3,10 @@ import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcompone import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; import { IgcGridEditEventArgs } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -26,6 +26,7 @@ export class Sample { grid1.addEventListener("cellEdit", this.webGridEditingEventsCellEdit); } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/editing-events/tsconfig.json b/samples/grids/grid/editing-events/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/editing-events/tsconfig.json +++ b/samples/grids/grid/editing-events/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/editing-events/webpack.config.js b/samples/grids/grid/editing-events/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/editing-events/webpack.config.js +++ b/samples/grids/grid/editing-events/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/editing-excel-style/sandbox.config.json b/samples/grids/grid/editing-excel-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/editing-excel-style/sandbox.config.json +++ b/samples/grids/grid/editing-excel-style/sandbox.config.json @@ -3,5 +3,4 @@ "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/src/index.css b/samples/grids/grid/editing-excel-style/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/editing-excel-style/src/index.css +++ b/samples/grids/grid/editing-excel-style/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/editing-excel-style/src/index.ts b/samples/grids/grid/editing-excel-style/src/index.ts index 1b1dec2817..81ffb84e23 100644 --- a/samples/grids/grid/editing-excel-style/src/index.ts +++ b/samples/grids/grid/editing-excel-style/src/index.ts @@ -3,10 +3,10 @@ import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcompone import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; import { IgcGridKeydownEventArgs } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -22,6 +22,7 @@ export class Sample { grid1.addEventListener("gridKeydown", this.webGridEditingExcelStyle); } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/editing-excel-style/tsconfig.json b/samples/grids/grid/editing-excel-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/editing-excel-style/tsconfig.json +++ b/samples/grids/grid/editing-excel-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/editing-excel-style/webpack.config.js b/samples/grids/grid/editing-excel-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/editing-excel-style/webpack.config.js +++ b/samples/grids/grid/editing-excel-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/editing-lifecycle/sandbox.config.json b/samples/grids/grid/editing-lifecycle/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/editing-lifecycle/sandbox.config.json +++ b/samples/grids/grid/editing-lifecycle/sandbox.config.json @@ -3,5 +3,4 @@ "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-lifecycle/src/index.css b/samples/grids/grid/editing-lifecycle/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/editing-lifecycle/src/index.css +++ b/samples/grids/grid/editing-lifecycle/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/editing-lifecycle/src/index.ts b/samples/grids/grid/editing-lifecycle/src/index.ts index cb3253392f..e4e960d2cd 100644 --- a/samples/grids/grid/editing-lifecycle/src/index.ts +++ b/samples/grids/grid/editing-lifecycle/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; import { IgcRowSelectionEventArgs, IgcGridEditEventArgs, IgcGridEditDoneEventArgs } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -37,6 +37,7 @@ export class Sample { grid.addEventListener("cellEditExit", this.webGridCellEditExit); } this._bind(); + } private _nwindData: any[] = NwindData; @@ -44,6 +45,7 @@ export class Sample { return this._nwindData; } + public webGridRendered(args:any): void { const grid = document.getElementById("grid"); grid.parentElement.style.display = "flex"; diff --git a/samples/grids/grid/editing-lifecycle/tsconfig.json b/samples/grids/grid/editing-lifecycle/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/editing-lifecycle/tsconfig.json +++ b/samples/grids/grid/editing-lifecycle/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/editing-lifecycle/webpack.config.js b/samples/grids/grid/editing-lifecycle/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/editing-lifecycle/webpack.config.js +++ b/samples/grids/grid/editing-lifecycle/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/excel-exporting/sandbox.config.json b/samples/grids/grid/excel-exporting/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/excel-exporting/sandbox.config.json +++ b/samples/grids/grid/excel-exporting/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/excel-exporting/src/index.css b/samples/grids/grid/excel-exporting/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/excel-exporting/src/index.css +++ b/samples/grids/grid/excel-exporting/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/excel-exporting/src/index.ts b/samples/grids/grid/excel-exporting/src/index.ts index d34f0ba2de..c6faf23cc2 100644 --- a/samples/grids/grid/excel-exporting/src/index.ts +++ b/samples/grids/grid/excel-exporting/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent, IgcGroupingExpression, SortingDirection } from 'igniteui-webcomponents-grids/grids'; import { InvoicesDataItem, InvoicesData } from './InvoicesData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -30,7 +30,6 @@ export class Sample { } return this._groupingExpression1; } - private _bind: () => void; constructor() { @@ -41,6 +40,7 @@ export class Sample { grid.groupingExpressions = this.groupingExpression1; } this._bind(); + } private _invoicesData: InvoicesData = null; diff --git a/samples/grids/grid/excel-exporting/tsconfig.json b/samples/grids/grid/excel-exporting/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/excel-exporting/tsconfig.json +++ b/samples/grids/grid/excel-exporting/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/excel-exporting/webpack.config.js b/samples/grids/grid/excel-exporting/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/excel-exporting/webpack.config.js +++ b/samples/grids/grid/excel-exporting/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/excel-style-filtering-sample-1/sandbox.config.json b/samples/grids/grid/excel-style-filtering-sample-1/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/sandbox.config.json +++ b/samples/grids/grid/excel-style-filtering-sample-1/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/excel-style-filtering-sample-1/src/index.css b/samples/grids/grid/excel-style-filtering-sample-1/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/src/index.css +++ b/samples/grids/grid/excel-style-filtering-sample-1/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/excel-style-filtering-sample-1/src/index.ts b/samples/grids/grid/excel-style-filtering-sample-1/src/index.ts index 114ed3f14b..1660d0d7bf 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/src/index.ts +++ b/samples/grids/grid/excel-style-filtering-sample-1/src/index.ts @@ -7,11 +7,11 @@ import NwindData from './NwindData.json'; import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } from 'igniteui-webcomponents-layouts'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -39,7 +39,6 @@ export class Sample { } return this._columnPipeArgs1; } - private orderDate: IgcColumnComponent private _columnPipeArgs2: IgcColumnPipeArgs | null = null; public get columnPipeArgs2(): IgcColumnPipeArgs { @@ -52,7 +51,6 @@ export class Sample { } return this._columnPipeArgs2; } - private discontinued: IgcColumnComponent private _bind: () => void; @@ -77,6 +75,7 @@ export class Sample { discontinued.bodyTemplate = this.webGridBooleanCellTemplate; } this._bind(); + } private _nwindData: any[] = NwindData; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/tsconfig.json +++ b/samples/grids/grid/excel-style-filtering-sample-1/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/excel-style-filtering-sample-1/webpack.config.js b/samples/grids/grid/excel-style-filtering-sample-1/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/webpack.config.js +++ b/samples/grids/grid/excel-style-filtering-sample-1/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/excel-style-filtering-sample-2/sandbox.config.json b/samples/grids/grid/excel-style-filtering-sample-2/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/sandbox.config.json +++ b/samples/grids/grid/excel-style-filtering-sample-2/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/excel-style-filtering-sample-2/src/index.css b/samples/grids/grid/excel-style-filtering-sample-2/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/src/index.css +++ b/samples/grids/grid/excel-style-filtering-sample-2/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/excel-style-filtering-sample-2/src/index.ts b/samples/grids/grid/excel-style-filtering-sample-2/src/index.ts index 7c024bdf3c..20317f7f95 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/src/index.ts +++ b/samples/grids/grid/excel-style-filtering-sample-2/src/index.ts @@ -5,11 +5,11 @@ import { IgcGridComponent, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteu import NwindData from './NwindData.json'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; - +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule @@ -32,7 +32,6 @@ export class Sample { } return this._columnPipeArgs1; } - private orderDate: IgcColumnComponent private _columnPipeArgs2: IgcColumnPipeArgs | null = null; public get columnPipeArgs2(): IgcColumnPipeArgs { @@ -45,7 +44,6 @@ export class Sample { } return this._columnPipeArgs2; } - private discontinued: IgcColumnComponent private _bind: () => void; @@ -64,6 +62,7 @@ export class Sample { discontinued.bodyTemplate = this.webGridBooleanCellTemplate; } this._bind(); + } private _nwindData: any[] = NwindData; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/tsconfig.json +++ b/samples/grids/grid/excel-style-filtering-sample-2/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/excel-style-filtering-sample-2/webpack.config.js b/samples/grids/grid/excel-style-filtering-sample-2/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/webpack.config.js +++ b/samples/grids/grid/excel-style-filtering-sample-2/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/excel-style-filtering-sample-3/sandbox.config.json b/samples/grids/grid/excel-style-filtering-sample-3/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/sandbox.config.json +++ b/samples/grids/grid/excel-style-filtering-sample-3/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/excel-style-filtering-sample-3/src/index.css b/samples/grids/grid/excel-style-filtering-sample-3/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/src/index.css +++ b/samples/grids/grid/excel-style-filtering-sample-3/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/excel-style-filtering-sample-3/src/index.ts b/samples/grids/grid/excel-style-filtering-sample-3/src/index.ts index b3049fd3e4..b69584c5b9 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/src/index.ts +++ b/samples/grids/grid/excel-style-filtering-sample-3/src/index.ts @@ -5,11 +5,11 @@ import { IgcGridComponent, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteu import NwindData from './NwindData.json'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; - +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule @@ -32,7 +32,6 @@ export class Sample { } return this._columnPipeArgs1; } - private orderDate: IgcColumnComponent private _columnPipeArgs2: IgcColumnPipeArgs | null = null; public get columnPipeArgs2(): IgcColumnPipeArgs { @@ -45,7 +44,6 @@ export class Sample { } return this._columnPipeArgs2; } - private discontinued: IgcColumnComponent private _bind: () => void; @@ -65,6 +63,7 @@ export class Sample { discontinued.bodyTemplate = this.webGridBooleanCellTemplate; } this._bind(); + } private _nwindData: any[] = NwindData; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/tsconfig.json +++ b/samples/grids/grid/excel-style-filtering-sample-3/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/excel-style-filtering-sample-3/webpack.config.js b/samples/grids/grid/excel-style-filtering-sample-3/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/webpack.config.js +++ b/samples/grids/grid/excel-style-filtering-sample-3/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/excel-style-filtering-style/sandbox.config.json b/samples/grids/grid/excel-style-filtering-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/excel-style-filtering-style/sandbox.config.json +++ b/samples/grids/grid/excel-style-filtering-style/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/excel-style-filtering-style/src/index.css b/samples/grids/grid/excel-style-filtering-style/src/index.css index 0fe9368715..aa7a27b502 100644 --- a/samples/grids/grid/excel-style-filtering-style/src/index.css +++ b/samples/grids/grid/excel-style-filtering-style/src/index.css @@ -1,2 +1,26 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-grid-filtering-row-background: #ffcd0f; + --ig-button-background: #FFCD0F; + --ig-button-foreground: #292826; + --ig-button-hover-background: #292826; + --ig-button-hover-foreground: #ffcd0f; + + --ig-list-background: #FFCD0F; + --ig-list-item-background: #FFCD0F; + --ig-list-item-background-hover: #c2b1b1bd; + + --ig-checkbox-empty-color: #292826; + --ig-checkbox-fill-color: #292826; + --ig-checkbox-tick-color: #FFCD0F; + --ig-checkbox-label-color: #292826; + + --ig-drop-down-background-color: #FFCD0F; + --ig-drop-down-item-text-color: #292826; + --ig-drop-down-item-background: #FFCD0F; + --ig-drop-down-item-text-color: #292826; + --ig-drop-down-focused-item-background: #c2b1b1bd; + } + diff --git a/samples/grids/grid/excel-style-filtering-style/src/index.ts b/samples/grids/grid/excel-style-filtering-style/src/index.ts index 7c024bdf3c..20317f7f95 100644 --- a/samples/grids/grid/excel-style-filtering-style/src/index.ts +++ b/samples/grids/grid/excel-style-filtering-style/src/index.ts @@ -5,11 +5,11 @@ import { IgcGridComponent, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteu import NwindData from './NwindData.json'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; - +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule @@ -32,7 +32,6 @@ export class Sample { } return this._columnPipeArgs1; } - private orderDate: IgcColumnComponent private _columnPipeArgs2: IgcColumnPipeArgs | null = null; public get columnPipeArgs2(): IgcColumnPipeArgs { @@ -45,7 +44,6 @@ export class Sample { } return this._columnPipeArgs2; } - private discontinued: IgcColumnComponent private _bind: () => void; @@ -64,6 +62,7 @@ export class Sample { discontinued.bodyTemplate = this.webGridBooleanCellTemplate; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/excel-style-filtering-style/tsconfig.json b/samples/grids/grid/excel-style-filtering-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/excel-style-filtering-style/tsconfig.json +++ b/samples/grids/grid/excel-style-filtering-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/excel-style-filtering-style/webpack.config.js b/samples/grids/grid/excel-style-filtering-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/excel-style-filtering-style/webpack.config.js +++ b/samples/grids/grid/excel-style-filtering-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/external-advanced-filtering/sandbox.config.json b/samples/grids/grid/external-advanced-filtering/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/external-advanced-filtering/sandbox.config.json +++ b/samples/grids/grid/external-advanced-filtering/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/external-advanced-filtering/src/index.css b/samples/grids/grid/external-advanced-filtering/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/external-advanced-filtering/src/index.css +++ b/samples/grids/grid/external-advanced-filtering/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/external-advanced-filtering/src/index.ts b/samples/grids/grid/external-advanced-filtering/src/index.ts index cb69a7bd62..af9695c0ea 100644 --- a/samples/grids/grid/external-advanced-filtering/src/index.ts +++ b/samples/grids/grid/external-advanced-filtering/src/index.ts @@ -3,11 +3,11 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; - +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule @@ -35,6 +35,7 @@ export class Sample { grid.data = this.nwindData; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/external-advanced-filtering/tsconfig.json b/samples/grids/grid/external-advanced-filtering/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/external-advanced-filtering/tsconfig.json +++ b/samples/grids/grid/external-advanced-filtering/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/external-advanced-filtering/webpack.config.js b/samples/grids/grid/external-advanced-filtering/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/external-advanced-filtering/webpack.config.js +++ b/samples/grids/grid/external-advanced-filtering/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/filtering-options/sandbox.config.json b/samples/grids/grid/filtering-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/filtering-options/sandbox.config.json +++ b/samples/grids/grid/filtering-options/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/filtering-options/src/index.css b/samples/grids/grid/filtering-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/filtering-options/src/index.css +++ b/samples/grids/grid/filtering-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/filtering-options/src/index.ts b/samples/grids/grid/filtering-options/src/index.ts index cb69a7bd62..af9695c0ea 100644 --- a/samples/grids/grid/filtering-options/src/index.ts +++ b/samples/grids/grid/filtering-options/src/index.ts @@ -3,11 +3,11 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; - +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule @@ -35,6 +35,7 @@ export class Sample { grid.data = this.nwindData; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/filtering-options/tsconfig.json b/samples/grids/grid/filtering-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/filtering-options/tsconfig.json +++ b/samples/grids/grid/filtering-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/filtering-options/webpack.config.js b/samples/grids/grid/filtering-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/filtering-options/webpack.config.js +++ b/samples/grids/grid/filtering-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/filtering-strategy/sandbox.config.json b/samples/grids/grid/filtering-strategy/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/filtering-strategy/sandbox.config.json +++ b/samples/grids/grid/filtering-strategy/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/filtering-strategy/src/index.css b/samples/grids/grid/filtering-strategy/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/filtering-strategy/src/index.css +++ b/samples/grids/grid/filtering-strategy/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/filtering-strategy/src/index.ts b/samples/grids/grid/filtering-strategy/src/index.ts index 91133e55e2..995733edef 100644 --- a/samples/grids/grid/filtering-strategy/src/index.ts +++ b/samples/grids/grid/filtering-strategy/src/index.ts @@ -3,10 +3,10 @@ import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-gri import NwindData from './NwindData.json'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -23,6 +23,7 @@ export class Sample { column1.bodyTemplate = this.webGridBooleanCellTemplate; } this._bind(); + } private _nwindData: any[] = NwindData; @@ -30,6 +31,7 @@ export class Sample { return this._nwindData; } + public webGridBooleanCellTemplate = (ctx: IgcCellTemplateContext) => { if (ctx.cell.value) { return html`Continued` diff --git a/samples/grids/grid/filtering-strategy/tsconfig.json b/samples/grids/grid/filtering-strategy/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/filtering-strategy/tsconfig.json +++ b/samples/grids/grid/filtering-strategy/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/filtering-strategy/webpack.config.js b/samples/grids/grid/filtering-strategy/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/filtering-strategy/webpack.config.js +++ b/samples/grids/grid/filtering-strategy/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/filtering-style/sandbox.config.json b/samples/grids/grid/filtering-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/filtering-style/sandbox.config.json +++ b/samples/grids/grid/filtering-style/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/filtering-style/src/index.css b/samples/grids/grid/filtering-style/src/index.css index 0fe9368715..0becabe1f6 100644 --- a/samples/grids/grid/filtering-style/src/index.css +++ b/samples/grids/grid/filtering-style/src/index.css @@ -1,2 +1,10 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-grid-filtering-row-text-color: #292826; + --ig-grid-filtering-row-background: #ffcd0f; + --ig-grid-filtering-header-text-color: #292826; + --ig-grid-filtering-header-background: #ffcd0f; +} + diff --git a/samples/grids/grid/filtering-style/src/index.ts b/samples/grids/grid/filtering-style/src/index.ts index 114ed3f14b..1660d0d7bf 100644 --- a/samples/grids/grid/filtering-style/src/index.ts +++ b/samples/grids/grid/filtering-style/src/index.ts @@ -7,11 +7,11 @@ import NwindData from './NwindData.json'; import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } from 'igniteui-webcomponents-layouts'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -39,7 +39,6 @@ export class Sample { } return this._columnPipeArgs1; } - private orderDate: IgcColumnComponent private _columnPipeArgs2: IgcColumnPipeArgs | null = null; public get columnPipeArgs2(): IgcColumnPipeArgs { @@ -52,7 +51,6 @@ export class Sample { } return this._columnPipeArgs2; } - private discontinued: IgcColumnComponent private _bind: () => void; @@ -77,6 +75,7 @@ export class Sample { discontinued.bodyTemplate = this.webGridBooleanCellTemplate; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/filtering-style/tsconfig.json b/samples/grids/grid/filtering-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/filtering-style/tsconfig.json +++ b/samples/grids/grid/filtering-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/filtering-style/webpack.config.js b/samples/grids/grid/filtering-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/filtering-style/webpack.config.js +++ b/samples/grids/grid/filtering-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/groupby-expressions/sandbox.config.json b/samples/grids/grid/groupby-expressions/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/groupby-expressions/sandbox.config.json +++ b/samples/grids/grid/groupby-expressions/sandbox.config.json @@ -3,5 +3,4 @@ "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-expressions/src/index.css b/samples/grids/grid/groupby-expressions/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/groupby-expressions/src/index.css +++ b/samples/grids/grid/groupby-expressions/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/groupby-expressions/src/index.ts b/samples/grids/grid/groupby-expressions/src/index.ts index 250d757a33..fc34d5b498 100644 --- a/samples/grids/grid/groupby-expressions/src/index.ts +++ b/samples/grids/grid/groupby-expressions/src/index.ts @@ -3,10 +3,10 @@ import { IgcGridComponent, IgcGroupingExpression, SortingDirection, IgcColumnCom import { InvoicesWorldDataItem, InvoicesWorldData } from './InvoicesWorldData'; import { IgcGroupByRecord, IgcGroupByRowTemplateContext, IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -32,7 +32,6 @@ export class Sample { } return this._groupingExpression1; } - private column1: IgcColumnComponent private _bind: () => void; @@ -47,6 +46,7 @@ export class Sample { column1.bodyTemplate = this.webGridBooleanCellTemplate; } this._bind(); + } private _invoicesWorldData: InvoicesWorldData = null; @@ -58,6 +58,7 @@ export class Sample { return this._invoicesWorldData; } + public webGridGroupByRowTemplate = (ctx: IgcGroupByRowTemplateContext) => { const groupRow: IgcGroupByRecord = ctx.implicit; @@ -73,6 +74,7 @@ export class Sample { ${groupRow.records.length} Ordered in 2017:${calc2017}
`; + }; public webGridBooleanCellTemplate = (ctx: IgcCellTemplateContext) => { diff --git a/samples/grids/grid/groupby-expressions/tsconfig.json b/samples/grids/grid/groupby-expressions/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/groupby-expressions/tsconfig.json +++ b/samples/grids/grid/groupby-expressions/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/groupby-expressions/webpack.config.js b/samples/grids/grid/groupby-expressions/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/groupby-expressions/webpack.config.js +++ b/samples/grids/grid/groupby-expressions/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/groupby-paging/sandbox.config.json b/samples/grids/grid/groupby-paging/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/groupby-paging/sandbox.config.json +++ b/samples/grids/grid/groupby-paging/sandbox.config.json @@ -3,5 +3,4 @@ "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-paging/src/index.css b/samples/grids/grid/groupby-paging/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/groupby-paging/src/index.css +++ b/samples/grids/grid/groupby-paging/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/groupby-paging/src/index.ts b/samples/grids/grid/groupby-paging/src/index.ts index 74413b6502..320d2ac7bc 100644 --- a/samples/grids/grid/groupby-paging/src/index.ts +++ b/samples/grids/grid/groupby-paging/src/index.ts @@ -3,10 +3,10 @@ import { IgcGridComponent, IgcGroupingExpression, SortingDirection } from 'ignit import { InvoicesWorldDataItem, InvoicesWorldData } from './InvoicesWorldData'; import { IgcGroupByRecord, IgcGroupByRowTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -26,7 +26,6 @@ export class Sample { } return this._groupingExpression1; } - private _bind: () => void; constructor() { @@ -38,6 +37,7 @@ export class Sample { grid.groupRowTemplate = this.webGridGroupByRowTemplate; } this._bind(); + } private _invoicesWorldData: InvoicesWorldData = null; @@ -49,6 +49,7 @@ export class Sample { return this._invoicesWorldData; } + public webGridGroupByRowTemplate = (ctx: IgcGroupByRowTemplateContext) => { const groupRow: IgcGroupByRecord = ctx.implicit; @@ -64,6 +65,7 @@ export class Sample { ${groupRow.records.length} Ordered in 2017:${calc2017}
`; + }; } diff --git a/samples/grids/grid/groupby-paging/tsconfig.json b/samples/grids/grid/groupby-paging/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/groupby-paging/tsconfig.json +++ b/samples/grids/grid/groupby-paging/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/groupby-paging/webpack.config.js b/samples/grids/grid/groupby-paging/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/groupby-paging/webpack.config.js +++ b/samples/grids/grid/groupby-paging/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/groupby-styling/sandbox.config.json b/samples/grids/grid/groupby-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/groupby-styling/sandbox.config.json +++ b/samples/grids/grid/groupby-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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-styling/src/index.css b/samples/grids/grid/groupby-styling/src/index.css index 0fe9368715..16ec1e174e 100644 --- a/samples/grids/grid/groupby-styling/src/index.css +++ b/samples/grids/grid/groupby-styling/src/index.css @@ -1,2 +1,21 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-chip-text-color: rgb(248, 248, 248); + --ig-chip-hover-text-color: rgb(225, 225, 225); + --ig-chip-background: rgb(73, 73, 73); + --ig-chip-hover-background: rgb(56, 56, 56); + --ig-chip-focus-background: rgb(223, 181, 13); + --ig-chip-selected-background: rgb(223, 181, 13); + --ig-chip-focus-selected-background: rgb(223, 181, 13); + --ig-grid-group-row-background: rgb(73, 73, 73); + --ig-grid-group-row-selected-background: rgb(56, 56, 56); + --ig-grid-group-label-column-name-text: rgb(248, 248, 248); + --ig-grid-group-label-text: rgb(248, 248, 248); + --ig-grid-group-count-background: rgb(255, 205, 15); + --ig-grid-group-count-text-color: rgb(34, 34, 34); + --ig-grid-expand-icon-color: rgb(255, 205, 15); + --ig-grid-expand-icon-hover-color: rgb(223, 181, 13); +} + diff --git a/samples/grids/grid/groupby-styling/src/index.ts b/samples/grids/grid/groupby-styling/src/index.ts index 9550ee4a86..1acf86ef2c 100644 --- a/samples/grids/grid/groupby-styling/src/index.ts +++ b/samples/grids/grid/groupby-styling/src/index.ts @@ -4,10 +4,10 @@ import { IgcGridComponent, IgcGroupingExpression, SortingDirection, IgcColumnCom import { InvoicesDataItem, InvoicesData } from './InvoicesData'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -33,7 +33,6 @@ export class Sample { } return this._groupingExpression1; } - private orderID: IgcColumnComponent private shipCountry: IgcColumnComponent private orderDate: IgcColumnComponent @@ -55,7 +54,6 @@ export class Sample { } return this._columnPipeArgs1; } - private quantity: IgcColumnComponent private _bind: () => void; @@ -80,6 +78,7 @@ export class Sample { unitPrice.pipeArgs = this.columnPipeArgs1; } this._bind(); + } private _invoicesData: InvoicesData = null; diff --git a/samples/grids/grid/groupby-styling/tsconfig.json b/samples/grids/grid/groupby-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/groupby-styling/tsconfig.json +++ b/samples/grids/grid/groupby-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/groupby-styling/webpack.config.js b/samples/grids/grid/groupby-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/groupby-styling/webpack.config.js +++ b/samples/grids/grid/groupby-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/groupby-summary-options/sandbox.config.json b/samples/grids/grid/groupby-summary-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/groupby-summary-options/sandbox.config.json +++ b/samples/grids/grid/groupby-summary-options/sandbox.config.json @@ -3,5 +3,4 @@ "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-summary-options/src/index.css b/samples/grids/grid/groupby-summary-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/groupby-summary-options/src/index.css +++ b/samples/grids/grid/groupby-summary-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/groupby-summary-options/src/index.ts b/samples/grids/grid/groupby-summary-options/src/index.ts index 5f05e747f4..da7a25a87f 100644 --- a/samples/grids/grid/groupby-summary-options/src/index.ts +++ b/samples/grids/grid/groupby-summary-options/src/index.ts @@ -4,11 +4,11 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescrip import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcGridComponent, IgcGroupingExpression, SortingDirection, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteui-webcomponents-grids/grids'; import { InvoicesDataItem, InvoicesData } from './InvoicesData'; + 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"; @@ -39,7 +39,6 @@ export class Sample { } return this._groupingExpression1; } - private column1: IgcColumnComponent private _columnPipeArgs1: IgcColumnPipeArgs | null = null; public get columnPipeArgs1(): IgcColumnPipeArgs { @@ -53,7 +52,6 @@ export class Sample { } return this._columnPipeArgs1; } - private _bind: () => void; constructor() { @@ -72,6 +70,7 @@ export class Sample { column1.pipeArgs = this.columnPipeArgs1; } this._bind(); + } private _invoicesData: InvoicesData = null; diff --git a/samples/grids/grid/groupby-summary-options/tsconfig.json b/samples/grids/grid/groupby-summary-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/groupby-summary-options/tsconfig.json +++ b/samples/grids/grid/groupby-summary-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/groupby-summary-options/webpack.config.js b/samples/grids/grid/groupby-summary-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/groupby-summary-options/webpack.config.js +++ b/samples/grids/grid/groupby-summary-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/groupby-summary-styling/sandbox.config.json b/samples/grids/grid/groupby-summary-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/groupby-summary-styling/sandbox.config.json +++ b/samples/grids/grid/groupby-summary-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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-summary-styling/src/index.css b/samples/grids/grid/groupby-summary-styling/src/index.css index 0fe9368715..d303322bf9 100644 --- a/samples/grids/grid/groupby-summary-styling/src/index.css +++ b/samples/grids/grid/groupby-summary-styling/src/index.css @@ -1,2 +1,10 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-grid-summary-background-color:#e0f3ff; + --ig-grid-summary-focus-background-color: rgba( #94d1f7, .3 ); + --ig-grid-summary-label-color: rgb(228, 27, 117); + --ig-grid-summary-result-color: black; +} + diff --git a/samples/grids/grid/groupby-summary-styling/src/index.ts b/samples/grids/grid/groupby-summary-styling/src/index.ts index 45af7fad30..b31b75404e 100644 --- a/samples/grids/grid/groupby-summary-styling/src/index.ts +++ b/samples/grids/grid/groupby-summary-styling/src/index.ts @@ -4,11 +4,11 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescrip import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcGridComponent, IgcGroupingExpression, SortingDirection, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteui-webcomponents-grids/grids'; import { InvoicesDataItem, InvoicesData } from './InvoicesData'; + 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"; @@ -38,7 +38,6 @@ export class Sample { } return this._groupingExpression1; } - private column1: IgcColumnComponent private _columnPipeArgs1: IgcColumnPipeArgs | null = null; public get columnPipeArgs1(): IgcColumnPipeArgs { @@ -52,7 +51,6 @@ export class Sample { } return this._columnPipeArgs1; } - private _bind: () => void; constructor() { @@ -70,6 +68,7 @@ export class Sample { column1.pipeArgs = this.columnPipeArgs1; } this._bind(); + } private _invoicesData: InvoicesData = null; diff --git a/samples/grids/grid/groupby-summary-styling/tsconfig.json b/samples/grids/grid/groupby-summary-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/groupby-summary-styling/tsconfig.json +++ b/samples/grids/grid/groupby-summary-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/groupby-summary-styling/webpack.config.js b/samples/grids/grid/groupby-summary-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/groupby-summary-styling/webpack.config.js +++ b/samples/grids/grid/groupby-summary-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/keyboard-custom-navigation/sandbox.config.json b/samples/grids/grid/keyboard-custom-navigation/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/keyboard-custom-navigation/sandbox.config.json +++ b/samples/grids/grid/keyboard-custom-navigation/sandbox.config.json @@ -3,5 +3,4 @@ "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-custom-navigation/src/index.css b/samples/grids/grid/keyboard-custom-navigation/src/index.css index 0fe9368715..3b330b391d 100644 --- a/samples/grids/grid/keyboard-custom-navigation/src/index.css +++ b/samples/grids/grid/keyboard-custom-navigation/src/index.css @@ -1,2 +1,7 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-size: var(--ig-size-medium); + } + diff --git a/samples/grids/grid/keyboard-custom-navigation/src/index.ts b/samples/grids/grid/keyboard-custom-navigation/src/index.ts index 03e8b27565..44451a1ff9 100644 --- a/samples/grids/grid/keyboard-custom-navigation/src/index.ts +++ b/samples/grids/grid/keyboard-custom-navigation/src/index.ts @@ -4,11 +4,11 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescrip import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; import { IgcGridKeydownEventArgs, GridKeydownTargetType } from 'igniteui-webcomponents-grids/grids'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; - +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule @@ -40,6 +40,7 @@ export class Sample { grid.addEventListener("gridKeydown", this.webGridCustomKBNav); } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/keyboard-custom-navigation/tsconfig.json b/samples/grids/grid/keyboard-custom-navigation/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/keyboard-custom-navigation/tsconfig.json +++ b/samples/grids/grid/keyboard-custom-navigation/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/keyboard-custom-navigation/webpack.config.js b/samples/grids/grid/keyboard-custom-navigation/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/keyboard-custom-navigation/webpack.config.js +++ b/samples/grids/grid/keyboard-custom-navigation/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/keyboard-mrl-navigation/sandbox.config.json b/samples/grids/grid/keyboard-mrl-navigation/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/sandbox.config.json +++ b/samples/grids/grid/keyboard-mrl-navigation/sandbox.config.json @@ -3,5 +3,4 @@ "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-mrl-navigation/src/index.css b/samples/grids/grid/keyboard-mrl-navigation/src/index.css index 0fe9368715..3b330b391d 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/src/index.css +++ b/samples/grids/grid/keyboard-mrl-navigation/src/index.css @@ -1,2 +1,7 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-size: var(--ig-size-medium); + } + diff --git a/samples/grids/grid/keyboard-mrl-navigation/src/index.ts b/samples/grids/grid/keyboard-mrl-navigation/src/index.ts index 37d83bf9e3..0c628cc208 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/src/index.ts +++ b/samples/grids/grid/keyboard-mrl-navigation/src/index.ts @@ -3,10 +3,10 @@ import { ComponentRenderer, WebGridDescriptionModule, WebColumnLayoutDescription import { IgcGridComponent, IgcColumnLayoutComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import { CompanyDataItem, CompanyData } from './CompanyData'; import { IgcGridKeydownEventArgs } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -52,6 +52,7 @@ export class Sample { grid.addEventListener("gridKeydown", this.webGridMRLCustomNavigationEvent); } this._bind(); + } private _companyData: CompanyData = null; diff --git a/samples/grids/grid/keyboard-mrl-navigation/tsconfig.json b/samples/grids/grid/keyboard-mrl-navigation/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/tsconfig.json +++ b/samples/grids/grid/keyboard-mrl-navigation/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/keyboard-mrl-navigation/webpack.config.js b/samples/grids/grid/keyboard-mrl-navigation/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/webpack.config.js +++ b/samples/grids/grid/keyboard-mrl-navigation/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/layout-display-density/sandbox.config.json b/samples/grids/grid/layout-display-density/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/layout-display-density/sandbox.config.json +++ b/samples/grids/grid/layout-display-density/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/layout-display-density/src/index.css b/samples/grids/grid/layout-display-density/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/layout-display-density/src/index.css +++ b/samples/grids/grid/layout-display-density/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/layout-display-density/src/index.ts b/samples/grids/grid/layout-display-density/src/index.ts index 2e26dcc903..059f03a3f2 100644 --- a/samples/grids/grid/layout-display-density/src/index.ts +++ b/samples/grids/grid/layout-display-density/src/index.ts @@ -5,11 +5,11 @@ import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionCo import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { InvoicesDataItem, InvoicesData } from './InvoicesData'; import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } 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(); import "./index.css"; @@ -38,6 +38,7 @@ export class Sample { grid.data = this.invoicesData; } this._bind(); + } private _invoicesData: InvoicesData = null; diff --git a/samples/grids/grid/layout-display-density/tsconfig.json b/samples/grids/grid/layout-display-density/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/layout-display-density/tsconfig.json +++ b/samples/grids/grid/layout-display-density/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/layout-display-density/webpack.config.js b/samples/grids/grid/layout-display-density/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/layout-display-density/webpack.config.js +++ b/samples/grids/grid/layout-display-density/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/master-detail/sandbox.config.json b/samples/grids/grid/master-detail/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/master-detail/sandbox.config.json +++ b/samples/grids/grid/master-detail/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/master-detail/src/index.css b/samples/grids/grid/master-detail/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/master-detail/src/index.css +++ b/samples/grids/grid/master-detail/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/master-detail/src/index.ts b/samples/grids/grid/master-detail/src/index.ts index 0d2d3c46ae..7481e0acbf 100644 --- a/samples/grids/grid/master-detail/src/index.ts +++ b/samples/grids/grid/master-detail/src/index.ts @@ -3,10 +3,10 @@ import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { CustomersDataItem, CustomersData } from './CustomersData'; import { IgcGridMasterDetailContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -21,6 +21,7 @@ export class Sample { grid.detailTemplate = this.webGridMasterDetailTemplate; } this._bind(); + } private _customersData: CustomersData = null; @@ -32,6 +33,7 @@ export class Sample { return this._customersData; } + public webGridMasterDetailTemplate = (ctx: IgcGridMasterDetailContext) => { var data = ctx.implicit; return html`
diff --git a/samples/grids/grid/master-detail/tsconfig.json b/samples/grids/grid/master-detail/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/master-detail/tsconfig.json +++ b/samples/grids/grid/master-detail/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/master-detail/webpack.config.js b/samples/grids/grid/master-detail/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/master-detail/webpack.config.js +++ b/samples/grids/grid/master-detail/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/multi-column-headers-export/sandbox.config.json b/samples/grids/grid/multi-column-headers-export/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/multi-column-headers-export/sandbox.config.json +++ b/samples/grids/grid/multi-column-headers-export/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/multi-column-headers-export/src/index.css b/samples/grids/grid/multi-column-headers-export/src/index.css index 0fe9368715..db87b63a60 100644 --- a/samples/grids/grid/multi-column-headers-export/src/index.css +++ b/samples/grids/grid/multi-column-headers-export/src/index.css @@ -1,2 +1,7 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-size: var(--ig-size-small); + } + diff --git a/samples/grids/grid/multi-column-headers-export/src/index.ts b/samples/grids/grid/multi-column-headers-export/src/index.ts index 888cd328b8..6c0c15d7b9 100644 --- a/samples/grids/grid/multi-column-headers-export/src/index.ts +++ b/samples/grids/grid/multi-column-headers-export/src/index.ts @@ -3,10 +3,10 @@ import { ComponentRenderer, WebGridDescriptionModule, WebGridToolbarDescriptionM import { IgcGridComponent, IgcGridToolbarExporterComponent, IgcColumnComponent, IgcColumnGroupComponent } from 'igniteui-webcomponents-grids/grids'; import { CustomersDataItem, CustomersData } from './CustomersData'; import { IgcExporterEventArgs } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -56,6 +56,7 @@ export class Sample { gridToolbarExporter1.addEventListener("exportStarted", this.webGridExportEventMultiColumnHeaders); } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/multi-column-headers-export/tsconfig.json b/samples/grids/grid/multi-column-headers-export/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/multi-column-headers-export/tsconfig.json +++ b/samples/grids/grid/multi-column-headers-export/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/multi-column-headers-export/webpack.config.js b/samples/grids/grid/multi-column-headers-export/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/multi-column-headers-export/webpack.config.js +++ b/samples/grids/grid/multi-column-headers-export/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/multi-column-headers-overview/sandbox.config.json b/samples/grids/grid/multi-column-headers-overview/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/multi-column-headers-overview/sandbox.config.json +++ b/samples/grids/grid/multi-column-headers-overview/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/multi-column-headers-overview/src/index.css b/samples/grids/grid/multi-column-headers-overview/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/multi-column-headers-overview/src/index.css +++ b/samples/grids/grid/multi-column-headers-overview/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/multi-column-headers-overview/src/index.ts b/samples/grids/grid/multi-column-headers-overview/src/index.ts index cf93180510..6002cac572 100644 --- a/samples/grids/grid/multi-column-headers-overview/src/index.ts +++ b/samples/grids/grid/multi-column-headers-overview/src/index.ts @@ -5,11 +5,11 @@ import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionCo import { IgcGridComponent } 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(); import "./index.css"; @@ -42,6 +42,7 @@ export class Sample { grid.data = this.customersData; } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/multi-column-headers-overview/tsconfig.json b/samples/grids/grid/multi-column-headers-overview/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/multi-column-headers-overview/tsconfig.json +++ b/samples/grids/grid/multi-column-headers-overview/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/multi-column-headers-overview/webpack.config.js b/samples/grids/grid/multi-column-headers-overview/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/multi-column-headers-overview/webpack.config.js +++ b/samples/grids/grid/multi-column-headers-overview/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/multi-column-headers-styling/sandbox.config.json b/samples/grids/grid/multi-column-headers-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/multi-column-headers-styling/sandbox.config.json +++ b/samples/grids/grid/multi-column-headers-styling/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/multi-column-headers-styling/src/index.css b/samples/grids/grid/multi-column-headers-styling/src/index.css index 0fe9368715..eb64922daf 100644 --- a/samples/grids/grid/multi-column-headers-styling/src/index.css +++ b/samples/grids/grid/multi-column-headers-styling/src/index.css @@ -1,2 +1,11 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-grid-header-background: #e0f3ff; + --ig-grid-header-text-color: #e41c77; + --ig-grid-header-border-width: 1px; + --ig-grid-header-border-style: solid; + --ig-grid-header-border-color: rgba(0, 0, 0, 0.08); +} + diff --git a/samples/grids/grid/multi-column-headers-styling/src/index.ts b/samples/grids/grid/multi-column-headers-styling/src/index.ts index 8c120b22e2..9a2e3a243f 100644 --- a/samples/grids/grid/multi-column-headers-styling/src/index.ts +++ b/samples/grids/grid/multi-column-headers-styling/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridDescriptionModule, WebColumnGroupDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { CustomersDataItem, CustomersData } from './CustomersData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { grid.data = this.customersData; } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/multi-column-headers-styling/tsconfig.json b/samples/grids/grid/multi-column-headers-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/multi-column-headers-styling/tsconfig.json +++ b/samples/grids/grid/multi-column-headers-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/multi-column-headers-styling/webpack.config.js b/samples/grids/grid/multi-column-headers-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/multi-column-headers-styling/webpack.config.js +++ b/samples/grids/grid/multi-column-headers-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/multi-column-headers-template/sandbox.config.json b/samples/grids/grid/multi-column-headers-template/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/multi-column-headers-template/sandbox.config.json +++ b/samples/grids/grid/multi-column-headers-template/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/multi-column-headers-template/src/index.css b/samples/grids/grid/multi-column-headers-template/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/multi-column-headers-template/src/index.css +++ b/samples/grids/grid/multi-column-headers-template/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/multi-column-headers-template/src/index.ts b/samples/grids/grid/multi-column-headers-template/src/index.ts index 332196626b..a77c0706e5 100644 --- a/samples/grids/grid/multi-column-headers-template/src/index.ts +++ b/samples/grids/grid/multi-column-headers-template/src/index.ts @@ -4,10 +4,10 @@ import { IgcGridComponent, IgcColumnGroupComponent } from 'igniteui-webcomponent import { CustomersDataItem, CustomersData } from './CustomersData'; import { IgcColumnTemplateContext, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -27,6 +27,7 @@ export class Sample { columnGroup2.headerTemplate = this.webGridColumnGroupHeaderTemplate; } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/multi-column-headers-template/tsconfig.json b/samples/grids/grid/multi-column-headers-template/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/multi-column-headers-template/tsconfig.json +++ b/samples/grids/grid/multi-column-headers-template/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/multi-column-headers-template/webpack.config.js b/samples/grids/grid/multi-column-headers-template/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/multi-column-headers-template/webpack.config.js +++ b/samples/grids/grid/multi-column-headers-template/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/multi-row-layout-options/sandbox.config.json b/samples/grids/grid/multi-row-layout-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/multi-row-layout-options/sandbox.config.json +++ b/samples/grids/grid/multi-row-layout-options/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/multi-row-layout-options/src/index.css b/samples/grids/grid/multi-row-layout-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/multi-row-layout-options/src/index.css +++ b/samples/grids/grid/multi-row-layout-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/multi-row-layout-options/src/index.ts b/samples/grids/grid/multi-row-layout-options/src/index.ts index fc7536ddef..27cba6fe86 100644 --- a/samples/grids/grid/multi-row-layout-options/src/index.ts +++ b/samples/grids/grid/multi-row-layout-options/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent, IgcGroupingExpression, SortingDirection } from 'igniteui-webcomponents-grids/grids'; import { CustomersDataItem, CustomersData } from './CustomersData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -25,7 +25,6 @@ export class Sample { } return this._groupingExpression1; } - private _bind: () => void; constructor() { @@ -36,6 +35,7 @@ export class Sample { grid.groupingExpressions = this.groupingExpression1; } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/multi-row-layout-options/tsconfig.json b/samples/grids/grid/multi-row-layout-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/multi-row-layout-options/tsconfig.json +++ b/samples/grids/grid/multi-row-layout-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/multi-row-layout-options/webpack.config.js b/samples/grids/grid/multi-row-layout-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/multi-row-layout-options/webpack.config.js +++ b/samples/grids/grid/multi-row-layout-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/multi-row-layout-style/sandbox.config.json b/samples/grids/grid/multi-row-layout-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/multi-row-layout-style/sandbox.config.json +++ b/samples/grids/grid/multi-row-layout-style/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/multi-row-layout-style/src/index.css b/samples/grids/grid/multi-row-layout-style/src/index.css index 0fe9368715..9ceb614ee8 100644 --- a/samples/grids/grid/multi-row-layout-style/src/index.css +++ b/samples/grids/grid/multi-row-layout-style/src/index.css @@ -1,2 +1,12 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-grid-cell-active-border-color: #ffcd0f; + --ig-grid-cell-selected-background: #6f6f6f; + --ig-grid-row-hover-background: #fde069; + --ig-grid-row-selected-background: #8d8d8d; + --ig-grid-header-background: #494949; + --ig-grid-header-text-color: #fff; +} + diff --git a/samples/grids/grid/multi-row-layout-style/src/index.ts b/samples/grids/grid/multi-row-layout-style/src/index.ts index f33fc1fd1d..8070367ccc 100644 --- a/samples/grids/grid/multi-row-layout-style/src/index.ts +++ b/samples/grids/grid/multi-row-layout-style/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { CustomersDataItem, CustomersData } from './CustomersData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { grid.data = this.customersData; } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/multi-row-layout-style/tsconfig.json b/samples/grids/grid/multi-row-layout-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/multi-row-layout-style/tsconfig.json +++ b/samples/grids/grid/multi-row-layout-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/multi-row-layout-style/webpack.config.js b/samples/grids/grid/multi-row-layout-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/multi-row-layout-style/webpack.config.js +++ b/samples/grids/grid/multi-row-layout-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/overview/sandbox.config.json b/samples/grids/grid/overview/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/overview/sandbox.config.json +++ b/samples/grids/grid/overview/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/overview/src/index.css b/samples/grids/grid/overview/src/index.css index 0fe9368715..3b330b391d 100644 --- a/samples/grids/grid/overview/src/index.css +++ b/samples/grids/grid/overview/src/index.css @@ -1,2 +1,7 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-size: var(--ig-size-medium); + } + diff --git a/samples/grids/grid/overview/src/index.ts b/samples/grids/grid/overview/src/index.ts index 91133e55e2..995733edef 100644 --- a/samples/grids/grid/overview/src/index.ts +++ b/samples/grids/grid/overview/src/index.ts @@ -3,10 +3,10 @@ import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-gri import NwindData from './NwindData.json'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -23,6 +23,7 @@ export class Sample { column1.bodyTemplate = this.webGridBooleanCellTemplate; } this._bind(); + } private _nwindData: any[] = NwindData; @@ -30,6 +31,7 @@ export class Sample { return this._nwindData; } + public webGridBooleanCellTemplate = (ctx: IgcCellTemplateContext) => { if (ctx.cell.value) { return html`Continued` diff --git a/samples/grids/grid/overview/tsconfig.json b/samples/grids/grid/overview/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/overview/tsconfig.json +++ b/samples/grids/grid/overview/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/overview/webpack.config.js b/samples/grids/grid/overview/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/overview/webpack.config.js +++ b/samples/grids/grid/overview/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/paste/sandbox.config.json b/samples/grids/grid/paste/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/paste/sandbox.config.json +++ b/samples/grids/grid/paste/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/paste/src/index.css b/samples/grids/grid/paste/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/paste/src/index.css +++ b/samples/grids/grid/paste/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/paste/src/index.ts b/samples/grids/grid/paste/src/index.ts index 46afbef599..d1d29c689a 100644 --- a/samples/grids/grid/paste/src/index.ts +++ b/samples/grids/grid/paste/src/index.ts @@ -6,11 +6,11 @@ import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { InvoicesDataItem, InvoicesData } from './InvoicesData'; import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } from 'igniteui-webcomponents-layouts'; import { IgcGridKeydownEventArgs, GridKeydownTargetType } from 'igniteui-webcomponents-grids/grids'; + 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"; @@ -40,6 +40,7 @@ export class Sample { grid.addEventListener("rendered", this.webGridPasteFromExcel); } this._bind(); + } private _invoicesData: InvoicesData = null; @@ -73,7 +74,6 @@ export class Sample { this.onKeyDown = this.onKeyDown.bind(this); grid.addEventListener("keydown", this.onKeyDown); } - public onKeyDown(eventArgs: any): void { const ctrl = eventArgs.ctrlKey; const key = eventArgs.keyCode; @@ -99,6 +99,7 @@ export class Sample { style.width = "0px"; style.overflow = "hidden"; div.appendChild(this.txtArea); + this.txtArea.addEventListener("paste", (eventArgs: any) => { this.onPaste(eventArgs); }); } return this.txtArea; @@ -156,7 +157,6 @@ export class Sample { } }); } - public updateRecords(processedData: any[]) { const grid = this.grid as any; const cell = grid.selectedCells[0]; diff --git a/samples/grids/grid/paste/tsconfig.json b/samples/grids/grid/paste/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/paste/tsconfig.json +++ b/samples/grids/grid/paste/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/paste/webpack.config.js b/samples/grids/grid/paste/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/paste/webpack.config.js +++ b/samples/grids/grid/paste/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/remote-paging-data/sandbox.config.json b/samples/grids/grid/remote-paging-data/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/remote-paging-data/sandbox.config.json +++ b/samples/grids/grid/remote-paging-data/sandbox.config.json @@ -3,5 +3,4 @@ "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-data/src/index.css b/samples/grids/grid/remote-paging-data/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/remote-paging-data/src/index.css +++ b/samples/grids/grid/remote-paging-data/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/remote-paging-data/src/index.ts b/samples/grids/grid/remote-paging-data/src/index.ts index 841d3e46d0..a3c2ff02e3 100644 --- a/samples/grids/grid/remote-paging-data/src/index.ts +++ b/samples/grids/grid/remote-paging-data/src/index.ts @@ -3,11 +3,11 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; - +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule @@ -37,6 +37,7 @@ export class Sample { grid.data = this.nwindData; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/remote-paging-data/tsconfig.json b/samples/grids/grid/remote-paging-data/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/remote-paging-data/tsconfig.json +++ b/samples/grids/grid/remote-paging-data/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/remote-paging-data/webpack.config.js b/samples/grids/grid/remote-paging-data/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/remote-paging-data/webpack.config.js +++ b/samples/grids/grid/remote-paging-data/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/row-adding/sandbox.config.json b/samples/grids/grid/row-adding/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/row-adding/sandbox.config.json +++ b/samples/grids/grid/row-adding/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/row-adding/src/index.css b/samples/grids/grid/row-adding/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/row-adding/src/index.css +++ b/samples/grids/grid/row-adding/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/row-adding/src/index.ts b/samples/grids/grid/row-adding/src/index.ts index ad2bdf62a8..d0492118e8 100644 --- a/samples/grids/grid/row-adding/src/index.ts +++ b/samples/grids/grid/row-adding/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -33,6 +33,7 @@ export class Sample { grid.data = this.nwindData; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/row-adding/tsconfig.json b/samples/grids/grid/row-adding/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/row-adding/tsconfig.json +++ b/samples/grids/grid/row-adding/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/row-adding/webpack.config.js b/samples/grids/grid/row-adding/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/row-adding/webpack.config.js +++ b/samples/grids/grid/row-adding/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/row-classes/sandbox.config.json b/samples/grids/grid/row-classes/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/row-classes/sandbox.config.json +++ b/samples/grids/grid/row-classes/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/row-classes/src/index.css b/samples/grids/grid/row-classes/src/index.css index 0fe9368715..de13be7ed3 100644 --- a/samples/grids/grid/row-classes/src/index.css +++ b/samples/grids/grid/row-classes/src/index.css @@ -1,2 +1,8 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + .activeRow { + border-top: 2px solid #fc81b8; + border-left: 3px solid #e41c77; + } + diff --git a/samples/grids/grid/row-classes/src/index.ts b/samples/grids/grid/row-classes/src/index.ts index 4e831dfa1d..79410f6806 100644 --- a/samples/grids/grid/row-classes/src/index.ts +++ b/samples/grids/grid/row-classes/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; import { IgcRowType } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -32,6 +32,7 @@ export class Sample { grid1.rowClasses = this.webGridRowClassesHandler; } this._bind(); + } private _nwindData: any[] = NwindData; @@ -39,6 +40,7 @@ export class Sample { return this._nwindData; } + public webGridRowClassesHandler = { activeRow: (row: IgcRowType) => row.index % 2 === 0 }; diff --git a/samples/grids/grid/row-classes/tsconfig.json b/samples/grids/grid/row-classes/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/row-classes/tsconfig.json +++ b/samples/grids/grid/row-classes/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/row-classes/webpack.config.js b/samples/grids/grid/row-classes/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/row-classes/webpack.config.js +++ b/samples/grids/grid/row-classes/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/row-editing-options/sandbox.config.json b/samples/grids/grid/row-editing-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/row-editing-options/sandbox.config.json +++ b/samples/grids/grid/row-editing-options/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/row-editing-options/src/index.css b/samples/grids/grid/row-editing-options/src/index.css index 0fe9368715..db87b63a60 100644 --- a/samples/grids/grid/row-editing-options/src/index.css +++ b/samples/grids/grid/row-editing-options/src/index.css @@ -1,2 +1,7 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-size: var(--ig-size-small); + } + diff --git a/samples/grids/grid/row-editing-options/src/index.ts b/samples/grids/grid/row-editing-options/src/index.ts index 3011788fd1..0f3d026758 100644 --- a/samples/grids/grid/row-editing-options/src/index.ts +++ b/samples/grids/grid/row-editing-options/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -21,7 +21,6 @@ export class Sample { } return this._columnPipeArgs1; } - private _bind: () => void; constructor() { @@ -33,6 +32,7 @@ export class Sample { column1.pipeArgs = this.columnPipeArgs1; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/row-editing-options/tsconfig.json b/samples/grids/grid/row-editing-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/row-editing-options/tsconfig.json +++ b/samples/grids/grid/row-editing-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/row-editing-options/webpack.config.js b/samples/grids/grid/row-editing-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/row-editing-options/webpack.config.js +++ b/samples/grids/grid/row-editing-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/row-editing-style/sandbox.config.json b/samples/grids/grid/row-editing-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/row-editing-style/sandbox.config.json +++ b/samples/grids/grid/row-editing-style/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/row-editing-style/src/index.css b/samples/grids/grid/row-editing-style/src/index.css index 0fe9368715..cc7b8709b5 100644 --- a/samples/grids/grid/row-editing-style/src/index.css +++ b/samples/grids/grid/row-editing-style/src/index.css @@ -1,2 +1,11 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-banner-banner-background: #292826; + --ig-banner-banner-message-color: #ffcd0f; + --ig-button-foreground: #ffcd0f; + --ig-button-hover-foreground: white; + --ig-button-font-weight: 600; +} + diff --git a/samples/grids/grid/row-editing-style/src/index.ts b/samples/grids/grid/row-editing-style/src/index.ts index 3011788fd1..0f3d026758 100644 --- a/samples/grids/grid/row-editing-style/src/index.ts +++ b/samples/grids/grid/row-editing-style/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -21,7 +21,6 @@ export class Sample { } return this._columnPipeArgs1; } - private _bind: () => void; constructor() { @@ -33,6 +32,7 @@ export class Sample { column1.pipeArgs = this.columnPipeArgs1; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/grid/row-editing-style/tsconfig.json b/samples/grids/grid/row-editing-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/row-editing-style/tsconfig.json +++ b/samples/grids/grid/row-editing-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/row-editing-style/webpack.config.js b/samples/grids/grid/row-editing-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/row-editing-style/webpack.config.js +++ b/samples/grids/grid/row-editing-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/row-paging-basic/sandbox.config.json b/samples/grids/grid/row-paging-basic/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/row-paging-basic/sandbox.config.json +++ b/samples/grids/grid/row-paging-basic/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/row-paging-basic/src/index.css b/samples/grids/grid/row-paging-basic/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/row-paging-basic/src/index.css +++ b/samples/grids/grid/row-paging-basic/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/row-paging-basic/src/index.ts b/samples/grids/grid/row-paging-basic/src/index.ts index db020da707..22e4871731 100644 --- a/samples/grids/grid/row-paging-basic/src/index.ts +++ b/samples/grids/grid/row-paging-basic/src/index.ts @@ -3,10 +3,10 @@ import { IgcGridComponent, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteu import { AthletesDataItem, AthletesData } from './AthletesData'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; - defineAllComponents(); import "./index.css"; @@ -26,7 +26,6 @@ export class Sample { } return this._columnPipeArgs1; } - private column2: IgcColumnComponent private column3: IgcColumnComponent private _bind: () => void; @@ -44,6 +43,7 @@ export class Sample { column3.bodyTemplate = this.webGridImageCellTemplate; } this._bind(); + } private _athletesData: AthletesData = null; @@ -55,6 +55,7 @@ export class Sample { return this._athletesData; } + public webGridProgressCellTemplate = (ctx: IgcCellTemplateContext) => { return html`
diff --git a/samples/grids/grid/row-paging-basic/tsconfig.json b/samples/grids/grid/row-paging-basic/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/row-paging-basic/tsconfig.json +++ b/samples/grids/grid/row-paging-basic/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/row-paging-basic/webpack.config.js b/samples/grids/grid/row-paging-basic/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/row-paging-basic/webpack.config.js +++ b/samples/grids/grid/row-paging-basic/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/row-paging-options/sandbox.config.json b/samples/grids/grid/row-paging-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/row-paging-options/sandbox.config.json +++ b/samples/grids/grid/row-paging-options/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/row-paging-options/src/index.css b/samples/grids/grid/row-paging-options/src/index.css index 0fe9368715..3b330b391d 100644 --- a/samples/grids/grid/row-paging-options/src/index.css +++ b/samples/grids/grid/row-paging-options/src/index.css @@ -1,2 +1,7 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-size: var(--ig-size-medium); + } + diff --git a/samples/grids/grid/row-paging-options/src/index.ts b/samples/grids/grid/row-paging-options/src/index.ts index 3c9108b73c..64e8ebf441 100644 --- a/samples/grids/grid/row-paging-options/src/index.ts +++ b/samples/grids/grid/row-paging-options/src/index.ts @@ -5,11 +5,11 @@ import { IgcGridComponent, IgcPaginatorComponent, IgcPaginatorResourceStrings, I import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { AthletesDataItem, AthletesData } from './AthletesData'; import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } 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(); import "./index.css"; @@ -33,7 +33,6 @@ export class Sample { } return this._paginatorResourceStrings1; } - private column1: IgcColumnComponent private _columnPipeArgs1: IgcColumnPipeArgs | null = null; public get columnPipeArgs1(): IgcColumnPipeArgs { @@ -46,7 +45,6 @@ export class Sample { } return this._columnPipeArgs1; } - private propertyEditor: IgcPropertyEditorPanelComponent private sizeEditor: IgcPropertyEditorPropertyDescriptionComponent private _bind: () => void; @@ -68,6 +66,7 @@ export class Sample { sizeEditor.changed = this.webGridSetGridSize; } this._bind(); + } private _athletesData: AthletesData = null; diff --git a/samples/grids/grid/row-paging-options/tsconfig.json b/samples/grids/grid/row-paging-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/row-paging-options/tsconfig.json +++ b/samples/grids/grid/row-paging-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/row-paging-options/webpack.config.js b/samples/grids/grid/row-paging-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/row-paging-options/webpack.config.js +++ b/samples/grids/grid/row-paging-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/row-pinning-drag/sandbox.config.json b/samples/grids/grid/row-pinning-drag/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/row-pinning-drag/sandbox.config.json +++ b/samples/grids/grid/row-pinning-drag/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/row-pinning-drag/src/index.css b/samples/grids/grid/row-pinning-drag/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/row-pinning-drag/src/index.css +++ b/samples/grids/grid/row-pinning-drag/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/row-pinning-drag/src/index.ts b/samples/grids/grid/row-pinning-drag/src/index.ts index 776c8e3a5a..1bc71a9435 100644 --- a/samples/grids/grid/row-pinning-drag/src/index.ts +++ b/samples/grids/grid/row-pinning-drag/src/index.ts @@ -3,11 +3,11 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent, IgcPinningConfig, RowPinningPosition } from 'igniteui-webcomponents-grids/grids'; import CustomersDataLocal from './CustomersDataLocal.json'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; - +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule @@ -27,7 +27,6 @@ export class Sample { } return this._pinningConfig1; } - private _bind: () => void; constructor() { @@ -38,6 +37,7 @@ export class Sample { grid.pinning = this.pinningConfig1; } this._bind(); + } private _customersDataLocal: any[] = CustomersDataLocal; diff --git a/samples/grids/grid/row-pinning-drag/tsconfig.json b/samples/grids/grid/row-pinning-drag/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/row-pinning-drag/tsconfig.json +++ b/samples/grids/grid/row-pinning-drag/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/row-pinning-drag/webpack.config.js b/samples/grids/grid/row-pinning-drag/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/row-pinning-drag/webpack.config.js +++ b/samples/grids/grid/row-pinning-drag/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/row-pinning-extra-column/sandbox.config.json b/samples/grids/grid/row-pinning-extra-column/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/row-pinning-extra-column/sandbox.config.json +++ b/samples/grids/grid/row-pinning-extra-column/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/row-pinning-extra-column/src/index.css b/samples/grids/grid/row-pinning-extra-column/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/row-pinning-extra-column/src/index.css +++ b/samples/grids/grid/row-pinning-extra-column/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/row-pinning-extra-column/src/index.ts b/samples/grids/grid/row-pinning-extra-column/src/index.ts index 0bdf2c79e0..39d3d371d4 100644 --- a/samples/grids/grid/row-pinning-extra-column/src/index.ts +++ b/samples/grids/grid/row-pinning-extra-column/src/index.ts @@ -5,11 +5,11 @@ import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-gri import CustomersDataLocal from './CustomersDataLocal.json'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; - +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule @@ -30,6 +30,7 @@ export class Sample { column1.bodyTemplate = this.webGridRowPinCellTemplate; } this._bind(); + } private _customersDataLocal: any[] = CustomersDataLocal; diff --git a/samples/grids/grid/row-pinning-extra-column/tsconfig.json b/samples/grids/grid/row-pinning-extra-column/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/row-pinning-extra-column/tsconfig.json +++ b/samples/grids/grid/row-pinning-extra-column/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/row-pinning-extra-column/webpack.config.js b/samples/grids/grid/row-pinning-extra-column/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/row-pinning-extra-column/webpack.config.js +++ b/samples/grids/grid/row-pinning-extra-column/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/row-pinning-options/sandbox.config.json b/samples/grids/grid/row-pinning-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/row-pinning-options/sandbox.config.json +++ b/samples/grids/grid/row-pinning-options/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/row-pinning-options/src/index.css b/samples/grids/grid/row-pinning-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/row-pinning-options/src/index.css +++ b/samples/grids/grid/row-pinning-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/row-pinning-options/src/index.ts b/samples/grids/grid/row-pinning-options/src/index.ts index 57abb93ae3..a3cc5dcc8c 100644 --- a/samples/grids/grid/row-pinning-options/src/index.ts +++ b/samples/grids/grid/row-pinning-options/src/index.ts @@ -5,11 +5,11 @@ import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionCo import { IgcGridComponent, IgcPinningConfig, RowPinningPosition, IgcActionStripComponent } from 'igniteui-webcomponents-grids/grids'; import CustomersDataLocal from './CustomersDataLocal.json'; import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } 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(); import "./index.css"; @@ -34,7 +34,6 @@ export class Sample { } return this._pinningConfig1; } - private actionStrip: IgcActionStripComponent private _bind: () => void; @@ -53,6 +52,7 @@ export class Sample { grid.pinning = this.pinningConfig1; } this._bind(); + } private _customersDataLocal: any[] = CustomersDataLocal; diff --git a/samples/grids/grid/row-pinning-options/tsconfig.json b/samples/grids/grid/row-pinning-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/row-pinning-options/tsconfig.json +++ b/samples/grids/grid/row-pinning-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/row-pinning-options/webpack.config.js b/samples/grids/grid/row-pinning-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/row-pinning-options/webpack.config.js +++ b/samples/grids/grid/row-pinning-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/row-pinning-style/sandbox.config.json b/samples/grids/grid/row-pinning-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/row-pinning-style/sandbox.config.json +++ b/samples/grids/grid/row-pinning-style/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/row-pinning-style/src/index.css b/samples/grids/grid/row-pinning-style/src/index.css index 0fe9368715..e8c11e3bf1 100644 --- a/samples/grids/grid/row-pinning-style/src/index.css +++ b/samples/grids/grid/row-pinning-style/src/index.css @@ -1,2 +1,10 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-grid-pinned-border-width: 5px; + --ig-grid-pinned-border-style: double; + --ig-grid-pinned-border-color: #FFCD0F; + --ig-grid-cell-active-border-color: #FFCD0F; + } + diff --git a/samples/grids/grid/row-pinning-style/src/index.ts b/samples/grids/grid/row-pinning-style/src/index.ts index da999ceba6..ab4b5bd49c 100644 --- a/samples/grids/grid/row-pinning-style/src/index.ts +++ b/samples/grids/grid/row-pinning-style/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridDescriptionModule, WebActionStripDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent, IgcPinningConfig, RowPinningPosition, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import CustomersDataLocal from './CustomersDataLocal.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -21,7 +21,6 @@ export class Sample { } return this._pinningConfig1; } - private company: IgcColumnComponent private contactName: IgcColumnComponent private contactTitle: IgcColumnComponent @@ -50,6 +49,7 @@ export class Sample { grid.pinning = this.pinningConfig1; } this._bind(); + } private _customersDataLocal: any[] = CustomersDataLocal; diff --git a/samples/grids/grid/row-pinning-style/tsconfig.json b/samples/grids/grid/row-pinning-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/row-pinning-style/tsconfig.json +++ b/samples/grids/grid/row-pinning-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/row-pinning-style/webpack.config.js b/samples/grids/grid/row-pinning-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/row-pinning-style/webpack.config.js +++ b/samples/grids/grid/row-pinning-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/row-reorder/sandbox.config.json b/samples/grids/grid/row-reorder/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/row-reorder/sandbox.config.json +++ b/samples/grids/grid/row-reorder/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/row-reorder/src/index.css b/samples/grids/grid/row-reorder/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/row-reorder/src/index.css +++ b/samples/grids/grid/row-reorder/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/row-reorder/src/index.ts b/samples/grids/grid/row-reorder/src/index.ts index 2314002299..081ec8e8ad 100644 --- a/samples/grids/grid/row-reorder/src/index.ts +++ b/samples/grids/grid/row-reorder/src/index.ts @@ -4,11 +4,11 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescrip import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { CustomersDataItem, CustomersData } from './CustomersData'; import { IgcRowDragEndEventArgs } from 'igniteui-webcomponents-grids/grids'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; - +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule @@ -28,6 +28,7 @@ export class Sample { grid.addEventListener("rowDragEnd", this.webGridReorderRowHandler); } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/row-reorder/tsconfig.json b/samples/grids/grid/row-reorder/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/row-reorder/tsconfig.json +++ b/samples/grids/grid/row-reorder/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/row-reorder/webpack.config.js b/samples/grids/grid/row-reorder/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/row-reorder/webpack.config.js +++ b/samples/grids/grid/row-reorder/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/row-selection-mode/sandbox.config.json b/samples/grids/grid/row-selection-mode/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/row-selection-mode/sandbox.config.json +++ b/samples/grids/grid/row-selection-mode/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/row-selection-mode/src/index.css b/samples/grids/grid/row-selection-mode/src/index.css index 0fe9368715..77958e8090 100644 --- a/samples/grids/grid/row-selection-mode/src/index.css +++ b/samples/grids/grid/row-selection-mode/src/index.css @@ -1,2 +1,26 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.cellAlignStyle { + text-align: right; + float:right; +} +.cellAlignStyle > span { + float:right; +} +.up { + color: green; +} +.down { + color: red; +} +.grid__wrapper { + padding: 16px; +} +.currency-badge-container { + width: 80px; + float: right; +} +.badge-left { + float: left; +} diff --git a/samples/grids/grid/row-selection-mode/src/index.ts b/samples/grids/grid/row-selection-mode/src/index.ts index 4a5c8a6730..9c4866c47c 100644 --- a/samples/grids/grid/row-selection-mode/src/index.ts +++ b/samples/grids/grid/row-selection-mode/src/index.ts @@ -7,11 +7,11 @@ import { FinancialDataAllItem, FinancialDataAll } from './FinancialDataAll'; import { IgcBadgeComponent } from 'igniteui-webcomponents'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -39,7 +39,6 @@ export class Sample { } return this._columnPipeArgs1; } - private column2: IgcColumnComponent private _columnPipeArgs2: IgcColumnPipeArgs | null = null; public get columnPipeArgs2(): IgcColumnPipeArgs { @@ -53,7 +52,6 @@ export class Sample { } return this._columnPipeArgs2; } - private column3: IgcColumnComponent private _columnPipeArgs3: IgcColumnPipeArgs | null = null; public get columnPipeArgs3(): IgcColumnPipeArgs { @@ -67,7 +65,6 @@ export class Sample { } return this._columnPipeArgs3; } - private column4: IgcColumnComponent private column5: IgcColumnComponent private column6: IgcColumnComponent @@ -97,6 +94,7 @@ export class Sample { column6.bodyTemplate = this.webGridCurrencyCellTemplate; } this._bind(); + } private _financialDataAll: FinancialDataAll = null; diff --git a/samples/grids/grid/row-selection-mode/tsconfig.json b/samples/grids/grid/row-selection-mode/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/row-selection-mode/tsconfig.json +++ b/samples/grids/grid/row-selection-mode/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/row-selection-mode/webpack.config.js b/samples/grids/grid/row-selection-mode/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/row-selection-mode/webpack.config.js +++ b/samples/grids/grid/row-selection-mode/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/row-selection-template-excel/sandbox.config.json b/samples/grids/grid/row-selection-template-excel/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/row-selection-template-excel/sandbox.config.json +++ b/samples/grids/grid/row-selection-template-excel/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/row-selection-template-excel/src/index.css b/samples/grids/grid/row-selection-template-excel/src/index.css index 0fe9368715..3b330b391d 100644 --- a/samples/grids/grid/row-selection-template-excel/src/index.css +++ b/samples/grids/grid/row-selection-template-excel/src/index.css @@ -1,2 +1,7 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-size: var(--ig-size-medium); + } + diff --git a/samples/grids/grid/row-selection-template-excel/src/index.ts b/samples/grids/grid/row-selection-template-excel/src/index.ts index f680b74cf1..a958f652ef 100644 --- a/samples/grids/grid/row-selection-template-excel/src/index.ts +++ b/samples/grids/grid/row-selection-template-excel/src/index.ts @@ -5,11 +5,11 @@ import { IgcGridComponent, IgcPaginatorComponent, IgcPaginatorResourceStrings } import { CustomersDataItem, CustomersData } from './CustomersData'; import { IgcRowSelectorTemplateContext, IgcHeadSelectorTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; - +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule @@ -30,7 +30,6 @@ export class Sample { } return this._paginatorResourceStrings1; } - private _bind: () => void; constructor() { @@ -44,6 +43,7 @@ export class Sample { paginator.resourceStrings = this.paginatorResourceStrings1; } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/row-selection-template-excel/tsconfig.json b/samples/grids/grid/row-selection-template-excel/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/row-selection-template-excel/tsconfig.json +++ b/samples/grids/grid/row-selection-template-excel/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/row-selection-template-excel/webpack.config.js b/samples/grids/grid/row-selection-template-excel/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/row-selection-template-excel/webpack.config.js +++ b/samples/grids/grid/row-selection-template-excel/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/row-selection-template-numbers/sandbox.config.json b/samples/grids/grid/row-selection-template-numbers/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/row-selection-template-numbers/sandbox.config.json +++ b/samples/grids/grid/row-selection-template-numbers/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/row-selection-template-numbers/src/index.css b/samples/grids/grid/row-selection-template-numbers/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/row-selection-template-numbers/src/index.css +++ b/samples/grids/grid/row-selection-template-numbers/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/row-selection-template-numbers/src/index.ts b/samples/grids/grid/row-selection-template-numbers/src/index.ts index 6e5cdd603a..436a2ded2a 100644 --- a/samples/grids/grid/row-selection-template-numbers/src/index.ts +++ b/samples/grids/grid/row-selection-template-numbers/src/index.ts @@ -4,10 +4,10 @@ import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { CustomersDataItem, CustomersData } from './CustomersData'; import { IgcRowSelectorTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; - defineAllComponents(); import "./index.css"; @@ -26,6 +26,7 @@ export class Sample { grid.headSelectorTemplate = this.webGridHeaderRowSelectorTemplate; } this._bind(); + } private _customersData: CustomersData = null; diff --git a/samples/grids/grid/row-selection-template-numbers/tsconfig.json b/samples/grids/grid/row-selection-template-numbers/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/row-selection-template-numbers/tsconfig.json +++ b/samples/grids/grid/row-selection-template-numbers/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/row-selection-template-numbers/webpack.config.js b/samples/grids/grid/row-selection-template-numbers/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/row-selection-template-numbers/webpack.config.js +++ b/samples/grids/grid/row-selection-template-numbers/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/row-styles/sandbox.config.json b/samples/grids/grid/row-styles/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/row-styles/sandbox.config.json +++ b/samples/grids/grid/row-styles/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/row-styles/src/index.css b/samples/grids/grid/row-styles/src/index.css index 0fe9368715..77958e8090 100644 --- a/samples/grids/grid/row-styles/src/index.css +++ b/samples/grids/grid/row-styles/src/index.css @@ -1,2 +1,26 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.cellAlignStyle { + text-align: right; + float:right; +} +.cellAlignStyle > span { + float:right; +} +.up { + color: green; +} +.down { + color: red; +} +.grid__wrapper { + padding: 16px; +} +.currency-badge-container { + width: 80px; + float: right; +} +.badge-left { + float: left; +} diff --git a/samples/grids/grid/row-styles/src/index.ts b/samples/grids/grid/row-styles/src/index.ts index a0568ed40b..6b6fa7e82f 100644 --- a/samples/grids/grid/row-styles/src/index.ts +++ b/samples/grids/grid/row-styles/src/index.ts @@ -6,10 +6,10 @@ import { IgcRowType } from 'igniteui-webcomponents-grids/grids'; import { IgcBadgeComponent } from 'igniteui-webcomponents'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; - defineAllComponents(); import "./index.css"; @@ -33,6 +33,7 @@ export class Sample { column2.bodyTemplate = this.webGridCurrencyCellTemplate; } this._bind(); + } private _financialDataAll: FinancialDataAll = null; @@ -44,6 +45,7 @@ export class Sample { return this._financialDataAll; } + public webGridRowStylesHandler = { 'background': (row: IgcRowType) => (+row.data['Change'] < 0 && +row.data['YearlyChange'] < 0) ? '#FF000088' : '#00000000', 'border': (row: IgcRowType) => (+row.data['Change'] < 0 && +row.data['YearlyChange'] < 0) ? '2px solid' : '1px solid', diff --git a/samples/grids/grid/row-styles/tsconfig.json b/samples/grids/grid/row-styles/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/row-styles/tsconfig.json +++ b/samples/grids/grid/row-styles/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/row-styles/webpack.config.js b/samples/grids/grid/row-styles/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/row-styles/webpack.config.js +++ b/samples/grids/grid/row-styles/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/styling-custom-CSS/sandbox.config.json b/samples/grids/grid/styling-custom-CSS/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/styling-custom-CSS/sandbox.config.json +++ b/samples/grids/grid/styling-custom-CSS/sandbox.config.json @@ -3,5 +3,4 @@ "hardReloadOnChange": false, "view": "browser", "template": "parcel" -} - \ No newline at end of file +} \ No newline at end of file diff --git a/samples/grids/grid/styling-custom-CSS/src/index.css b/samples/grids/grid/styling-custom-CSS/src/index.css index 0fe9368715..85e1b336ac 100644 --- a/samples/grids/grid/styling-custom-CSS/src/index.css +++ b/samples/grids/grid/styling-custom-CSS/src/index.css @@ -1,2 +1,9 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --cell-selected-text-color: #FFFFFF; + --cell-active-border-color: #f2c43c; + --cell-selected-background: #0062a3; +} + diff --git a/samples/grids/grid/styling-custom-CSS/src/index.ts b/samples/grids/grid/styling-custom-CSS/src/index.ts index ab779baaf7..49b0bc05b2 100644 --- a/samples/grids/grid/styling-custom-CSS/src/index.ts +++ b/samples/grids/grid/styling-custom-CSS/src/index.ts @@ -1,10 +1,10 @@ import { LocalDataItem, LocalData } from './SampleData'; import 'igniteui-webcomponents-grids/grids/combined'; import { IgcGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -24,6 +24,7 @@ export class Sample { grid.data = this.localData; } this._bind(); + } private _localData: LocalData = null; diff --git a/samples/grids/grid/styling-custom-CSS/tsconfig.json b/samples/grids/grid/styling-custom-CSS/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/styling-custom-CSS/tsconfig.json +++ b/samples/grids/grid/styling-custom-CSS/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/styling-custom-CSS/webpack.config.js b/samples/grids/grid/styling-custom-CSS/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/styling-custom-CSS/webpack.config.js +++ b/samples/grids/grid/styling-custom-CSS/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/toolbar-sample-1/sandbox.config.json b/samples/grids/grid/toolbar-sample-1/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/toolbar-sample-1/sandbox.config.json +++ b/samples/grids/grid/toolbar-sample-1/sandbox.config.json @@ -3,5 +3,4 @@ "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-1/src/index.css b/samples/grids/grid/toolbar-sample-1/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/toolbar-sample-1/src/index.css +++ b/samples/grids/grid/toolbar-sample-1/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/toolbar-sample-1/src/index.ts b/samples/grids/grid/toolbar-sample-1/src/index.ts index 33746ba6c7..aae93262f8 100644 --- a/samples/grids/grid/toolbar-sample-1/src/index.ts +++ b/samples/grids/grid/toolbar-sample-1/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { AthletesDataItem, AthletesData } from './AthletesData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { grid1.data = this.athletesData; } this._bind(); + } private _athletesData: AthletesData = null; diff --git a/samples/grids/grid/toolbar-sample-1/tsconfig.json b/samples/grids/grid/toolbar-sample-1/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/toolbar-sample-1/tsconfig.json +++ b/samples/grids/grid/toolbar-sample-1/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/toolbar-sample-1/webpack.config.js b/samples/grids/grid/toolbar-sample-1/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/toolbar-sample-1/webpack.config.js +++ b/samples/grids/grid/toolbar-sample-1/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/toolbar-sample-2/sandbox.config.json b/samples/grids/grid/toolbar-sample-2/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/toolbar-sample-2/sandbox.config.json +++ b/samples/grids/grid/toolbar-sample-2/sandbox.config.json @@ -3,5 +3,4 @@ "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-2/src/index.css b/samples/grids/grid/toolbar-sample-2/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/toolbar-sample-2/src/index.css +++ b/samples/grids/grid/toolbar-sample-2/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/toolbar-sample-2/src/index.ts b/samples/grids/grid/toolbar-sample-2/src/index.ts index 33746ba6c7..aae93262f8 100644 --- a/samples/grids/grid/toolbar-sample-2/src/index.ts +++ b/samples/grids/grid/toolbar-sample-2/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { AthletesDataItem, AthletesData } from './AthletesData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { grid1.data = this.athletesData; } this._bind(); + } private _athletesData: AthletesData = null; diff --git a/samples/grids/grid/toolbar-sample-2/tsconfig.json b/samples/grids/grid/toolbar-sample-2/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/toolbar-sample-2/tsconfig.json +++ b/samples/grids/grid/toolbar-sample-2/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/toolbar-sample-2/webpack.config.js b/samples/grids/grid/toolbar-sample-2/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/toolbar-sample-2/webpack.config.js +++ b/samples/grids/grid/toolbar-sample-2/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/toolbar-sample-3/sandbox.config.json b/samples/grids/grid/toolbar-sample-3/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/toolbar-sample-3/sandbox.config.json +++ b/samples/grids/grid/toolbar-sample-3/sandbox.config.json @@ -3,5 +3,4 @@ "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-3/src/index.css b/samples/grids/grid/toolbar-sample-3/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/grid/toolbar-sample-3/src/index.css +++ b/samples/grids/grid/toolbar-sample-3/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/grid/toolbar-sample-3/src/index.ts b/samples/grids/grid/toolbar-sample-3/src/index.ts index 3cad07dc39..7090349273 100644 --- a/samples/grids/grid/toolbar-sample-3/src/index.ts +++ b/samples/grids/grid/toolbar-sample-3/src/index.ts @@ -3,10 +3,10 @@ import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcompone import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { AthletesDataItem, AthletesData } from './AthletesData'; import { IgcExporterOptionsBase, IgcGridToolbarExportEventArgs } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -22,6 +22,7 @@ export class Sample { grid1.addEventListener("toolbarExporting", this.webGridToolbarExporting); } this._bind(); + } private _athletesData: AthletesData = null; diff --git a/samples/grids/grid/toolbar-sample-3/tsconfig.json b/samples/grids/grid/toolbar-sample-3/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/toolbar-sample-3/tsconfig.json +++ b/samples/grids/grid/toolbar-sample-3/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/toolbar-sample-3/webpack.config.js b/samples/grids/grid/toolbar-sample-3/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/toolbar-sample-3/webpack.config.js +++ b/samples/grids/grid/toolbar-sample-3/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/grid/toolbar-style/sandbox.config.json b/samples/grids/grid/toolbar-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/grid/toolbar-style/sandbox.config.json +++ b/samples/grids/grid/toolbar-style/sandbox.config.json @@ -3,5 +3,4 @@ "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-style/src/index.css b/samples/grids/grid/toolbar-style/src/index.css index 0fe9368715..a68274771b 100644 --- a/samples/grids/grid/toolbar-style/src/index.css +++ b/samples/grids/grid/toolbar-style/src/index.css @@ -1,2 +1,9 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-grid-toolbar-background-color: #2a2b2f; + --ig-grid-toolbar-title-text-color: #ffcd0f; + --ig-grid-toolbar-dropdown-background: #2a2b2f; +} + diff --git a/samples/grids/grid/toolbar-style/src/index.ts b/samples/grids/grid/toolbar-style/src/index.ts index 4e09af215f..fa61408bf5 100644 --- a/samples/grids/grid/toolbar-style/src/index.ts +++ b/samples/grids/grid/toolbar-style/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { AthletesDataItem, AthletesData } from './AthletesData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { grid.data = this.athletesData; } this._bind(); + } private _athletesData: AthletesData = null; diff --git a/samples/grids/grid/toolbar-style/tsconfig.json b/samples/grids/grid/toolbar-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/grid/toolbar-style/tsconfig.json +++ b/samples/grids/grid/toolbar-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/grid/toolbar-style/webpack.config.js b/samples/grids/grid/toolbar-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/grid/toolbar-style/webpack.config.js +++ b/samples/grids/grid/toolbar-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/action-strip/sandbox.config.json b/samples/grids/hierarchical-grid/action-strip/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/action-strip/sandbox.config.json +++ b/samples/grids/hierarchical-grid/action-strip/sandbox.config.json @@ -3,5 +3,4 @@ "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/action-strip/src/index.css b/samples/grids/hierarchical-grid/action-strip/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/action-strip/src/index.css +++ b/samples/grids/hierarchical-grid/action-strip/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/action-strip/src/index.ts b/samples/grids/hierarchical-grid/action-strip/src/index.ts index ce331f08e6..326a7b0f5e 100644 --- a/samples/grids/hierarchical-grid/action-strip/src/index.ts +++ b/samples/grids/hierarchical-grid/action-strip/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent, IgcPinningConfig, RowPinningPosition, IgcActionStripComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -20,7 +20,6 @@ export class Sample { } return this._pinningConfig1; } - private actionStrip: IgcActionStripComponent private _bind: () => void; @@ -33,6 +32,7 @@ export class Sample { hierarchicalGrid1.pinning = this.pinningConfig1; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/action-strip/tsconfig.json b/samples/grids/hierarchical-grid/action-strip/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/action-strip/tsconfig.json +++ b/samples/grids/hierarchical-grid/action-strip/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/action-strip/webpack.config.js b/samples/grids/hierarchical-grid/action-strip/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/action-strip/webpack.config.js +++ b/samples/grids/hierarchical-grid/action-strip/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/advanced-filtering-options/sandbox.config.json b/samples/grids/hierarchical-grid/advanced-filtering-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/sandbox.config.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/sandbox.config.json @@ -3,5 +3,4 @@ "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/advanced-filtering-options/src/index.css b/samples/grids/hierarchical-grid/advanced-filtering-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/src/index.css +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/advanced-filtering-options/src/index.ts b/samples/grids/hierarchical-grid/advanced-filtering-options/src/index.ts index ad7c60070c..49f71a07a9 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/src/index.ts +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hierarchicalGrid1.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/advanced-filtering-options/tsconfig.json b/samples/grids/hierarchical-grid/advanced-filtering-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/tsconfig.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/advanced-filtering-options/webpack.config.js b/samples/grids/hierarchical-grid/advanced-filtering-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/webpack.config.js +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/sandbox.config.json b/samples/grids/hierarchical-grid/advanced-filtering-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/sandbox.config.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/sandbox.config.json @@ -3,5 +3,4 @@ "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/advanced-filtering-style/src/index.css b/samples/grids/hierarchical-grid/advanced-filtering-style/src/index.css index 0fe9368715..9259d94790 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/src/index.css +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/src/index.css @@ -1,2 +1,60 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#hierarchicalGrid1 { + + --ig-button-background: #292826; + --ig-button-foreground:#ffcd0f; + --ig-button-hover-foreground:#292826; + --ig-button-hover-background:#ffcd0f; + --ig-button-focus-foreground:#ffcd0f; + --ig-button-focus-background:#292826; + --ig-button-active-background:#ffcd0f; + --ig-button-active-foreground:#292826; + --ig-button-border-color:#ffcd0f; + --ig-button-hover-border-color:#ffcd0f; + --ig-button-focus-border-color:#ffcd0f; + --ig-button-active-border-color:#ffcd0f; + + --ig-button-group-item-background: #292826; + --ig-button-group-item-text-color: #ffcd0f; + --ig-button-group-item-border-color: #ffcd0f; + --ig-button-group-item-selected-background: #ffcd0f; + --ig-button-group-item-hover-background: #ffcd0f; + --ig-button-group-item-selected-hover-background: #ffcd0f; + --ig-button-group-item-disabled-border: #ffcd0f; + --ig-button-group-item-selected-border-color: #ffcd0f; + + --ig-input-group-idle-text-color: #ffcd0f; + --ig-input-group-focused-text-color: #ffcd0f; + --ig-input-group-filled-text-color: #ffcd0f; + --ig-input-group-idle-bottom-line-color: #ffe482; + --ig-input-group-focused-secondary-color: #ffcd0f; + + --ig-chip-background: #ffcd0f; + --ig-chip-text-color: #292826; + + --ig-drop-down-background-color: #292826; + --ig-drop-down-item-text-color: #ffcd0f; + --ig-drop-down-hover-item-background: #ffcd0f; + --ig-drop-down-hover-item-text-color: #292826; + --ig-drop-down-focused-item-background: #ffcd0f; + --ig-drop-down-focused-item-text-color: #292826; + --ig-drop-down-selected-item-background: #ffcd0f; + --ig-drop-down-selected-item-text-color: #292826; + --ig-drop-down-selected-focus-item-background: #ffcd0f; + --ig-drop-down-selected-focus-item-text-color: #292826; + --ig-drop-down-selected-hover-item-background: #ffcd0f; + --ig-drop-down-selected-hover-item-text-color: #292826; + + --ig-query-builder-header-foreground: #EDEDED; + --ig-query-builder-header-background: gray; + --ig-query-builder-background: #292826; + --ig-query-builder-foreground: #ffcd0f; +} + +* { + --background-or: red; + --filtering-row-background: #292826; +} + diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/src/index.ts b/samples/grids/hierarchical-grid/advanced-filtering-style/src/index.ts index ad7c60070c..49f71a07a9 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/src/index.ts +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hierarchicalGrid1.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/tsconfig.json b/samples/grids/hierarchical-grid/advanced-filtering-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/webpack.config.js b/samples/grids/hierarchical-grid/advanced-filtering-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/webpack.config.js +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/sandbox.config.json b/samples/grids/hierarchical-grid/cell-editing-sample/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/sandbox.config.json +++ b/samples/grids/hierarchical-grid/cell-editing-sample/sandbox.config.json @@ -3,5 +3,4 @@ "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-editing-sample/src/index.css b/samples/grids/hierarchical-grid/cell-editing-sample/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/src/index.css +++ b/samples/grids/hierarchical-grid/cell-editing-sample/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/src/index.ts b/samples/grids/hierarchical-grid/cell-editing-sample/src/index.ts index a84c0a1e6d..24b0e435b7 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/src/index.ts +++ b/samples/grids/hierarchical-grid/cell-editing-sample/src/index.ts @@ -4,10 +4,10 @@ import { IgcHierarchicalGridComponent, IgcColumnComponent } from 'igniteui-webco import HGridDndData from './HGridDndData.json'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; - defineAllComponents(); import "./index.css"; @@ -33,6 +33,7 @@ export class Sample { column3.inlineEditorTemplate = this.hGridCellEditCellTemplate; } this._bind(); + } private _hGridDndData: any[] = HGridDndData; diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/tsconfig.json b/samples/grids/hierarchical-grid/cell-editing-sample/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/tsconfig.json +++ b/samples/grids/hierarchical-grid/cell-editing-sample/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/webpack.config.js b/samples/grids/hierarchical-grid/cell-editing-sample/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/webpack.config.js +++ b/samples/grids/hierarchical-grid/cell-editing-sample/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/sandbox.config.json b/samples/grids/hierarchical-grid/cell-editing-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/sandbox.config.json +++ b/samples/grids/hierarchical-grid/cell-editing-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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-editing-styling/src/index.css b/samples/grids/hierarchical-grid/cell-editing-styling/src/index.css index 0fe9368715..aea51891e1 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/src/index.css +++ b/samples/grids/hierarchical-grid/cell-editing-styling/src/index.css @@ -1,2 +1,13 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-size: var(--ig-size-medium); + } + + #grid { + --ig-grid-edit-mode-color: #FFA500; + --ig-grid-cell-active-border-color: #AAFF00; + --ig-grid-cell-editing-background: #ADD8E6; + } + diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/src/index.ts b/samples/grids/hierarchical-grid/cell-editing-styling/src/index.ts index 6a9dfa6c62..429a437fbd 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/src/index.ts +++ b/samples/grids/hierarchical-grid/cell-editing-styling/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebHierarchicalGridDescriptionModule, WebPaginatorDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { grid.data = this.nwindData; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/tsconfig.json b/samples/grids/hierarchical-grid/cell-editing-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/tsconfig.json +++ b/samples/grids/hierarchical-grid/cell-editing-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/webpack.config.js b/samples/grids/hierarchical-grid/cell-editing-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/webpack.config.js +++ b/samples/grids/hierarchical-grid/cell-editing-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/sandbox.config.json b/samples/grids/hierarchical-grid/cell-selection-mode/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/sandbox.config.json +++ b/samples/grids/hierarchical-grid/cell-selection-mode/sandbox.config.json @@ -3,5 +3,4 @@ "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-mode/src/index.css b/samples/grids/hierarchical-grid/cell-selection-mode/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/src/index.css +++ b/samples/grids/hierarchical-grid/cell-selection-mode/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/src/index.ts b/samples/grids/hierarchical-grid/cell-selection-mode/src/index.ts index fe55566a2c..94c2a95beb 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/src/index.ts +++ b/samples/grids/hierarchical-grid/cell-selection-mode/src/index.ts @@ -5,11 +5,11 @@ import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionCo import { IgcHierarchicalGridComponent, IgcRowIslandComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } 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(); import "./index.css"; @@ -42,6 +42,7 @@ export class Sample { hierarchicalGrid.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/tsconfig.json b/samples/grids/hierarchical-grid/cell-selection-mode/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/tsconfig.json +++ b/samples/grids/hierarchical-grid/cell-selection-mode/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/webpack.config.js b/samples/grids/hierarchical-grid/cell-selection-mode/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/webpack.config.js +++ b/samples/grids/hierarchical-grid/cell-selection-mode/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/sandbox.config.json b/samples/grids/hierarchical-grid/cell-selection-overview/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/sandbox.config.json +++ b/samples/grids/hierarchical-grid/cell-selection-overview/sandbox.config.json @@ -3,5 +3,4 @@ "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-overview/src/index.css b/samples/grids/hierarchical-grid/cell-selection-overview/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/src/index.css +++ b/samples/grids/hierarchical-grid/cell-selection-overview/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/src/index.ts b/samples/grids/hierarchical-grid/cell-selection-overview/src/index.ts index 766786e5f3..aba0611ffe 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/src/index.ts +++ b/samples/grids/hierarchical-grid/cell-selection-overview/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,6 +35,7 @@ export class Sample { hGrid.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/tsconfig.json b/samples/grids/hierarchical-grid/cell-selection-overview/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/tsconfig.json +++ b/samples/grids/hierarchical-grid/cell-selection-overview/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/webpack.config.js b/samples/grids/hierarchical-grid/cell-selection-overview/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/webpack.config.js +++ b/samples/grids/hierarchical-grid/cell-selection-overview/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/cell-selection-style/sandbox.config.json b/samples/grids/hierarchical-grid/cell-selection-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/sandbox.config.json +++ b/samples/grids/hierarchical-grid/cell-selection-style/sandbox.config.json @@ -3,5 +3,4 @@ "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-style/src/index.css b/samples/grids/hierarchical-grid/cell-selection-style/src/index.css index 0fe9368715..ac0bc23f12 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/src/index.css +++ b/samples/grids/hierarchical-grid/cell-selection-style/src/index.css @@ -1,2 +1,9 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#hGrid { + --ig-grid-cell-selected-text-color: #FFFFFF; + --ig-grid-cell-active-border-color: #f2c43c; + --ig-grid-cell-selected-background: #0062a3; +} + diff --git a/samples/grids/hierarchical-grid/cell-selection-style/src/index.ts b/samples/grids/hierarchical-grid/cell-selection-style/src/index.ts index 766786e5f3..aba0611ffe 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/src/index.ts +++ b/samples/grids/hierarchical-grid/cell-selection-style/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,6 +35,7 @@ export class Sample { hGrid.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/cell-selection-style/tsconfig.json b/samples/grids/hierarchical-grid/cell-selection-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/cell-selection-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/cell-selection-style/webpack.config.js b/samples/grids/hierarchical-grid/cell-selection-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/webpack.config.js +++ b/samples/grids/hierarchical-grid/cell-selection-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/sandbox.config.json b/samples/grids/hierarchical-grid/column-collapsible-groups/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/sandbox.config.json +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/sandbox.config.json @@ -3,5 +3,4 @@ "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-collapsible-groups/src/index.css b/samples/grids/hierarchical-grid/column-collapsible-groups/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/src/index.css +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/src/index.ts b/samples/grids/hierarchical-grid/column-collapsible-groups/src/index.ts index 597698a785..87bfde8a13 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/src/index.ts +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import HierarchicalCustomersData from './HierarchicalCustomersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { grid.data = this.hierarchicalCustomersData; } this._bind(); + } private _hierarchicalCustomersData: any[] = HierarchicalCustomersData; diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/tsconfig.json b/samples/grids/hierarchical-grid/column-collapsible-groups/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/webpack.config.js b/samples/grids/hierarchical-grid/column-collapsible-groups/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/sandbox.config.json b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/sandbox.config.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/sandbox.config.json @@ -3,5 +3,4 @@ "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-hiding-toolbar-style/src/index.css b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/src/index.css index 0fe9368715..f43f316e92 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/src/index.css +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/src/index.css @@ -1,2 +1,26 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#hierarchicalGrid { + --ig-column-actions-background-color: #292826; + --ig-column-actions-title-color: #ffcd0f; + --ig-checkbox-tick-color: #292826; + --ig-checkbox-label-color: #ffcd0f; + --ig-checkbox-empty-color: #ffcd0f; + --ig-checkbox-fill-color: #ffcd0f; + --ig-input-group-idle-text-color: white; + --ig-input-group-filled-text-color: #ffcd0f; + --ig-input-group-focused-text-color: #ffcd0f; + --ig-input-group-focused-border-color: #ffcd0f; + --ig-input-group-focused-secondary-color: #ffcd0f; + --ig-button-foreground: #292826; + --ig-button-background: #ffcd0f; + --ig-button-hover-background: #404040; + --ig-button-hover-foreground: #ffcd0f; + --ig-button-focus-background: #ffcd0f; + --ig-button-focus-foreground: black; + --ig-button-focus-visible-background: #ffcd0f; + --ig-button-focus-visible-foreground: black; + --ig-button-disabled-foreground: #ffcd0f; +} + diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/src/index.ts b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/src/index.ts index 3065adca34..f77b2b43ea 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/src/index.ts +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hierarchicalGrid.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/webpack.config.js b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar/sandbox.config.json b/samples/grids/hierarchical-grid/column-hiding-toolbar/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/sandbox.config.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/sandbox.config.json @@ -3,5 +3,4 @@ "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-hiding-toolbar/src/index.css b/samples/grids/hierarchical-grid/column-hiding-toolbar/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/src/index.css +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar/src/index.ts b/samples/grids/hierarchical-grid/column-hiding-toolbar/src/index.ts index ad7c60070c..49f71a07a9 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/src/index.ts +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hierarchicalGrid1.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar/tsconfig.json b/samples/grids/hierarchical-grid/column-hiding-toolbar/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar/webpack.config.js b/samples/grids/hierarchical-grid/column-hiding-toolbar/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/column-moving-options/sandbox.config.json b/samples/grids/hierarchical-grid/column-moving-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/sandbox.config.json +++ b/samples/grids/hierarchical-grid/column-moving-options/sandbox.config.json @@ -3,5 +3,4 @@ "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-moving-options/src/index.css b/samples/grids/hierarchical-grid/column-moving-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/src/index.css +++ b/samples/grids/hierarchical-grid/column-moving-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/column-moving-options/src/index.ts b/samples/grids/hierarchical-grid/column-moving-options/src/index.ts index b28d7bafd1..9419dd7d95 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/src/index.ts +++ b/samples/grids/hierarchical-grid/column-moving-options/src/index.ts @@ -3,10 +3,10 @@ import { IgcHierarchicalGridComponent, IgcPaginatorComponent, IgcColumnComponent import HierarchicalCustomers from './HierarchicalCustomers.json'; import { IgcColumnTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -52,6 +52,7 @@ export class Sample { column10.headerTemplate = this.hierarchicalGridPinHeaderTemplate; } this._bind(); + } private _hierarchicalCustomers: any[] = HierarchicalCustomers; @@ -59,6 +60,7 @@ export class Sample { return this._hierarchicalCustomers; } + public hierarchicalGridPinHeaderTemplate = (ctx: IgcColumnTemplateContext) => { const column = (ctx as any).column; diff --git a/samples/grids/hierarchical-grid/column-moving-options/tsconfig.json b/samples/grids/hierarchical-grid/column-moving-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-moving-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-moving-options/webpack.config.js b/samples/grids/hierarchical-grid/column-moving-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-moving-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/column-moving-styles/sandbox.config.json b/samples/grids/hierarchical-grid/column-moving-styles/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/sandbox.config.json +++ b/samples/grids/hierarchical-grid/column-moving-styles/sandbox.config.json @@ -3,5 +3,4 @@ "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-moving-styles/src/index.css b/samples/grids/hierarchical-grid/column-moving-styles/src/index.css index 0fe9368715..2fc5e07694 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/src/index.css +++ b/samples/grids/hierarchical-grid/column-moving-styles/src/index.css @@ -1,2 +1,9 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-grid-ghost-header-text-color: #f4d45c; + --ig-grid-ghost-header-background: #ad9d9d; + --ig-grid-ghost-header-icon-color: #f4d45c; +} + diff --git a/samples/grids/hierarchical-grid/column-moving-styles/src/index.ts b/samples/grids/hierarchical-grid/column-moving-styles/src/index.ts index 2de04f706c..42dbbff57f 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/src/index.ts +++ b/samples/grids/hierarchical-grid/column-moving-styles/src/index.ts @@ -3,10 +3,10 @@ import { IgcHierarchicalGridComponent, IgcPaginatorComponent, IgcColumnComponent import HierarchicalCustomers from './HierarchicalCustomers.json'; import { IgcColumnTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -52,6 +52,7 @@ export class Sample { column10.headerTemplate = this.hierarchicalGridPinHeaderTemplate; } this._bind(); + } private _hierarchicalCustomers: any[] = HierarchicalCustomers; @@ -59,6 +60,7 @@ export class Sample { return this._hierarchicalCustomers; } + public hierarchicalGridPinHeaderTemplate = (ctx: IgcColumnTemplateContext) => { const column = (ctx as any).column; diff --git a/samples/grids/hierarchical-grid/column-moving-styles/tsconfig.json b/samples/grids/hierarchical-grid/column-moving-styles/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-moving-styles/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-moving-styles/webpack.config.js b/samples/grids/hierarchical-grid/column-moving-styles/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-moving-styles/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/column-pinning-options/sandbox.config.json b/samples/grids/hierarchical-grid/column-pinning-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/sandbox.config.json +++ b/samples/grids/hierarchical-grid/column-pinning-options/sandbox.config.json @@ -3,5 +3,4 @@ "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-pinning-options/src/index.css b/samples/grids/hierarchical-grid/column-pinning-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/src/index.css +++ b/samples/grids/hierarchical-grid/column-pinning-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/column-pinning-options/src/index.ts b/samples/grids/hierarchical-grid/column-pinning-options/src/index.ts index 5328fb40eb..c76e06e045 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/src/index.ts +++ b/samples/grids/hierarchical-grid/column-pinning-options/src/index.ts @@ -3,10 +3,10 @@ import { IgcHierarchicalGridComponent, IgcColumnComponent } from 'igniteui-webco import HierarchicalCustomersData from './HierarchicalCustomersData.json'; import { IgcColumnTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -83,6 +83,7 @@ export class Sample { column21.headerTemplate = this.hierarchicalGridPinHeaderTemplate; } this._bind(); + } private _hierarchicalCustomersData: any[] = HierarchicalCustomersData; @@ -90,6 +91,7 @@ export class Sample { return this._hierarchicalCustomersData; } + public hierarchicalGridPinHeaderTemplate = (ctx: IgcColumnTemplateContext) => { const column = (ctx as any).column; diff --git a/samples/grids/hierarchical-grid/column-pinning-options/tsconfig.json b/samples/grids/hierarchical-grid/column-pinning-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-pinning-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-pinning-options/webpack.config.js b/samples/grids/hierarchical-grid/column-pinning-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-pinning-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/column-pinning-right-side/sandbox.config.json b/samples/grids/hierarchical-grid/column-pinning-right-side/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/sandbox.config.json +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/sandbox.config.json @@ -3,5 +3,4 @@ "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-pinning-right-side/src/index.css b/samples/grids/hierarchical-grid/column-pinning-right-side/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/src/index.css +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/column-pinning-right-side/src/index.ts b/samples/grids/hierarchical-grid/column-pinning-right-side/src/index.ts index f7522b8042..deaea9fa39 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/src/index.ts +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent, IgcPinningConfig, ColumnPinningPosition } from 'igniteui-webcomponents-grids/grids'; import HierarchicalCustomersData from './HierarchicalCustomersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -20,7 +20,6 @@ export class Sample { } return this._pinningConfig1; } - private _bind: () => void; constructor() { @@ -31,6 +30,7 @@ export class Sample { grid.pinning = this.pinningConfig1; } this._bind(); + } private _hierarchicalCustomersData: any[] = HierarchicalCustomersData; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-pinning-right-side/webpack.config.js b/samples/grids/hierarchical-grid/column-pinning-right-side/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/sandbox.config.json b/samples/grids/hierarchical-grid/column-pinning-styles/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/sandbox.config.json +++ b/samples/grids/hierarchical-grid/column-pinning-styles/sandbox.config.json @@ -3,5 +3,4 @@ "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-pinning-styles/src/index.css b/samples/grids/hierarchical-grid/column-pinning-styles/src/index.css index 0fe9368715..38c34c00bf 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/src/index.css +++ b/samples/grids/hierarchical-grid/column-pinning-styles/src/index.css @@ -1,2 +1,10 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-grid-pinned-border-width: 5px; + --ig-grid-pinned-border-color: #FFCD0F; + --ig-grid-pinned-border-style: double; + --ig-grid-cell-active-border-color: #FFCD0F; +} + diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/src/index.ts b/samples/grids/hierarchical-grid/column-pinning-styles/src/index.ts index 597698a785..87bfde8a13 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/src/index.ts +++ b/samples/grids/hierarchical-grid/column-pinning-styles/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import HierarchicalCustomersData from './HierarchicalCustomersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { grid.data = this.hierarchicalCustomersData; } this._bind(); + } private _hierarchicalCustomersData: any[] = HierarchicalCustomersData; diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/tsconfig.json b/samples/grids/hierarchical-grid/column-pinning-styles/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-pinning-styles/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/webpack.config.js b/samples/grids/hierarchical-grid/column-pinning-styles/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-pinning-styles/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/column-pinning/sandbox.config.json b/samples/grids/hierarchical-grid/column-pinning/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/column-pinning/sandbox.config.json +++ b/samples/grids/hierarchical-grid/column-pinning/sandbox.config.json @@ -3,5 +3,4 @@ "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-pinning/src/index.css b/samples/grids/hierarchical-grid/column-pinning/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/column-pinning/src/index.css +++ b/samples/grids/hierarchical-grid/column-pinning/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/column-pinning/src/index.ts b/samples/grids/hierarchical-grid/column-pinning/src/index.ts index 597698a785..87bfde8a13 100644 --- a/samples/grids/hierarchical-grid/column-pinning/src/index.ts +++ b/samples/grids/hierarchical-grid/column-pinning/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import HierarchicalCustomersData from './HierarchicalCustomersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { grid.data = this.hierarchicalCustomersData; } this._bind(); + } private _hierarchicalCustomersData: any[] = HierarchicalCustomersData; diff --git a/samples/grids/hierarchical-grid/column-pinning/tsconfig.json b/samples/grids/hierarchical-grid/column-pinning/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/column-pinning/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-pinning/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-pinning/webpack.config.js b/samples/grids/hierarchical-grid/column-pinning/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/column-pinning/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-pinning/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/column-resize-styling/sandbox.config.json b/samples/grids/hierarchical-grid/column-resize-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/sandbox.config.json +++ b/samples/grids/hierarchical-grid/column-resize-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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-resize-styling/src/index.css b/samples/grids/hierarchical-grid/column-resize-styling/src/index.css index 0fe9368715..1203da6d95 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/src/index.css +++ b/samples/grids/hierarchical-grid/column-resize-styling/src/index.css @@ -1,2 +1,7 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-grid-resize-line-color: #f35b04; +} + diff --git a/samples/grids/hierarchical-grid/column-resize-styling/src/index.ts b/samples/grids/hierarchical-grid/column-resize-styling/src/index.ts index e964441510..174ef44b89 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/src/index.ts +++ b/samples/grids/hierarchical-grid/column-resize-styling/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { grid.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/column-resize-styling/tsconfig.json b/samples/grids/hierarchical-grid/column-resize-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-resize-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-resize-styling/webpack.config.js b/samples/grids/hierarchical-grid/column-resize-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-resize-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/column-resizing/sandbox.config.json b/samples/grids/hierarchical-grid/column-resizing/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/column-resizing/sandbox.config.json +++ b/samples/grids/hierarchical-grid/column-resizing/sandbox.config.json @@ -3,5 +3,4 @@ "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-resizing/src/index.css b/samples/grids/hierarchical-grid/column-resizing/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/column-resizing/src/index.css +++ b/samples/grids/hierarchical-grid/column-resizing/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/column-resizing/src/index.ts b/samples/grids/hierarchical-grid/column-resizing/src/index.ts index ad7c60070c..49f71a07a9 100644 --- a/samples/grids/hierarchical-grid/column-resizing/src/index.ts +++ b/samples/grids/hierarchical-grid/column-resizing/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hierarchicalGrid1.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/column-resizing/tsconfig.json b/samples/grids/hierarchical-grid/column-resizing/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/column-resizing/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-resizing/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-resizing/webpack.config.js b/samples/grids/hierarchical-grid/column-resizing/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/column-resizing/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-resizing/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/column-selection-group/sandbox.config.json b/samples/grids/hierarchical-grid/column-selection-group/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/sandbox.config.json +++ b/samples/grids/hierarchical-grid/column-selection-group/sandbox.config.json @@ -3,5 +3,4 @@ "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-selection-group/src/index.css b/samples/grids/hierarchical-grid/column-selection-group/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/src/index.css +++ b/samples/grids/hierarchical-grid/column-selection-group/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/column-selection-group/src/index.ts b/samples/grids/hierarchical-grid/column-selection-group/src/index.ts index 4339d194e4..cc4eebf926 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/src/index.ts +++ b/samples/grids/hierarchical-grid/column-selection-group/src/index.ts @@ -1,10 +1,10 @@ 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"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hierarchicalGrid1.data = this.hierarchicalCustomers; } this._bind(); + } private _hierarchicalCustomers: any[] = HierarchicalCustomers; diff --git a/samples/grids/hierarchical-grid/column-selection-group/tsconfig.json b/samples/grids/hierarchical-grid/column-selection-group/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-selection-group/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-selection-group/webpack.config.js b/samples/grids/hierarchical-grid/column-selection-group/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-selection-group/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/column-selection-mode/sandbox.config.json b/samples/grids/hierarchical-grid/column-selection-mode/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/sandbox.config.json +++ b/samples/grids/hierarchical-grid/column-selection-mode/sandbox.config.json @@ -3,5 +3,4 @@ "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-selection-mode/src/index.css b/samples/grids/hierarchical-grid/column-selection-mode/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/src/index.css +++ b/samples/grids/hierarchical-grid/column-selection-mode/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/column-selection-mode/src/index.ts b/samples/grids/hierarchical-grid/column-selection-mode/src/index.ts index bfbb0db810..72c562e262 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/src/index.ts +++ b/samples/grids/hierarchical-grid/column-selection-mode/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,6 +35,7 @@ export class Sample { hierarchicalGrid.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/column-selection-mode/tsconfig.json b/samples/grids/hierarchical-grid/column-selection-mode/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-selection-mode/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-selection-mode/webpack.config.js b/samples/grids/hierarchical-grid/column-selection-mode/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-selection-mode/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/column-selection-styles/sandbox.config.json b/samples/grids/hierarchical-grid/column-selection-styles/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/sandbox.config.json +++ b/samples/grids/hierarchical-grid/column-selection-styles/sandbox.config.json @@ -3,5 +3,4 @@ "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-selection-styles/src/index.css b/samples/grids/hierarchical-grid/column-selection-styles/src/index.css index 0fe9368715..d328109828 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/src/index.css +++ b/samples/grids/hierarchical-grid/column-selection-styles/src/index.css @@ -1,2 +1,13 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --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; +} + diff --git a/samples/grids/hierarchical-grid/column-selection-styles/src/index.ts b/samples/grids/hierarchical-grid/column-selection-styles/src/index.ts index e964441510..174ef44b89 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/src/index.ts +++ b/samples/grids/hierarchical-grid/column-selection-styles/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { grid.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/column-selection-styles/tsconfig.json b/samples/grids/hierarchical-grid/column-selection-styles/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-selection-styles/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-selection-styles/webpack.config.js b/samples/grids/hierarchical-grid/column-selection-styles/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-selection-styles/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/column-sorting-indicators/sandbox.config.json b/samples/grids/hierarchical-grid/column-sorting-indicators/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/sandbox.config.json +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/sandbox.config.json @@ -3,5 +3,4 @@ "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-sorting-indicators/src/index.css b/samples/grids/hierarchical-grid/column-sorting-indicators/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/src/index.css +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/column-sorting-indicators/src/index.ts b/samples/grids/hierarchical-grid/column-sorting-indicators/src/index.ts index 0d37981cdd..f37823322e 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/src/index.ts +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent, IgcSortingExpression, SortingDirection } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -42,7 +42,6 @@ export class Sample { } return this._sortingExpression1; } - private _bind: () => void; constructor() { @@ -53,6 +52,7 @@ export class Sample { hierarchicalGrid1.sortingExpressions = this.sortingExpression1; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/column-sorting-indicators/tsconfig.json b/samples/grids/hierarchical-grid/column-sorting-indicators/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-sorting-indicators/webpack.config.js b/samples/grids/hierarchical-grid/column-sorting-indicators/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/column-sorting-options/sandbox.config.json b/samples/grids/hierarchical-grid/column-sorting-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/sandbox.config.json +++ b/samples/grids/hierarchical-grid/column-sorting-options/sandbox.config.json @@ -3,5 +3,4 @@ "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-sorting-options/src/index.css b/samples/grids/hierarchical-grid/column-sorting-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/src/index.css +++ b/samples/grids/hierarchical-grid/column-sorting-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/column-sorting-options/src/index.ts b/samples/grids/hierarchical-grid/column-sorting-options/src/index.ts index 438fa6ca9c..7154d62ec4 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/src/index.ts +++ b/samples/grids/hierarchical-grid/column-sorting-options/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent, IgcSortingExpression, SortingDirection } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -24,7 +24,6 @@ export class Sample { } return this._sortingExpression1; } - private _bind: () => void; constructor() { @@ -35,6 +34,7 @@ export class Sample { hierarchicalGrid1.sortingExpressions = this.sortingExpression1; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/column-sorting-options/tsconfig.json b/samples/grids/hierarchical-grid/column-sorting-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-sorting-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-sorting-options/webpack.config.js b/samples/grids/hierarchical-grid/column-sorting-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-sorting-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/column-sorting-style/sandbox.config.json b/samples/grids/hierarchical-grid/column-sorting-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/sandbox.config.json +++ b/samples/grids/hierarchical-grid/column-sorting-style/sandbox.config.json @@ -3,5 +3,4 @@ "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-sorting-style/src/index.css b/samples/grids/hierarchical-grid/column-sorting-style/src/index.css index 0fe9368715..11c0472282 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/src/index.css +++ b/samples/grids/hierarchical-grid/column-sorting-style/src/index.css @@ -1,2 +1,8 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#hierarchicalGrid { + --ig-grid-sorted-header-icon-color: #ffb06a; + --ig-grid-sortable-header-icon-hover-color: black; +} + diff --git a/samples/grids/hierarchical-grid/column-sorting-style/src/index.ts b/samples/grids/hierarchical-grid/column-sorting-style/src/index.ts index 7170dcdbe9..107444cbc0 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/src/index.ts +++ b/samples/grids/hierarchical-grid/column-sorting-style/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent, IgcSortingExpression, SortingDirection } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -24,7 +24,6 @@ export class Sample { } return this._sortingExpression1; } - private _bind: () => void; constructor() { @@ -35,6 +34,7 @@ export class Sample { hierarchicalGrid.sortingExpressions = this.sortingExpression1; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/column-sorting-style/tsconfig.json b/samples/grids/hierarchical-grid/column-sorting-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/column-sorting-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/column-sorting-style/webpack.config.js b/samples/grids/hierarchical-grid/column-sorting-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-sorting-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-1/sandbox.config.json b/samples/grids/hierarchical-grid/conditional-cell-style-1/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/sandbox.config.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/sandbox.config.json @@ -3,5 +3,4 @@ "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/conditional-cell-style-1/src/index.css b/samples/grids/hierarchical-grid/conditional-cell-style-1/src/index.css index 0fe9368715..6945da3e3b 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/src/index.css +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/src/index.css @@ -1,2 +1,11 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.upFont { + color: green !important; +} + +.downFont { + color: red !important; +} + diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-1/src/index.ts b/samples/grids/hierarchical-grid/conditional-cell-style-1/src/index.ts index e472ab8b29..6addf9a86a 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/src/index.ts +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -21,6 +21,7 @@ export class Sample { column1.cellClasses = this.webGridGrammyNominationsCellClassesHandler; } this._bind(); + } private _singersData: any[] = SingersData; @@ -28,6 +29,7 @@ export class Sample { return this._singersData; } + public webGridGrammyNominationsCellClassesHandler = { downFont: (rowData: any, columnKey: any): boolean => rowData[columnKey] < 5, upFont: (rowData: any, columnKey: any): boolean => rowData[columnKey] >= 6 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/tsconfig.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-1/webpack.config.js b/samples/grids/hierarchical-grid/conditional-cell-style-1/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/webpack.config.js +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-2/sandbox.config.json b/samples/grids/hierarchical-grid/conditional-cell-style-2/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/sandbox.config.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/sandbox.config.json @@ -3,5 +3,4 @@ "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/conditional-cell-style-2/src/index.css b/samples/grids/hierarchical-grid/conditional-cell-style-2/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/src/index.css +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-2/src/index.ts b/samples/grids/hierarchical-grid/conditional-cell-style-2/src/index.ts index 51946a391c..675098b693 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/src/index.ts +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/src/index.ts @@ -3,10 +3,10 @@ import { IgcHierarchicalGridComponent, IgcColumnComponent } from 'igniteui-webco import SingersData from './SingersData.json'; import { IgcPropertyEditorPropertyDescriptionButtonClickEventArgs } from 'igniteui-webcomponents-layouts'; import { IgcGridComponent, IgcRowType } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -38,6 +38,7 @@ export class Sample { column6.cellStyles = this.webHierarchicalGridCellStylesHandler; } this._bind(); + } private _singersData: any[] = SingersData; @@ -45,6 +46,7 @@ export class Sample { return this._singersData; } + public webHierarchicalGridCellStylesHandler = { background: (rowData: any, columnKey: any, cellValue: any, rowIndex: any) => rowIndex % 2 === 0 ? "#EFF4FD" : null, color: (rowData: any, columnKey: any, cellValue: any, rowIndex: any) => { 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/tsconfig.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-2/webpack.config.js b/samples/grids/hierarchical-grid/conditional-cell-style-2/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/webpack.config.js +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/conditional-row-selectors/sandbox.config.json b/samples/grids/hierarchical-grid/conditional-row-selectors/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/sandbox.config.json +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/sandbox.config.json @@ -3,5 +3,4 @@ "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/conditional-row-selectors/src/index.css b/samples/grids/hierarchical-grid/conditional-row-selectors/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/src/index.css +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/conditional-row-selectors/src/index.ts b/samples/grids/hierarchical-grid/conditional-row-selectors/src/index.ts index 0b93e3905c..011fd09bcd 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/src/index.ts +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/src/index.ts @@ -3,10 +3,10 @@ import { ComponentRenderer, WebHierarchicalGridDescriptionModule } from 'igniteu import { IgcHierarchicalGridComponent, IgcPaginatorComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; import { IgcRowSelectionEventArgs } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -24,6 +24,7 @@ export class Sample { hierarchicalGrid.addEventListener("rowSelectionChanging", this.webHierarchicalGridRowSelectionConditional); } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/conditional-row-selectors/tsconfig.json b/samples/grids/hierarchical-grid/conditional-row-selectors/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/tsconfig.json +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/conditional-row-selectors/webpack.config.js b/samples/grids/hierarchical-grid/conditional-row-selectors/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/webpack.config.js +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/custom-filtering/sandbox.config.json b/samples/grids/hierarchical-grid/custom-filtering/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/sandbox.config.json +++ b/samples/grids/hierarchical-grid/custom-filtering/sandbox.config.json @@ -3,5 +3,4 @@ "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/custom-filtering/src/index.css b/samples/grids/hierarchical-grid/custom-filtering/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/src/index.css +++ b/samples/grids/hierarchical-grid/custom-filtering/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/custom-filtering/src/index.ts b/samples/grids/hierarchical-grid/custom-filtering/src/index.ts index 160903e559..d83253577b 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/src/index.ts +++ b/samples/grids/hierarchical-grid/custom-filtering/src/index.ts @@ -3,10 +3,10 @@ import { IgcHierarchicalGridComponent, IgcColumnComponent } from 'igniteui-webco import SingersData from './SingersData.json'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -23,6 +23,7 @@ export class Sample { column1.bodyTemplate = this.webGridBooleanCellTemplate; } this._bind(); + } private _singersData: any[] = SingersData; @@ -30,6 +31,7 @@ export class Sample { return this._singersData; } + public webGridBooleanCellTemplate = (ctx: IgcCellTemplateContext) => { if (ctx.cell.value) { return html`Continued` diff --git a/samples/grids/hierarchical-grid/custom-filtering/tsconfig.json b/samples/grids/hierarchical-grid/custom-filtering/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/tsconfig.json +++ b/samples/grids/hierarchical-grid/custom-filtering/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/custom-filtering/webpack.config.js b/samples/grids/hierarchical-grid/custom-filtering/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/webpack.config.js +++ b/samples/grids/hierarchical-grid/custom-filtering/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/data-summary-formatter/sandbox.config.json b/samples/grids/hierarchical-grid/data-summary-formatter/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/sandbox.config.json +++ b/samples/grids/hierarchical-grid/data-summary-formatter/sandbox.config.json @@ -3,5 +3,4 @@ "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-summary-formatter/src/index.css b/samples/grids/hierarchical-grid/data-summary-formatter/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/src/index.css +++ b/samples/grids/hierarchical-grid/data-summary-formatter/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/data-summary-formatter/src/index.ts b/samples/grids/hierarchical-grid/data-summary-formatter/src/index.ts index 3aab39bb33..c98919b359 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/src/index.ts +++ b/samples/grids/hierarchical-grid/data-summary-formatter/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; import { IgcSummaryResult, IgcSummaryOperand } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -27,6 +27,7 @@ export class Sample { column1.summaryFormatter = this.webHierarchicalGridSummaryFormatter; } this._bind(); + } private _singersData: any[] = SingersData; @@ -34,6 +35,7 @@ export class Sample { return this._singersData; } + public webHierarchicalGridRenderedExpand(args:any): void { let debutColumn = this.debutColumn; let hierarchicalGrid = this.hierarchicalGrid; diff --git a/samples/grids/hierarchical-grid/data-summary-formatter/tsconfig.json b/samples/grids/hierarchical-grid/data-summary-formatter/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/tsconfig.json +++ b/samples/grids/hierarchical-grid/data-summary-formatter/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/data-summary-formatter/webpack.config.js b/samples/grids/hierarchical-grid/data-summary-formatter/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/webpack.config.js +++ b/samples/grids/hierarchical-grid/data-summary-formatter/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/data-summary-options-styling/sandbox.config.json b/samples/grids/hierarchical-grid/data-summary-options-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/sandbox.config.json +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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-summary-options-styling/src/index.css b/samples/grids/hierarchical-grid/data-summary-options-styling/src/index.css index 0fe9368715..4479283818 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/src/index.css +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/src/index.css @@ -1,2 +1,10 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#hierarchicalGrid { + --ig-grid-summary-background-color:#e0f3ff; + --ig-grid-summary-focus-background-color: rgba( #94d1f7, .3 ); + --ig-grid-summary-label-color: rgb(228, 27, 117); + --ig-grid-summary-result-color: black; +} + diff --git a/samples/grids/hierarchical-grid/data-summary-options-styling/src/index.ts b/samples/grids/hierarchical-grid/data-summary-options-styling/src/index.ts index 3065adca34..f77b2b43ea 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/src/index.ts +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hierarchicalGrid.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/tsconfig.json +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/data-summary-options-styling/webpack.config.js b/samples/grids/hierarchical-grid/data-summary-options-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/webpack.config.js +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/data-summary-options/sandbox.config.json b/samples/grids/hierarchical-grid/data-summary-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/sandbox.config.json +++ b/samples/grids/hierarchical-grid/data-summary-options/sandbox.config.json @@ -3,5 +3,4 @@ "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-summary-options/src/index.css b/samples/grids/hierarchical-grid/data-summary-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/src/index.css +++ b/samples/grids/hierarchical-grid/data-summary-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/data-summary-options/src/index.ts b/samples/grids/hierarchical-grid/data-summary-options/src/index.ts index 3065adca34..f77b2b43ea 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/src/index.ts +++ b/samples/grids/hierarchical-grid/data-summary-options/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hierarchicalGrid.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/data-summary-options/tsconfig.json b/samples/grids/hierarchical-grid/data-summary-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/tsconfig.json +++ b/samples/grids/hierarchical-grid/data-summary-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/data-summary-options/webpack.config.js b/samples/grids/hierarchical-grid/data-summary-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/webpack.config.js +++ b/samples/grids/hierarchical-grid/data-summary-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/data-summary-template/sandbox.config.json b/samples/grids/hierarchical-grid/data-summary-template/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/sandbox.config.json +++ b/samples/grids/hierarchical-grid/data-summary-template/sandbox.config.json @@ -3,5 +3,4 @@ "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-summary-template/src/index.css b/samples/grids/hierarchical-grid/data-summary-template/src/index.css index 0fe9368715..848a950285 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/src/index.css +++ b/samples/grids/hierarchical-grid/data-summary-template/src/index.css @@ -1,2 +1,43 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.summary-temp { + display: flex; + flex-direction: column; + margin: 0 1px; + font-size: 14px; + line-height: 24px; + height: 100%; + overflow-y: auto; + overflow-x: hidden; + > * { + padding: 8px 0; + line-height: 18px; + border-bottom: 1px dashed hsla(var(--igx-gray-400)); + &:last-child { + border-bottom: none; + } + } +} +.summary-temp span { + display: flex; + flex-wrap: wrap; + align-items: center; + gap: 4px; + justify-content: space-between; + color: hsla(var(--ig-gray-900)); +} +.summary-temp span span { + user-select: all; + max-width: 300px; + padding-right: 8px; +} +.summary-temp span strong { + font-size: 14px; + text-transform: uppercase; + min-width: 70px; + justify-self: flex-start; + text-align: left; + color: hsla(var(--ig-secondary-600)); + user-select: none; +} diff --git a/samples/grids/hierarchical-grid/data-summary-template/src/index.ts b/samples/grids/hierarchical-grid/data-summary-template/src/index.ts index ee017e02ba..11ce07c6ca 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/src/index.ts +++ b/samples/grids/hierarchical-grid/data-summary-template/src/index.ts @@ -7,11 +7,11 @@ import SingersData from './SingersData.json'; import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } from 'igniteui-webcomponents-layouts'; import { IgcSummaryResult, IgcSummaryTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -58,6 +58,7 @@ export class Sample { column4.summaryTemplate = this.webRowIslandGridSummaryTemplateStyle; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/data-summary-template/tsconfig.json b/samples/grids/hierarchical-grid/data-summary-template/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/tsconfig.json +++ b/samples/grids/hierarchical-grid/data-summary-template/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/data-summary-template/webpack.config.js b/samples/grids/hierarchical-grid/data-summary-template/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/webpack.config.js +++ b/samples/grids/hierarchical-grid/data-summary-template/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/editing-columns/sandbox.config.json b/samples/grids/hierarchical-grid/editing-columns/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/editing-columns/sandbox.config.json +++ b/samples/grids/hierarchical-grid/editing-columns/sandbox.config.json @@ -3,5 +3,4 @@ "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/editing-columns/src/index.css b/samples/grids/hierarchical-grid/editing-columns/src/index.css index 0fe9368715..3b330b391d 100644 --- a/samples/grids/hierarchical-grid/editing-columns/src/index.css +++ b/samples/grids/hierarchical-grid/editing-columns/src/index.css @@ -1,2 +1,7 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-size: var(--ig-size-medium); + } + diff --git a/samples/grids/hierarchical-grid/editing-columns/src/index.ts b/samples/grids/hierarchical-grid/editing-columns/src/index.ts index 6a9dfa6c62..429a437fbd 100644 --- a/samples/grids/hierarchical-grid/editing-columns/src/index.ts +++ b/samples/grids/hierarchical-grid/editing-columns/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebHierarchicalGridDescriptionModule, WebPaginatorDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { grid.data = this.nwindData; } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/hierarchical-grid/editing-columns/tsconfig.json b/samples/grids/hierarchical-grid/editing-columns/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/editing-columns/tsconfig.json +++ b/samples/grids/hierarchical-grid/editing-columns/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/editing-columns/webpack.config.js b/samples/grids/hierarchical-grid/editing-columns/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/editing-columns/webpack.config.js +++ b/samples/grids/hierarchical-grid/editing-columns/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/editing-events/sandbox.config.json b/samples/grids/hierarchical-grid/editing-events/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/editing-events/sandbox.config.json +++ b/samples/grids/hierarchical-grid/editing-events/sandbox.config.json @@ -3,5 +3,4 @@ "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/editing-events/src/index.css b/samples/grids/hierarchical-grid/editing-events/src/index.css index 0fe9368715..3b330b391d 100644 --- a/samples/grids/hierarchical-grid/editing-events/src/index.css +++ b/samples/grids/hierarchical-grid/editing-events/src/index.css @@ -1,2 +1,7 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-size: var(--ig-size-medium); + } + diff --git a/samples/grids/hierarchical-grid/editing-events/src/index.ts b/samples/grids/hierarchical-grid/editing-events/src/index.ts index 39b0757ea1..bc8f4c7092 100644 --- a/samples/grids/hierarchical-grid/editing-events/src/index.ts +++ b/samples/grids/hierarchical-grid/editing-events/src/index.ts @@ -3,10 +3,10 @@ import { ComponentRenderer, WebHierarchicalGridDescriptionModule, WebPaginatorDe import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import NwindData from './NwindData.json'; import { IgcGridComponent, IgcGridEditEventArgs } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -22,6 +22,7 @@ export class Sample { grid.addEventListener("cellEdit", this.webGridEditingEventsCellEdit); } this._bind(); + } private _nwindData: any[] = NwindData; diff --git a/samples/grids/hierarchical-grid/editing-events/tsconfig.json b/samples/grids/hierarchical-grid/editing-events/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/editing-events/tsconfig.json +++ b/samples/grids/hierarchical-grid/editing-events/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/editing-events/webpack.config.js b/samples/grids/hierarchical-grid/editing-events/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/editing-events/webpack.config.js +++ b/samples/grids/hierarchical-grid/editing-events/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/sandbox.config.json b/samples/grids/hierarchical-grid/editing-lifecycle/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/sandbox.config.json +++ b/samples/grids/hierarchical-grid/editing-lifecycle/sandbox.config.json @@ -3,5 +3,4 @@ "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/editing-lifecycle/src/index.css b/samples/grids/hierarchical-grid/editing-lifecycle/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/src/index.css +++ b/samples/grids/hierarchical-grid/editing-lifecycle/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/src/index.ts b/samples/grids/hierarchical-grid/editing-lifecycle/src/index.ts index 911476d104..5d8a34e7bc 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/src/index.ts +++ b/samples/grids/hierarchical-grid/editing-lifecycle/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent, IgcRowIslandComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; import { IgcRowSelectionEventArgs, IgcGridEditEventArgs, IgcGridEditDoneEventArgs } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -51,6 +51,7 @@ export class Sample { rowIsland.addEventListener("cellEditExit", this.webRowIslandGridCellEditExit); } this._bind(); + } private _singersData: any[] = SingersData; @@ -58,6 +59,7 @@ export class Sample { return this._singersData; } + public webHierarchicalGridRendered(args:any): void { const hierarchicalGrid = document.getElementById("hierarchicalGrid"); hierarchicalGrid.parentElement.style.display = "flex"; diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/tsconfig.json b/samples/grids/hierarchical-grid/editing-lifecycle/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/tsconfig.json +++ b/samples/grids/hierarchical-grid/editing-lifecycle/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/webpack.config.js b/samples/grids/hierarchical-grid/editing-lifecycle/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/webpack.config.js +++ b/samples/grids/hierarchical-grid/editing-lifecycle/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/excel-exporting/sandbox.config.json b/samples/grids/hierarchical-grid/excel-exporting/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/sandbox.config.json +++ b/samples/grids/hierarchical-grid/excel-exporting/sandbox.config.json @@ -3,5 +3,4 @@ "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/excel-exporting/src/index.css b/samples/grids/hierarchical-grid/excel-exporting/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/src/index.css +++ b/samples/grids/hierarchical-grid/excel-exporting/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/excel-exporting/src/index.ts b/samples/grids/hierarchical-grid/excel-exporting/src/index.ts index 53035c4081..b367135681 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/src/index.ts +++ b/samples/grids/hierarchical-grid/excel-exporting/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersExportData from './SingersExportData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hierarchicalGrid1.data = this.singersExportData; } this._bind(); + } private _singersExportData: any[] = SingersExportData; diff --git a/samples/grids/hierarchical-grid/excel-exporting/tsconfig.json b/samples/grids/hierarchical-grid/excel-exporting/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/tsconfig.json +++ b/samples/grids/hierarchical-grid/excel-exporting/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/excel-exporting/webpack.config.js b/samples/grids/hierarchical-grid/excel-exporting/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/webpack.config.js +++ b/samples/grids/hierarchical-grid/excel-exporting/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/sandbox.config.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/sandbox.config.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/sandbox.config.json @@ -3,5 +3,4 @@ "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/excel-style-filtering-sample-1/src/index.css b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/src/index.css +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/src/index.ts b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/src/index.ts index ad7c60070c..49f71a07a9 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/src/index.ts +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hierarchicalGrid1.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; 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 de23257dd8..a15284fdc2 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 @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/webpack.config.js b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/webpack.config.js +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/sandbox.config.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/sandbox.config.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/sandbox.config.json @@ -3,5 +3,4 @@ "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/excel-style-filtering-sample-2/src/index.css b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/src/index.css +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/src/index.ts b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/src/index.ts index ad7c60070c..49f71a07a9 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/src/index.ts +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hierarchicalGrid1.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; 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 de23257dd8..a15284fdc2 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 @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/webpack.config.js b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/webpack.config.js +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/sandbox.config.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/sandbox.config.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/sandbox.config.json @@ -3,5 +3,4 @@ "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/excel-style-filtering-sample-3/src/index.css b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/src/index.css +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/src/index.ts b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/src/index.ts index 49f49f7b6c..40d8a7249d 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/src/index.ts +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/src/index.ts @@ -3,10 +3,10 @@ import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids import SingersData from './SingersData.json'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -21,6 +21,7 @@ export class Sample { hierarchicalGrid1.excelStyleHeaderIconTemplate = this.webGridFilterAltIconTemplate; } this._bind(); + } private _singersData: any[] = SingersData; @@ -28,6 +29,7 @@ export class Sample { return this._singersData; } + public webGridFilterAltIconTemplate = (ctx: IgcCellTemplateContext) => { return html`Continued` } 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 de23257dd8..a15284fdc2 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 @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/webpack.config.js b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/webpack.config.js +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-style/sandbox.config.json b/samples/grids/hierarchical-grid/excel-style-filtering-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/sandbox.config.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/sandbox.config.json @@ -3,5 +3,4 @@ "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/excel-style-filtering-style/src/index.css b/samples/grids/hierarchical-grid/excel-style-filtering-style/src/index.css index 0fe9368715..aa7a27b502 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/src/index.css +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/src/index.css @@ -1,2 +1,26 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-grid-filtering-row-background: #ffcd0f; + --ig-button-background: #FFCD0F; + --ig-button-foreground: #292826; + --ig-button-hover-background: #292826; + --ig-button-hover-foreground: #ffcd0f; + + --ig-list-background: #FFCD0F; + --ig-list-item-background: #FFCD0F; + --ig-list-item-background-hover: #c2b1b1bd; + + --ig-checkbox-empty-color: #292826; + --ig-checkbox-fill-color: #292826; + --ig-checkbox-tick-color: #FFCD0F; + --ig-checkbox-label-color: #292826; + + --ig-drop-down-background-color: #FFCD0F; + --ig-drop-down-item-text-color: #292826; + --ig-drop-down-item-background: #FFCD0F; + --ig-drop-down-item-text-color: #292826; + --ig-drop-down-focused-item-background: #c2b1b1bd; + } + diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-style/src/index.ts b/samples/grids/hierarchical-grid/excel-style-filtering-style/src/index.ts index e964441510..174ef44b89 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/src/index.ts +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { grid.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-style/webpack.config.js b/samples/grids/hierarchical-grid/excel-style-filtering-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/webpack.config.js +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/filtering-options/sandbox.config.json b/samples/grids/hierarchical-grid/filtering-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/filtering-options/sandbox.config.json +++ b/samples/grids/hierarchical-grid/filtering-options/sandbox.config.json @@ -3,5 +3,4 @@ "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/filtering-options/src/index.css b/samples/grids/hierarchical-grid/filtering-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/filtering-options/src/index.css +++ b/samples/grids/hierarchical-grid/filtering-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/filtering-options/src/index.ts b/samples/grids/hierarchical-grid/filtering-options/src/index.ts index ad7c60070c..49f71a07a9 100644 --- a/samples/grids/hierarchical-grid/filtering-options/src/index.ts +++ b/samples/grids/hierarchical-grid/filtering-options/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hierarchicalGrid1.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/filtering-options/tsconfig.json b/samples/grids/hierarchical-grid/filtering-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/filtering-options/tsconfig.json +++ b/samples/grids/hierarchical-grid/filtering-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/filtering-options/webpack.config.js b/samples/grids/hierarchical-grid/filtering-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/filtering-options/webpack.config.js +++ b/samples/grids/hierarchical-grid/filtering-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/filtering-style/sandbox.config.json b/samples/grids/hierarchical-grid/filtering-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/filtering-style/sandbox.config.json +++ b/samples/grids/hierarchical-grid/filtering-style/sandbox.config.json @@ -3,5 +3,4 @@ "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/filtering-style/src/index.css b/samples/grids/hierarchical-grid/filtering-style/src/index.css index 0fe9368715..bfdeb8fb13 100644 --- a/samples/grids/hierarchical-grid/filtering-style/src/index.css +++ b/samples/grids/hierarchical-grid/filtering-style/src/index.css @@ -1,2 +1,18 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#hierarchicalGrid1 { + --ig-grid-filtering-row-background: #ffcd0f; + --ig-grid-filtering-background-or: #d83434; + --ig-grid-cell-active-border-color: #ffcd0f; + --ig-grid-cell-selected-background: #6f6f6f; + --ig-grid-row-hover-background: #f8e495; + --ig-grid-row-selected-background: #8d8d8d; + --ig-grid-header-background: #494949; + --ig-grid-header-text-color: #fff; + --ig-grid-expand-icon-color: #ffcd0f; + --ig-grid-expand-icon-hover-color: #e0b710; + --ig-grid-resize-line-color: #ffcd0f; + --ig-grid-row-highlight: #ffcd0f +} + diff --git a/samples/grids/hierarchical-grid/filtering-style/src/index.ts b/samples/grids/hierarchical-grid/filtering-style/src/index.ts index ad7c60070c..49f71a07a9 100644 --- a/samples/grids/hierarchical-grid/filtering-style/src/index.ts +++ b/samples/grids/hierarchical-grid/filtering-style/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hierarchicalGrid1.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/filtering-style/tsconfig.json b/samples/grids/hierarchical-grid/filtering-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/filtering-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/filtering-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/filtering-style/webpack.config.js b/samples/grids/hierarchical-grid/filtering-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/filtering-style/webpack.config.js +++ b/samples/grids/hierarchical-grid/filtering-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-options/sandbox.config.json b/samples/grids/hierarchical-grid/hierarchical-grid-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/sandbox.config.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/sandbox.config.json @@ -3,5 +3,4 @@ "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/hierarchical-grid-options/src/index.css b/samples/grids/hierarchical-grid/hierarchical-grid-options/src/index.css index 0fe9368715..3b330b391d 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/src/index.css +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/src/index.css @@ -1,2 +1,7 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-size: var(--ig-size-medium); + } + diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-options/src/index.ts b/samples/grids/hierarchical-grid/hierarchical-grid-options/src/index.ts index 761fadab3d..f067e0dee0 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/src/index.ts +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent, IgcPaginatorComponent, IgcPaginatorResourceStrings } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -21,7 +21,6 @@ export class Sample { } return this._paginatorResourceStrings1; } - private _bind: () => void; constructor() { @@ -33,6 +32,7 @@ export class Sample { paginator.resourceStrings = this.paginatorResourceStrings1; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-options/tsconfig.json b/samples/grids/hierarchical-grid/hierarchical-grid-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/tsconfig.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-options/webpack.config.js b/samples/grids/hierarchical-grid/hierarchical-grid-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/webpack.config.js +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/sandbox.config.json b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/sandbox.config.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/sandbox.config.json @@ -3,5 +3,4 @@ "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/hierarchical-grid-paging-style/src/index.css b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/src/index.css index 0fe9368715..b188fc621b 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/src/index.css +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/src/index.css @@ -1,2 +1,19 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-size: var(--ig-size-medium); + } + + #grid igc-paginator { + --ig-paginator-border-width: 5px; + --ig-paginator-background-color: #231c2c; + --ig-paginator-text-color: #d0ab23; + --ig-paginator-focused-text-color: #d0ab23; + --ig-paginator-border-color: #d0ab23; + --ig-grid-paginator-active-border-color: #d0ab23; + --ig-icon-color: #d0ab23; + --ig-input-group-filled-text-color: #d0ab23; + --ig-input-group-focused-text-color: #d0ab23; + } + diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/src/index.ts b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/src/index.ts index 761fadab3d..f067e0dee0 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/src/index.ts +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent, IgcPaginatorComponent, IgcPaginatorResourceStrings } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -21,7 +21,6 @@ export class Sample { } return this._paginatorResourceStrings1; } - private _bind: () => void; constructor() { @@ -33,6 +32,7 @@ export class Sample { paginator.resourceStrings = this.paginatorResourceStrings1; } this._bind(); + } private _singersData: any[] = SingersData; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/webpack.config.js b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/webpack.config.js +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-styling/sandbox.config.json b/samples/grids/hierarchical-grid/hierarchical-grid-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/sandbox.config.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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/hierarchical-grid-styling/src/index.css b/samples/grids/hierarchical-grid/hierarchical-grid-styling/src/index.css index 0fe9368715..8bed1da2ef 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/src/index.css +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/src/index.css @@ -1,2 +1,16 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#hGrid { + --ig-grid-cell-active-border-color: #ffcd0f; + --ig-grid-cell-selected-background: #6f6f6f; + --ig-grid-row-hover-background: #f8e495; + --ig-grid-row-selected-background: #8d8d8d; + --ig-grid-header-background: #494949; + --ig-grid-header-text-color: #fff; + --ig-grid-expand-icon-color: #ffcd0f; + --ig-grid-expand-icon-hover-color: #e0b710; + --ig-grid-resize-line-color: #ffcd0f; + --ig-grid-row-highlight: #ffcd0f; +} + diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-styling/src/index.ts b/samples/grids/hierarchical-grid/hierarchical-grid-styling/src/index.ts index 0bf98a41db..a233360b89 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/src/index.ts +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hGrid.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-styling/tsconfig.json b/samples/grids/hierarchical-grid/hierarchical-grid-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/tsconfig.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-styling/webpack.config.js b/samples/grids/hierarchical-grid/hierarchical-grid-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/webpack.config.js +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/layout-display-density/sandbox.config.json b/samples/grids/hierarchical-grid/layout-display-density/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/sandbox.config.json +++ b/samples/grids/hierarchical-grid/layout-display-density/sandbox.config.json @@ -3,5 +3,4 @@ "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/layout-display-density/src/index.css b/samples/grids/hierarchical-grid/layout-display-density/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/src/index.css +++ b/samples/grids/hierarchical-grid/layout-display-density/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/layout-display-density/src/index.ts b/samples/grids/hierarchical-grid/layout-display-density/src/index.ts index 40fba889c1..8033d75ddb 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/src/index.ts +++ b/samples/grids/hierarchical-grid/layout-display-density/src/index.ts @@ -5,11 +5,11 @@ import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionCo import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import HierarchicalCustomers from './HierarchicalCustomers.json'; import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } 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(); import "./index.css"; @@ -38,6 +38,7 @@ export class Sample { hierarchicalGrid.data = this.hierarchicalCustomers; } this._bind(); + } private _hierarchicalCustomers: any[] = HierarchicalCustomers; diff --git a/samples/grids/hierarchical-grid/layout-display-density/tsconfig.json b/samples/grids/hierarchical-grid/layout-display-density/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/tsconfig.json +++ b/samples/grids/hierarchical-grid/layout-display-density/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/layout-display-density/webpack.config.js b/samples/grids/hierarchical-grid/layout-display-density/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/webpack.config.js +++ b/samples/grids/hierarchical-grid/layout-display-density/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/multi-column-headers-export/sandbox.config.json b/samples/grids/hierarchical-grid/multi-column-headers-export/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/sandbox.config.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/sandbox.config.json @@ -3,5 +3,4 @@ "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/multi-column-headers-export/src/index.css b/samples/grids/hierarchical-grid/multi-column-headers-export/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/src/index.css +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/multi-column-headers-export/src/index.ts b/samples/grids/hierarchical-grid/multi-column-headers-export/src/index.ts index 80793a04af..dfd7241a95 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/src/index.ts +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent, IgcGridToolbarExporterComponent } from 'igniteui-webcomponents-grids/grids'; import MultiColumnsExportData from './MultiColumnsExportData.json'; import { IgcExporterEventArgs } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -23,6 +23,7 @@ export class Sample { hGridToolbarExporter.addEventListener("exportStarted", this.webHierarchicalGridExportMultiColumnHeaders); } this._bind(); + } private _multiColumnsExportData: any[] = MultiColumnsExportData; @@ -30,6 +31,7 @@ export class Sample { return this._multiColumnsExportData; } + public webHierarchicalGridExportMultiColumnHeaders(args: CustomEvent): void { if (args.detail.options) { args.detail.options.ignoreMultiColumnHeaders = false; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/tsconfig.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/multi-column-headers-export/webpack.config.js b/samples/grids/hierarchical-grid/multi-column-headers-export/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/webpack.config.js +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/sandbox.config.json b/samples/grids/hierarchical-grid/multi-column-headers-overview/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/sandbox.config.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/sandbox.config.json @@ -3,5 +3,4 @@ "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/multi-column-headers-overview/src/index.css b/samples/grids/hierarchical-grid/multi-column-headers-overview/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/src/index.css +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/src/index.ts b/samples/grids/hierarchical-grid/multi-column-headers-overview/src/index.ts index 46352eb1a1..74fde80520 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/src/index.ts +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/src/index.ts @@ -5,11 +5,11 @@ import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionCo import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import HierarchicalCustomers from './HierarchicalCustomers.json'; 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(); import "./index.css"; @@ -42,6 +42,7 @@ export class Sample { hierarchicalGrid.data = this.hierarchicalCustomers; } this._bind(); + } private _hierarchicalCustomers: any[] = HierarchicalCustomers; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/tsconfig.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/webpack.config.js b/samples/grids/hierarchical-grid/multi-column-headers-overview/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/webpack.config.js +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/multi-column-headers-styling/sandbox.config.json b/samples/grids/hierarchical-grid/multi-column-headers-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/sandbox.config.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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/multi-column-headers-styling/src/index.css b/samples/grids/hierarchical-grid/multi-column-headers-styling/src/index.css index 0fe9368715..5992914672 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/src/index.css +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/src/index.css @@ -1,2 +1,11 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#hierarchicalGrid { + --ig-grid-header-background: #e0f3ff; + --ig-grid-header-text-color: #e41c77; + --ig-grid-header-border-width: 1px; + --ig-grid-header-border-style: solid; + --ig-grid-header-border-color: rgba(0, 0, 0, 0.08); +} + diff --git a/samples/grids/hierarchical-grid/multi-column-headers-styling/src/index.ts b/samples/grids/hierarchical-grid/multi-column-headers-styling/src/index.ts index bab7ef84c8..a464f77852 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/src/index.ts +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebHierarchicalGridDescriptionModule, WebColumnGroupDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import HierarchicalCustomers from './HierarchicalCustomers.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { hierarchicalGrid.data = this.hierarchicalCustomers; } this._bind(); + } private _hierarchicalCustomers: any[] = HierarchicalCustomers; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/tsconfig.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/multi-column-headers-styling/webpack.config.js b/samples/grids/hierarchical-grid/multi-column-headers-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/webpack.config.js +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/multi-column-headers-template/sandbox.config.json b/samples/grids/hierarchical-grid/multi-column-headers-template/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/sandbox.config.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/sandbox.config.json @@ -3,5 +3,4 @@ "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/multi-column-headers-template/src/index.css b/samples/grids/hierarchical-grid/multi-column-headers-template/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/src/index.css +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/multi-column-headers-template/src/index.ts b/samples/grids/hierarchical-grid/multi-column-headers-template/src/index.ts index ceea884402..c06441fdd3 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/src/index.ts +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/src/index.ts @@ -4,10 +4,10 @@ import { IgcHierarchicalGridComponent, IgcColumnGroupComponent } from 'igniteui- import HierarchicalCustomers from './HierarchicalCustomers.json'; import { IgcGridComponent, IgcColumnTemplateContext, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -36,6 +36,7 @@ export class Sample { columnGroup5.headerTemplate = this.webHierarchicalGridColumnGroupHeaderTemplate; } this._bind(); + } private _hierarchicalCustomers: any[] = HierarchicalCustomers; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/tsconfig.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/multi-column-headers-template/webpack.config.js b/samples/grids/hierarchical-grid/multi-column-headers-template/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/webpack.config.js +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/overview/sandbox.config.json b/samples/grids/hierarchical-grid/overview/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/overview/sandbox.config.json +++ b/samples/grids/hierarchical-grid/overview/sandbox.config.json @@ -3,5 +3,4 @@ "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/overview/src/index.css b/samples/grids/hierarchical-grid/overview/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/overview/src/index.css +++ b/samples/grids/hierarchical-grid/overview/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/overview/src/index.ts b/samples/grids/hierarchical-grid/overview/src/index.ts index ad7c60070c..49f71a07a9 100644 --- a/samples/grids/hierarchical-grid/overview/src/index.ts +++ b/samples/grids/hierarchical-grid/overview/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hierarchicalGrid1.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/overview/tsconfig.json b/samples/grids/hierarchical-grid/overview/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/overview/tsconfig.json +++ b/samples/grids/hierarchical-grid/overview/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/overview/webpack.config.js b/samples/grids/hierarchical-grid/overview/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/overview/webpack.config.js +++ b/samples/grids/hierarchical-grid/overview/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/row-adding/sandbox.config.json b/samples/grids/hierarchical-grid/row-adding/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/row-adding/sandbox.config.json +++ b/samples/grids/hierarchical-grid/row-adding/sandbox.config.json @@ -3,5 +3,4 @@ "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-adding/src/index.css b/samples/grids/hierarchical-grid/row-adding/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/row-adding/src/index.css +++ b/samples/grids/hierarchical-grid/row-adding/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/row-adding/src/index.ts b/samples/grids/hierarchical-grid/row-adding/src/index.ts index 0bf98a41db..a233360b89 100644 --- a/samples/grids/hierarchical-grid/row-adding/src/index.ts +++ b/samples/grids/hierarchical-grid/row-adding/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hGrid.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/row-adding/tsconfig.json b/samples/grids/hierarchical-grid/row-adding/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/row-adding/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-adding/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/row-adding/webpack.config.js b/samples/grids/hierarchical-grid/row-adding/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/row-adding/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-adding/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/row-classes/sandbox.config.json b/samples/grids/hierarchical-grid/row-classes/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/row-classes/sandbox.config.json +++ b/samples/grids/hierarchical-grid/row-classes/sandbox.config.json @@ -3,5 +3,4 @@ "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-classes/src/index.css b/samples/grids/hierarchical-grid/row-classes/src/index.css index 0fe9368715..de13be7ed3 100644 --- a/samples/grids/hierarchical-grid/row-classes/src/index.css +++ b/samples/grids/hierarchical-grid/row-classes/src/index.css @@ -1,2 +1,8 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + .activeRow { + border-top: 2px solid #fc81b8; + border-left: 3px solid #e41c77; + } + diff --git a/samples/grids/hierarchical-grid/row-classes/src/index.ts b/samples/grids/hierarchical-grid/row-classes/src/index.ts index 27591818f6..f543f233a2 100644 --- a/samples/grids/hierarchical-grid/row-classes/src/index.ts +++ b/samples/grids/hierarchical-grid/row-classes/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent, IgcRowIslandComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; import { IgcRowType } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -29,6 +29,7 @@ export class Sample { rowIsland3.rowClasses = this.webGridRowClassesHandler; } this._bind(); + } private _singersData: any[] = SingersData; @@ -36,6 +37,7 @@ export class Sample { return this._singersData; } + public webGridRowClassesHandler = { activeRow: (row: IgcRowType) => row.index % 2 === 0 }; diff --git a/samples/grids/hierarchical-grid/row-classes/tsconfig.json b/samples/grids/hierarchical-grid/row-classes/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/row-classes/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-classes/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/row-classes/webpack.config.js b/samples/grids/hierarchical-grid/row-classes/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/row-classes/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-classes/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/row-editing-options/sandbox.config.json b/samples/grids/hierarchical-grid/row-editing-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/sandbox.config.json +++ b/samples/grids/hierarchical-grid/row-editing-options/sandbox.config.json @@ -3,5 +3,4 @@ "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-editing-options/src/index.css b/samples/grids/hierarchical-grid/row-editing-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/src/index.css +++ b/samples/grids/hierarchical-grid/row-editing-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/row-editing-options/src/index.ts b/samples/grids/hierarchical-grid/row-editing-options/src/index.ts index 3065adca34..f77b2b43ea 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/src/index.ts +++ b/samples/grids/hierarchical-grid/row-editing-options/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hierarchicalGrid.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/row-editing-options/tsconfig.json b/samples/grids/hierarchical-grid/row-editing-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-editing-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/row-editing-options/webpack.config.js b/samples/grids/hierarchical-grid/row-editing-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-editing-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/row-editing-style/sandbox.config.json b/samples/grids/hierarchical-grid/row-editing-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/sandbox.config.json +++ b/samples/grids/hierarchical-grid/row-editing-style/sandbox.config.json @@ -3,5 +3,4 @@ "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-editing-style/src/index.css b/samples/grids/hierarchical-grid/row-editing-style/src/index.css index 0fe9368715..d2d16c2b30 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/src/index.css +++ b/samples/grids/hierarchical-grid/row-editing-style/src/index.css @@ -1,2 +1,8 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#hierarchicalGrid { + --ig-banner-banner-background: #e3e3e3; + --ig-banner-banner-message-color: #423589; +} + diff --git a/samples/grids/hierarchical-grid/row-editing-style/src/index.ts b/samples/grids/hierarchical-grid/row-editing-style/src/index.ts index 3065adca34..f77b2b43ea 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/src/index.ts +++ b/samples/grids/hierarchical-grid/row-editing-style/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hierarchicalGrid.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/row-editing-style/tsconfig.json b/samples/grids/hierarchical-grid/row-editing-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-editing-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/row-editing-style/webpack.config.js b/samples/grids/hierarchical-grid/row-editing-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-editing-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/row-pinning-extra-column/sandbox.config.json b/samples/grids/hierarchical-grid/row-pinning-extra-column/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/sandbox.config.json +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/sandbox.config.json @@ -3,5 +3,4 @@ "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-pinning-extra-column/src/index.css b/samples/grids/hierarchical-grid/row-pinning-extra-column/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/src/index.css +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/row-pinning-extra-column/src/index.ts b/samples/grids/hierarchical-grid/row-pinning-extra-column/src/index.ts index baed3cf893..f90b969570 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/src/index.ts +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/src/index.ts @@ -7,11 +7,11 @@ import SingersData from './SingersData.json'; import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } from 'igniteui-webcomponents-layouts'; import { IgcCellTemplateContext, IgcRowType } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -37,7 +37,6 @@ export class Sample { } return this._pinningConfig1; } - private column1: IgcColumnComponent private rowIsland1: IgcRowIslandComponent private _pinningConfig2: IgcPinningConfig | null = null; @@ -52,7 +51,6 @@ export class Sample { } return this._pinningConfig2; } - private column2: IgcColumnComponent private rowIsland2: IgcRowIslandComponent private _pinningConfig3: IgcPinningConfig | null = null; @@ -67,7 +65,6 @@ export class Sample { } return this._pinningConfig3; } - private column3: IgcColumnComponent private rowIsland3: IgcRowIslandComponent private _pinningConfig4: IgcPinningConfig | null = null; @@ -82,7 +79,6 @@ export class Sample { } return this._pinningConfig4; } - private column4: IgcColumnComponent private _bind: () => void; @@ -114,6 +110,7 @@ export class Sample { column4.bodyTemplate = this.webHierarchicalGridRowPinCellTemplate; } this._bind(); + } private _singersData: any[] = SingersData; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/row-pinning-extra-column/webpack.config.js b/samples/grids/hierarchical-grid/row-pinning-extra-column/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/row-pinning-options/sandbox.config.json b/samples/grids/hierarchical-grid/row-pinning-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/sandbox.config.json +++ b/samples/grids/hierarchical-grid/row-pinning-options/sandbox.config.json @@ -3,5 +3,4 @@ "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-pinning-options/src/index.css b/samples/grids/hierarchical-grid/row-pinning-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/src/index.css +++ b/samples/grids/hierarchical-grid/row-pinning-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/row-pinning-options/src/index.ts b/samples/grids/hierarchical-grid/row-pinning-options/src/index.ts index babee89146..7b0151ad10 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/src/index.ts +++ b/samples/grids/hierarchical-grid/row-pinning-options/src/index.ts @@ -5,11 +5,11 @@ import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionCo import { IgcHierarchicalGridComponent, IgcPinningConfig, RowPinningPosition, ColumnPinningPosition, IgcActionStripComponent, IgcRowIslandComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } 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(); import "./index.css"; @@ -35,7 +35,6 @@ export class Sample { } return this._pinningConfig1; } - private actionStrip1: IgcActionStripComponent private rowIsland1: IgcRowIslandComponent private _pinningConfig2: IgcPinningConfig | null = null; @@ -50,7 +49,6 @@ export class Sample { } return this._pinningConfig2; } - private actionStrip2: IgcActionStripComponent private _bind: () => void; @@ -74,6 +72,7 @@ export class Sample { rowIsland1.pinning = this.pinningConfig2; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/row-pinning-options/tsconfig.json b/samples/grids/hierarchical-grid/row-pinning-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-pinning-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/row-pinning-options/webpack.config.js b/samples/grids/hierarchical-grid/row-pinning-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-pinning-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/row-pinning-style/sandbox.config.json b/samples/grids/hierarchical-grid/row-pinning-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/sandbox.config.json +++ b/samples/grids/hierarchical-grid/row-pinning-style/sandbox.config.json @@ -3,5 +3,4 @@ "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-pinning-style/src/index.css b/samples/grids/hierarchical-grid/row-pinning-style/src/index.css index 0fe9368715..e8c11e3bf1 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/src/index.css +++ b/samples/grids/hierarchical-grid/row-pinning-style/src/index.css @@ -1,2 +1,10 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-grid-pinned-border-width: 5px; + --ig-grid-pinned-border-style: double; + --ig-grid-pinned-border-color: #FFCD0F; + --ig-grid-cell-active-border-color: #FFCD0F; + } + diff --git a/samples/grids/hierarchical-grid/row-pinning-style/src/index.ts b/samples/grids/hierarchical-grid/row-pinning-style/src/index.ts index dd8ca2d60b..0e047a0553 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/src/index.ts +++ b/samples/grids/hierarchical-grid/row-pinning-style/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent, IgcPinningConfig, RowPinningPosition, ColumnPinningPosition, IgcActionStripComponent, IgcRowIslandComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -22,7 +22,6 @@ export class Sample { } return this._pinningConfig1; } - private actionStrip1: IgcActionStripComponent private rowIsland1: IgcRowIslandComponent private _pinningConfig2: IgcPinningConfig | null = null; @@ -37,7 +36,6 @@ export class Sample { } return this._pinningConfig2; } - private actionStrip2: IgcActionStripComponent private _bind: () => void; @@ -55,6 +53,7 @@ export class Sample { rowIsland1.pinning = this.pinningConfig2; } this._bind(); + } private _singersData: any[] = SingersData; @@ -62,6 +61,7 @@ export class Sample { return this._singersData; } + public webHierarchicalGridPinRowOnRendered(): void { var hierarchicalGrid = this.grid; hierarchicalGrid.pinRow(hierarchicalGrid.data[0].Photo); diff --git a/samples/grids/hierarchical-grid/row-pinning-style/tsconfig.json b/samples/grids/hierarchical-grid/row-pinning-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-pinning-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/row-pinning-style/webpack.config.js b/samples/grids/hierarchical-grid/row-pinning-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-pinning-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/row-reorder/sandbox.config.json b/samples/grids/hierarchical-grid/row-reorder/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/row-reorder/sandbox.config.json +++ b/samples/grids/hierarchical-grid/row-reorder/sandbox.config.json @@ -3,5 +3,4 @@ "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-reorder/src/index.css b/samples/grids/hierarchical-grid/row-reorder/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/row-reorder/src/index.css +++ b/samples/grids/hierarchical-grid/row-reorder/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/row-reorder/src/index.ts b/samples/grids/hierarchical-grid/row-reorder/src/index.ts index 1d9c4b3727..be0bc7eefa 100644 --- a/samples/grids/hierarchical-grid/row-reorder/src/index.ts +++ b/samples/grids/hierarchical-grid/row-reorder/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; import { IgcRowDragEndEventArgs } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -21,6 +21,7 @@ export class Sample { hierarchicalGrid.addEventListener("rowDragEnd", this.webHierarchicalGridReorderRowHandler); } this._bind(); + } private _singersData: any[] = SingersData; @@ -28,6 +29,7 @@ export class Sample { return this._singersData; } + public webHierarchicalGridReorderRowHandler(args: CustomEvent): void { const ghostElement = args.detail.dragDirective.ghostElement; const dragElementPos = ghostElement.getBoundingClientRect(); diff --git a/samples/grids/hierarchical-grid/row-reorder/tsconfig.json b/samples/grids/hierarchical-grid/row-reorder/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/row-reorder/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-reorder/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/row-reorder/webpack.config.js b/samples/grids/hierarchical-grid/row-reorder/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/row-reorder/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-reorder/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/row-selection-mode/sandbox.config.json b/samples/grids/hierarchical-grid/row-selection-mode/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/sandbox.config.json +++ b/samples/grids/hierarchical-grid/row-selection-mode/sandbox.config.json @@ -3,5 +3,4 @@ "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-selection-mode/src/index.css b/samples/grids/hierarchical-grid/row-selection-mode/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/src/index.css +++ b/samples/grids/hierarchical-grid/row-selection-mode/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/row-selection-mode/src/index.ts b/samples/grids/hierarchical-grid/row-selection-mode/src/index.ts index 2bceff8252..7ea395d090 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/src/index.ts +++ b/samples/grids/hierarchical-grid/row-selection-mode/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"; @@ -37,6 +37,7 @@ export class Sample { hierarchicalGrid.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/row-selection-mode/tsconfig.json b/samples/grids/hierarchical-grid/row-selection-mode/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-selection-mode/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/row-selection-mode/webpack.config.js b/samples/grids/hierarchical-grid/row-selection-mode/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-selection-mode/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/row-selection-template-numbers/sandbox.config.json b/samples/grids/hierarchical-grid/row-selection-template-numbers/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/sandbox.config.json +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/sandbox.config.json @@ -3,5 +3,4 @@ "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-selection-template-numbers/src/index.css b/samples/grids/hierarchical-grid/row-selection-template-numbers/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/src/index.css +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/row-selection-template-numbers/src/index.ts b/samples/grids/hierarchical-grid/row-selection-template-numbers/src/index.ts index 5d7fca15b1..da26cc9b9f 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/src/index.ts +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/src/index.ts @@ -4,10 +4,10 @@ import { IgcHierarchicalGridComponent, IgcPaginatorComponent } from 'igniteui-we import SingersData from './SingersData.json'; import { IgcRowSelectorTemplateContext, IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; - defineAllComponents(); import "./index.css"; @@ -28,6 +28,7 @@ export class Sample { hierarchicalGrid.headSelectorTemplate = this.webGridHeaderRowSelectorTemplate; } this._bind(); + } private _singersData: any[] = SingersData; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/row-selection-template-numbers/webpack.config.js b/samples/grids/hierarchical-grid/row-selection-template-numbers/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/row-styles/sandbox.config.json b/samples/grids/hierarchical-grid/row-styles/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/row-styles/sandbox.config.json +++ b/samples/grids/hierarchical-grid/row-styles/sandbox.config.json @@ -3,5 +3,4 @@ "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-styles/src/index.css b/samples/grids/hierarchical-grid/row-styles/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/row-styles/src/index.css +++ b/samples/grids/hierarchical-grid/row-styles/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/row-styles/src/index.ts b/samples/grids/hierarchical-grid/row-styles/src/index.ts index ab473c5f94..e2bf6b4dea 100644 --- a/samples/grids/hierarchical-grid/row-styles/src/index.ts +++ b/samples/grids/hierarchical-grid/row-styles/src/index.ts @@ -3,10 +3,10 @@ import { IgcHierarchicalGridComponent, IgcRowIslandComponent } from 'igniteui-we import SingersData from './SingersData.json'; import { IgcPropertyEditorPropertyDescriptionButtonClickEventArgs } from 'igniteui-webcomponents-layouts'; import { IgcGridComponent, IgcRowType } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -24,6 +24,7 @@ export class Sample { rowIsland1.rowStyles = this.webHierarchicalGridChildRowStylesHandler; } this._bind(); + } private _singersData: any[] = SingersData; @@ -31,6 +32,7 @@ export class Sample { return this._singersData; } + public webHierarchicalGridRowStylesHandler = { background:(row: IgcRowType) => row.data['HasGrammyAward'] ? '#eeddd3' : '#f0efeb', 'border-left': (row: IgcRowType) => row.data['HasGrammyAward'] ? '2px solid #dda15e' : null diff --git a/samples/grids/hierarchical-grid/row-styles/tsconfig.json b/samples/grids/hierarchical-grid/row-styles/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/row-styles/tsconfig.json +++ b/samples/grids/hierarchical-grid/row-styles/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/row-styles/webpack.config.js b/samples/grids/hierarchical-grid/row-styles/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/row-styles/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-styles/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/toolbar-sample-1/sandbox.config.json b/samples/grids/hierarchical-grid/toolbar-sample-1/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-1/sandbox.config.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-1/sandbox.config.json @@ -3,5 +3,4 @@ "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-1/src/index.css b/samples/grids/hierarchical-grid/toolbar-sample-1/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-1/src/index.css +++ b/samples/grids/hierarchical-grid/toolbar-sample-1/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/toolbar-sample-1/src/index.ts b/samples/grids/hierarchical-grid/toolbar-sample-1/src/index.ts index ad7c60070c..49f71a07a9 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-1/src/index.ts +++ b/samples/grids/hierarchical-grid/toolbar-sample-1/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hierarchicalGrid1.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/toolbar-sample-1/tsconfig.json b/samples/grids/hierarchical-grid/toolbar-sample-1/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-1/tsconfig.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-1/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/toolbar-sample-1/webpack.config.js b/samples/grids/hierarchical-grid/toolbar-sample-1/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-1/webpack.config.js +++ b/samples/grids/hierarchical-grid/toolbar-sample-1/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/toolbar-sample-2/sandbox.config.json b/samples/grids/hierarchical-grid/toolbar-sample-2/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-2/sandbox.config.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-2/sandbox.config.json @@ -3,5 +3,4 @@ "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-2/src/index.css b/samples/grids/hierarchical-grid/toolbar-sample-2/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-2/src/index.css +++ b/samples/grids/hierarchical-grid/toolbar-sample-2/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/toolbar-sample-2/src/index.ts b/samples/grids/hierarchical-grid/toolbar-sample-2/src/index.ts index ad7c60070c..49f71a07a9 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-2/src/index.ts +++ b/samples/grids/hierarchical-grid/toolbar-sample-2/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { hierarchicalGrid1.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/toolbar-sample-2/tsconfig.json b/samples/grids/hierarchical-grid/toolbar-sample-2/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-2/tsconfig.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-2/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/toolbar-sample-2/webpack.config.js b/samples/grids/hierarchical-grid/toolbar-sample-2/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-2/webpack.config.js +++ b/samples/grids/hierarchical-grid/toolbar-sample-2/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/toolbar-sample-3/sandbox.config.json b/samples/grids/hierarchical-grid/toolbar-sample-3/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/sandbox.config.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/sandbox.config.json @@ -3,5 +3,4 @@ "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-3/src/index.css b/samples/grids/hierarchical-grid/toolbar-sample-3/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/src/index.css +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/hierarchical-grid/toolbar-sample-3/src/index.ts b/samples/grids/hierarchical-grid/toolbar-sample-3/src/index.ts index ac0398bfd5..bb61580d23 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/src/index.ts +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; import { IgcExporterOptionsBase, IgcGridToolbarExportEventArgs } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -21,6 +21,7 @@ export class Sample { hierarchicalGrid1.addEventListener("toolbarExporting", this.webHierarchicalGridToolbarExporting); } this._bind(); + } private _singersData: any[] = SingersData; @@ -28,6 +29,7 @@ export class Sample { return this._singersData; } + public webHierarchicalGridToolbarExporting(evt: CustomEvent): void { const args = evt.detail; const options: IgcExporterOptionsBase = args.options; diff --git a/samples/grids/hierarchical-grid/toolbar-sample-3/tsconfig.json b/samples/grids/hierarchical-grid/toolbar-sample-3/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/tsconfig.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/toolbar-sample-3/webpack.config.js b/samples/grids/hierarchical-grid/toolbar-sample-3/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/webpack.config.js +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/hierarchical-grid/toolbar-style/sandbox.config.json b/samples/grids/hierarchical-grid/toolbar-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/sandbox.config.json +++ b/samples/grids/hierarchical-grid/toolbar-style/sandbox.config.json @@ -3,5 +3,4 @@ "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-style/src/index.css b/samples/grids/hierarchical-grid/toolbar-style/src/index.css index 0fe9368715..a68274771b 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/src/index.css +++ b/samples/grids/hierarchical-grid/toolbar-style/src/index.css @@ -1,2 +1,9 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-grid-toolbar-background-color: #2a2b2f; + --ig-grid-toolbar-title-text-color: #ffcd0f; + --ig-grid-toolbar-dropdown-background: #2a2b2f; +} + diff --git a/samples/grids/hierarchical-grid/toolbar-style/src/index.ts b/samples/grids/hierarchical-grid/toolbar-style/src/index.ts index e964441510..174ef44b89 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/src/index.ts +++ b/samples/grids/hierarchical-grid/toolbar-style/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcHierarchicalGridComponent } from 'igniteui-webcomponents-grids/grids'; import SingersData from './SingersData.json'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { grid.data = this.singersData; } this._bind(); + } private _singersData: any[] = SingersData; diff --git a/samples/grids/hierarchical-grid/toolbar-style/tsconfig.json b/samples/grids/hierarchical-grid/toolbar-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/tsconfig.json +++ b/samples/grids/hierarchical-grid/toolbar-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/hierarchical-grid/toolbar-style/webpack.config.js b/samples/grids/hierarchical-grid/toolbar-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/webpack.config.js +++ b/samples/grids/hierarchical-grid/toolbar-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/pivot-grid/aggregate-max-sales/sandbox.config.json b/samples/grids/pivot-grid/aggregate-max-sales/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/sandbox.config.json +++ b/samples/grids/pivot-grid/aggregate-max-sales/sandbox.config.json @@ -3,5 +3,4 @@ "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/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/src/index.css b/samples/grids/pivot-grid/aggregate-max-sales/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/src/index.css +++ b/samples/grids/pivot-grid/aggregate-max-sales/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/pivot-grid/aggregate-max-sales/src/index.ts b/samples/grids/pivot-grid/aggregate-max-sales/src/index.ts index 6a5c81995b..c1623b0f4f 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/src/index.ts +++ b/samples/grids/pivot-grid/aggregate-max-sales/src/index.ts @@ -1,10 +1,10 @@ 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"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -40,7 +40,6 @@ export class Sample { } return this._pivotConfiguration1; } - private _bind: () => void; constructor() { @@ -51,6 +50,7 @@ export class Sample { grid.pivotConfiguration = this.pivotConfiguration1; } this._bind(); + } private _pivotSalesData: PivotSalesData = null; @@ -62,6 +62,7 @@ export class Sample { return this._pivotSalesData; } + public pivotSalesDataAggregateMaxSales(members: any[], data: any[]): any[] { if (!data) { return []; diff --git a/samples/grids/pivot-grid/aggregate-max-sales/tsconfig.json b/samples/grids/pivot-grid/aggregate-max-sales/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/tsconfig.json +++ b/samples/grids/pivot-grid/aggregate-max-sales/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/pivot-grid/aggregate-max-sales/webpack.config.js b/samples/grids/pivot-grid/aggregate-max-sales/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/webpack.config.js +++ b/samples/grids/pivot-grid/aggregate-max-sales/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/pivot-grid/aggregate-units-sold/sandbox.config.json b/samples/grids/pivot-grid/aggregate-units-sold/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/sandbox.config.json +++ b/samples/grids/pivot-grid/aggregate-units-sold/sandbox.config.json @@ -3,5 +3,4 @@ "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/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/src/index.css b/samples/grids/pivot-grid/aggregate-units-sold/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/src/index.css +++ b/samples/grids/pivot-grid/aggregate-units-sold/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/pivot-grid/aggregate-units-sold/src/index.ts b/samples/grids/pivot-grid/aggregate-units-sold/src/index.ts index fc0b6d09d9..3aac431310 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/src/index.ts +++ b/samples/grids/pivot-grid/aggregate-units-sold/src/index.ts @@ -1,10 +1,10 @@ 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"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -41,7 +41,6 @@ export class Sample { } return this._pivotConfiguration1; } - private _bind: () => void; constructor() { @@ -52,6 +51,7 @@ export class Sample { grid.pivotConfiguration = this.pivotConfiguration1; } this._bind(); + } private _pivotSalesData: PivotSalesData = null; @@ -63,6 +63,7 @@ export class Sample { return this._pivotSalesData; } + public pivotSalesDataAggregateUnitsSold(members: any[], data: any[]): any { return data.reduce((accumulator, item) => accumulator + (item.UnitsSold * item.SalePrice), 0); } diff --git a/samples/grids/pivot-grid/aggregate-units-sold/tsconfig.json b/samples/grids/pivot-grid/aggregate-units-sold/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/tsconfig.json +++ b/samples/grids/pivot-grid/aggregate-units-sold/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/pivot-grid/aggregate-units-sold/webpack.config.js b/samples/grids/pivot-grid/aggregate-units-sold/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/webpack.config.js +++ b/samples/grids/pivot-grid/aggregate-units-sold/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/pivot-grid/features/sandbox.config.json b/samples/grids/pivot-grid/features/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/pivot-grid/features/sandbox.config.json +++ b/samples/grids/pivot-grid/features/sandbox.config.json @@ -3,5 +3,4 @@ "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/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/src/index.css b/samples/grids/pivot-grid/features/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/pivot-grid/features/src/index.css +++ b/samples/grids/pivot-grid/features/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/pivot-grid/features/src/index.ts b/samples/grids/pivot-grid/features/src/index.ts index 9bca0ec265..d88ea2c82d 100644 --- a/samples/grids/pivot-grid/features/src/index.ts +++ b/samples/grids/pivot-grid/features/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcPivotGridComponent, IgcPivotConfiguration, IgcPivotDateDimension, IgcPivotDimension, IgcPivotDateDimensionOptions, SortingDirection, IgcPivotValue, IgcPivotAggregator } from 'igniteui-webcomponents-grids/grids'; import { PivotDataFlatItem, PivotDataFlat } from './PivotDataFlat'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -80,7 +80,6 @@ export class Sample { } return this._pivotConfiguration1; } - private _bind: () => void; constructor() { @@ -91,6 +90,7 @@ export class Sample { grid.pivotConfiguration = this.pivotConfiguration1; } this._bind(); + } private _pivotDataFlat: PivotDataFlat = null; @@ -102,6 +102,7 @@ export class Sample { return this._pivotDataFlat; } + public pivotDataFlatAggregateSumSale(members: any[], data: any[]): any { return data.reduce((accumulator, value) => accumulator + value.ProductUnitPrice * value.NumberOfUnits, 0); } diff --git a/samples/grids/pivot-grid/features/tsconfig.json b/samples/grids/pivot-grid/features/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/pivot-grid/features/tsconfig.json +++ b/samples/grids/pivot-grid/features/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/pivot-grid/features/webpack.config.js b/samples/grids/pivot-grid/features/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/pivot-grid/features/webpack.config.js +++ b/samples/grids/pivot-grid/features/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/action-strip/sandbox.config.json b/samples/grids/tree-grid/action-strip/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/action-strip/sandbox.config.json +++ b/samples/grids/tree-grid/action-strip/sandbox.config.json @@ -3,5 +3,4 @@ "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/action-strip/src/index.css b/samples/grids/tree-grid/action-strip/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/action-strip/src/index.css +++ b/samples/grids/tree-grid/action-strip/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/action-strip/src/index.ts b/samples/grids/tree-grid/action-strip/src/index.ts index 9d136843ae..a4a0ab5ece 100644 --- a/samples/grids/tree-grid/action-strip/src/index.ts +++ b/samples/grids/tree-grid/action-strip/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcTreeGridComponent, IgcActionStripComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -20,6 +20,7 @@ export class Sample { treeGrid.data = this.employeesFlatDetails; } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; diff --git a/samples/grids/tree-grid/action-strip/tsconfig.json b/samples/grids/tree-grid/action-strip/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/action-strip/tsconfig.json +++ b/samples/grids/tree-grid/action-strip/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/action-strip/webpack.config.js b/samples/grids/tree-grid/action-strip/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/action-strip/webpack.config.js +++ b/samples/grids/tree-grid/action-strip/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/advanced-filtering-options/sandbox.config.json b/samples/grids/tree-grid/advanced-filtering-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/sandbox.config.json +++ b/samples/grids/tree-grid/advanced-filtering-options/sandbox.config.json @@ -3,5 +3,4 @@ "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/advanced-filtering-options/src/index.css b/samples/grids/tree-grid/advanced-filtering-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/src/index.css +++ b/samples/grids/tree-grid/advanced-filtering-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/advanced-filtering-options/src/index.ts b/samples/grids/tree-grid/advanced-filtering-options/src/index.ts index 87139d242d..f7700d84c6 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/src/index.ts +++ b/samples/grids/tree-grid/advanced-filtering-options/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDataItem, EmployeesFlatData } from './EmployeesFlatData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { treeGrid.data = this.employeesFlatData; } this._bind(); + } private _employeesFlatData: EmployeesFlatData = null; diff --git a/samples/grids/tree-grid/advanced-filtering-options/tsconfig.json b/samples/grids/tree-grid/advanced-filtering-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/tsconfig.json +++ b/samples/grids/tree-grid/advanced-filtering-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/advanced-filtering-options/webpack.config.js b/samples/grids/tree-grid/advanced-filtering-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/webpack.config.js +++ b/samples/grids/tree-grid/advanced-filtering-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/advanced-filtering-style/sandbox.config.json b/samples/grids/tree-grid/advanced-filtering-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/sandbox.config.json +++ b/samples/grids/tree-grid/advanced-filtering-style/sandbox.config.json @@ -3,5 +3,4 @@ "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/advanced-filtering-style/src/index.css b/samples/grids/tree-grid/advanced-filtering-style/src/index.css index 0fe9368715..335f12e448 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/src/index.css +++ b/samples/grids/tree-grid/advanced-filtering-style/src/index.css @@ -1,2 +1,8 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#treeGrid { + --ig-grid-filtering-row-background: #ffcd0f; + --ig-grid-filtering-background-or: #d83434; +} + diff --git a/samples/grids/tree-grid/advanced-filtering-style/src/index.ts b/samples/grids/tree-grid/advanced-filtering-style/src/index.ts index 87139d242d..f7700d84c6 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/src/index.ts +++ b/samples/grids/tree-grid/advanced-filtering-style/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDataItem, EmployeesFlatData } from './EmployeesFlatData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { treeGrid.data = this.employeesFlatData; } this._bind(); + } private _employeesFlatData: EmployeesFlatData = null; diff --git a/samples/grids/tree-grid/advanced-filtering-style/tsconfig.json b/samples/grids/tree-grid/advanced-filtering-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/tsconfig.json +++ b/samples/grids/tree-grid/advanced-filtering-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/advanced-filtering-style/webpack.config.js b/samples/grids/tree-grid/advanced-filtering-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/webpack.config.js +++ b/samples/grids/tree-grid/advanced-filtering-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/cell-editing-sample/sandbox.config.json b/samples/grids/tree-grid/cell-editing-sample/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/cell-editing-sample/sandbox.config.json +++ b/samples/grids/tree-grid/cell-editing-sample/sandbox.config.json @@ -3,5 +3,4 @@ "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/cell-editing-sample/src/index.css b/samples/grids/tree-grid/cell-editing-sample/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/cell-editing-sample/src/index.css +++ b/samples/grids/tree-grid/cell-editing-sample/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/cell-editing-sample/src/index.ts b/samples/grids/tree-grid/cell-editing-sample/src/index.ts index 02fec9ec02..241e650bc3 100644 --- a/samples/grids/tree-grid/cell-editing-sample/src/index.ts +++ b/samples/grids/tree-grid/cell-editing-sample/src/index.ts @@ -4,10 +4,10 @@ import { IgcTreeGridComponent, IgcColumnComponent } from 'igniteui-webcomponents import { RoleplayTreeGridDataItem, RoleplayTreeGridData } from './RoleplayTreeGridData'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; - defineAllComponents(); import "./index.css"; @@ -33,6 +33,7 @@ export class Sample { column3.inlineEditorTemplate = this.webTreeGridCellEditCellTemplate; } this._bind(); + } private _roleplayTreeGridData: RoleplayTreeGridData = null; diff --git a/samples/grids/tree-grid/cell-editing-sample/tsconfig.json b/samples/grids/tree-grid/cell-editing-sample/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/cell-editing-sample/tsconfig.json +++ b/samples/grids/tree-grid/cell-editing-sample/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/cell-editing-sample/webpack.config.js b/samples/grids/tree-grid/cell-editing-sample/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/cell-editing-sample/webpack.config.js +++ b/samples/grids/tree-grid/cell-editing-sample/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/cell-editing-styling/sandbox.config.json b/samples/grids/tree-grid/cell-editing-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/cell-editing-styling/sandbox.config.json +++ b/samples/grids/tree-grid/cell-editing-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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/cell-editing-styling/src/index.css b/samples/grids/tree-grid/cell-editing-styling/src/index.css index 0fe9368715..d4857d687e 100644 --- a/samples/grids/tree-grid/cell-editing-styling/src/index.css +++ b/samples/grids/tree-grid/cell-editing-styling/src/index.css @@ -1,2 +1,9 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#treeGrid { + --cell-editing-background: #4567bb; + --cell-active-border-color: #4567bb; + --cell-edited-value-color: #fff; +} + diff --git a/samples/grids/tree-grid/cell-editing-styling/src/index.ts b/samples/grids/tree-grid/cell-editing-styling/src/index.ts index 1dbcc70e6f..2b6ccbd009 100644 --- a/samples/grids/tree-grid/cell-editing-styling/src/index.ts +++ b/samples/grids/tree-grid/cell-editing-styling/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebPaginatorDescriptionModule, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesNestedTreeDataItem, EmployeesNestedTreeData } from './EmployeesNestedTreeData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { treeGrid.data = this.employeesNestedTreeData; } this._bind(); + } private _employeesNestedTreeData: EmployeesNestedTreeData = null; diff --git a/samples/grids/tree-grid/cell-editing-styling/tsconfig.json b/samples/grids/tree-grid/cell-editing-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/cell-editing-styling/tsconfig.json +++ b/samples/grids/tree-grid/cell-editing-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/cell-editing-styling/webpack.config.js b/samples/grids/tree-grid/cell-editing-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/cell-editing-styling/webpack.config.js +++ b/samples/grids/tree-grid/cell-editing-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/cell-selection-mode/sandbox.config.json b/samples/grids/tree-grid/cell-selection-mode/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/cell-selection-mode/sandbox.config.json +++ b/samples/grids/tree-grid/cell-selection-mode/sandbox.config.json @@ -3,5 +3,4 @@ "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/cell-selection-mode/src/index.css b/samples/grids/tree-grid/cell-selection-mode/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/cell-selection-mode/src/index.css +++ b/samples/grids/tree-grid/cell-selection-mode/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/cell-selection-mode/src/index.ts b/samples/grids/tree-grid/cell-selection-mode/src/index.ts index dc825d7030..321bf19923 100644 --- a/samples/grids/tree-grid/cell-selection-mode/src/index.ts +++ b/samples/grids/tree-grid/cell-selection-mode/src/index.ts @@ -4,11 +4,11 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebTreeGridDes import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDataItem, EmployeesFlatData } from './EmployeesFlatData'; + 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,6 +35,7 @@ export class Sample { treeGrid.data = this.employeesFlatData; } this._bind(); + } private _employeesFlatData: EmployeesFlatData = null; diff --git a/samples/grids/tree-grid/cell-selection-mode/tsconfig.json b/samples/grids/tree-grid/cell-selection-mode/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/cell-selection-mode/tsconfig.json +++ b/samples/grids/tree-grid/cell-selection-mode/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/cell-selection-mode/webpack.config.js b/samples/grids/tree-grid/cell-selection-mode/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/cell-selection-mode/webpack.config.js +++ b/samples/grids/tree-grid/cell-selection-mode/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/cell-selection-style/sandbox.config.json b/samples/grids/tree-grid/cell-selection-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/cell-selection-style/sandbox.config.json +++ b/samples/grids/tree-grid/cell-selection-style/sandbox.config.json @@ -3,5 +3,4 @@ "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/cell-selection-style/src/index.css b/samples/grids/tree-grid/cell-selection-style/src/index.css index 0fe9368715..85e1b336ac 100644 --- a/samples/grids/tree-grid/cell-selection-style/src/index.css +++ b/samples/grids/tree-grid/cell-selection-style/src/index.css @@ -1,2 +1,9 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --cell-selected-text-color: #FFFFFF; + --cell-active-border-color: #f2c43c; + --cell-selected-background: #0062a3; +} + diff --git a/samples/grids/tree-grid/cell-selection-style/src/index.ts b/samples/grids/tree-grid/cell-selection-style/src/index.ts index 04c696e05b..88a4ac049b 100644 --- a/samples/grids/tree-grid/cell-selection-style/src/index.ts +++ b/samples/grids/tree-grid/cell-selection-style/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { OrdersTreeDataItem, OrdersTreeData } from './OrdersTreeData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { grid.data = this.ordersTreeData; } this._bind(); + } private _ordersTreeData: OrdersTreeData = null; diff --git a/samples/grids/tree-grid/cell-selection-style/tsconfig.json b/samples/grids/tree-grid/cell-selection-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/cell-selection-style/tsconfig.json +++ b/samples/grids/tree-grid/cell-selection-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/cell-selection-style/webpack.config.js b/samples/grids/tree-grid/cell-selection-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/cell-selection-style/webpack.config.js +++ b/samples/grids/tree-grid/cell-selection-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-auto-sizing/sandbox.config.json b/samples/grids/tree-grid/column-auto-sizing/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-auto-sizing/sandbox.config.json +++ b/samples/grids/tree-grid/column-auto-sizing/sandbox.config.json @@ -3,5 +3,4 @@ "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-auto-sizing/src/index.css b/samples/grids/tree-grid/column-auto-sizing/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/column-auto-sizing/src/index.css +++ b/samples/grids/tree-grid/column-auto-sizing/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/column-auto-sizing/src/index.ts b/samples/grids/tree-grid/column-auto-sizing/src/index.ts index 3b0d03dd75..758927c517 100644 --- a/samples/grids/tree-grid/column-auto-sizing/src/index.ts +++ b/samples/grids/tree-grid/column-auto-sizing/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { treeGrid.data = this.employeesFlatDetails; } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; diff --git a/samples/grids/tree-grid/column-auto-sizing/tsconfig.json b/samples/grids/tree-grid/column-auto-sizing/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-auto-sizing/tsconfig.json +++ b/samples/grids/tree-grid/column-auto-sizing/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-auto-sizing/webpack.config.js b/samples/grids/tree-grid/column-auto-sizing/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-auto-sizing/webpack.config.js +++ b/samples/grids/tree-grid/column-auto-sizing/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-collapsible-groups/sandbox.config.json b/samples/grids/tree-grid/column-collapsible-groups/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/sandbox.config.json +++ b/samples/grids/tree-grid/column-collapsible-groups/sandbox.config.json @@ -3,5 +3,4 @@ "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-collapsible-groups/src/index.css b/samples/grids/tree-grid/column-collapsible-groups/src/index.css index 0fe9368715..b831c3317c 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/src/index.css +++ b/samples/grids/tree-grid/column-collapsible-groups/src/index.css @@ -1,2 +1,7 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #treeGrid { + --ig-size: var(--ig-size-small); + } + diff --git a/samples/grids/tree-grid/column-collapsible-groups/src/index.ts b/samples/grids/tree-grid/column-collapsible-groups/src/index.ts index 3b0d03dd75..758927c517 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/src/index.ts +++ b/samples/grids/tree-grid/column-collapsible-groups/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { treeGrid.data = this.employeesFlatDetails; } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; diff --git a/samples/grids/tree-grid/column-collapsible-groups/tsconfig.json b/samples/grids/tree-grid/column-collapsible-groups/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/tsconfig.json +++ b/samples/grids/tree-grid/column-collapsible-groups/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-collapsible-groups/webpack.config.js b/samples/grids/tree-grid/column-collapsible-groups/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/webpack.config.js +++ b/samples/grids/tree-grid/column-collapsible-groups/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-hiding-toolbar-style/sandbox.config.json b/samples/grids/tree-grid/column-hiding-toolbar-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/sandbox.config.json +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/sandbox.config.json @@ -3,5 +3,4 @@ "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-hiding-toolbar-style/src/index.css b/samples/grids/tree-grid/column-hiding-toolbar-style/src/index.css index 0fe9368715..c512138626 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/src/index.css +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/src/index.css @@ -1,2 +1,26 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #treeGrid { + --ig-column-actions-background-color: #292826; + --ig-column-actions-title-color: #ffcd0f; + --ig-checkbox-tick-color: #292826; + --ig-checkbox-label-color: #ffcd0f; + --ig-checkbox-empty-color: #ffcd0f; + --ig-checkbox-fill-color: #ffcd0f; + --ig-input-group-idle-text-color: white; + --ig-input-group-filled-text-color: #ffcd0f; + --ig-input-group-focused-text-color: #ffcd0f; + --ig-input-group-focused-border-color: #ffcd0f; + --ig-input-group-focused-secondary-color: #ffcd0f; + --igx-button-foreground: #292826; + --igx-button-background: #ffcd0f; + --igx-button-hover-background: #404040; + --igx-button-hover-foreground: #ffcd0f; + --igx-button-focus-background: #ffcd0f; + --igx-button-focus-foreground: black; + --igx-button-focus-visible-background: #ffcd0f; + --igx-button-focus-visible-foreground: black; + --igx-button-disabled-foreground: #ffcd0f; + } + diff --git a/samples/grids/tree-grid/column-hiding-toolbar-style/src/index.ts b/samples/grids/tree-grid/column-hiding-toolbar-style/src/index.ts index ba91acb185..161e7be49b 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/src/index.ts +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridToolbarDescriptionModule, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { treeGrid.data = this.employeesFlatDetails; } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/tsconfig.json +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-hiding-toolbar-style/webpack.config.js b/samples/grids/tree-grid/column-hiding-toolbar-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/webpack.config.js +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-hiding-toolbar/sandbox.config.json b/samples/grids/tree-grid/column-hiding-toolbar/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/sandbox.config.json +++ b/samples/grids/tree-grid/column-hiding-toolbar/sandbox.config.json @@ -3,5 +3,4 @@ "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-hiding-toolbar/src/index.css b/samples/grids/tree-grid/column-hiding-toolbar/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/src/index.css +++ b/samples/grids/tree-grid/column-hiding-toolbar/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/column-hiding-toolbar/src/index.ts b/samples/grids/tree-grid/column-hiding-toolbar/src/index.ts index ba91acb185..161e7be49b 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/src/index.ts +++ b/samples/grids/tree-grid/column-hiding-toolbar/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridToolbarDescriptionModule, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { treeGrid.data = this.employeesFlatDetails; } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; diff --git a/samples/grids/tree-grid/column-hiding-toolbar/tsconfig.json b/samples/grids/tree-grid/column-hiding-toolbar/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/tsconfig.json +++ b/samples/grids/tree-grid/column-hiding-toolbar/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-hiding-toolbar/webpack.config.js b/samples/grids/tree-grid/column-hiding-toolbar/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/webpack.config.js +++ b/samples/grids/tree-grid/column-hiding-toolbar/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-moving-options/sandbox.config.json b/samples/grids/tree-grid/column-moving-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-moving-options/sandbox.config.json +++ b/samples/grids/tree-grid/column-moving-options/sandbox.config.json @@ -3,5 +3,4 @@ "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-moving-options/src/index.css b/samples/grids/tree-grid/column-moving-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/column-moving-options/src/index.css +++ b/samples/grids/tree-grid/column-moving-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/column-moving-options/src/index.ts b/samples/grids/tree-grid/column-moving-options/src/index.ts index de64c36300..4ae896d2d4 100644 --- a/samples/grids/tree-grid/column-moving-options/src/index.ts +++ b/samples/grids/tree-grid/column-moving-options/src/index.ts @@ -4,10 +4,10 @@ import { IgcTreeGridComponent, IgcColumnComponent } from 'igniteui-webcomponents import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; import { IgcColumnTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -54,6 +54,7 @@ export class Sample { column11.headerTemplate = this.webTreeGridPinHeaderTemplate; } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; diff --git a/samples/grids/tree-grid/column-moving-options/tsconfig.json b/samples/grids/tree-grid/column-moving-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-moving-options/tsconfig.json +++ b/samples/grids/tree-grid/column-moving-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-moving-options/webpack.config.js b/samples/grids/tree-grid/column-moving-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-moving-options/webpack.config.js +++ b/samples/grids/tree-grid/column-moving-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-moving-styles/sandbox.config.json b/samples/grids/tree-grid/column-moving-styles/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-moving-styles/sandbox.config.json +++ b/samples/grids/tree-grid/column-moving-styles/sandbox.config.json @@ -3,5 +3,4 @@ "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-moving-styles/src/index.css b/samples/grids/tree-grid/column-moving-styles/src/index.css index 0fe9368715..2fc5e07694 100644 --- a/samples/grids/tree-grid/column-moving-styles/src/index.css +++ b/samples/grids/tree-grid/column-moving-styles/src/index.css @@ -1,2 +1,9 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-grid-ghost-header-text-color: #f4d45c; + --ig-grid-ghost-header-background: #ad9d9d; + --ig-grid-ghost-header-icon-color: #f4d45c; +} + diff --git a/samples/grids/tree-grid/column-moving-styles/src/index.ts b/samples/grids/tree-grid/column-moving-styles/src/index.ts index de64c36300..4ae896d2d4 100644 --- a/samples/grids/tree-grid/column-moving-styles/src/index.ts +++ b/samples/grids/tree-grid/column-moving-styles/src/index.ts @@ -4,10 +4,10 @@ import { IgcTreeGridComponent, IgcColumnComponent } from 'igniteui-webcomponents import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; import { IgcColumnTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -54,6 +54,7 @@ export class Sample { column11.headerTemplate = this.webTreeGridPinHeaderTemplate; } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; diff --git a/samples/grids/tree-grid/column-moving-styles/tsconfig.json b/samples/grids/tree-grid/column-moving-styles/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-moving-styles/tsconfig.json +++ b/samples/grids/tree-grid/column-moving-styles/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-moving-styles/webpack.config.js b/samples/grids/tree-grid/column-moving-styles/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-moving-styles/webpack.config.js +++ b/samples/grids/tree-grid/column-moving-styles/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-pinning-options/sandbox.config.json b/samples/grids/tree-grid/column-pinning-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-pinning-options/sandbox.config.json +++ b/samples/grids/tree-grid/column-pinning-options/sandbox.config.json @@ -3,5 +3,4 @@ "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-pinning-options/src/index.css b/samples/grids/tree-grid/column-pinning-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/column-pinning-options/src/index.css +++ b/samples/grids/tree-grid/column-pinning-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/column-pinning-options/src/index.ts b/samples/grids/tree-grid/column-pinning-options/src/index.ts index bf5e067bfa..bf53d189b2 100644 --- a/samples/grids/tree-grid/column-pinning-options/src/index.ts +++ b/samples/grids/tree-grid/column-pinning-options/src/index.ts @@ -4,10 +4,10 @@ import { IgcTreeGridComponent, IgcColumnComponent } from 'igniteui-webcomponents import { EmployeesFlatDataItem, EmployeesFlatData } from './EmployeesFlatData'; import { IgcColumnTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -39,6 +39,7 @@ export class Sample { column6.headerTemplate = this.webTreeGridPinHeaderTemplate; } this._bind(); + } private _employeesFlatData: EmployeesFlatData = null; diff --git a/samples/grids/tree-grid/column-pinning-options/tsconfig.json b/samples/grids/tree-grid/column-pinning-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-pinning-options/tsconfig.json +++ b/samples/grids/tree-grid/column-pinning-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-pinning-options/webpack.config.js b/samples/grids/tree-grid/column-pinning-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-pinning-options/webpack.config.js +++ b/samples/grids/tree-grid/column-pinning-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-pinning-right-side/sandbox.config.json b/samples/grids/tree-grid/column-pinning-right-side/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/sandbox.config.json +++ b/samples/grids/tree-grid/column-pinning-right-side/sandbox.config.json @@ -3,5 +3,4 @@ "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-pinning-right-side/src/index.css b/samples/grids/tree-grid/column-pinning-right-side/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/src/index.css +++ b/samples/grids/tree-grid/column-pinning-right-side/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/column-pinning-right-side/src/index.ts b/samples/grids/tree-grid/column-pinning-right-side/src/index.ts index 3957984d97..c9f2573d12 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/src/index.ts +++ b/samples/grids/tree-grid/column-pinning-right-side/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent, IgcPinningConfig, ColumnPinningPosition } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -21,7 +21,6 @@ export class Sample { } return this._pinningConfig1; } - private _bind: () => void; constructor() { @@ -32,6 +31,7 @@ export class Sample { treeGrid.pinning = this.pinningConfig1; } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/tsconfig.json +++ b/samples/grids/tree-grid/column-pinning-right-side/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-pinning-right-side/webpack.config.js b/samples/grids/tree-grid/column-pinning-right-side/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/webpack.config.js +++ b/samples/grids/tree-grid/column-pinning-right-side/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-pinning-styles/sandbox.config.json b/samples/grids/tree-grid/column-pinning-styles/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-pinning-styles/sandbox.config.json +++ b/samples/grids/tree-grid/column-pinning-styles/sandbox.config.json @@ -3,5 +3,4 @@ "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-pinning-styles/src/index.css b/samples/grids/tree-grid/column-pinning-styles/src/index.css index 0fe9368715..484a71003a 100644 --- a/samples/grids/tree-grid/column-pinning-styles/src/index.css +++ b/samples/grids/tree-grid/column-pinning-styles/src/index.css @@ -1,2 +1,10 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#treeGrid { + --pinned-border-width: 5px; + --pinned-border-style: double; + --pinned-border-color: #FFCD0F; + --cell-active-border-color: #FFCD0F; +} + diff --git a/samples/grids/tree-grid/column-pinning-styles/src/index.ts b/samples/grids/tree-grid/column-pinning-styles/src/index.ts index bf5e067bfa..bf53d189b2 100644 --- a/samples/grids/tree-grid/column-pinning-styles/src/index.ts +++ b/samples/grids/tree-grid/column-pinning-styles/src/index.ts @@ -4,10 +4,10 @@ import { IgcTreeGridComponent, IgcColumnComponent } from 'igniteui-webcomponents import { EmployeesFlatDataItem, EmployeesFlatData } from './EmployeesFlatData'; import { IgcColumnTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -39,6 +39,7 @@ export class Sample { column6.headerTemplate = this.webTreeGridPinHeaderTemplate; } this._bind(); + } private _employeesFlatData: EmployeesFlatData = null; diff --git a/samples/grids/tree-grid/column-pinning-styles/tsconfig.json b/samples/grids/tree-grid/column-pinning-styles/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-pinning-styles/tsconfig.json +++ b/samples/grids/tree-grid/column-pinning-styles/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-pinning-styles/webpack.config.js b/samples/grids/tree-grid/column-pinning-styles/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-pinning-styles/webpack.config.js +++ b/samples/grids/tree-grid/column-pinning-styles/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-pinning-toolbar/sandbox.config.json b/samples/grids/tree-grid/column-pinning-toolbar/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/sandbox.config.json +++ b/samples/grids/tree-grid/column-pinning-toolbar/sandbox.config.json @@ -3,5 +3,4 @@ "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-pinning-toolbar/src/index.css b/samples/grids/tree-grid/column-pinning-toolbar/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/src/index.css +++ b/samples/grids/tree-grid/column-pinning-toolbar/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/column-pinning-toolbar/src/index.ts b/samples/grids/tree-grid/column-pinning-toolbar/src/index.ts index 3b0d03dd75..758927c517 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/src/index.ts +++ b/samples/grids/tree-grid/column-pinning-toolbar/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { treeGrid.data = this.employeesFlatDetails; } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; diff --git a/samples/grids/tree-grid/column-pinning-toolbar/tsconfig.json b/samples/grids/tree-grid/column-pinning-toolbar/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/tsconfig.json +++ b/samples/grids/tree-grid/column-pinning-toolbar/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-pinning-toolbar/webpack.config.js b/samples/grids/tree-grid/column-pinning-toolbar/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/webpack.config.js +++ b/samples/grids/tree-grid/column-pinning-toolbar/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-pinning/sandbox.config.json b/samples/grids/tree-grid/column-pinning/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-pinning/sandbox.config.json +++ b/samples/grids/tree-grid/column-pinning/sandbox.config.json @@ -3,5 +3,4 @@ "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-pinning/src/index.css b/samples/grids/tree-grid/column-pinning/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/column-pinning/src/index.css +++ b/samples/grids/tree-grid/column-pinning/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/column-pinning/src/index.ts b/samples/grids/tree-grid/column-pinning/src/index.ts index 87139d242d..f7700d84c6 100644 --- a/samples/grids/tree-grid/column-pinning/src/index.ts +++ b/samples/grids/tree-grid/column-pinning/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDataItem, EmployeesFlatData } from './EmployeesFlatData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { treeGrid.data = this.employeesFlatData; } this._bind(); + } private _employeesFlatData: EmployeesFlatData = null; diff --git a/samples/grids/tree-grid/column-pinning/tsconfig.json b/samples/grids/tree-grid/column-pinning/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-pinning/tsconfig.json +++ b/samples/grids/tree-grid/column-pinning/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-pinning/webpack.config.js b/samples/grids/tree-grid/column-pinning/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-pinning/webpack.config.js +++ b/samples/grids/tree-grid/column-pinning/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-resize-styling/sandbox.config.json b/samples/grids/tree-grid/column-resize-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-resize-styling/sandbox.config.json +++ b/samples/grids/tree-grid/column-resize-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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-resize-styling/src/index.css b/samples/grids/tree-grid/column-resize-styling/src/index.css index 0fe9368715..1203da6d95 100644 --- a/samples/grids/tree-grid/column-resize-styling/src/index.css +++ b/samples/grids/tree-grid/column-resize-styling/src/index.css @@ -1,2 +1,7 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-grid-resize-line-color: #f35b04; +} + diff --git a/samples/grids/tree-grid/column-resize-styling/src/index.ts b/samples/grids/tree-grid/column-resize-styling/src/index.ts index 82581cfdcf..d0eac77491 100644 --- a/samples/grids/tree-grid/column-resize-styling/src/index.ts +++ b/samples/grids/tree-grid/column-resize-styling/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { grid.data = this.employeesFlatDetails; } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; diff --git a/samples/grids/tree-grid/column-resize-styling/tsconfig.json b/samples/grids/tree-grid/column-resize-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-resize-styling/tsconfig.json +++ b/samples/grids/tree-grid/column-resize-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-resize-styling/webpack.config.js b/samples/grids/tree-grid/column-resize-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-resize-styling/webpack.config.js +++ b/samples/grids/tree-grid/column-resize-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-resizing/sandbox.config.json b/samples/grids/tree-grid/column-resizing/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-resizing/sandbox.config.json +++ b/samples/grids/tree-grid/column-resizing/sandbox.config.json @@ -3,5 +3,4 @@ "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-resizing/src/index.css b/samples/grids/tree-grid/column-resizing/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/column-resizing/src/index.css +++ b/samples/grids/tree-grid/column-resizing/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/column-resizing/src/index.ts b/samples/grids/tree-grid/column-resizing/src/index.ts index 3b0d03dd75..758927c517 100644 --- a/samples/grids/tree-grid/column-resizing/src/index.ts +++ b/samples/grids/tree-grid/column-resizing/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { treeGrid.data = this.employeesFlatDetails; } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; diff --git a/samples/grids/tree-grid/column-resizing/tsconfig.json b/samples/grids/tree-grid/column-resizing/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-resizing/tsconfig.json +++ b/samples/grids/tree-grid/column-resizing/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-resizing/webpack.config.js b/samples/grids/tree-grid/column-resizing/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-resizing/webpack.config.js +++ b/samples/grids/tree-grid/column-resizing/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-selection-group/sandbox.config.json b/samples/grids/tree-grid/column-selection-group/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-selection-group/sandbox.config.json +++ b/samples/grids/tree-grid/column-selection-group/sandbox.config.json @@ -3,5 +3,4 @@ "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-group/src/index.css b/samples/grids/tree-grid/column-selection-group/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/column-selection-group/src/index.css +++ b/samples/grids/tree-grid/column-selection-group/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/column-selection-group/src/index.ts b/samples/grids/tree-grid/column-selection-group/src/index.ts index 408e1142cf..75082e572b 100644 --- a/samples/grids/tree-grid/column-selection-group/src/index.ts +++ b/samples/grids/tree-grid/column-selection-group/src/index.ts @@ -1,10 +1,10 @@ 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"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { treeGrid.data = this.employeesFlatDetails; } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; diff --git a/samples/grids/tree-grid/column-selection-group/tsconfig.json b/samples/grids/tree-grid/column-selection-group/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-selection-group/tsconfig.json +++ b/samples/grids/tree-grid/column-selection-group/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-selection-group/webpack.config.js b/samples/grids/tree-grid/column-selection-group/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-selection-group/webpack.config.js +++ b/samples/grids/tree-grid/column-selection-group/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-selection-mode/sandbox.config.json b/samples/grids/tree-grid/column-selection-mode/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-selection-mode/sandbox.config.json +++ b/samples/grids/tree-grid/column-selection-mode/sandbox.config.json @@ -3,5 +3,4 @@ "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-mode/src/index.css b/samples/grids/tree-grid/column-selection-mode/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/column-selection-mode/src/index.css +++ b/samples/grids/tree-grid/column-selection-mode/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/column-selection-mode/src/index.ts b/samples/grids/tree-grid/column-selection-mode/src/index.ts index 9d756a0cd7..3317f0a4d6 100644 --- a/samples/grids/tree-grid/column-selection-mode/src/index.ts +++ b/samples/grids/tree-grid/column-selection-mode/src/index.ts @@ -4,11 +4,11 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebTreeGridDes import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { FoodsDataItem, FoodsData } from './FoodsData'; + 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,6 +35,7 @@ export class Sample { treeGrid.data = this.foodsData; } this._bind(); + } private _foodsData: FoodsData = null; diff --git a/samples/grids/tree-grid/column-selection-mode/tsconfig.json b/samples/grids/tree-grid/column-selection-mode/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-selection-mode/tsconfig.json +++ b/samples/grids/tree-grid/column-selection-mode/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-selection-mode/webpack.config.js b/samples/grids/tree-grid/column-selection-mode/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-selection-mode/webpack.config.js +++ b/samples/grids/tree-grid/column-selection-mode/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-selection-styles/sandbox.config.json b/samples/grids/tree-grid/column-selection-styles/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-selection-styles/sandbox.config.json +++ b/samples/grids/tree-grid/column-selection-styles/sandbox.config.json @@ -3,5 +3,4 @@ "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-styles/src/index.css b/samples/grids/tree-grid/column-selection-styles/src/index.css index 0fe9368715..3b1a2d1712 100644 --- a/samples/grids/tree-grid/column-selection-styles/src/index.css +++ b/samples/grids/tree-grid/column-selection-styles/src/index.css @@ -1,2 +1,13 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#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; +} + diff --git a/samples/grids/tree-grid/column-selection-styles/src/index.ts b/samples/grids/tree-grid/column-selection-styles/src/index.ts index 408e1142cf..75082e572b 100644 --- a/samples/grids/tree-grid/column-selection-styles/src/index.ts +++ b/samples/grids/tree-grid/column-selection-styles/src/index.ts @@ -1,10 +1,10 @@ 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"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { treeGrid.data = this.employeesFlatDetails; } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; diff --git a/samples/grids/tree-grid/column-selection-styles/tsconfig.json b/samples/grids/tree-grid/column-selection-styles/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-selection-styles/tsconfig.json +++ b/samples/grids/tree-grid/column-selection-styles/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-selection-styles/webpack.config.js b/samples/grids/tree-grid/column-selection-styles/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-selection-styles/webpack.config.js +++ b/samples/grids/tree-grid/column-selection-styles/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-sorting-indicators/sandbox.config.json b/samples/grids/tree-grid/column-sorting-indicators/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/sandbox.config.json +++ b/samples/grids/tree-grid/column-sorting-indicators/sandbox.config.json @@ -3,5 +3,4 @@ "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-sorting-indicators/src/index.css b/samples/grids/tree-grid/column-sorting-indicators/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/src/index.css +++ b/samples/grids/tree-grid/column-sorting-indicators/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/column-sorting-indicators/src/index.ts b/samples/grids/tree-grid/column-sorting-indicators/src/index.ts index 63045f9a44..9c6ae2a204 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/src/index.ts +++ b/samples/grids/tree-grid/column-sorting-indicators/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcTreeGridComponent, IgcSortingExpression, SortingDirection, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteui-webcomponents-grids/grids'; import { OrdersTreeDataItem, OrdersTreeData } from './OrdersTreeData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -60,7 +60,6 @@ export class Sample { } return this._sortingExpression1; } - private column1: IgcColumnComponent private _columnPipeArgs1: IgcColumnPipeArgs | null = null; public get columnPipeArgs1(): IgcColumnPipeArgs { @@ -74,7 +73,6 @@ export class Sample { } return this._columnPipeArgs1; } - private _bind: () => void; constructor() { @@ -87,6 +85,7 @@ export class Sample { column1.pipeArgs = this.columnPipeArgs1; } this._bind(); + } private _ordersTreeData: OrdersTreeData = null; diff --git a/samples/grids/tree-grid/column-sorting-indicators/tsconfig.json b/samples/grids/tree-grid/column-sorting-indicators/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/tsconfig.json +++ b/samples/grids/tree-grid/column-sorting-indicators/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-sorting-indicators/webpack.config.js b/samples/grids/tree-grid/column-sorting-indicators/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/webpack.config.js +++ b/samples/grids/tree-grid/column-sorting-indicators/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-sorting-options/sandbox.config.json b/samples/grids/tree-grid/column-sorting-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-sorting-options/sandbox.config.json +++ b/samples/grids/tree-grid/column-sorting-options/sandbox.config.json @@ -3,5 +3,4 @@ "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-sorting-options/src/index.css b/samples/grids/tree-grid/column-sorting-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/column-sorting-options/src/index.css +++ b/samples/grids/tree-grid/column-sorting-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/column-sorting-options/src/index.ts b/samples/grids/tree-grid/column-sorting-options/src/index.ts index 7f8349399a..26549218ee 100644 --- a/samples/grids/tree-grid/column-sorting-options/src/index.ts +++ b/samples/grids/tree-grid/column-sorting-options/src/index.ts @@ -6,11 +6,11 @@ import { IgcTreeGridComponent, IgcSortingExpression, SortingDirection, IgcColumn import { OrdersTreeDataItem, OrdersTreeData } from './OrdersTreeData'; import { IgcPropertyEditorPropertyDescriptionButtonClickEventArgs } from 'igniteui-webcomponents-layouts'; 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 } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -40,7 +40,6 @@ export class Sample { } return this._sortingExpression1; } - private column1: IgcColumnComponent private _columnPipeArgs1: IgcColumnPipeArgs | null = null; public get columnPipeArgs1(): IgcColumnPipeArgs { @@ -54,7 +53,6 @@ export class Sample { } return this._columnPipeArgs1; } - private _bind: () => void; constructor() { @@ -74,6 +72,7 @@ export class Sample { column1.pipeArgs = this.columnPipeArgs1; } this._bind(); + } private _ordersTreeData: OrdersTreeData = null; diff --git a/samples/grids/tree-grid/column-sorting-options/tsconfig.json b/samples/grids/tree-grid/column-sorting-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-sorting-options/tsconfig.json +++ b/samples/grids/tree-grid/column-sorting-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-sorting-options/webpack.config.js b/samples/grids/tree-grid/column-sorting-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-sorting-options/webpack.config.js +++ b/samples/grids/tree-grid/column-sorting-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/column-sorting-style/sandbox.config.json b/samples/grids/tree-grid/column-sorting-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/column-sorting-style/sandbox.config.json +++ b/samples/grids/tree-grid/column-sorting-style/sandbox.config.json @@ -3,5 +3,4 @@ "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-sorting-style/src/index.css b/samples/grids/tree-grid/column-sorting-style/src/index.css index 0fe9368715..4c1b0d1952 100644 --- a/samples/grids/tree-grid/column-sorting-style/src/index.css +++ b/samples/grids/tree-grid/column-sorting-style/src/index.css @@ -1,2 +1,8 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-grid-sorted-header-icon-color: #ffb06a; + --ig-grid-sortable-header-icon-hover-color: black; +} + diff --git a/samples/grids/tree-grid/column-sorting-style/src/index.ts b/samples/grids/tree-grid/column-sorting-style/src/index.ts index ea7ec6eb27..115f10d0b2 100644 --- a/samples/grids/tree-grid/column-sorting-style/src/index.ts +++ b/samples/grids/tree-grid/column-sorting-style/src/index.ts @@ -3,11 +3,11 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent, IgcColumnComponent, IgcColumnPipeArgs } from 'igniteui-webcomponents-grids/grids'; import { OrdersTreeDataItem, OrdersTreeData } from './OrdersTreeData'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; - +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule @@ -29,7 +29,6 @@ export class Sample { } return this._columnPipeArgs1; } - private _bind: () => void; constructor() { @@ -41,6 +40,7 @@ export class Sample { column1.pipeArgs = this.columnPipeArgs1; } this._bind(); + } private _ordersTreeData: OrdersTreeData = null; diff --git a/samples/grids/tree-grid/column-sorting-style/tsconfig.json b/samples/grids/tree-grid/column-sorting-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/column-sorting-style/tsconfig.json +++ b/samples/grids/tree-grid/column-sorting-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/column-sorting-style/webpack.config.js b/samples/grids/tree-grid/column-sorting-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/column-sorting-style/webpack.config.js +++ b/samples/grids/tree-grid/column-sorting-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/conditional-cell-style-1/sandbox.config.json b/samples/grids/tree-grid/conditional-cell-style-1/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/sandbox.config.json +++ b/samples/grids/tree-grid/conditional-cell-style-1/sandbox.config.json @@ -3,5 +3,4 @@ "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/conditional-cell-style-1/src/index.css b/samples/grids/tree-grid/conditional-cell-style-1/src/index.css index 0fe9368715..03ca37d167 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/src/index.css +++ b/samples/grids/tree-grid/conditional-cell-style-1/src/index.css @@ -1,2 +1,15 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.allergensFont { + color: royalblue !important; +} + +.upPrice { + color: red !important; +} + +.downPrice { + color: green !important; +} + diff --git a/samples/grids/tree-grid/conditional-cell-style-1/src/index.ts b/samples/grids/tree-grid/conditional-cell-style-1/src/index.ts index 616bf3a21c..52ac3176ce 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/src/index.ts +++ b/samples/grids/tree-grid/conditional-cell-style-1/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcTreeGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import { OrdersTreeDataItem, OrdersTreeData } from './OrdersTreeData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -24,6 +24,7 @@ export class Sample { column2.cellClasses = this.webTreeGridUnitPriceCellClassesHandler; } this._bind(); + } private _ordersTreeData: OrdersTreeData = null; @@ -35,6 +36,7 @@ export class Sample { return this._ordersTreeData; } + public allergenItems = ['Frozen Shrimps', 'Wild Salmon Fillets', 'Fresh Cheese', 'Skimmed Milk 1L', 'Butter']; public webTreeGridAllergensCellClassesHandler = { 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/tsconfig.json +++ b/samples/grids/tree-grid/conditional-cell-style-1/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/conditional-cell-style-1/webpack.config.js b/samples/grids/tree-grid/conditional-cell-style-1/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/webpack.config.js +++ b/samples/grids/tree-grid/conditional-cell-style-1/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/conditional-cell-style-2/sandbox.config.json b/samples/grids/tree-grid/conditional-cell-style-2/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/sandbox.config.json +++ b/samples/grids/tree-grid/conditional-cell-style-2/sandbox.config.json @@ -3,5 +3,4 @@ "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/conditional-cell-style-2/src/index.css b/samples/grids/tree-grid/conditional-cell-style-2/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/src/index.css +++ b/samples/grids/tree-grid/conditional-cell-style-2/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/conditional-cell-style-2/src/index.ts b/samples/grids/tree-grid/conditional-cell-style-2/src/index.ts index 1a467905c0..40709634ba 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/src/index.ts +++ b/samples/grids/tree-grid/conditional-cell-style-2/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcTreeGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import { OrdersTreeDataItem, OrdersTreeData } from './OrdersTreeData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -30,6 +30,7 @@ export class Sample { column4.cellStyles = this.webTreeGridCellStylesHandler; } this._bind(); + } private _ordersTreeData: OrdersTreeData = null; @@ -41,6 +42,7 @@ export class Sample { return this._ordersTreeData; } + public webTreeGridCellStylesHandler = { background: (rowData: any, columnKey: any, cellValue: any, rowIndex: any) => rowIndex % 2 === 0 ? "#EFF4FD" : null, color: (rowData: any, columnKey: any, cellValue: any, rowIndex: any) => { 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/tsconfig.json +++ b/samples/grids/tree-grid/conditional-cell-style-2/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/conditional-cell-style-2/webpack.config.js b/samples/grids/tree-grid/conditional-cell-style-2/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/webpack.config.js +++ b/samples/grids/tree-grid/conditional-cell-style-2/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/conditional-row-selectors/sandbox.config.json b/samples/grids/tree-grid/conditional-row-selectors/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/sandbox.config.json +++ b/samples/grids/tree-grid/conditional-row-selectors/sandbox.config.json @@ -3,5 +3,4 @@ "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/conditional-row-selectors/src/index.css b/samples/grids/tree-grid/conditional-row-selectors/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/src/index.css +++ b/samples/grids/tree-grid/conditional-row-selectors/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/conditional-row-selectors/src/index.ts b/samples/grids/tree-grid/conditional-row-selectors/src/index.ts index 44e551bd78..164842b35c 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/src/index.ts +++ b/samples/grids/tree-grid/conditional-row-selectors/src/index.ts @@ -3,10 +3,10 @@ import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcom import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDataItem, EmployeesFlatData } from './EmployeesFlatData'; import { IgcRowSelectionEventArgs, IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -22,6 +22,7 @@ export class Sample { treeGrid.addEventListener("rowSelectionChanging", this.webTreeGridRowSelectionConditional); } this._bind(); + } private _employeesFlatData: EmployeesFlatData = null; diff --git a/samples/grids/tree-grid/conditional-row-selectors/tsconfig.json b/samples/grids/tree-grid/conditional-row-selectors/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/tsconfig.json +++ b/samples/grids/tree-grid/conditional-row-selectors/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/conditional-row-selectors/webpack.config.js b/samples/grids/tree-grid/conditional-row-selectors/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/webpack.config.js +++ b/samples/grids/tree-grid/conditional-row-selectors/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/data-summary-children/sandbox.config.json b/samples/grids/tree-grid/data-summary-children/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/data-summary-children/sandbox.config.json +++ b/samples/grids/tree-grid/data-summary-children/sandbox.config.json @@ -3,5 +3,4 @@ "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-summary-children/src/index.css b/samples/grids/tree-grid/data-summary-children/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/data-summary-children/src/index.css +++ b/samples/grids/tree-grid/data-summary-children/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/data-summary-children/src/index.ts b/samples/grids/tree-grid/data-summary-children/src/index.ts index 197ae92bf6..4a10f7ba5b 100644 --- a/samples/grids/tree-grid/data-summary-children/src/index.ts +++ b/samples/grids/tree-grid/data-summary-children/src/index.ts @@ -5,11 +5,11 @@ import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionCo import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { OrdersTreeDataItem, OrdersTreeData } from './OrdersTreeData'; import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } 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(); import "./index.css"; @@ -44,6 +44,7 @@ export class Sample { treeGrid.data = this.ordersTreeData; } this._bind(); + } private _ordersTreeData: OrdersTreeData = null; diff --git a/samples/grids/tree-grid/data-summary-children/tsconfig.json b/samples/grids/tree-grid/data-summary-children/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/data-summary-children/tsconfig.json +++ b/samples/grids/tree-grid/data-summary-children/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/data-summary-children/webpack.config.js b/samples/grids/tree-grid/data-summary-children/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/data-summary-children/webpack.config.js +++ b/samples/grids/tree-grid/data-summary-children/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/data-summary-formatter/sandbox.config.json b/samples/grids/tree-grid/data-summary-formatter/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/data-summary-formatter/sandbox.config.json +++ b/samples/grids/tree-grid/data-summary-formatter/sandbox.config.json @@ -3,5 +3,4 @@ "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-summary-formatter/src/index.css b/samples/grids/tree-grid/data-summary-formatter/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/data-summary-formatter/src/index.css +++ b/samples/grids/tree-grid/data-summary-formatter/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/data-summary-formatter/src/index.ts b/samples/grids/tree-grid/data-summary-formatter/src/index.ts index db3653b34d..b1fc56a6cb 100644 --- a/samples/grids/tree-grid/data-summary-formatter/src/index.ts +++ b/samples/grids/tree-grid/data-summary-formatter/src/index.ts @@ -3,10 +3,10 @@ import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcom import { IgcTreeGridComponent, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import { OrdersTreeDataItem, OrdersTreeData } from './OrdersTreeData'; import { IgcSummaryResult, IgcSummaryOperand } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -24,6 +24,7 @@ export class Sample { column1.summaryFormatter = this.webTreeGridSummaryFormatter; } this._bind(); + } private _ordersTreeData: OrdersTreeData = null; diff --git a/samples/grids/tree-grid/data-summary-formatter/tsconfig.json b/samples/grids/tree-grid/data-summary-formatter/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/data-summary-formatter/tsconfig.json +++ b/samples/grids/tree-grid/data-summary-formatter/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/data-summary-formatter/webpack.config.js b/samples/grids/tree-grid/data-summary-formatter/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/data-summary-formatter/webpack.config.js +++ b/samples/grids/tree-grid/data-summary-formatter/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/data-summary-options-styling/sandbox.config.json b/samples/grids/tree-grid/data-summary-options-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/sandbox.config.json +++ b/samples/grids/tree-grid/data-summary-options-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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-summary-options-styling/src/index.css b/samples/grids/tree-grid/data-summary-options-styling/src/index.css index 0fe9368715..db97f90145 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/src/index.css +++ b/samples/grids/tree-grid/data-summary-options-styling/src/index.css @@ -1,2 +1,10 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#treeGrid { + --ig-grid-summary-background-color:#e0f3ff; + --ig-grid-summary-focus-background-color: rgba( #94d1f7, .3 ); + --ig-grid-summary-label-color: rgb(228, 27, 117); + --ig-grid-summary-result-color: black; +} + diff --git a/samples/grids/tree-grid/data-summary-options-styling/src/index.ts b/samples/grids/tree-grid/data-summary-options-styling/src/index.ts index b95ddcc058..e0f8a2eb99 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/src/index.ts +++ b/samples/grids/tree-grid/data-summary-options-styling/src/index.ts @@ -4,10 +4,10 @@ import { IgcTreeGridComponent, IgcColumnComponent } from 'igniteui-webcomponents import { OrdersTreeDataItem, OrdersTreeData } from './OrdersTreeData'; import { IgcColumnTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -42,6 +42,7 @@ export class Sample { column7.headerTemplate = this.webTreeGridSummariesHeaderTemplate; } this._bind(); + } private _ordersTreeData: OrdersTreeData = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/tsconfig.json +++ b/samples/grids/tree-grid/data-summary-options-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/data-summary-options-styling/webpack.config.js b/samples/grids/tree-grid/data-summary-options-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/webpack.config.js +++ b/samples/grids/tree-grid/data-summary-options-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/data-summary-options/sandbox.config.json b/samples/grids/tree-grid/data-summary-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/data-summary-options/sandbox.config.json +++ b/samples/grids/tree-grid/data-summary-options/sandbox.config.json @@ -3,5 +3,4 @@ "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-summary-options/src/index.css b/samples/grids/tree-grid/data-summary-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/data-summary-options/src/index.css +++ b/samples/grids/tree-grid/data-summary-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/data-summary-options/src/index.ts b/samples/grids/tree-grid/data-summary-options/src/index.ts index 6212d5e5b4..6ceb8fb800 100644 --- a/samples/grids/tree-grid/data-summary-options/src/index.ts +++ b/samples/grids/tree-grid/data-summary-options/src/index.ts @@ -4,10 +4,10 @@ import { IgcTreeGridComponent, IgcColumnComponent } from 'igniteui-webcomponents import { OrdersTreeDataItem, OrdersTreeData } from './OrdersTreeData'; import { IgcColumnTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -39,6 +39,7 @@ export class Sample { column6.headerTemplate = this.webTreeGridSummariesHeaderTemplate; } this._bind(); + } private _ordersTreeData: OrdersTreeData = null; diff --git a/samples/grids/tree-grid/data-summary-options/tsconfig.json b/samples/grids/tree-grid/data-summary-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/data-summary-options/tsconfig.json +++ b/samples/grids/tree-grid/data-summary-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/data-summary-options/webpack.config.js b/samples/grids/tree-grid/data-summary-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/data-summary-options/webpack.config.js +++ b/samples/grids/tree-grid/data-summary-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/data-summary-template/sandbox.config.json b/samples/grids/tree-grid/data-summary-template/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/data-summary-template/sandbox.config.json +++ b/samples/grids/tree-grid/data-summary-template/sandbox.config.json @@ -3,5 +3,4 @@ "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-summary-template/src/index.css b/samples/grids/tree-grid/data-summary-template/src/index.css index 0fe9368715..848a950285 100644 --- a/samples/grids/tree-grid/data-summary-template/src/index.css +++ b/samples/grids/tree-grid/data-summary-template/src/index.css @@ -1,2 +1,43 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.summary-temp { + display: flex; + flex-direction: column; + margin: 0 1px; + font-size: 14px; + line-height: 24px; + height: 100%; + overflow-y: auto; + overflow-x: hidden; + > * { + padding: 8px 0; + line-height: 18px; + border-bottom: 1px dashed hsla(var(--igx-gray-400)); + &:last-child { + border-bottom: none; + } + } +} +.summary-temp span { + display: flex; + flex-wrap: wrap; + align-items: center; + gap: 4px; + justify-content: space-between; + color: hsla(var(--ig-gray-900)); +} +.summary-temp span span { + user-select: all; + max-width: 300px; + padding-right: 8px; +} +.summary-temp span strong { + font-size: 14px; + text-transform: uppercase; + min-width: 70px; + justify-self: flex-start; + text-align: left; + color: hsla(var(--ig-secondary-600)); + user-select: none; +} diff --git a/samples/grids/tree-grid/data-summary-template/src/index.ts b/samples/grids/tree-grid/data-summary-template/src/index.ts index 4febd4eae8..cf5075d71a 100644 --- a/samples/grids/tree-grid/data-summary-template/src/index.ts +++ b/samples/grids/tree-grid/data-summary-template/src/index.ts @@ -7,11 +7,11 @@ import { EmployeesNestedTreeDataItem, EmployeesNestedTreeData } from './Employee import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } from 'igniteui-webcomponents-layouts'; import { IgcSummaryResult, IgcSummaryTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -49,6 +49,7 @@ export class Sample { column1.summaryTemplate = this.webTreeGridSummaryTemplate; } this._bind(); + } private _employeesNestedTreeData: EmployeesNestedTreeData = null; diff --git a/samples/grids/tree-grid/data-summary-template/tsconfig.json b/samples/grids/tree-grid/data-summary-template/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/data-summary-template/tsconfig.json +++ b/samples/grids/tree-grid/data-summary-template/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/data-summary-template/webpack.config.js b/samples/grids/tree-grid/data-summary-template/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/data-summary-template/webpack.config.js +++ b/samples/grids/tree-grid/data-summary-template/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/editing-columns/sandbox.config.json b/samples/grids/tree-grid/editing-columns/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/editing-columns/sandbox.config.json +++ b/samples/grids/tree-grid/editing-columns/sandbox.config.json @@ -3,5 +3,4 @@ "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/editing-columns/src/index.css b/samples/grids/tree-grid/editing-columns/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/editing-columns/src/index.css +++ b/samples/grids/tree-grid/editing-columns/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/editing-columns/src/index.ts b/samples/grids/tree-grid/editing-columns/src/index.ts index 1dbcc70e6f..2b6ccbd009 100644 --- a/samples/grids/tree-grid/editing-columns/src/index.ts +++ b/samples/grids/tree-grid/editing-columns/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebPaginatorDescriptionModule, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesNestedTreeDataItem, EmployeesNestedTreeData } from './EmployeesNestedTreeData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { treeGrid.data = this.employeesNestedTreeData; } this._bind(); + } private _employeesNestedTreeData: EmployeesNestedTreeData = null; diff --git a/samples/grids/tree-grid/editing-columns/tsconfig.json b/samples/grids/tree-grid/editing-columns/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/editing-columns/tsconfig.json +++ b/samples/grids/tree-grid/editing-columns/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/editing-columns/webpack.config.js b/samples/grids/tree-grid/editing-columns/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/editing-columns/webpack.config.js +++ b/samples/grids/tree-grid/editing-columns/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/editing-events/sandbox.config.json b/samples/grids/tree-grid/editing-events/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/editing-events/sandbox.config.json +++ b/samples/grids/tree-grid/editing-events/sandbox.config.json @@ -3,5 +3,4 @@ "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/editing-events/src/index.css b/samples/grids/tree-grid/editing-events/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/editing-events/src/index.css +++ b/samples/grids/tree-grid/editing-events/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/editing-events/src/index.ts b/samples/grids/tree-grid/editing-events/src/index.ts index 999d986507..d863575b4f 100644 --- a/samples/grids/tree-grid/editing-events/src/index.ts +++ b/samples/grids/tree-grid/editing-events/src/index.ts @@ -3,10 +3,10 @@ import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcom import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesNestedTreeDataItem, EmployeesNestedTreeData } from './EmployeesNestedTreeData'; import { IgcGridComponent, IgcGridEditEventArgs } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -22,6 +22,7 @@ export class Sample { treeGrid.addEventListener("cellEdit", this.webTreeGridCellEdit); } this._bind(); + } private _employeesNestedTreeData: EmployeesNestedTreeData = null; diff --git a/samples/grids/tree-grid/editing-events/tsconfig.json b/samples/grids/tree-grid/editing-events/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/editing-events/tsconfig.json +++ b/samples/grids/tree-grid/editing-events/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/editing-events/webpack.config.js b/samples/grids/tree-grid/editing-events/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/editing-events/webpack.config.js +++ b/samples/grids/tree-grid/editing-events/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/editing-lifecycle/sandbox.config.json b/samples/grids/tree-grid/editing-lifecycle/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/editing-lifecycle/sandbox.config.json +++ b/samples/grids/tree-grid/editing-lifecycle/sandbox.config.json @@ -3,5 +3,4 @@ "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/editing-lifecycle/src/index.css b/samples/grids/tree-grid/editing-lifecycle/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/editing-lifecycle/src/index.css +++ b/samples/grids/tree-grid/editing-lifecycle/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/editing-lifecycle/src/index.ts b/samples/grids/tree-grid/editing-lifecycle/src/index.ts index 1c80a16b28..7abf5e8ac0 100644 --- a/samples/grids/tree-grid/editing-lifecycle/src/index.ts +++ b/samples/grids/tree-grid/editing-lifecycle/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDataItem, EmployeesFlatData } from './EmployeesFlatData'; import { IgcRowSelectionEventArgs, IgcGridComponent, IgcGridEditEventArgs, IgcGridEditDoneEventArgs } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -37,6 +37,7 @@ export class Sample { grid.addEventListener("cellEditExit", this.webGridCellEditExit); } this._bind(); + } private _employeesFlatData: EmployeesFlatData = null; @@ -48,6 +49,7 @@ export class Sample { return this._employeesFlatData; } + public webTreeGridRendered(args:any): void { const grid = document.getElementById("grid"); grid.parentElement.style.display = "flex"; diff --git a/samples/grids/tree-grid/editing-lifecycle/tsconfig.json b/samples/grids/tree-grid/editing-lifecycle/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/editing-lifecycle/tsconfig.json +++ b/samples/grids/tree-grid/editing-lifecycle/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/editing-lifecycle/webpack.config.js b/samples/grids/tree-grid/editing-lifecycle/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/editing-lifecycle/webpack.config.js +++ b/samples/grids/tree-grid/editing-lifecycle/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/excel-exporting/sandbox.config.json b/samples/grids/tree-grid/excel-exporting/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/excel-exporting/sandbox.config.json +++ b/samples/grids/tree-grid/excel-exporting/sandbox.config.json @@ -3,5 +3,4 @@ "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/excel-exporting/src/index.css b/samples/grids/tree-grid/excel-exporting/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/excel-exporting/src/index.css +++ b/samples/grids/tree-grid/excel-exporting/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/excel-exporting/src/index.ts b/samples/grids/tree-grid/excel-exporting/src/index.ts index cc73fe41a1..99ccf9abeb 100644 --- a/samples/grids/tree-grid/excel-exporting/src/index.ts +++ b/samples/grids/tree-grid/excel-exporting/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesNestedDataItem, EmployeesNestedDataItem_EmployeesItem, EmployeesNestedData } from './EmployeesNestedData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { treeGrid.data = this.employeesNestedData; } this._bind(); + } private _employeesNestedData: EmployeesNestedData = null; diff --git a/samples/grids/tree-grid/excel-exporting/tsconfig.json b/samples/grids/tree-grid/excel-exporting/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/excel-exporting/tsconfig.json +++ b/samples/grids/tree-grid/excel-exporting/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/excel-exporting/webpack.config.js b/samples/grids/tree-grid/excel-exporting/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/excel-exporting/webpack.config.js +++ b/samples/grids/tree-grid/excel-exporting/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-1/sandbox.config.json b/samples/grids/tree-grid/excel-style-filtering-sample-1/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/sandbox.config.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/sandbox.config.json @@ -3,5 +3,4 @@ "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/excel-style-filtering-sample-1/src/index.css b/samples/grids/tree-grid/excel-style-filtering-sample-1/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/src/index.css +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-1/src/index.ts b/samples/grids/tree-grid/excel-style-filtering-sample-1/src/index.ts index 63efe4fa05..3225e86585 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/src/index.ts +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/src/index.ts @@ -7,11 +7,11 @@ import { FoodsDataItem, FoodsData } from './FoodsData'; import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } from 'igniteui-webcomponents-layouts'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -43,6 +43,7 @@ export class Sample { column1.bodyTemplate = this.webGridBooleanCellTemplate; } this._bind(); + } private _foodsData: FoodsData = null; 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 de23257dd8..a15284fdc2 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 @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-1/webpack.config.js b/samples/grids/tree-grid/excel-style-filtering-sample-1/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/webpack.config.js +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-2/sandbox.config.json b/samples/grids/tree-grid/excel-style-filtering-sample-2/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-2/sandbox.config.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-2/sandbox.config.json @@ -3,5 +3,4 @@ "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/excel-style-filtering-sample-2/src/index.css b/samples/grids/tree-grid/excel-style-filtering-sample-2/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-2/src/index.css +++ b/samples/grids/tree-grid/excel-style-filtering-sample-2/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-2/src/index.ts b/samples/grids/tree-grid/excel-style-filtering-sample-2/src/index.ts index 7661cce043..d305837f40 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-2/src/index.ts +++ b/samples/grids/tree-grid/excel-style-filtering-sample-2/src/index.ts @@ -4,10 +4,10 @@ import { IgcTreeGridComponent, IgcColumnComponent } from 'igniteui-webcomponents import { FoodsDataItem, FoodsData } from './FoodsData'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -24,6 +24,7 @@ export class Sample { column1.bodyTemplate = this.webGridBooleanCellTemplate; } this._bind(); + } private _foodsData: FoodsData = null; 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 de23257dd8..a15284fdc2 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 @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-2/webpack.config.js b/samples/grids/tree-grid/excel-style-filtering-sample-2/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-2/webpack.config.js +++ b/samples/grids/tree-grid/excel-style-filtering-sample-2/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-3/sandbox.config.json b/samples/grids/tree-grid/excel-style-filtering-sample-3/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-3/sandbox.config.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-3/sandbox.config.json @@ -3,5 +3,4 @@ "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/excel-style-filtering-sample-3/src/index.css b/samples/grids/tree-grid/excel-style-filtering-sample-3/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-3/src/index.css +++ b/samples/grids/tree-grid/excel-style-filtering-sample-3/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-3/src/index.ts b/samples/grids/tree-grid/excel-style-filtering-sample-3/src/index.ts index 7ec2ca573d..3fd1df3b38 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-3/src/index.ts +++ b/samples/grids/tree-grid/excel-style-filtering-sample-3/src/index.ts @@ -4,10 +4,10 @@ import { IgcTreeGridComponent, IgcColumnComponent } from 'igniteui-webcomponents import { FoodsDataItem, FoodsData } from './FoodsData'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -25,6 +25,7 @@ export class Sample { column1.bodyTemplate = this.webGridBooleanCellTemplate; } this._bind(); + } private _foodsData: FoodsData = null; 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 de23257dd8..a15284fdc2 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 @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-3/webpack.config.js b/samples/grids/tree-grid/excel-style-filtering-sample-3/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-3/webpack.config.js +++ b/samples/grids/tree-grid/excel-style-filtering-sample-3/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/excel-style-filtering-style/sandbox.config.json b/samples/grids/tree-grid/excel-style-filtering-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/sandbox.config.json +++ b/samples/grids/tree-grid/excel-style-filtering-style/sandbox.config.json @@ -3,5 +3,4 @@ "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/excel-style-filtering-style/src/index.css b/samples/grids/tree-grid/excel-style-filtering-style/src/index.css index 0fe9368715..aa7a27b502 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/src/index.css +++ b/samples/grids/tree-grid/excel-style-filtering-style/src/index.css @@ -1,2 +1,26 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #grid { + --ig-grid-filtering-row-background: #ffcd0f; + --ig-button-background: #FFCD0F; + --ig-button-foreground: #292826; + --ig-button-hover-background: #292826; + --ig-button-hover-foreground: #ffcd0f; + + --ig-list-background: #FFCD0F; + --ig-list-item-background: #FFCD0F; + --ig-list-item-background-hover: #c2b1b1bd; + + --ig-checkbox-empty-color: #292826; + --ig-checkbox-fill-color: #292826; + --ig-checkbox-tick-color: #FFCD0F; + --ig-checkbox-label-color: #292826; + + --ig-drop-down-background-color: #FFCD0F; + --ig-drop-down-item-text-color: #292826; + --ig-drop-down-item-background: #FFCD0F; + --ig-drop-down-item-text-color: #292826; + --ig-drop-down-focused-item-background: #c2b1b1bd; + } + diff --git a/samples/grids/tree-grid/excel-style-filtering-style/src/index.ts b/samples/grids/tree-grid/excel-style-filtering-style/src/index.ts index 7661cce043..d305837f40 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/src/index.ts +++ b/samples/grids/tree-grid/excel-style-filtering-style/src/index.ts @@ -4,10 +4,10 @@ import { IgcTreeGridComponent, IgcColumnComponent } from 'igniteui-webcomponents import { FoodsDataItem, FoodsData } from './FoodsData'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -24,6 +24,7 @@ export class Sample { column1.bodyTemplate = this.webGridBooleanCellTemplate; } this._bind(); + } private _foodsData: FoodsData = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/tsconfig.json +++ b/samples/grids/tree-grid/excel-style-filtering-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/excel-style-filtering-style/webpack.config.js b/samples/grids/tree-grid/excel-style-filtering-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/webpack.config.js +++ b/samples/grids/tree-grid/excel-style-filtering-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/filtering-options/sandbox.config.json b/samples/grids/tree-grid/filtering-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/filtering-options/sandbox.config.json +++ b/samples/grids/tree-grid/filtering-options/sandbox.config.json @@ -3,5 +3,4 @@ "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/filtering-options/src/index.css b/samples/grids/tree-grid/filtering-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/filtering-options/src/index.css +++ b/samples/grids/tree-grid/filtering-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/filtering-options/src/index.ts b/samples/grids/tree-grid/filtering-options/src/index.ts index 7eed70d453..37e4cc249e 100644 --- a/samples/grids/tree-grid/filtering-options/src/index.ts +++ b/samples/grids/tree-grid/filtering-options/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { OrdersDataItem, OrdersData } from './OrdersData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { treeGrid.data = this.ordersData; } this._bind(); + } private _ordersData: OrdersData = null; diff --git a/samples/grids/tree-grid/filtering-options/tsconfig.json b/samples/grids/tree-grid/filtering-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/filtering-options/tsconfig.json +++ b/samples/grids/tree-grid/filtering-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/filtering-options/webpack.config.js b/samples/grids/tree-grid/filtering-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/filtering-options/webpack.config.js +++ b/samples/grids/tree-grid/filtering-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/filtering-style/sandbox.config.json b/samples/grids/tree-grid/filtering-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/filtering-style/sandbox.config.json +++ b/samples/grids/tree-grid/filtering-style/sandbox.config.json @@ -3,5 +3,4 @@ "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/filtering-style/src/index.css b/samples/grids/tree-grid/filtering-style/src/index.css index 0fe9368715..5905f94b0e 100644 --- a/samples/grids/tree-grid/filtering-style/src/index.css +++ b/samples/grids/tree-grid/filtering-style/src/index.css @@ -1,2 +1,10 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#treeGrid { + --ig-grid-filtering-row-text-color: #292826; + --ig-grid-filtering-row-background: #ffcd0f; + --ig-grid-filtering-header-text-color: #292826; + --ig-grid-filtering-header-background: #ffcd0f; +} + diff --git a/samples/grids/tree-grid/filtering-style/src/index.ts b/samples/grids/tree-grid/filtering-style/src/index.ts index 7eed70d453..37e4cc249e 100644 --- a/samples/grids/tree-grid/filtering-style/src/index.ts +++ b/samples/grids/tree-grid/filtering-style/src/index.ts @@ -1,10 +1,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { OrdersDataItem, OrdersData } from './OrdersData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { treeGrid.data = this.ordersData; } this._bind(); + } private _ordersData: OrdersData = null; diff --git a/samples/grids/tree-grid/filtering-style/tsconfig.json b/samples/grids/tree-grid/filtering-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/filtering-style/tsconfig.json +++ b/samples/grids/tree-grid/filtering-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/filtering-style/webpack.config.js b/samples/grids/tree-grid/filtering-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/filtering-style/webpack.config.js +++ b/samples/grids/tree-grid/filtering-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/sandbox.config.json b/samples/grids/tree-grid/keyboard-custom-navigation/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/sandbox.config.json +++ b/samples/grids/tree-grid/keyboard-custom-navigation/sandbox.config.json @@ -3,5 +3,4 @@ "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-custom-navigation/src/index.css b/samples/grids/tree-grid/keyboard-custom-navigation/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/src/index.css +++ b/samples/grids/tree-grid/keyboard-custom-navigation/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/src/index.ts b/samples/grids/tree-grid/keyboard-custom-navigation/src/index.ts index 2c3710b6db..f3ee71f762 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/src/index.ts +++ b/samples/grids/tree-grid/keyboard-custom-navigation/src/index.ts @@ -4,11 +4,11 @@ import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebTreeGridDes import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesNestedDataItem, EmployeesNestedDataItem_EmployeesItem, EmployeesNestedData } from './EmployeesNestedData'; import { IgcGridComponent, IgcGridKeydownEventArgs, GridKeydownTargetType } from 'igniteui-webcomponents-grids/grids'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; - +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule @@ -28,6 +28,7 @@ export class Sample { treeGrid.addEventListener("gridKeydown", this.webGridCustomKBNav); } this._bind(); + } private _employeesNestedData: EmployeesNestedData = null; diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/tsconfig.json b/samples/grids/tree-grid/keyboard-custom-navigation/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/tsconfig.json +++ b/samples/grids/tree-grid/keyboard-custom-navigation/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/webpack.config.js b/samples/grids/tree-grid/keyboard-custom-navigation/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/webpack.config.js +++ b/samples/grids/tree-grid/keyboard-custom-navigation/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/layout-display-density/sandbox.config.json b/samples/grids/tree-grid/layout-display-density/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/layout-display-density/sandbox.config.json +++ b/samples/grids/tree-grid/layout-display-density/sandbox.config.json @@ -3,5 +3,4 @@ "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/layout-display-density/src/index.css b/samples/grids/tree-grid/layout-display-density/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/layout-display-density/src/index.css +++ b/samples/grids/tree-grid/layout-display-density/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/layout-display-density/src/index.ts b/samples/grids/tree-grid/layout-display-density/src/index.ts index 7f60ceb8e9..e4e4926706 100644 --- a/samples/grids/tree-grid/layout-display-density/src/index.ts +++ b/samples/grids/tree-grid/layout-display-density/src/index.ts @@ -5,11 +5,11 @@ import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionCo import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } 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(); import "./index.css"; @@ -38,6 +38,7 @@ export class Sample { treeGrid.data = this.employeesFlatDetails; } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; diff --git a/samples/grids/tree-grid/layout-display-density/tsconfig.json b/samples/grids/tree-grid/layout-display-density/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/layout-display-density/tsconfig.json +++ b/samples/grids/tree-grid/layout-display-density/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/layout-display-density/webpack.config.js b/samples/grids/tree-grid/layout-display-density/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/layout-display-density/webpack.config.js +++ b/samples/grids/tree-grid/layout-display-density/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/multi-column-headers-export/sandbox.config.json b/samples/grids/tree-grid/multi-column-headers-export/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/sandbox.config.json +++ b/samples/grids/tree-grid/multi-column-headers-export/sandbox.config.json @@ -3,5 +3,4 @@ "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-column-headers-export/src/index.css b/samples/grids/tree-grid/multi-column-headers-export/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/src/index.css +++ b/samples/grids/tree-grid/multi-column-headers-export/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/multi-column-headers-export/src/index.ts b/samples/grids/tree-grid/multi-column-headers-export/src/index.ts index 325b76b2da..fec28623f2 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/src/index.ts +++ b/samples/grids/tree-grid/multi-column-headers-export/src/index.ts @@ -3,10 +3,10 @@ import { ComponentRenderer, WebGridDescriptionModule, WebGridToolbarDescriptionM import { IgcTreeGridComponent, IgcGridToolbarExporterComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; import { IgcGridComponent, IgcExporterEventArgs } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -24,6 +24,7 @@ export class Sample { gridToolbarExporter1.addEventListener("exportStarted", this.webGridExportEventMultiColumnHeaders); } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/tsconfig.json +++ b/samples/grids/tree-grid/multi-column-headers-export/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/multi-column-headers-export/webpack.config.js b/samples/grids/tree-grid/multi-column-headers-export/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/webpack.config.js +++ b/samples/grids/tree-grid/multi-column-headers-export/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/multi-column-headers-overview/sandbox.config.json b/samples/grids/tree-grid/multi-column-headers-overview/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/sandbox.config.json +++ b/samples/grids/tree-grid/multi-column-headers-overview/sandbox.config.json @@ -3,5 +3,4 @@ "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-column-headers-overview/src/index.css b/samples/grids/tree-grid/multi-column-headers-overview/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/src/index.css +++ b/samples/grids/tree-grid/multi-column-headers-overview/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/multi-column-headers-overview/src/index.ts b/samples/grids/tree-grid/multi-column-headers-overview/src/index.ts index 6ed3d1ef49..9c2161bd87 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/src/index.ts +++ b/samples/grids/tree-grid/multi-column-headers-overview/src/index.ts @@ -5,11 +5,11 @@ import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionCo import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; 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(); import "./index.css"; @@ -42,6 +42,7 @@ export class Sample { treeGrid.data = this.employeesFlatDetails; } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/tsconfig.json +++ b/samples/grids/tree-grid/multi-column-headers-overview/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/multi-column-headers-overview/webpack.config.js b/samples/grids/tree-grid/multi-column-headers-overview/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/webpack.config.js +++ b/samples/grids/tree-grid/multi-column-headers-overview/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/multi-column-headers-styling/sandbox.config.json b/samples/grids/tree-grid/multi-column-headers-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/sandbox.config.json +++ b/samples/grids/tree-grid/multi-column-headers-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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-column-headers-styling/src/index.css b/samples/grids/tree-grid/multi-column-headers-styling/src/index.css index 0fe9368715..62b3ec4060 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/src/index.css +++ b/samples/grids/tree-grid/multi-column-headers-styling/src/index.css @@ -1,2 +1,11 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#treeGrid { + --ig-grid-header-background: #e0f3ff; + --ig-grid-header-text-color: #e41c77; + --ig-grid-header-border-width: 1px; + --ig-grid-header-border-style: solid; + --ig-grid-header-border-color: rgba(0, 0, 0, 0.08); +} + diff --git a/samples/grids/tree-grid/multi-column-headers-styling/src/index.ts b/samples/grids/tree-grid/multi-column-headers-styling/src/index.ts index 3498a056ed..4063951b0b 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/src/index.ts +++ b/samples/grids/tree-grid/multi-column-headers-styling/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { treeGrid.data = this.employeesFlatDetails; } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/tsconfig.json +++ b/samples/grids/tree-grid/multi-column-headers-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/multi-column-headers-styling/webpack.config.js b/samples/grids/tree-grid/multi-column-headers-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/webpack.config.js +++ b/samples/grids/tree-grid/multi-column-headers-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/multi-column-headers-template/sandbox.config.json b/samples/grids/tree-grid/multi-column-headers-template/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/sandbox.config.json +++ b/samples/grids/tree-grid/multi-column-headers-template/sandbox.config.json @@ -3,5 +3,4 @@ "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-column-headers-template/src/index.css b/samples/grids/tree-grid/multi-column-headers-template/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/src/index.css +++ b/samples/grids/tree-grid/multi-column-headers-template/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/multi-column-headers-template/src/index.ts b/samples/grids/tree-grid/multi-column-headers-template/src/index.ts index 519029365e..7f8a0cfd9d 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/src/index.ts +++ b/samples/grids/tree-grid/multi-column-headers-template/src/index.ts @@ -4,10 +4,10 @@ import { IgcTreeGridComponent, IgcColumnGroupComponent } from 'igniteui-webcompo import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; import { IgcGridComponent, IgcColumnTemplateContext, IgcColumnComponent } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -27,6 +27,7 @@ export class Sample { columnGroup2.headerTemplate = this.webTreeGridColumnGroupHeaderTemplate; } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/tsconfig.json +++ b/samples/grids/tree-grid/multi-column-headers-template/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/multi-column-headers-template/webpack.config.js b/samples/grids/tree-grid/multi-column-headers-template/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/webpack.config.js +++ b/samples/grids/tree-grid/multi-column-headers-template/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/overview-styling/sandbox.config.json b/samples/grids/tree-grid/overview-styling/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/overview-styling/sandbox.config.json +++ b/samples/grids/tree-grid/overview-styling/sandbox.config.json @@ -3,5 +3,4 @@ "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/overview-styling/src/index.css b/samples/grids/tree-grid/overview-styling/src/index.css index 0fe9368715..93b62ff056 100644 --- a/samples/grids/tree-grid/overview-styling/src/index.css +++ b/samples/grids/tree-grid/overview-styling/src/index.css @@ -1,2 +1,11 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#treeGrid { + --ig-grid-header-background: #494949; + --ig-grid-header-text-color: #FFF; + --ig-grid-expand-icon-color: #FFCD0F; + --ig-grid-expand-icon-hover-color: #E0B710; + --ig-grid-row-hover-background: #F8E495; +} + diff --git a/samples/grids/tree-grid/overview-styling/src/index.ts b/samples/grids/tree-grid/overview-styling/src/index.ts index 370eea12fe..4aa23f2d19 100644 --- a/samples/grids/tree-grid/overview-styling/src/index.ts +++ b/samples/grids/tree-grid/overview-styling/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesNestedDataItem, EmployeesNestedDataItem_EmployeesItem, EmployeesNestedData } from './EmployeesNestedData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { treeGrid.data = this.employeesNestedData; } this._bind(); + } private _employeesNestedData: EmployeesNestedData = null; diff --git a/samples/grids/tree-grid/overview-styling/tsconfig.json b/samples/grids/tree-grid/overview-styling/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/overview-styling/tsconfig.json +++ b/samples/grids/tree-grid/overview-styling/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/overview-styling/webpack.config.js b/samples/grids/tree-grid/overview-styling/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/overview-styling/webpack.config.js +++ b/samples/grids/tree-grid/overview-styling/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/overview/sandbox.config.json b/samples/grids/tree-grid/overview/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/overview/sandbox.config.json +++ b/samples/grids/tree-grid/overview/sandbox.config.json @@ -3,5 +3,4 @@ "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/overview/src/index.css b/samples/grids/tree-grid/overview/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/overview/src/index.css +++ b/samples/grids/tree-grid/overview/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/overview/src/index.ts b/samples/grids/tree-grid/overview/src/index.ts index d2cae9fed1..284538212d 100644 --- a/samples/grids/tree-grid/overview/src/index.ts +++ b/samples/grids/tree-grid/overview/src/index.ts @@ -3,11 +3,11 @@ 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"; - +import "./index.css"; ModuleManager.register( IgcPropertyEditorPanelModule @@ -27,6 +27,7 @@ export class Sample { treeGrid.data = this.employeesNestedData; } this._bind(); + } private _employeesNestedData: EmployeesNestedData = null; diff --git a/samples/grids/tree-grid/overview/tsconfig.json b/samples/grids/tree-grid/overview/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/overview/tsconfig.json +++ b/samples/grids/tree-grid/overview/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/overview/webpack.config.js b/samples/grids/tree-grid/overview/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/overview/webpack.config.js +++ b/samples/grids/tree-grid/overview/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/row-adding/sandbox.config.json b/samples/grids/tree-grid/row-adding/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/row-adding/sandbox.config.json +++ b/samples/grids/tree-grid/row-adding/sandbox.config.json @@ -3,5 +3,4 @@ "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-adding/src/index.css b/samples/grids/tree-grid/row-adding/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/row-adding/src/index.css +++ b/samples/grids/tree-grid/row-adding/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/row-adding/src/index.ts b/samples/grids/tree-grid/row-adding/src/index.ts index 0c533e36e9..156e55f609 100644 --- a/samples/grids/tree-grid/row-adding/src/index.ts +++ b/samples/grids/tree-grid/row-adding/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebTreeGridDescriptionModule, WebActionStripDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesNestedTreeDataItem, EmployeesNestedTreeData } from './EmployeesNestedTreeData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { treeGrid.data = this.employeesNestedTreeData; } this._bind(); + } private _employeesNestedTreeData: EmployeesNestedTreeData = null; diff --git a/samples/grids/tree-grid/row-adding/tsconfig.json b/samples/grids/tree-grid/row-adding/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/row-adding/tsconfig.json +++ b/samples/grids/tree-grid/row-adding/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/row-adding/webpack.config.js b/samples/grids/tree-grid/row-adding/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/row-adding/webpack.config.js +++ b/samples/grids/tree-grid/row-adding/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/row-classes/sandbox.config.json b/samples/grids/tree-grid/row-classes/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/row-classes/sandbox.config.json +++ b/samples/grids/tree-grid/row-classes/sandbox.config.json @@ -3,5 +3,4 @@ "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-classes/src/index.css b/samples/grids/tree-grid/row-classes/src/index.css index 0fe9368715..de13be7ed3 100644 --- a/samples/grids/tree-grid/row-classes/src/index.css +++ b/samples/grids/tree-grid/row-classes/src/index.css @@ -1,2 +1,8 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + .activeRow { + border-top: 2px solid #fc81b8; + border-left: 3px solid #e41c77; + } + diff --git a/samples/grids/tree-grid/row-classes/src/index.ts b/samples/grids/tree-grid/row-classes/src/index.ts index fb9b7a1df7..072d08f7c9 100644 --- a/samples/grids/tree-grid/row-classes/src/index.ts +++ b/samples/grids/tree-grid/row-classes/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDataItem, EmployeesFlatData } from './EmployeesFlatData'; import { IgcRowType } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -20,6 +20,7 @@ export class Sample { treeGrid1.rowClasses = this.webGridRowClassesHandler; } this._bind(); + } private _employeesFlatData: EmployeesFlatData = null; @@ -31,6 +32,7 @@ export class Sample { return this._employeesFlatData; } + public webGridRowClassesHandler = { activeRow: (row: IgcRowType) => row.index % 2 === 0 }; diff --git a/samples/grids/tree-grid/row-classes/tsconfig.json b/samples/grids/tree-grid/row-classes/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/row-classes/tsconfig.json +++ b/samples/grids/tree-grid/row-classes/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/row-classes/webpack.config.js b/samples/grids/tree-grid/row-classes/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/row-classes/webpack.config.js +++ b/samples/grids/tree-grid/row-classes/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/row-editing-options/sandbox.config.json b/samples/grids/tree-grid/row-editing-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/row-editing-options/sandbox.config.json +++ b/samples/grids/tree-grid/row-editing-options/sandbox.config.json @@ -3,5 +3,4 @@ "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-editing-options/src/index.css b/samples/grids/tree-grid/row-editing-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/row-editing-options/src/index.css +++ b/samples/grids/tree-grid/row-editing-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/row-editing-options/src/index.ts b/samples/grids/tree-grid/row-editing-options/src/index.ts index 5fec04f3a6..573620f221 100644 --- a/samples/grids/tree-grid/row-editing-options/src/index.ts +++ b/samples/grids/tree-grid/row-editing-options/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesNestedTreeDataItem, EmployeesNestedTreeData } from './EmployeesNestedTreeData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { treeGrid.data = this.employeesNestedTreeData; } this._bind(); + } private _employeesNestedTreeData: EmployeesNestedTreeData = null; diff --git a/samples/grids/tree-grid/row-editing-options/tsconfig.json b/samples/grids/tree-grid/row-editing-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/row-editing-options/tsconfig.json +++ b/samples/grids/tree-grid/row-editing-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/row-editing-options/webpack.config.js b/samples/grids/tree-grid/row-editing-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/row-editing-options/webpack.config.js +++ b/samples/grids/tree-grid/row-editing-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/row-editing-style/sandbox.config.json b/samples/grids/tree-grid/row-editing-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/row-editing-style/sandbox.config.json +++ b/samples/grids/tree-grid/row-editing-style/sandbox.config.json @@ -3,5 +3,4 @@ "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-editing-style/src/index.css b/samples/grids/tree-grid/row-editing-style/src/index.css index 0fe9368715..cc7b8709b5 100644 --- a/samples/grids/tree-grid/row-editing-style/src/index.css +++ b/samples/grids/tree-grid/row-editing-style/src/index.css @@ -1,2 +1,11 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +#grid { + --ig-banner-banner-background: #292826; + --ig-banner-banner-message-color: #ffcd0f; + --ig-button-foreground: #ffcd0f; + --ig-button-hover-foreground: white; + --ig-button-font-weight: 600; +} + diff --git a/samples/grids/tree-grid/row-editing-style/src/index.ts b/samples/grids/tree-grid/row-editing-style/src/index.ts index ef47bbdcc4..e2b7def107 100644 --- a/samples/grids/tree-grid/row-editing-style/src/index.ts +++ b/samples/grids/tree-grid/row-editing-style/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesNestedTreeDataItem, EmployeesNestedTreeData } from './EmployeesNestedTreeData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { grid.data = this.employeesNestedTreeData; } this._bind(); + } private _employeesNestedTreeData: EmployeesNestedTreeData = null; diff --git a/samples/grids/tree-grid/row-editing-style/tsconfig.json b/samples/grids/tree-grid/row-editing-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/row-editing-style/tsconfig.json +++ b/samples/grids/tree-grid/row-editing-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/row-editing-style/webpack.config.js b/samples/grids/tree-grid/row-editing-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/row-editing-style/webpack.config.js +++ b/samples/grids/tree-grid/row-editing-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/row-paging-basic/sandbox.config.json b/samples/grids/tree-grid/row-paging-basic/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/row-paging-basic/sandbox.config.json +++ b/samples/grids/tree-grid/row-paging-basic/sandbox.config.json @@ -3,5 +3,4 @@ "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-paging-basic/src/index.css b/samples/grids/tree-grid/row-paging-basic/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/row-paging-basic/src/index.css +++ b/samples/grids/tree-grid/row-paging-basic/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/row-paging-basic/src/index.ts b/samples/grids/tree-grid/row-paging-basic/src/index.ts index 5ddbb202ef..d8cf109bb5 100644 --- a/samples/grids/tree-grid/row-paging-basic/src/index.ts +++ b/samples/grids/tree-grid/row-paging-basic/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { OrdersTreeDataItem, OrdersTreeData } from './OrdersTreeData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { treeGrid.data = this.ordersTreeData; } this._bind(); + } private _ordersTreeData: OrdersTreeData = null; diff --git a/samples/grids/tree-grid/row-paging-basic/tsconfig.json b/samples/grids/tree-grid/row-paging-basic/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/row-paging-basic/tsconfig.json +++ b/samples/grids/tree-grid/row-paging-basic/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/row-paging-basic/webpack.config.js b/samples/grids/tree-grid/row-paging-basic/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/row-paging-basic/webpack.config.js +++ b/samples/grids/tree-grid/row-paging-basic/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/row-paging-options/sandbox.config.json b/samples/grids/tree-grid/row-paging-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/row-paging-options/sandbox.config.json +++ b/samples/grids/tree-grid/row-paging-options/sandbox.config.json @@ -3,5 +3,4 @@ "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-paging-options/src/index.css b/samples/grids/tree-grid/row-paging-options/src/index.css index 0fe9368715..d4c0f71f0d 100644 --- a/samples/grids/tree-grid/row-paging-options/src/index.css +++ b/samples/grids/tree-grid/row-paging-options/src/index.css @@ -1,2 +1,7 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #treeGrid { + --ig-size: var(--ig-size-medium); + } + diff --git a/samples/grids/tree-grid/row-paging-options/src/index.ts b/samples/grids/tree-grid/row-paging-options/src/index.ts index 1a96e4565d..97227a1d17 100644 --- a/samples/grids/tree-grid/row-paging-options/src/index.ts +++ b/samples/grids/tree-grid/row-paging-options/src/index.ts @@ -5,11 +5,11 @@ import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionCo import { IgcTreeGridComponent, IgcPaginatorComponent, IgcPaginatorResourceStrings } from 'igniteui-webcomponents-grids/grids'; import { OrdersTreeDataItem, OrdersTreeData } from './OrdersTreeData'; import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } 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(); import "./index.css"; @@ -35,7 +35,6 @@ export class Sample { } return this._paginatorResourceStrings1; } - private _bind: () => void; constructor() { @@ -53,6 +52,7 @@ export class Sample { paginator.resourceStrings = this.paginatorResourceStrings1; } this._bind(); + } private _ordersTreeData: OrdersTreeData = null; diff --git a/samples/grids/tree-grid/row-paging-options/tsconfig.json b/samples/grids/tree-grid/row-paging-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/row-paging-options/tsconfig.json +++ b/samples/grids/tree-grid/row-paging-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/row-paging-options/webpack.config.js b/samples/grids/tree-grid/row-paging-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/row-paging-options/webpack.config.js +++ b/samples/grids/tree-grid/row-paging-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/row-paging-style/sandbox.config.json b/samples/grids/tree-grid/row-paging-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/row-paging-style/sandbox.config.json +++ b/samples/grids/tree-grid/row-paging-style/sandbox.config.json @@ -3,5 +3,4 @@ "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-paging-style/src/index.css b/samples/grids/tree-grid/row-paging-style/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/row-paging-style/src/index.css +++ b/samples/grids/tree-grid/row-paging-style/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/row-paging-style/src/index.ts b/samples/grids/tree-grid/row-paging-style/src/index.ts index 5ddbb202ef..d8cf109bb5 100644 --- a/samples/grids/tree-grid/row-paging-style/src/index.ts +++ b/samples/grids/tree-grid/row-paging-style/src/index.ts @@ -2,10 +2,10 @@ import 'igniteui-webcomponents-grids/grids/combined'; import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { OrdersTreeDataItem, OrdersTreeData } from './OrdersTreeData'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -19,6 +19,7 @@ export class Sample { treeGrid.data = this.ordersTreeData; } this._bind(); + } private _ordersTreeData: OrdersTreeData = null; diff --git a/samples/grids/tree-grid/row-paging-style/tsconfig.json b/samples/grids/tree-grid/row-paging-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/row-paging-style/tsconfig.json +++ b/samples/grids/tree-grid/row-paging-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/row-paging-style/webpack.config.js b/samples/grids/tree-grid/row-paging-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/row-paging-style/webpack.config.js +++ b/samples/grids/tree-grid/row-paging-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/row-pinning-extra-column/sandbox.config.json b/samples/grids/tree-grid/row-pinning-extra-column/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/sandbox.config.json +++ b/samples/grids/tree-grid/row-pinning-extra-column/sandbox.config.json @@ -3,5 +3,4 @@ "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-pinning-extra-column/src/index.css b/samples/grids/tree-grid/row-pinning-extra-column/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/src/index.css +++ b/samples/grids/tree-grid/row-pinning-extra-column/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/row-pinning-extra-column/src/index.ts b/samples/grids/tree-grid/row-pinning-extra-column/src/index.ts index 8b18972138..dc4d9c5c3f 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/src/index.ts +++ b/samples/grids/tree-grid/row-pinning-extra-column/src/index.ts @@ -4,10 +4,10 @@ import { IgcTreeGridComponent, IgcPinningConfig, RowPinningPosition, IgcColumnCo import { EmployeesNestedTreeDataItem, EmployeesNestedTreeData } from './EmployeesNestedTreeData'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -23,7 +23,6 @@ export class Sample { } return this._pinningConfig1; } - private column1: IgcColumnComponent private _bind: () => void; @@ -37,6 +36,7 @@ export class Sample { column1.bodyTemplate = this.webTreeGridRowPinCellTemplate; } this._bind(); + } private _employeesNestedTreeData: EmployeesNestedTreeData = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/tsconfig.json +++ b/samples/grids/tree-grid/row-pinning-extra-column/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/row-pinning-extra-column/webpack.config.js b/samples/grids/tree-grid/row-pinning-extra-column/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/webpack.config.js +++ b/samples/grids/tree-grid/row-pinning-extra-column/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/row-pinning-options/sandbox.config.json b/samples/grids/tree-grid/row-pinning-options/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/row-pinning-options/sandbox.config.json +++ b/samples/grids/tree-grid/row-pinning-options/sandbox.config.json @@ -3,5 +3,4 @@ "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-pinning-options/src/index.css b/samples/grids/tree-grid/row-pinning-options/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/row-pinning-options/src/index.css +++ b/samples/grids/tree-grid/row-pinning-options/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/row-pinning-options/src/index.ts b/samples/grids/tree-grid/row-pinning-options/src/index.ts index 12b3ae7d10..dfb4bc9eb7 100644 --- a/samples/grids/tree-grid/row-pinning-options/src/index.ts +++ b/samples/grids/tree-grid/row-pinning-options/src/index.ts @@ -6,11 +6,11 @@ import { IgcTreeGridComponent, IgcPinningConfig, RowPinningPosition, IgcActionSt import { EmployeesNestedTreeDataItem, EmployeesNestedTreeData } from './EmployeesNestedTreeData'; import { IgcPropertyEditorPropertyDescriptionChangedEventArgs } from 'igniteui-webcomponents-layouts'; 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 } from 'igniteui-webcomponents'; import { ModuleManager } from 'igniteui-webcomponents-core'; - defineAllComponents(); import "./index.css"; @@ -35,7 +35,6 @@ export class Sample { } return this._pinningConfig1; } - private actionStrip: IgcActionStripComponent private _bind: () => void; @@ -56,6 +55,7 @@ export class Sample { treeGrid.pinning = this.pinningConfig1; } this._bind(); + } private _employeesNestedTreeData: EmployeesNestedTreeData = null; diff --git a/samples/grids/tree-grid/row-pinning-options/tsconfig.json b/samples/grids/tree-grid/row-pinning-options/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/row-pinning-options/tsconfig.json +++ b/samples/grids/tree-grid/row-pinning-options/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/row-pinning-options/webpack.config.js b/samples/grids/tree-grid/row-pinning-options/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/row-pinning-options/webpack.config.js +++ b/samples/grids/tree-grid/row-pinning-options/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/row-pinning-style/sandbox.config.json b/samples/grids/tree-grid/row-pinning-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/row-pinning-style/sandbox.config.json +++ b/samples/grids/tree-grid/row-pinning-style/sandbox.config.json @@ -3,5 +3,4 @@ "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-pinning-style/src/index.css b/samples/grids/tree-grid/row-pinning-style/src/index.css index 0fe9368715..0f7c3da158 100644 --- a/samples/grids/tree-grid/row-pinning-style/src/index.css +++ b/samples/grids/tree-grid/row-pinning-style/src/index.css @@ -1,2 +1,10 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #treeGrid { + --ig-grid-pinned-border-width: 5px; + --ig-grid-pinned-border-style: double; + --ig-grid-pinned-border-color: #FFCD0F; + --ig-grid-cell-active-border-color: #FFCD0F; + } + diff --git a/samples/grids/tree-grid/row-pinning-style/src/index.ts b/samples/grids/tree-grid/row-pinning-style/src/index.ts index a06c8e77a0..71201433c1 100644 --- a/samples/grids/tree-grid/row-pinning-style/src/index.ts +++ b/samples/grids/tree-grid/row-pinning-style/src/index.ts @@ -3,10 +3,10 @@ import { ComponentRenderer, WebTreeGridDescriptionModule, WebActionStripDescript import { IgcTreeGridComponent, IgcPinningConfig, RowPinningPosition, IgcActionStripComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesNestedTreeDataItem, EmployeesNestedTreeData } from './EmployeesNestedTreeData'; import { IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -22,7 +22,6 @@ export class Sample { } return this._pinningConfig1; } - private actionStrip: IgcActionStripComponent private _bind: () => void; @@ -37,6 +36,7 @@ export class Sample { treeGrid.pinning = this.pinningConfig1; } this._bind(); + } private _employeesNestedTreeData: EmployeesNestedTreeData = null; diff --git a/samples/grids/tree-grid/row-pinning-style/tsconfig.json b/samples/grids/tree-grid/row-pinning-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/row-pinning-style/tsconfig.json +++ b/samples/grids/tree-grid/row-pinning-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/row-pinning-style/webpack.config.js b/samples/grids/tree-grid/row-pinning-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/row-pinning-style/webpack.config.js +++ b/samples/grids/tree-grid/row-pinning-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/row-reorder/sandbox.config.json b/samples/grids/tree-grid/row-reorder/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/row-reorder/sandbox.config.json +++ b/samples/grids/tree-grid/row-reorder/sandbox.config.json @@ -3,5 +3,4 @@ "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-reorder/src/index.css b/samples/grids/tree-grid/row-reorder/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/row-reorder/src/index.css +++ b/samples/grids/tree-grid/row-reorder/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/row-reorder/src/index.ts b/samples/grids/tree-grid/row-reorder/src/index.ts index ac71b0adc8..db63553975 100644 --- a/samples/grids/tree-grid/row-reorder/src/index.ts +++ b/samples/grids/tree-grid/row-reorder/src/index.ts @@ -3,10 +3,10 @@ import { ComponentRenderer, WebTreeGridDescriptionModule } from 'igniteui-webcom import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesNestedTreeDataItem, EmployeesNestedTreeData } from './EmployeesNestedTreeData'; import { IgcRowDragStartEventArgs, IgcRowDragEndEventArgs } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -24,6 +24,7 @@ export class Sample { treeGrid.addEventListener("rowDragEnd", this.webTreeGridReorderRowHandler); } this._bind(); + } private _employeesNestedTreeData: EmployeesNestedTreeData = null; diff --git a/samples/grids/tree-grid/row-reorder/tsconfig.json b/samples/grids/tree-grid/row-reorder/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/row-reorder/tsconfig.json +++ b/samples/grids/tree-grid/row-reorder/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/row-reorder/webpack.config.js b/samples/grids/tree-grid/row-reorder/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/row-reorder/webpack.config.js +++ b/samples/grids/tree-grid/row-reorder/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/row-selection-mode/sandbox.config.json b/samples/grids/tree-grid/row-selection-mode/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/row-selection-mode/sandbox.config.json +++ b/samples/grids/tree-grid/row-selection-mode/sandbox.config.json @@ -3,5 +3,4 @@ "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-selection-mode/src/index.css b/samples/grids/tree-grid/row-selection-mode/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/row-selection-mode/src/index.css +++ b/samples/grids/tree-grid/row-selection-mode/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/row-selection-mode/src/index.ts b/samples/grids/tree-grid/row-selection-mode/src/index.ts index 3bf545fb48..38be945e1c 100644 --- a/samples/grids/tree-grid/row-selection-mode/src/index.ts +++ b/samples/grids/tree-grid/row-selection-mode/src/index.ts @@ -4,11 +4,11 @@ import { ComponentRenderer, WebTreeGridDescriptionModule, PropertyEditorPanelDes import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDataItem, EmployeesFlatData } from './EmployeesFlatData'; + 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"; @@ -37,6 +37,7 @@ export class Sample { treeGrid.data = this.employeesFlatData; } this._bind(); + } private _employeesFlatData: EmployeesFlatData = null; diff --git a/samples/grids/tree-grid/row-selection-mode/tsconfig.json b/samples/grids/tree-grid/row-selection-mode/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/row-selection-mode/tsconfig.json +++ b/samples/grids/tree-grid/row-selection-mode/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/row-selection-mode/webpack.config.js b/samples/grids/tree-grid/row-selection-mode/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/row-selection-mode/webpack.config.js +++ b/samples/grids/tree-grid/row-selection-mode/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/row-selection-template-excel/sandbox.config.json b/samples/grids/tree-grid/row-selection-template-excel/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/sandbox.config.json +++ b/samples/grids/tree-grid/row-selection-template-excel/sandbox.config.json @@ -3,5 +3,4 @@ "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-selection-template-excel/src/index.css b/samples/grids/tree-grid/row-selection-template-excel/src/index.css index 0fe9368715..d4c0f71f0d 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/src/index.css +++ b/samples/grids/tree-grid/row-selection-template-excel/src/index.css @@ -1,2 +1,7 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + + #treeGrid { + --ig-size: var(--ig-size-medium); + } + diff --git a/samples/grids/tree-grid/row-selection-template-excel/src/index.ts b/samples/grids/tree-grid/row-selection-template-excel/src/index.ts index 9c63e6989e..0d500f2baa 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/src/index.ts +++ b/samples/grids/tree-grid/row-selection-template-excel/src/index.ts @@ -4,10 +4,10 @@ import { IgcTreeGridComponent, IgcPaginatorComponent, IgcPaginatorResourceString import { EmployeesFlatDataItem, EmployeesFlatData } from './EmployeesFlatData'; import { IgcRowSelectorTemplateContext, IgcGridComponent, IgcHeadSelectorTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -24,7 +24,6 @@ export class Sample { } return this._paginatorResourceStrings1; } - private _bind: () => void; constructor() { @@ -38,6 +37,7 @@ export class Sample { paginator.resourceStrings = this.paginatorResourceStrings1; } this._bind(); + } private _employeesFlatData: EmployeesFlatData = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/tsconfig.json +++ b/samples/grids/tree-grid/row-selection-template-excel/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/row-selection-template-excel/webpack.config.js b/samples/grids/tree-grid/row-selection-template-excel/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/webpack.config.js +++ b/samples/grids/tree-grid/row-selection-template-excel/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/row-selection-template-numbers/sandbox.config.json b/samples/grids/tree-grid/row-selection-template-numbers/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/sandbox.config.json +++ b/samples/grids/tree-grid/row-selection-template-numbers/sandbox.config.json @@ -3,5 +3,4 @@ "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-selection-template-numbers/src/index.css b/samples/grids/tree-grid/row-selection-template-numbers/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/src/index.css +++ b/samples/grids/tree-grid/row-selection-template-numbers/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/row-selection-template-numbers/src/index.ts b/samples/grids/tree-grid/row-selection-template-numbers/src/index.ts index 4dc7b6b1fb..a6bd5cca7d 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/src/index.ts +++ b/samples/grids/tree-grid/row-selection-template-numbers/src/index.ts @@ -3,10 +3,10 @@ import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDataItem, EmployeesFlatData } from './EmployeesFlatData'; import { IgcRowSelectorTemplateContext, IgcGridComponent } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -22,6 +22,7 @@ export class Sample { treeGrid.headSelectorTemplate = this.webGridHeaderRowSelectorTemplate; } this._bind(); + } private _employeesFlatData: EmployeesFlatData = null; @@ -33,6 +34,7 @@ export class Sample { return this._employeesFlatData; } + public webGridRowSelectorTemplate = (ctx: IgcRowSelectorTemplateContext) => { if (ctx.implicit.selected) { return html`
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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/tsconfig.json +++ b/samples/grids/tree-grid/row-selection-template-numbers/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/row-selection-template-numbers/webpack.config.js b/samples/grids/tree-grid/row-selection-template-numbers/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/webpack.config.js +++ b/samples/grids/tree-grid/row-selection-template-numbers/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/row-styles/sandbox.config.json b/samples/grids/tree-grid/row-styles/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/row-styles/sandbox.config.json +++ b/samples/grids/tree-grid/row-styles/sandbox.config.json @@ -3,5 +3,4 @@ "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-styles/src/index.css b/samples/grids/tree-grid/row-styles/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/row-styles/src/index.css +++ b/samples/grids/tree-grid/row-styles/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/row-styles/src/index.ts b/samples/grids/tree-grid/row-styles/src/index.ts index 5d50908879..fa9f7a0316 100644 --- a/samples/grids/tree-grid/row-styles/src/index.ts +++ b/samples/grids/tree-grid/row-styles/src/index.ts @@ -4,10 +4,10 @@ import { IgcTreeGridComponent } from 'igniteui-webcomponents-grids/grids'; import { EmployeesFlatDetailsItem, EmployeesFlatDetails } from './EmployeesFlatDetails'; import { IgcPropertyEditorPropertyDescriptionButtonClickEventArgs } from 'igniteui-webcomponents-layouts'; import { IgcRowType } from 'igniteui-webcomponents-grids/grids'; -import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -22,6 +22,7 @@ export class Sample { treeGrid.rowStyles = this.webTreeGridRowStylesHandler; } this._bind(); + } private _employeesFlatDetails: EmployeesFlatDetails = null; diff --git a/samples/grids/tree-grid/row-styles/tsconfig.json b/samples/grids/tree-grid/row-styles/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/row-styles/tsconfig.json +++ b/samples/grids/tree-grid/row-styles/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/row-styles/webpack.config.js b/samples/grids/tree-grid/row-styles/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/row-styles/webpack.config.js +++ b/samples/grids/tree-grid/row-styles/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/toolbar-sample-1/sandbox.config.json b/samples/grids/tree-grid/toolbar-sample-1/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/sandbox.config.json +++ b/samples/grids/tree-grid/toolbar-sample-1/sandbox.config.json @@ -3,5 +3,4 @@ "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-1/src/index.css b/samples/grids/tree-grid/toolbar-sample-1/src/index.css index 0fe9368715..4ffa793996 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/src/index.css +++ b/samples/grids/tree-grid/toolbar-sample-1/src/index.css @@ -1,2 +1,10 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.cell__inner { + display: flex; + align-items: center; +} +.name { + margin-left: 30px; +} diff --git a/samples/grids/tree-grid/toolbar-sample-1/src/index.ts b/samples/grids/tree-grid/toolbar-sample-1/src/index.ts index 3230324b91..109300f898 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/src/index.ts +++ b/samples/grids/tree-grid/toolbar-sample-1/src/index.ts @@ -3,10 +3,10 @@ import { IgcTreeGridComponent, IgcColumnComponent } from 'igniteui-webcomponents import { EmployeesFlatAvatarsItem, EmployeesFlatAvatars } from './EmployeesFlatAvatars'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; - defineAllComponents(); import "./index.css"; @@ -26,6 +26,7 @@ export class Sample { column1.bodyTemplate = this.webTreeGridAvatarCellTemplate; } this._bind(); + } private _employeesFlatAvatars: EmployeesFlatAvatars = null; @@ -37,6 +38,7 @@ export class Sample { return this._employeesFlatAvatars; } + public webTreeGridAvatarCellTemplate = (ctx: IgcCellTemplateContext) => { return html`
diff --git a/samples/grids/tree-grid/toolbar-sample-1/tsconfig.json b/samples/grids/tree-grid/toolbar-sample-1/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/tsconfig.json +++ b/samples/grids/tree-grid/toolbar-sample-1/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/toolbar-sample-1/webpack.config.js b/samples/grids/tree-grid/toolbar-sample-1/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/webpack.config.js +++ b/samples/grids/tree-grid/toolbar-sample-1/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/toolbar-sample-3/sandbox.config.json b/samples/grids/tree-grid/toolbar-sample-3/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/sandbox.config.json +++ b/samples/grids/tree-grid/toolbar-sample-3/sandbox.config.json @@ -3,5 +3,4 @@ "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-3/src/index.css b/samples/grids/tree-grid/toolbar-sample-3/src/index.css index 0fe9368715..4ffa793996 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/src/index.css +++ b/samples/grids/tree-grid/toolbar-sample-3/src/index.css @@ -1,2 +1,10 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.cell__inner { + display: flex; + align-items: center; +} +.name { + margin-left: 30px; +} diff --git a/samples/grids/tree-grid/toolbar-sample-3/src/index.ts b/samples/grids/tree-grid/toolbar-sample-3/src/index.ts index 02c530acf9..f52d0359b6 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/src/index.ts +++ b/samples/grids/tree-grid/toolbar-sample-3/src/index.ts @@ -4,10 +4,10 @@ import { EmployeesFlatAvatarsItem, EmployeesFlatAvatars } from './EmployeesFlatA import { IgcExporterOptionsBase, IgcGridToolbarExportEventArgs } from 'igniteui-webcomponents-grids/grids'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; - defineAllComponents(); import "./index.css"; @@ -29,6 +29,7 @@ export class Sample { column1.bodyTemplate = this.webTreeGridAvatarCellTemplate; } this._bind(); + } private _employeesFlatAvatars: EmployeesFlatAvatars = null; @@ -40,6 +41,7 @@ export class Sample { return this._employeesFlatAvatars; } + public webTreeGridToolbarExporting(evt: CustomEvent): void { const args = evt.detail; const options: IgcExporterOptionsBase = args.options; diff --git a/samples/grids/tree-grid/toolbar-sample-3/tsconfig.json b/samples/grids/tree-grid/toolbar-sample-3/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/tsconfig.json +++ b/samples/grids/tree-grid/toolbar-sample-3/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/toolbar-sample-3/webpack.config.js b/samples/grids/tree-grid/toolbar-sample-3/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/webpack.config.js +++ b/samples/grids/tree-grid/toolbar-sample-3/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/toolbar-style/sandbox.config.json b/samples/grids/tree-grid/toolbar-style/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/toolbar-style/sandbox.config.json +++ b/samples/grids/tree-grid/toolbar-style/sandbox.config.json @@ -3,5 +3,4 @@ "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-style/src/index.css b/samples/grids/tree-grid/toolbar-style/src/index.css index 0fe9368715..aaf900966b 100644 --- a/samples/grids/tree-grid/toolbar-style/src/index.css +++ b/samples/grids/tree-grid/toolbar-style/src/index.css @@ -1,2 +1,17 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.cell__inner { + display: flex; + align-items: center; +} +.name { + margin-left: 30px; +} + +#grid { + --ig-grid-toolbar-background-color: #2a2b2f; + --ig-grid-toolbar-title-text-color: #ffcd0f; + --ig-grid-toolbar-dropdown-background: #2a2b2f; +} + diff --git a/samples/grids/tree-grid/toolbar-style/src/index.ts b/samples/grids/tree-grid/toolbar-style/src/index.ts index 850479007f..95fba8d55d 100644 --- a/samples/grids/tree-grid/toolbar-style/src/index.ts +++ b/samples/grids/tree-grid/toolbar-style/src/index.ts @@ -3,10 +3,10 @@ import { IgcTreeGridComponent, IgcColumnComponent } from 'igniteui-webcomponents import { EmployeesFlatAvatarsItem, EmployeesFlatAvatars } from './EmployeesFlatAvatars'; import { IgcCellTemplateContext } from 'igniteui-webcomponents-grids/grids'; import { html, nothing } from 'lit-html'; + import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; - defineAllComponents(); import "./index.css"; @@ -26,6 +26,7 @@ export class Sample { column1.bodyTemplate = this.webTreeGridAvatarCellTemplate; } this._bind(); + } private _employeesFlatAvatars: EmployeesFlatAvatars = null; @@ -37,6 +38,7 @@ export class Sample { return this._employeesFlatAvatars; } + public webTreeGridAvatarCellTemplate = (ctx: IgcCellTemplateContext) => { return html`
diff --git a/samples/grids/tree-grid/toolbar-style/tsconfig.json b/samples/grids/tree-grid/toolbar-style/tsconfig.json index de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/toolbar-style/tsconfig.json +++ b/samples/grids/tree-grid/toolbar-style/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/toolbar-style/webpack.config.js b/samples/grids/tree-grid/toolbar-style/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/toolbar-style/webpack.config.js +++ b/samples/grids/tree-grid/toolbar-style/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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', diff --git a/samples/grids/tree-grid/using-primary-foreign-keys/sandbox.config.json b/samples/grids/tree-grid/using-primary-foreign-keys/sandbox.config.json index 5c5b54fe21..52c7875103 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/sandbox.config.json +++ b/samples/grids/tree-grid/using-primary-foreign-keys/sandbox.config.json @@ -3,5 +3,4 @@ "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/using-primary-foreign-keys/src/index.css b/samples/grids/tree-grid/using-primary-foreign-keys/src/index.css index 0fe9368715..8b42ec3ed2 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/src/index.css +++ b/samples/grids/tree-grid/using-primary-foreign-keys/src/index.css @@ -1,2 +1,3 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/grids/tree-grid/using-primary-foreign-keys/src/index.ts b/samples/grids/tree-grid/using-primary-foreign-keys/src/index.ts index 16de9b5c75..065a7ebece 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/src/index.ts +++ b/samples/grids/tree-grid/using-primary-foreign-keys/src/index.ts @@ -1,10 +1,10 @@ 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"; -import "./index.css"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; export class Sample { @@ -18,6 +18,7 @@ export class Sample { treeGrid.data = this.employeesFlatData; } this._bind(); + } private _employeesFlatData: EmployeesFlatData = null; 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 de23257dd8..a15284fdc2 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/tsconfig.json +++ b/samples/grids/tree-grid/using-primary-foreign-keys/tsconfig.json @@ -1,14 +1,34 @@ { "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } }, "include": [ "src/**/*" diff --git a/samples/grids/tree-grid/using-primary-foreign-keys/webpack.config.js b/samples/grids/tree-grid/using-primary-foreign-keys/webpack.config.js index 9d11a6155c..1de7f08279 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/webpack.config.js +++ b/samples/grids/tree-grid/using-primary-foreign-keys/webpack.config.js @@ -29,8 +29,6 @@ module.exports = env => { 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',